AVX-512: MUL operation lowering for v8i64
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 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 defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86InstrBuilder.h"
20 #include "X86TargetMachine.h"
21 #include "X86TargetObjectFile.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringExtras.h"
25 #include "llvm/ADT/VariadicFunction.h"
26 #include "llvm/CodeGen/IntrinsicLowering.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/MachineJumpTableInfo.h"
31 #include "llvm/CodeGen/MachineModuleInfo.h"
32 #include "llvm/CodeGen/MachineRegisterInfo.h"
33 #include "llvm/IR/CallingConv.h"
34 #include "llvm/IR/Constants.h"
35 #include "llvm/IR/DerivedTypes.h"
36 #include "llvm/IR/Function.h"
37 #include "llvm/IR/GlobalAlias.h"
38 #include "llvm/IR/GlobalVariable.h"
39 #include "llvm/IR/Instructions.h"
40 #include "llvm/IR/Intrinsics.h"
41 #include "llvm/IR/LLVMContext.h"
42 #include "llvm/MC/MCAsmInfo.h"
43 #include "llvm/MC/MCContext.h"
44 #include "llvm/MC/MCExpr.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/CallSite.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 STATISTIC(NumTailCalls, "Number of tail calls");
56
57 // Forward declarations.
58 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62                                 SelectionDAG &DAG, SDLoc dl,
63                                 unsigned vectorWidth) {
64   assert((vectorWidth == 128 || vectorWidth == 256) &&
65          "Unsupported vector width");
66   EVT VT = Vec.getValueType();
67   EVT ElVT = VT.getVectorElementType();
68   unsigned Factor = VT.getSizeInBits()/vectorWidth;
69   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70                                   VT.getVectorNumElements()/Factor);
71
72   // Extract from UNDEF is UNDEF.
73   if (Vec.getOpcode() == ISD::UNDEF)
74     return DAG.getUNDEF(ResultVT);
75
76   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
77   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
78
79   // This is the index of the first element of the vectorWidth-bit chunk
80   // we want.
81   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
82                                * ElemsPerChunk);
83
84   // If the input is a buildvector just emit a smaller one.
85   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
89   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
90   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91                                VecIdx);
92
93   return Result;
94   
95 }
96 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
97 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99 /// instructions or a simple subregister reference. Idx is an index in the
100 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
101 /// lowering EXTRACT_VECTOR_ELT operations easier.
102 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103                                    SelectionDAG &DAG, SDLoc dl) {
104   assert((Vec.getValueType().is256BitVector() ||
105           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
106   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
107 }
108
109 /// Generate a DAG to grab 256-bits from a 512-bit vector.
110 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111                                    SelectionDAG &DAG, SDLoc dl) {
112   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114 }
115
116 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117                                unsigned IdxVal, SelectionDAG &DAG,
118                                SDLoc dl, unsigned vectorWidth) {
119   assert((vectorWidth == 128 || vectorWidth == 256) &&
120          "Unsupported vector width");
121   // Inserting UNDEF is Result
122   if (Vec.getOpcode() == ISD::UNDEF)
123     return Result;
124   EVT VT = Vec.getValueType();
125   EVT ElVT = VT.getVectorElementType();
126   EVT ResultVT = Result.getValueType();
127
128   // Insert the relevant vectorWidth bits.
129   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131   // This is the index of the first element of the vectorWidth-bit chunk
132   // we want.
133   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134                                * ElemsPerChunk);
135
136   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138                      VecIdx);
139 }
140 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
141 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
143 /// simple superregister reference.  Idx is an index in the 128 bits
144 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
145 /// lowering INSERT_VECTOR_ELT operations easier.
146 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147                                   unsigned IdxVal, SelectionDAG &DAG,
148                                   SDLoc dl) {
149   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151 }
152
153 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154                                   unsigned IdxVal, SelectionDAG &DAG,
155                                   SDLoc dl) {
156   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
158 }
159
160 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161 /// instructions. This is used because creating CONCAT_VECTOR nodes of
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163 /// large BUILD_VECTORS.
164 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165                                    unsigned NumElems, SelectionDAG &DAG,
166                                    SDLoc dl) {
167   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
169 }
170
171 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172                                    unsigned NumElems, SelectionDAG &DAG,
173                                    SDLoc dl) {
174   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176 }
177
178 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
179   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180   bool is64Bit = Subtarget->is64Bit();
181
182   if (Subtarget->isTargetEnvMacho()) {
183     if (is64Bit)
184       return new X86_64MachoTargetObjectFile();
185     return new TargetLoweringObjectFileMachO();
186   }
187
188   if (Subtarget->isTargetLinux())
189     return new X86LinuxTargetObjectFile();
190   if (Subtarget->isTargetELF())
191     return new TargetLoweringObjectFileELF();
192   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
193     return new TargetLoweringObjectFileCOFF();
194   llvm_unreachable("unknown subtarget type");
195 }
196
197 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
198   : TargetLowering(TM, createTLOF(TM)) {
199   Subtarget = &TM.getSubtarget<X86Subtarget>();
200   X86ScalarSSEf64 = Subtarget->hasSSE2();
201   X86ScalarSSEf32 = Subtarget->hasSSE1();
202   TD = getDataLayout();
203
204   resetOperationActions();
205 }
206
207 void X86TargetLowering::resetOperationActions() {
208   const TargetMachine &TM = getTargetMachine();
209   static bool FirstTimeThrough = true;
210
211   // If none of the target options have changed, then we don't need to reset the
212   // operation actions.
213   if (!FirstTimeThrough && TO == TM.Options) return;
214
215   if (!FirstTimeThrough) {
216     // Reinitialize the actions.
217     initActions();
218     FirstTimeThrough = false;
219   }
220
221   TO = TM.Options;
222
223   // Set up the TargetLowering object.
224   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
225
226   // X86 is weird, it always uses i8 for shift amounts and setcc results.
227   setBooleanContents(ZeroOrOneBooleanContent);
228   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
230
231   // For 64-bit since we have so many registers use the ILP scheduler, for
232   // 32-bit code use the register pressure specific scheduling.
233   // For Atom, always use ILP scheduling.
234   if (Subtarget->isAtom())
235     setSchedulingPreference(Sched::ILP);
236   else if (Subtarget->is64Bit())
237     setSchedulingPreference(Sched::ILP);
238   else
239     setSchedulingPreference(Sched::RegPressure);
240   const X86RegisterInfo *RegInfo =
241     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
242   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
243
244   // Bypass expensive divides on Atom when compiling with O2
245   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
246     addBypassSlowDiv(32, 8);
247     if (Subtarget->is64Bit())
248       addBypassSlowDiv(64, 16);
249   }
250
251   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
252     // Setup Windows compiler runtime calls.
253     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
254     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
255     setLibcallName(RTLIB::SREM_I64, "_allrem");
256     setLibcallName(RTLIB::UREM_I64, "_aullrem");
257     setLibcallName(RTLIB::MUL_I64, "_allmul");
258     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
259     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
260     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
263
264     // The _ftol2 runtime function has an unusual calling conv, which
265     // is modeled by a special pseudo-instruction.
266     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
270   }
271
272   if (Subtarget->isTargetDarwin()) {
273     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
274     setUseUnderscoreSetJmp(false);
275     setUseUnderscoreLongJmp(false);
276   } else if (Subtarget->isTargetMingw()) {
277     // MS runtime is weird: it exports _setjmp, but longjmp!
278     setUseUnderscoreSetJmp(true);
279     setUseUnderscoreLongJmp(false);
280   } else {
281     setUseUnderscoreSetJmp(true);
282     setUseUnderscoreLongJmp(true);
283   }
284
285   // Set up the register classes.
286   addRegisterClass(MVT::i8, &X86::GR8RegClass);
287   addRegisterClass(MVT::i16, &X86::GR16RegClass);
288   addRegisterClass(MVT::i32, &X86::GR32RegClass);
289   if (Subtarget->is64Bit())
290     addRegisterClass(MVT::i64, &X86::GR64RegClass);
291
292   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
293
294   // We don't accept any truncstore of integer registers.
295   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
296   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
297   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
298   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
301
302   // SETOEQ and SETUNE require checking two conditions.
303   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
309
310   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311   // operation.
312   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
313   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
315
316   if (Subtarget->is64Bit()) {
317     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
318     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
319   } else if (!TM.Options.UseSoftFloat) {
320     // We have an algorithm for SSE2->double, and we turn this into a
321     // 64-bit FILD followed by conditional FADD for other targets.
322     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
323     // We have an algorithm for SSE2, and we turn this into a 64-bit
324     // FILD for other targets.
325     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
326   }
327
328   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329   // this operation.
330   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
331   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
332
333   if (!TM.Options.UseSoftFloat) {
334     // SSE has no i16 to fp conversion, only i32
335     if (X86ScalarSSEf32) {
336       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
337       // f32 and f64 cases are Legal, f80 case is not
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
339     } else {
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
342     }
343   } else {
344     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
345     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
346   }
347
348   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
349   // are Legal, f80 is custom lowered.
350   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
351   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
352
353   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354   // this operation.
355   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
356   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
357
358   if (X86ScalarSSEf32) {
359     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
360     // f32 and f64 cases are Legal, f80 case is not
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
362   } else {
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
365   }
366
367   // Handle FP_TO_UINT by promoting the destination to a larger signed
368   // conversion.
369   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
370   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
372
373   if (Subtarget->is64Bit()) {
374     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
375     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
376   } else if (!TM.Options.UseSoftFloat) {
377     // Since AVX is a superset of SSE3, only check for SSE here.
378     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
379       // Expand FP_TO_UINT into a select.
380       // FIXME: We would like to use a Custom expander here eventually to do
381       // the optimal thing for SSE vs. the default expansion in the legalizer.
382       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
383     else
384       // With SSE3 we can use fisttpll to convert to a signed i64; without
385       // SSE, we're stuck with a fistpll.
386       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
387   }
388
389   if (isTargetFTOL()) {
390     // Use the _ftol2 runtime function, which has a pseudo-instruction
391     // to handle its weird calling convention.
392     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
393   }
394
395   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
396   if (!X86ScalarSSEf64) {
397     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
398     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
399     if (Subtarget->is64Bit()) {
400       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
401       // Without SSE, i64->f64 goes through memory.
402       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
403     }
404   }
405
406   // Scalar integer divide and remainder are lowered to use operations that
407   // produce two results, to match the available instructions. This exposes
408   // the two-result form to trivial CSE, which is able to combine x/y and x%y
409   // into a single instruction.
410   //
411   // Scalar integer multiply-high is also lowered to use two-result
412   // operations, to match the available instructions. However, plain multiply
413   // (low) operations are left as Legal, as there are single-result
414   // instructions for this in x86. Using the two-result multiply instructions
415   // when both high and low results are needed must be arranged by dagcombine.
416   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
417     MVT VT = IntVTs[i];
418     setOperationAction(ISD::MULHS, VT, Expand);
419     setOperationAction(ISD::MULHU, VT, Expand);
420     setOperationAction(ISD::SDIV, VT, Expand);
421     setOperationAction(ISD::UDIV, VT, Expand);
422     setOperationAction(ISD::SREM, VT, Expand);
423     setOperationAction(ISD::UREM, VT, Expand);
424
425     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
426     setOperationAction(ISD::ADDC, VT, Custom);
427     setOperationAction(ISD::ADDE, VT, Custom);
428     setOperationAction(ISD::SUBC, VT, Custom);
429     setOperationAction(ISD::SUBE, VT, Custom);
430   }
431
432   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
433   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
434   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
435   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
436   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
438   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
441   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
442   if (Subtarget->is64Bit())
443     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
445   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
447   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
448   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
449   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
451   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
452
453   // Promote the i8 variants and force them on up to i32 which has a shorter
454   // encoding.
455   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
456   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
457   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
459   if (Subtarget->hasBMI()) {
460     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
461     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
462     if (Subtarget->is64Bit())
463       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
464   } else {
465     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
466     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
467     if (Subtarget->is64Bit())
468       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
469   }
470
471   if (Subtarget->hasLZCNT()) {
472     // When promoting the i8 variants, force them to i32 for a shorter
473     // encoding.
474     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
475     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
476     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
479     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
480     if (Subtarget->is64Bit())
481       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
482   } else {
483     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
484     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
485     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
486     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
487     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
489     if (Subtarget->is64Bit()) {
490       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
491       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492     }
493   }
494
495   if (Subtarget->hasPOPCNT()) {
496     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
497   } else {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
499     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
500     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
501     if (Subtarget->is64Bit())
502       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
503   }
504
505   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
506   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
507
508   // These should be promoted to a larger select which is supported.
509   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
510   // X86 wants to expand cmov itself.
511   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
512   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
513   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
514   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
517   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
518   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
520   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
523   if (Subtarget->is64Bit()) {
524     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
525     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
526   }
527   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
528   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
529   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
530   // support continuation, user-level threading, and etc.. As a result, no
531   // other SjLj exception interfaces are implemented and please don't build
532   // your own exception handling based on them.
533   // LLVM/Clang supports zero-cost DWARF exception handling.
534   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
536
537   // Darwin ABI issue.
538   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
539   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
540   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
541   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
542   if (Subtarget->is64Bit())
543     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
545   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
546   if (Subtarget->is64Bit()) {
547     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
548     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
549     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
550     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
551     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
552   }
553   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
554   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
555   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
556   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
557   if (Subtarget->is64Bit()) {
558     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
559     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
560     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
561   }
562
563   if (Subtarget->hasSSE1())
564     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
565
566   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
567
568   // Expand certain atomics
569   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
570     MVT VT = IntVTs[i];
571     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
573     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
574   }
575
576   if (!Subtarget->is64Bit()) {
577     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
578     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
589   }
590
591   if (Subtarget->hasCmpxchg16b()) {
592     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593   }
594
595   // FIXME - use subtarget debug flags
596   if (!Subtarget->isTargetDarwin() &&
597       !Subtarget->isTargetELF() &&
598       !Subtarget->isTargetCygMing()) {
599     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
600   }
601
602   if (Subtarget->is64Bit()) {
603     setExceptionPointerRegister(X86::RAX);
604     setExceptionSelectorRegister(X86::RDX);
605   } else {
606     setExceptionPointerRegister(X86::EAX);
607     setExceptionSelectorRegister(X86::EDX);
608   }
609   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
611
612   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
614
615   setOperationAction(ISD::TRAP, MVT::Other, Legal);
616   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
617
618   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
619   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
620   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
621   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622     // TargetInfo::X86_64ABIBuiltinVaList
623     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
624     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
625   } else {
626     // TargetInfo::CharPtrBuiltinVaList
627     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
628     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
629   }
630
631   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
632   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
633
634   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
635     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636                        MVT::i64 : MVT::i32, Custom);
637   else if (TM.Options.EnableSegmentedStacks)
638     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639                        MVT::i64 : MVT::i32, Custom);
640   else
641     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642                        MVT::i64 : MVT::i32, Expand);
643
644   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
645     // f32 and f64 use SSE.
646     // Set up the FP register classes.
647     addRegisterClass(MVT::f32, &X86::FR32RegClass);
648     addRegisterClass(MVT::f64, &X86::FR64RegClass);
649
650     // Use ANDPD to simulate FABS.
651     setOperationAction(ISD::FABS , MVT::f64, Custom);
652     setOperationAction(ISD::FABS , MVT::f32, Custom);
653
654     // Use XORP to simulate FNEG.
655     setOperationAction(ISD::FNEG , MVT::f64, Custom);
656     setOperationAction(ISD::FNEG , MVT::f32, Custom);
657
658     // Use ANDPD and ORPD to simulate FCOPYSIGN.
659     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
661
662     // Lower this to FGETSIGNx86 plus an AND.
663     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
666     // We don't support sin/cos/fmod
667     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
668     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
669     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
671     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
672     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
673
674     // Expand FP immediates into loads from the stack, except for the special
675     // cases we handle.
676     addLegalFPImmediate(APFloat(+0.0)); // xorpd
677     addLegalFPImmediate(APFloat(+0.0f)); // xorps
678   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
679     // Use SSE for f32, x87 for f64.
680     // Set up the FP register classes.
681     addRegisterClass(MVT::f32, &X86::FR32RegClass);
682     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
683
684     // Use ANDPS to simulate FABS.
685     setOperationAction(ISD::FABS , MVT::f32, Custom);
686
687     // Use XORP to simulate FNEG.
688     setOperationAction(ISD::FNEG , MVT::f32, Custom);
689
690     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
691
692     // Use ANDPS and ORPS to simulate FCOPYSIGN.
693     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
695
696     // We don't support sin/cos/fmod
697     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
698     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
699     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
700
701     // Special cases we handle for FP constants.
702     addLegalFPImmediate(APFloat(+0.0f)); // xorps
703     addLegalFPImmediate(APFloat(+0.0)); // FLD0
704     addLegalFPImmediate(APFloat(+1.0)); // FLD1
705     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
708     if (!TM.Options.UnsafeFPMath) {
709       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
710       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
711       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
712     }
713   } else if (!TM.Options.UseSoftFloat) {
714     // f32 and f64 in x87.
715     // Set up the FP register classes.
716     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
718
719     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
720     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
721     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
723
724     if (!TM.Options.UnsafeFPMath) {
725       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
726       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
727       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
729       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
731     }
732     addLegalFPImmediate(APFloat(+0.0)); // FLD0
733     addLegalFPImmediate(APFloat(+1.0)); // FLD1
734     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
736     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
740   }
741
742   // We don't support FMA.
743   setOperationAction(ISD::FMA, MVT::f64, Expand);
744   setOperationAction(ISD::FMA, MVT::f32, Expand);
745
746   // Long double always uses X87.
747   if (!TM.Options.UseSoftFloat) {
748     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
749     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
750     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
751     {
752       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
753       addLegalFPImmediate(TmpFlt);  // FLD0
754       TmpFlt.changeSign();
755       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
756
757       bool ignored;
758       APFloat TmpFlt2(+1.0);
759       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760                       &ignored);
761       addLegalFPImmediate(TmpFlt2);  // FLD1
762       TmpFlt2.changeSign();
763       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
764     }
765
766     if (!TM.Options.UnsafeFPMath) {
767       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
768       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
769       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
770     }
771
772     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
774     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
776     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
777     setOperationAction(ISD::FMA, MVT::f80, Expand);
778   }
779
780   // Always use a library call for pow.
781   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
782   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
784
785   setOperationAction(ISD::FLOG, MVT::f80, Expand);
786   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788   setOperationAction(ISD::FEXP, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
790
791   // First set operation action for all vector types to either promote
792   // (for widening) or expand (for scalarization). Then we will selectively
793   // turn on ones that can be effectively codegen'd.
794   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
796     MVT VT = (MVT::SimpleValueType)i;
797     setOperationAction(ISD::ADD , VT, Expand);
798     setOperationAction(ISD::SUB , VT, Expand);
799     setOperationAction(ISD::FADD, VT, Expand);
800     setOperationAction(ISD::FNEG, VT, Expand);
801     setOperationAction(ISD::FSUB, VT, Expand);
802     setOperationAction(ISD::MUL , VT, Expand);
803     setOperationAction(ISD::FMUL, VT, Expand);
804     setOperationAction(ISD::SDIV, VT, Expand);
805     setOperationAction(ISD::UDIV, VT, Expand);
806     setOperationAction(ISD::FDIV, VT, Expand);
807     setOperationAction(ISD::SREM, VT, Expand);
808     setOperationAction(ISD::UREM, VT, Expand);
809     setOperationAction(ISD::LOAD, VT, Expand);
810     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::FABS, VT, Expand);
816     setOperationAction(ISD::FSIN, VT, Expand);
817     setOperationAction(ISD::FSINCOS, VT, Expand);
818     setOperationAction(ISD::FCOS, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FREM, VT, Expand);
821     setOperationAction(ISD::FMA,  VT, Expand);
822     setOperationAction(ISD::FPOWI, VT, Expand);
823     setOperationAction(ISD::FSQRT, VT, Expand);
824     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825     setOperationAction(ISD::FFLOOR, VT, Expand);
826     setOperationAction(ISD::FCEIL, VT, Expand);
827     setOperationAction(ISD::FTRUNC, VT, Expand);
828     setOperationAction(ISD::FRINT, VT, Expand);
829     setOperationAction(ISD::FNEARBYINT, VT, Expand);
830     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832     setOperationAction(ISD::SDIVREM, VT, Expand);
833     setOperationAction(ISD::UDIVREM, VT, Expand);
834     setOperationAction(ISD::FPOW, VT, Expand);
835     setOperationAction(ISD::CTPOP, VT, Expand);
836     setOperationAction(ISD::CTTZ, VT, Expand);
837     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838     setOperationAction(ISD::CTLZ, VT, Expand);
839     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::SHL, VT, Expand);
841     setOperationAction(ISD::SRA, VT, Expand);
842     setOperationAction(ISD::SRL, VT, Expand);
843     setOperationAction(ISD::ROTL, VT, Expand);
844     setOperationAction(ISD::ROTR, VT, Expand);
845     setOperationAction(ISD::BSWAP, VT, Expand);
846     setOperationAction(ISD::SETCC, VT, Expand);
847     setOperationAction(ISD::FLOG, VT, Expand);
848     setOperationAction(ISD::FLOG2, VT, Expand);
849     setOperationAction(ISD::FLOG10, VT, Expand);
850     setOperationAction(ISD::FEXP, VT, Expand);
851     setOperationAction(ISD::FEXP2, VT, Expand);
852     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857     setOperationAction(ISD::TRUNCATE, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861     setOperationAction(ISD::VSELECT, VT, Expand);
862     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
864       setTruncStoreAction(VT,
865                           (MVT::SimpleValueType)InnerVT, Expand);
866     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
869   }
870
871   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872   // with -msoft-float, disable use of MMX as well.
873   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
874     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
875     // No operations on x86mmx supported, everything uses intrinsics.
876   }
877
878   // MMX-sized vectors (other than x86mmx) are expected to be expanded
879   // into smaller operations.
880   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
881   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
882   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
883   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
884   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
885   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
886   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
887   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
888   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
889   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
890   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
891   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
892   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
893   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
894   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
895   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
896   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
897   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
900   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
901   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
902   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
904   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
905   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
906   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
909
910   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
911     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
912
913     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
914     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
915     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
918     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
919     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
920     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
921     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
922     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
923     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
925   }
926
927   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
928     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
929
930     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931     // registers cannot be used even for integer operations.
932     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
936
937     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
938     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
939     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
940     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
941     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
942     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
943     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
944     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
945     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
946     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
947     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
948     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
949     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
950     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
953     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
954     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
955
956     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
957     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
958     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
960
961     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
962     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
963     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
964     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
966
967     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
968     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
969       MVT VT = (MVT::SimpleValueType)i;
970       // Do not attempt to custom lower non-power-of-2 vectors
971       if (!isPowerOf2_32(VT.getVectorNumElements()))
972         continue;
973       // Do not attempt to custom lower non-128-bit vectors
974       if (!VT.is128BitVector())
975         continue;
976       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
977       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
978       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
979     }
980
981     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
982     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
983     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
984     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
985     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
986     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
987
988     if (Subtarget->is64Bit()) {
989       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
990       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
991     }
992
993     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
994     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
995       MVT VT = (MVT::SimpleValueType)i;
996
997       // Do not attempt to promote non-128-bit vectors
998       if (!VT.is128BitVector())
999         continue;
1000
1001       setOperationAction(ISD::AND,    VT, Promote);
1002       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1003       setOperationAction(ISD::OR,     VT, Promote);
1004       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1005       setOperationAction(ISD::XOR,    VT, Promote);
1006       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1007       setOperationAction(ISD::LOAD,   VT, Promote);
1008       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1009       setOperationAction(ISD::SELECT, VT, Promote);
1010       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1011     }
1012
1013     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1014
1015     // Custom lower v2i64 and v2f64 selects.
1016     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1017     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1018     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1019     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1020
1021     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1022     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1023
1024     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1025     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1026     // As there is no 64-bit GPR available, we need build a special custom
1027     // sequence to convert from v2i32 to v2f32.
1028     if (!Subtarget->is64Bit())
1029       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1030
1031     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1032     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1033
1034     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1035   }
1036
1037   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1038     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1039     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1040     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1043     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1044     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1045     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1048
1049     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1050     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1051     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1054     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1055     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1056     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1059
1060     // FIXME: Do we need to handle scalar-to-vector here?
1061     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1062
1063     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1064     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1065     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1068
1069     // i8 and i16 vectors are custom , because the source register and source
1070     // source memory operand types are not the same width.  f32 vectors are
1071     // custom since the immediate controlling the insert encodes additional
1072     // information.
1073     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1074     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1077
1078     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1082
1083     // FIXME: these should be Legal but thats only for the case where
1084     // the index is constant.  For now custom expand to deal with that.
1085     if (Subtarget->is64Bit()) {
1086       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1087       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1088     }
1089   }
1090
1091   if (Subtarget->hasSSE2()) {
1092     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1093     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1094
1095     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1096     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1097
1098     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1099     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1100
1101     // In the customized shift lowering, the legal cases in AVX2 will be
1102     // recognized.
1103     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1104     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1105
1106     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1107     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1108
1109     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1112     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1113   }
1114
1115   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1116     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1117     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1120     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1122
1123     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1124     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1125     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1126
1127     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1128     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1132     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1133     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1137     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1138     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1139
1140     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1141     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1142     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1145     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1146     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1150     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1151     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1152
1153     setOperationAction(ISD::TRUNCATE,           MVT::v8i16, Custom);
1154     setOperationAction(ISD::TRUNCATE,           MVT::v4i32, Custom);
1155
1156     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1157
1158     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1159     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1160     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1161     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1162
1163     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i32, Custom);
1164     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1165     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1166
1167     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1168
1169     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1170     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1171
1172     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1173     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1174
1175     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1176     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1177
1178     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1179
1180     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1181     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1182     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1183     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1184
1185     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1186     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1187     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1188
1189     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1190     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1191     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1192     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1193
1194     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1195     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1197     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1200
1201     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1202       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1203       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1204       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1205       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1206       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1208     }
1209
1210     if (Subtarget->hasInt256()) {
1211       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1212       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1213       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1214       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1215
1216       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1217       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1218       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1219       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1220
1221       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1222       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1223       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1224       // Don't lower v32i8 because there is no 128-bit byte mul
1225
1226       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1227
1228       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1229     } else {
1230       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1231       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1232       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1233       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1234
1235       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1236       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1237       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1238       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1239
1240       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1241       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1242       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1243       // Don't lower v32i8 because there is no 128-bit byte mul
1244     }
1245
1246     // In the customized shift lowering, the legal cases in AVX2 will be
1247     // recognized.
1248     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1249     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1250
1251     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1252     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1253
1254     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1255
1256     // Custom lower several nodes for 256-bit types.
1257     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1258              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1259       MVT VT = (MVT::SimpleValueType)i;
1260
1261       // Extract subvector is special because the value type
1262       // (result) is 128-bit but the source is 256-bit wide.
1263       if (VT.is128BitVector())
1264         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1265
1266       // Do not attempt to custom lower other non-256-bit vectors
1267       if (!VT.is256BitVector())
1268         continue;
1269
1270       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1271       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1272       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1273       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1275       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1276       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1277     }
1278
1279     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1280     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1281       MVT VT = (MVT::SimpleValueType)i;
1282
1283       // Do not attempt to promote non-256-bit vectors
1284       if (!VT.is256BitVector())
1285         continue;
1286
1287       setOperationAction(ISD::AND,    VT, Promote);
1288       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1289       setOperationAction(ISD::OR,     VT, Promote);
1290       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1291       setOperationAction(ISD::XOR,    VT, Promote);
1292       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1293       setOperationAction(ISD::LOAD,   VT, Promote);
1294       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1295       setOperationAction(ISD::SELECT, VT, Promote);
1296       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1297     }
1298   }
1299
1300   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1301     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1302     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1303     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1304     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1305
1306     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1307     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1308
1309     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1310     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1311     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1312     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1313     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1314     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1315
1316     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1317     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1318     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1319     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1320     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1321     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1322
1323     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1324     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1325     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1326     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1327     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1328     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1329     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1330     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1331     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1332
1333     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1334     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1335     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1336     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1337     if (Subtarget->is64Bit()) {
1338       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1339       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1340       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1341       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1342     }
1343     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1344     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1345     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1346     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1347     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1348     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1349     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1350     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1351
1352     setOperationAction(ISD::TRUNCATE,           MVT::i1, Legal);
1353     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1354     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1355     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1356     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1357     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1358     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1359     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1360     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1361     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1362     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1363     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1364
1365     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1366     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1367     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1368     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1369     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1370
1371     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1372     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1373
1374     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1375
1376     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1377     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1378     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1379     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1380     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1381
1382     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1383     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1384
1385     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1386     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1387
1388     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1389
1390     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1391     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1392
1393     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1394     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1395
1396     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1397     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1398
1399     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1400     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1401     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1402     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1403     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1404     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1405
1406     // Custom lower several nodes.
1407     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1408              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1409       MVT VT = (MVT::SimpleValueType)i;
1410
1411       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1412       // Extract subvector is special because the value type
1413       // (result) is 256/128-bit but the source is 512-bit wide.
1414       if (VT.is128BitVector() || VT.is256BitVector())
1415         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1416
1417       if (VT.getVectorElementType() == MVT::i1)
1418         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1419
1420       // Do not attempt to custom lower other non-512-bit vectors
1421       if (!VT.is512BitVector())
1422         continue;
1423
1424       if ( EltSize >= 32) {
1425         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1426         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1427         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1428         setOperationAction(ISD::VSELECT,             VT, Legal);
1429         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1430         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1431         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1432       }
1433     }
1434     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1435       MVT VT = (MVT::SimpleValueType)i;
1436
1437       // Do not attempt to promote non-256-bit vectors
1438       if (!VT.is512BitVector())
1439         continue;
1440
1441       setOperationAction(ISD::SELECT, VT, Promote);
1442       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1443     }
1444   }// has  AVX-512
1445
1446   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1447   // of this type with custom code.
1448   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1449            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1450     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1451                        Custom);
1452   }
1453
1454   // We want to custom lower some of our intrinsics.
1455   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1456   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1457   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1458
1459   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1460   // handle type legalization for these operations here.
1461   //
1462   // FIXME: We really should do custom legalization for addition and
1463   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1464   // than generic legalization for 64-bit multiplication-with-overflow, though.
1465   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1466     // Add/Sub/Mul with overflow operations are custom lowered.
1467     MVT VT = IntVTs[i];
1468     setOperationAction(ISD::SADDO, VT, Custom);
1469     setOperationAction(ISD::UADDO, VT, Custom);
1470     setOperationAction(ISD::SSUBO, VT, Custom);
1471     setOperationAction(ISD::USUBO, VT, Custom);
1472     setOperationAction(ISD::SMULO, VT, Custom);
1473     setOperationAction(ISD::UMULO, VT, Custom);
1474   }
1475
1476   // There are no 8-bit 3-address imul/mul instructions
1477   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1478   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1479
1480   if (!Subtarget->is64Bit()) {
1481     // These libcalls are not available in 32-bit.
1482     setLibcallName(RTLIB::SHL_I128, 0);
1483     setLibcallName(RTLIB::SRL_I128, 0);
1484     setLibcallName(RTLIB::SRA_I128, 0);
1485   }
1486
1487   // Combine sin / cos into one node or libcall if possible.
1488   if (Subtarget->hasSinCos()) {
1489     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1490     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1491     if (Subtarget->isTargetDarwin()) {
1492       // For MacOSX, we don't want to the normal expansion of a libcall to
1493       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1494       // traffic.
1495       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1496       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1497     }
1498   }
1499
1500   // We have target-specific dag combine patterns for the following nodes:
1501   setTargetDAGCombine(ISD::CONCAT_VECTORS);
1502   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1503   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1504   setTargetDAGCombine(ISD::VSELECT);
1505   setTargetDAGCombine(ISD::SELECT);
1506   setTargetDAGCombine(ISD::SHL);
1507   setTargetDAGCombine(ISD::SRA);
1508   setTargetDAGCombine(ISD::SRL);
1509   setTargetDAGCombine(ISD::OR);
1510   setTargetDAGCombine(ISD::AND);
1511   setTargetDAGCombine(ISD::ADD);
1512   setTargetDAGCombine(ISD::FADD);
1513   setTargetDAGCombine(ISD::FSUB);
1514   setTargetDAGCombine(ISD::FMA);
1515   setTargetDAGCombine(ISD::SUB);
1516   setTargetDAGCombine(ISD::LOAD);
1517   setTargetDAGCombine(ISD::STORE);
1518   setTargetDAGCombine(ISD::ZERO_EXTEND);
1519   setTargetDAGCombine(ISD::ANY_EXTEND);
1520   setTargetDAGCombine(ISD::SIGN_EXTEND);
1521   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1522   setTargetDAGCombine(ISD::TRUNCATE);
1523   setTargetDAGCombine(ISD::SINT_TO_FP);
1524   setTargetDAGCombine(ISD::SETCC);
1525   if (Subtarget->is64Bit())
1526     setTargetDAGCombine(ISD::MUL);
1527   setTargetDAGCombine(ISD::XOR);
1528
1529   computeRegisterProperties();
1530
1531   // On Darwin, -Os means optimize for size without hurting performance,
1532   // do not reduce the limit.
1533   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1534   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1535   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1536   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1537   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1538   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1539   setPrefLoopAlignment(4); // 2^4 bytes.
1540
1541   // Predictable cmov don't hurt on atom because it's in-order.
1542   PredictableSelectIsExpensive = !Subtarget->isAtom();
1543
1544   setPrefFunctionAlignment(4); // 2^4 bytes.
1545 }
1546
1547 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1548   if (!VT.isVector()) return MVT::i8;
1549   return VT.changeVectorElementTypeToInteger();
1550 }
1551
1552 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1553 /// the desired ByVal argument alignment.
1554 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1555   if (MaxAlign == 16)
1556     return;
1557   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1558     if (VTy->getBitWidth() == 128)
1559       MaxAlign = 16;
1560   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1561     unsigned EltAlign = 0;
1562     getMaxByValAlign(ATy->getElementType(), EltAlign);
1563     if (EltAlign > MaxAlign)
1564       MaxAlign = EltAlign;
1565   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1566     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1567       unsigned EltAlign = 0;
1568       getMaxByValAlign(STy->getElementType(i), EltAlign);
1569       if (EltAlign > MaxAlign)
1570         MaxAlign = EltAlign;
1571       if (MaxAlign == 16)
1572         break;
1573     }
1574   }
1575 }
1576
1577 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1578 /// function arguments in the caller parameter area. For X86, aggregates
1579 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1580 /// are at 4-byte boundaries.
1581 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1582   if (Subtarget->is64Bit()) {
1583     // Max of 8 and alignment of type.
1584     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1585     if (TyAlign > 8)
1586       return TyAlign;
1587     return 8;
1588   }
1589
1590   unsigned Align = 4;
1591   if (Subtarget->hasSSE1())
1592     getMaxByValAlign(Ty, Align);
1593   return Align;
1594 }
1595
1596 /// getOptimalMemOpType - Returns the target specific optimal type for load
1597 /// and store operations as a result of memset, memcpy, and memmove
1598 /// lowering. If DstAlign is zero that means it's safe to destination
1599 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1600 /// means there isn't a need to check it against alignment requirement,
1601 /// probably because the source does not need to be loaded. If 'IsMemset' is
1602 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1603 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1604 /// source is constant so it does not need to be loaded.
1605 /// It returns EVT::Other if the type should be determined using generic
1606 /// target-independent logic.
1607 EVT
1608 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1609                                        unsigned DstAlign, unsigned SrcAlign,
1610                                        bool IsMemset, bool ZeroMemset,
1611                                        bool MemcpyStrSrc,
1612                                        MachineFunction &MF) const {
1613   const Function *F = MF.getFunction();
1614   if ((!IsMemset || ZeroMemset) &&
1615       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1616                                        Attribute::NoImplicitFloat)) {
1617     if (Size >= 16 &&
1618         (Subtarget->isUnalignedMemAccessFast() ||
1619          ((DstAlign == 0 || DstAlign >= 16) &&
1620           (SrcAlign == 0 || SrcAlign >= 16)))) {
1621       if (Size >= 32) {
1622         if (Subtarget->hasInt256())
1623           return MVT::v8i32;
1624         if (Subtarget->hasFp256())
1625           return MVT::v8f32;
1626       }
1627       if (Subtarget->hasSSE2())
1628         return MVT::v4i32;
1629       if (Subtarget->hasSSE1())
1630         return MVT::v4f32;
1631     } else if (!MemcpyStrSrc && Size >= 8 &&
1632                !Subtarget->is64Bit() &&
1633                Subtarget->hasSSE2()) {
1634       // Do not use f64 to lower memcpy if source is string constant. It's
1635       // better to use i32 to avoid the loads.
1636       return MVT::f64;
1637     }
1638   }
1639   if (Subtarget->is64Bit() && Size >= 8)
1640     return MVT::i64;
1641   return MVT::i32;
1642 }
1643
1644 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1645   if (VT == MVT::f32)
1646     return X86ScalarSSEf32;
1647   else if (VT == MVT::f64)
1648     return X86ScalarSSEf64;
1649   return true;
1650 }
1651
1652 bool
1653 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1654   if (Fast)
1655     *Fast = Subtarget->isUnalignedMemAccessFast();
1656   return true;
1657 }
1658
1659 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1660 /// current function.  The returned value is a member of the
1661 /// MachineJumpTableInfo::JTEntryKind enum.
1662 unsigned X86TargetLowering::getJumpTableEncoding() const {
1663   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1664   // symbol.
1665   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1666       Subtarget->isPICStyleGOT())
1667     return MachineJumpTableInfo::EK_Custom32;
1668
1669   // Otherwise, use the normal jump table encoding heuristics.
1670   return TargetLowering::getJumpTableEncoding();
1671 }
1672
1673 const MCExpr *
1674 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1675                                              const MachineBasicBlock *MBB,
1676                                              unsigned uid,MCContext &Ctx) const{
1677   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1678          Subtarget->isPICStyleGOT());
1679   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1680   // entries.
1681   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1682                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1683 }
1684
1685 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1686 /// jumptable.
1687 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1688                                                     SelectionDAG &DAG) const {
1689   if (!Subtarget->is64Bit())
1690     // This doesn't have SDLoc associated with it, but is not really the
1691     // same as a Register.
1692     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1693   return Table;
1694 }
1695
1696 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1697 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1698 /// MCExpr.
1699 const MCExpr *X86TargetLowering::
1700 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1701                              MCContext &Ctx) const {
1702   // X86-64 uses RIP relative addressing based on the jump table label.
1703   if (Subtarget->isPICStyleRIPRel())
1704     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1705
1706   // Otherwise, the reference is relative to the PIC base.
1707   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1708 }
1709
1710 // FIXME: Why this routine is here? Move to RegInfo!
1711 std::pair<const TargetRegisterClass*, uint8_t>
1712 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1713   const TargetRegisterClass *RRC = 0;
1714   uint8_t Cost = 1;
1715   switch (VT.SimpleTy) {
1716   default:
1717     return TargetLowering::findRepresentativeClass(VT);
1718   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1719     RRC = Subtarget->is64Bit() ?
1720       (const TargetRegisterClass*)&X86::GR64RegClass :
1721       (const TargetRegisterClass*)&X86::GR32RegClass;
1722     break;
1723   case MVT::x86mmx:
1724     RRC = &X86::VR64RegClass;
1725     break;
1726   case MVT::f32: case MVT::f64:
1727   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1728   case MVT::v4f32: case MVT::v2f64:
1729   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1730   case MVT::v4f64:
1731     RRC = &X86::VR128RegClass;
1732     break;
1733   }
1734   return std::make_pair(RRC, Cost);
1735 }
1736
1737 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1738                                                unsigned &Offset) const {
1739   if (!Subtarget->isTargetLinux())
1740     return false;
1741
1742   if (Subtarget->is64Bit()) {
1743     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1744     Offset = 0x28;
1745     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1746       AddressSpace = 256;
1747     else
1748       AddressSpace = 257;
1749   } else {
1750     // %gs:0x14 on i386
1751     Offset = 0x14;
1752     AddressSpace = 256;
1753   }
1754   return true;
1755 }
1756
1757 //===----------------------------------------------------------------------===//
1758 //               Return Value Calling Convention Implementation
1759 //===----------------------------------------------------------------------===//
1760
1761 #include "X86GenCallingConv.inc"
1762
1763 bool
1764 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1765                                   MachineFunction &MF, bool isVarArg,
1766                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1767                         LLVMContext &Context) const {
1768   SmallVector<CCValAssign, 16> RVLocs;
1769   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1770                  RVLocs, Context);
1771   return CCInfo.CheckReturn(Outs, RetCC_X86);
1772 }
1773
1774 SDValue
1775 X86TargetLowering::LowerReturn(SDValue Chain,
1776                                CallingConv::ID CallConv, bool isVarArg,
1777                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1778                                const SmallVectorImpl<SDValue> &OutVals,
1779                                SDLoc dl, SelectionDAG &DAG) const {
1780   MachineFunction &MF = DAG.getMachineFunction();
1781   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1782
1783   SmallVector<CCValAssign, 16> RVLocs;
1784   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1785                  RVLocs, *DAG.getContext());
1786   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1787
1788   SDValue Flag;
1789   SmallVector<SDValue, 6> RetOps;
1790   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1791   // Operand #1 = Bytes To Pop
1792   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1793                    MVT::i16));
1794
1795   // Copy the result values into the output registers.
1796   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1797     CCValAssign &VA = RVLocs[i];
1798     assert(VA.isRegLoc() && "Can only return in registers!");
1799     SDValue ValToCopy = OutVals[i];
1800     EVT ValVT = ValToCopy.getValueType();
1801
1802     // Promote values to the appropriate types
1803     if (VA.getLocInfo() == CCValAssign::SExt)
1804       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1805     else if (VA.getLocInfo() == CCValAssign::ZExt)
1806       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1807     else if (VA.getLocInfo() == CCValAssign::AExt)
1808       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1809     else if (VA.getLocInfo() == CCValAssign::BCvt)
1810       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1811
1812     // If this is x86-64, and we disabled SSE, we can't return FP values,
1813     // or SSE or MMX vectors.
1814     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1815          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1816           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1817       report_fatal_error("SSE register return with SSE disabled");
1818     }
1819     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1820     // llvm-gcc has never done it right and no one has noticed, so this
1821     // should be OK for now.
1822     if (ValVT == MVT::f64 &&
1823         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1824       report_fatal_error("SSE2 register return with SSE2 disabled");
1825
1826     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1827     // the RET instruction and handled by the FP Stackifier.
1828     if (VA.getLocReg() == X86::ST0 ||
1829         VA.getLocReg() == X86::ST1) {
1830       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1831       // change the value to the FP stack register class.
1832       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1833         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1834       RetOps.push_back(ValToCopy);
1835       // Don't emit a copytoreg.
1836       continue;
1837     }
1838
1839     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1840     // which is returned in RAX / RDX.
1841     if (Subtarget->is64Bit()) {
1842       if (ValVT == MVT::x86mmx) {
1843         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1844           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1845           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1846                                   ValToCopy);
1847           // If we don't have SSE2 available, convert to v4f32 so the generated
1848           // register is legal.
1849           if (!Subtarget->hasSSE2())
1850             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1851         }
1852       }
1853     }
1854
1855     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1856     Flag = Chain.getValue(1);
1857     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1858   }
1859
1860   // The x86-64 ABIs require that for returning structs by value we copy
1861   // the sret argument into %rax/%eax (depending on ABI) for the return.
1862   // Win32 requires us to put the sret argument to %eax as well.
1863   // We saved the argument into a virtual register in the entry block,
1864   // so now we copy the value out and into %rax/%eax.
1865   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1866       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1867     MachineFunction &MF = DAG.getMachineFunction();
1868     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1869     unsigned Reg = FuncInfo->getSRetReturnReg();
1870     assert(Reg &&
1871            "SRetReturnReg should have been set in LowerFormalArguments().");
1872     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1873
1874     unsigned RetValReg
1875         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1876           X86::RAX : X86::EAX;
1877     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1878     Flag = Chain.getValue(1);
1879
1880     // RAX/EAX now acts like a return value.
1881     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1882   }
1883
1884   RetOps[0] = Chain;  // Update chain.
1885
1886   // Add the flag if we have it.
1887   if (Flag.getNode())
1888     RetOps.push_back(Flag);
1889
1890   return DAG.getNode(X86ISD::RET_FLAG, dl,
1891                      MVT::Other, &RetOps[0], RetOps.size());
1892 }
1893
1894 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1895   if (N->getNumValues() != 1)
1896     return false;
1897   if (!N->hasNUsesOfValue(1, 0))
1898     return false;
1899
1900   SDValue TCChain = Chain;
1901   SDNode *Copy = *N->use_begin();
1902   if (Copy->getOpcode() == ISD::CopyToReg) {
1903     // If the copy has a glue operand, we conservatively assume it isn't safe to
1904     // perform a tail call.
1905     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1906       return false;
1907     TCChain = Copy->getOperand(0);
1908   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1909     return false;
1910
1911   bool HasRet = false;
1912   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1913        UI != UE; ++UI) {
1914     if (UI->getOpcode() != X86ISD::RET_FLAG)
1915       return false;
1916     HasRet = true;
1917   }
1918
1919   if (!HasRet)
1920     return false;
1921
1922   Chain = TCChain;
1923   return true;
1924 }
1925
1926 MVT
1927 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1928                                             ISD::NodeType ExtendKind) const {
1929   MVT ReturnMVT;
1930   // TODO: Is this also valid on 32-bit?
1931   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1932     ReturnMVT = MVT::i8;
1933   else
1934     ReturnMVT = MVT::i32;
1935
1936   MVT MinVT = getRegisterType(ReturnMVT);
1937   return VT.bitsLT(MinVT) ? MinVT : VT;
1938 }
1939
1940 /// LowerCallResult - Lower the result values of a call into the
1941 /// appropriate copies out of appropriate physical registers.
1942 ///
1943 SDValue
1944 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1945                                    CallingConv::ID CallConv, bool isVarArg,
1946                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1947                                    SDLoc dl, SelectionDAG &DAG,
1948                                    SmallVectorImpl<SDValue> &InVals) const {
1949
1950   // Assign locations to each value returned by this call.
1951   SmallVector<CCValAssign, 16> RVLocs;
1952   bool Is64Bit = Subtarget->is64Bit();
1953   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1954                  getTargetMachine(), RVLocs, *DAG.getContext());
1955   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1956
1957   // Copy all of the result registers out of their specified physreg.
1958   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1959     CCValAssign &VA = RVLocs[i];
1960     EVT CopyVT = VA.getValVT();
1961
1962     // If this is x86-64, and we disabled SSE, we can't return FP values
1963     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1964         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1965       report_fatal_error("SSE register return with SSE disabled");
1966     }
1967
1968     SDValue Val;
1969
1970     // If this is a call to a function that returns an fp value on the floating
1971     // point stack, we must guarantee the value is popped from the stack, so
1972     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1973     // if the return value is not used. We use the FpPOP_RETVAL instruction
1974     // instead.
1975     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1976       // If we prefer to use the value in xmm registers, copy it out as f80 and
1977       // use a truncate to move it from fp stack reg to xmm reg.
1978       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1979       SDValue Ops[] = { Chain, InFlag };
1980       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1981                                          MVT::Other, MVT::Glue, Ops), 1);
1982       Val = Chain.getValue(0);
1983
1984       // Round the f80 to the right size, which also moves it to the appropriate
1985       // xmm register.
1986       if (CopyVT != VA.getValVT())
1987         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1988                           // This truncation won't change the value.
1989                           DAG.getIntPtrConstant(1));
1990     } else {
1991       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1992                                  CopyVT, InFlag).getValue(1);
1993       Val = Chain.getValue(0);
1994     }
1995     InFlag = Chain.getValue(2);
1996     InVals.push_back(Val);
1997   }
1998
1999   return Chain;
2000 }
2001
2002 //===----------------------------------------------------------------------===//
2003 //                C & StdCall & Fast Calling Convention implementation
2004 //===----------------------------------------------------------------------===//
2005 //  StdCall calling convention seems to be standard for many Windows' API
2006 //  routines and around. It differs from C calling convention just a little:
2007 //  callee should clean up the stack, not caller. Symbols should be also
2008 //  decorated in some fancy way :) It doesn't support any vector arguments.
2009 //  For info on fast calling convention see Fast Calling Convention (tail call)
2010 //  implementation LowerX86_32FastCCCallTo.
2011
2012 /// CallIsStructReturn - Determines whether a call uses struct return
2013 /// semantics.
2014 enum StructReturnType {
2015   NotStructReturn,
2016   RegStructReturn,
2017   StackStructReturn
2018 };
2019 static StructReturnType
2020 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2021   if (Outs.empty())
2022     return NotStructReturn;
2023
2024   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2025   if (!Flags.isSRet())
2026     return NotStructReturn;
2027   if (Flags.isInReg())
2028     return RegStructReturn;
2029   return StackStructReturn;
2030 }
2031
2032 /// ArgsAreStructReturn - Determines whether a function uses struct
2033 /// return semantics.
2034 static StructReturnType
2035 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2036   if (Ins.empty())
2037     return NotStructReturn;
2038
2039   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2040   if (!Flags.isSRet())
2041     return NotStructReturn;
2042   if (Flags.isInReg())
2043     return RegStructReturn;
2044   return StackStructReturn;
2045 }
2046
2047 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2048 /// by "Src" to address "Dst" with size and alignment information specified by
2049 /// the specific parameter attribute. The copy will be passed as a byval
2050 /// function parameter.
2051 static SDValue
2052 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2053                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2054                           SDLoc dl) {
2055   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2056
2057   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2058                        /*isVolatile*/false, /*AlwaysInline=*/true,
2059                        MachinePointerInfo(), MachinePointerInfo());
2060 }
2061
2062 /// IsTailCallConvention - Return true if the calling convention is one that
2063 /// supports tail call optimization.
2064 static bool IsTailCallConvention(CallingConv::ID CC) {
2065   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2066           CC == CallingConv::HiPE);
2067 }
2068
2069 /// \brief Return true if the calling convention is a C calling convention.
2070 static bool IsCCallConvention(CallingConv::ID CC) {
2071   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2072           CC == CallingConv::X86_64_SysV);
2073 }
2074
2075 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2076   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2077     return false;
2078
2079   CallSite CS(CI);
2080   CallingConv::ID CalleeCC = CS.getCallingConv();
2081   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2082     return false;
2083
2084   return true;
2085 }
2086
2087 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2088 /// a tailcall target by changing its ABI.
2089 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2090                                    bool GuaranteedTailCallOpt) {
2091   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2092 }
2093
2094 SDValue
2095 X86TargetLowering::LowerMemArgument(SDValue Chain,
2096                                     CallingConv::ID CallConv,
2097                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2098                                     SDLoc dl, SelectionDAG &DAG,
2099                                     const CCValAssign &VA,
2100                                     MachineFrameInfo *MFI,
2101                                     unsigned i) const {
2102   // Create the nodes corresponding to a load from this parameter slot.
2103   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2104   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2105                               getTargetMachine().Options.GuaranteedTailCallOpt);
2106   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2107   EVT ValVT;
2108
2109   // If value is passed by pointer we have address passed instead of the value
2110   // itself.
2111   if (VA.getLocInfo() == CCValAssign::Indirect)
2112     ValVT = VA.getLocVT();
2113   else
2114     ValVT = VA.getValVT();
2115
2116   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2117   // changed with more analysis.
2118   // In case of tail call optimization mark all arguments mutable. Since they
2119   // could be overwritten by lowering of arguments in case of a tail call.
2120   if (Flags.isByVal()) {
2121     unsigned Bytes = Flags.getByValSize();
2122     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2123     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2124     return DAG.getFrameIndex(FI, getPointerTy());
2125   } else {
2126     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2127                                     VA.getLocMemOffset(), isImmutable);
2128     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2129     return DAG.getLoad(ValVT, dl, Chain, FIN,
2130                        MachinePointerInfo::getFixedStack(FI),
2131                        false, false, false, 0);
2132   }
2133 }
2134
2135 SDValue
2136 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2137                                         CallingConv::ID CallConv,
2138                                         bool isVarArg,
2139                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2140                                         SDLoc dl,
2141                                         SelectionDAG &DAG,
2142                                         SmallVectorImpl<SDValue> &InVals)
2143                                           const {
2144   MachineFunction &MF = DAG.getMachineFunction();
2145   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2146
2147   const Function* Fn = MF.getFunction();
2148   if (Fn->hasExternalLinkage() &&
2149       Subtarget->isTargetCygMing() &&
2150       Fn->getName() == "main")
2151     FuncInfo->setForceFramePointer(true);
2152
2153   MachineFrameInfo *MFI = MF.getFrameInfo();
2154   bool Is64Bit = Subtarget->is64Bit();
2155   bool IsWindows = Subtarget->isTargetWindows();
2156   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2157
2158   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2159          "Var args not supported with calling convention fastcc, ghc or hipe");
2160
2161   // Assign locations to all of the incoming arguments.
2162   SmallVector<CCValAssign, 16> ArgLocs;
2163   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2164                  ArgLocs, *DAG.getContext());
2165
2166   // Allocate shadow area for Win64
2167   if (IsWin64)
2168     CCInfo.AllocateStack(32, 8);
2169
2170   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2171
2172   unsigned LastVal = ~0U;
2173   SDValue ArgValue;
2174   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2175     CCValAssign &VA = ArgLocs[i];
2176     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2177     // places.
2178     assert(VA.getValNo() != LastVal &&
2179            "Don't support value assigned to multiple locs yet");
2180     (void)LastVal;
2181     LastVal = VA.getValNo();
2182
2183     if (VA.isRegLoc()) {
2184       EVT RegVT = VA.getLocVT();
2185       const TargetRegisterClass *RC;
2186       if (RegVT == MVT::i32)
2187         RC = &X86::GR32RegClass;
2188       else if (Is64Bit && RegVT == MVT::i64)
2189         RC = &X86::GR64RegClass;
2190       else if (RegVT == MVT::f32)
2191         RC = &X86::FR32RegClass;
2192       else if (RegVT == MVT::f64)
2193         RC = &X86::FR64RegClass;
2194       else if (RegVT.is512BitVector())
2195         RC = &X86::VR512RegClass;
2196       else if (RegVT.is256BitVector())
2197         RC = &X86::VR256RegClass;
2198       else if (RegVT.is128BitVector())
2199         RC = &X86::VR128RegClass;
2200       else if (RegVT == MVT::x86mmx)
2201         RC = &X86::VR64RegClass;
2202       else if (RegVT == MVT::v8i1)
2203         RC = &X86::VK8RegClass;
2204       else if (RegVT == MVT::v16i1)
2205         RC = &X86::VK16RegClass;
2206       else
2207         llvm_unreachable("Unknown argument type!");
2208
2209       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2210       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2211
2212       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2213       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2214       // right size.
2215       if (VA.getLocInfo() == CCValAssign::SExt)
2216         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2217                                DAG.getValueType(VA.getValVT()));
2218       else if (VA.getLocInfo() == CCValAssign::ZExt)
2219         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2220                                DAG.getValueType(VA.getValVT()));
2221       else if (VA.getLocInfo() == CCValAssign::BCvt)
2222         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2223
2224       if (VA.isExtInLoc()) {
2225         // Handle MMX values passed in XMM regs.
2226         if (RegVT.isVector())
2227           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2228         else
2229           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2230       }
2231     } else {
2232       assert(VA.isMemLoc());
2233       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2234     }
2235
2236     // If value is passed via pointer - do a load.
2237     if (VA.getLocInfo() == CCValAssign::Indirect)
2238       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2239                              MachinePointerInfo(), false, false, false, 0);
2240
2241     InVals.push_back(ArgValue);
2242   }
2243
2244   // The x86-64 ABIs require that for returning structs by value we copy
2245   // the sret argument into %rax/%eax (depending on ABI) for the return.
2246   // Win32 requires us to put the sret argument to %eax as well.
2247   // Save the argument into a virtual register so that we can access it
2248   // from the return points.
2249   if (MF.getFunction()->hasStructRetAttr() &&
2250       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2251     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2252     unsigned Reg = FuncInfo->getSRetReturnReg();
2253     if (!Reg) {
2254       MVT PtrTy = getPointerTy();
2255       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2256       FuncInfo->setSRetReturnReg(Reg);
2257     }
2258     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2259     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2260   }
2261
2262   unsigned StackSize = CCInfo.getNextStackOffset();
2263   // Align stack specially for tail calls.
2264   if (FuncIsMadeTailCallSafe(CallConv,
2265                              MF.getTarget().Options.GuaranteedTailCallOpt))
2266     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2267
2268   // If the function takes variable number of arguments, make a frame index for
2269   // the start of the first vararg value... for expansion of llvm.va_start.
2270   if (isVarArg) {
2271     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2272                     CallConv != CallingConv::X86_ThisCall)) {
2273       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2274     }
2275     if (Is64Bit) {
2276       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2277
2278       // FIXME: We should really autogenerate these arrays
2279       static const uint16_t GPR64ArgRegsWin64[] = {
2280         X86::RCX, X86::RDX, X86::R8,  X86::R9
2281       };
2282       static const uint16_t GPR64ArgRegs64Bit[] = {
2283         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2284       };
2285       static const uint16_t XMMArgRegs64Bit[] = {
2286         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2287         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2288       };
2289       const uint16_t *GPR64ArgRegs;
2290       unsigned NumXMMRegs = 0;
2291
2292       if (IsWin64) {
2293         // The XMM registers which might contain var arg parameters are shadowed
2294         // in their paired GPR.  So we only need to save the GPR to their home
2295         // slots.
2296         TotalNumIntRegs = 4;
2297         GPR64ArgRegs = GPR64ArgRegsWin64;
2298       } else {
2299         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2300         GPR64ArgRegs = GPR64ArgRegs64Bit;
2301
2302         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2303                                                 TotalNumXMMRegs);
2304       }
2305       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2306                                                        TotalNumIntRegs);
2307
2308       bool NoImplicitFloatOps = Fn->getAttributes().
2309         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2310       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2311              "SSE register cannot be used when SSE is disabled!");
2312       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2313                NoImplicitFloatOps) &&
2314              "SSE register cannot be used when SSE is disabled!");
2315       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2316           !Subtarget->hasSSE1())
2317         // Kernel mode asks for SSE to be disabled, so don't push them
2318         // on the stack.
2319         TotalNumXMMRegs = 0;
2320
2321       if (IsWin64) {
2322         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2323         // Get to the caller-allocated home save location.  Add 8 to account
2324         // for the return address.
2325         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2326         FuncInfo->setRegSaveFrameIndex(
2327           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2328         // Fixup to set vararg frame on shadow area (4 x i64).
2329         if (NumIntRegs < 4)
2330           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2331       } else {
2332         // For X86-64, if there are vararg parameters that are passed via
2333         // registers, then we must store them to their spots on the stack so
2334         // they may be loaded by deferencing the result of va_next.
2335         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2336         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2337         FuncInfo->setRegSaveFrameIndex(
2338           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2339                                false));
2340       }
2341
2342       // Store the integer parameter registers.
2343       SmallVector<SDValue, 8> MemOps;
2344       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2345                                         getPointerTy());
2346       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2347       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2348         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2349                                   DAG.getIntPtrConstant(Offset));
2350         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2351                                      &X86::GR64RegClass);
2352         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2353         SDValue Store =
2354           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2355                        MachinePointerInfo::getFixedStack(
2356                          FuncInfo->getRegSaveFrameIndex(), Offset),
2357                        false, false, 0);
2358         MemOps.push_back(Store);
2359         Offset += 8;
2360       }
2361
2362       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2363         // Now store the XMM (fp + vector) parameter registers.
2364         SmallVector<SDValue, 11> SaveXMMOps;
2365         SaveXMMOps.push_back(Chain);
2366
2367         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2368         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2369         SaveXMMOps.push_back(ALVal);
2370
2371         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2372                                FuncInfo->getRegSaveFrameIndex()));
2373         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2374                                FuncInfo->getVarArgsFPOffset()));
2375
2376         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2377           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2378                                        &X86::VR128RegClass);
2379           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2380           SaveXMMOps.push_back(Val);
2381         }
2382         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2383                                      MVT::Other,
2384                                      &SaveXMMOps[0], SaveXMMOps.size()));
2385       }
2386
2387       if (!MemOps.empty())
2388         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2389                             &MemOps[0], MemOps.size());
2390     }
2391   }
2392
2393   // Some CCs need callee pop.
2394   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2395                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2396     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2397   } else {
2398     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2399     // If this is an sret function, the return should pop the hidden pointer.
2400     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2401         argsAreStructReturn(Ins) == StackStructReturn)
2402       FuncInfo->setBytesToPopOnReturn(4);
2403   }
2404
2405   if (!Is64Bit) {
2406     // RegSaveFrameIndex is X86-64 only.
2407     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2408     if (CallConv == CallingConv::X86_FastCall ||
2409         CallConv == CallingConv::X86_ThisCall)
2410       // fastcc functions can't have varargs.
2411       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2412   }
2413
2414   FuncInfo->setArgumentStackSize(StackSize);
2415
2416   return Chain;
2417 }
2418
2419 SDValue
2420 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2421                                     SDValue StackPtr, SDValue Arg,
2422                                     SDLoc dl, SelectionDAG &DAG,
2423                                     const CCValAssign &VA,
2424                                     ISD::ArgFlagsTy Flags) const {
2425   unsigned LocMemOffset = VA.getLocMemOffset();
2426   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2427   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2428   if (Flags.isByVal())
2429     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2430
2431   return DAG.getStore(Chain, dl, Arg, PtrOff,
2432                       MachinePointerInfo::getStack(LocMemOffset),
2433                       false, false, 0);
2434 }
2435
2436 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2437 /// optimization is performed and it is required.
2438 SDValue
2439 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2440                                            SDValue &OutRetAddr, SDValue Chain,
2441                                            bool IsTailCall, bool Is64Bit,
2442                                            int FPDiff, SDLoc dl) const {
2443   // Adjust the Return address stack slot.
2444   EVT VT = getPointerTy();
2445   OutRetAddr = getReturnAddressFrameIndex(DAG);
2446
2447   // Load the "old" Return address.
2448   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2449                            false, false, false, 0);
2450   return SDValue(OutRetAddr.getNode(), 1);
2451 }
2452
2453 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2454 /// optimization is performed and it is required (FPDiff!=0).
2455 static SDValue
2456 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2457                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2458                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2459   // Store the return address to the appropriate stack slot.
2460   if (!FPDiff) return Chain;
2461   // Calculate the new stack slot for the return address.
2462   int NewReturnAddrFI =
2463     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2464                                          false);
2465   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2466   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2467                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2468                        false, false, 0);
2469   return Chain;
2470 }
2471
2472 SDValue
2473 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2474                              SmallVectorImpl<SDValue> &InVals) const {
2475   SelectionDAG &DAG                     = CLI.DAG;
2476   SDLoc &dl                             = CLI.DL;
2477   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2478   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2479   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2480   SDValue Chain                         = CLI.Chain;
2481   SDValue Callee                        = CLI.Callee;
2482   CallingConv::ID CallConv              = CLI.CallConv;
2483   bool &isTailCall                      = CLI.IsTailCall;
2484   bool isVarArg                         = CLI.IsVarArg;
2485
2486   MachineFunction &MF = DAG.getMachineFunction();
2487   bool Is64Bit        = Subtarget->is64Bit();
2488   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2489   bool IsWindows      = Subtarget->isTargetWindows();
2490   StructReturnType SR = callIsStructReturn(Outs);
2491   bool IsSibcall      = false;
2492
2493   if (MF.getTarget().Options.DisableTailCalls)
2494     isTailCall = false;
2495
2496   if (isTailCall) {
2497     // Check if it's really possible to do a tail call.
2498     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2499                     isVarArg, SR != NotStructReturn,
2500                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2501                     Outs, OutVals, Ins, DAG);
2502
2503     // Sibcalls are automatically detected tailcalls which do not require
2504     // ABI changes.
2505     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2506       IsSibcall = true;
2507
2508     if (isTailCall)
2509       ++NumTailCalls;
2510   }
2511
2512   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2513          "Var args not supported with calling convention fastcc, ghc or hipe");
2514
2515   // Analyze operands of the call, assigning locations to each operand.
2516   SmallVector<CCValAssign, 16> ArgLocs;
2517   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2518                  ArgLocs, *DAG.getContext());
2519
2520   // Allocate shadow area for Win64
2521   if (IsWin64)
2522     CCInfo.AllocateStack(32, 8);
2523
2524   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2525
2526   // Get a count of how many bytes are to be pushed on the stack.
2527   unsigned NumBytes = CCInfo.getNextStackOffset();
2528   if (IsSibcall)
2529     // This is a sibcall. The memory operands are available in caller's
2530     // own caller's stack.
2531     NumBytes = 0;
2532   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2533            IsTailCallConvention(CallConv))
2534     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2535
2536   int FPDiff = 0;
2537   if (isTailCall && !IsSibcall) {
2538     // Lower arguments at fp - stackoffset + fpdiff.
2539     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2540     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2541
2542     FPDiff = NumBytesCallerPushed - NumBytes;
2543
2544     // Set the delta of movement of the returnaddr stackslot.
2545     // But only set if delta is greater than previous delta.
2546     if (FPDiff < X86Info->getTCReturnAddrDelta())
2547       X86Info->setTCReturnAddrDelta(FPDiff);
2548   }
2549
2550   if (!IsSibcall)
2551     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2552                                  dl);
2553
2554   SDValue RetAddrFrIdx;
2555   // Load return address for tail calls.
2556   if (isTailCall && FPDiff)
2557     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2558                                     Is64Bit, FPDiff, dl);
2559
2560   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2561   SmallVector<SDValue, 8> MemOpChains;
2562   SDValue StackPtr;
2563
2564   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2565   // of tail call optimization arguments are handle later.
2566   const X86RegisterInfo *RegInfo =
2567     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2568   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2569     CCValAssign &VA = ArgLocs[i];
2570     EVT RegVT = VA.getLocVT();
2571     SDValue Arg = OutVals[i];
2572     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2573     bool isByVal = Flags.isByVal();
2574
2575     // Promote the value if needed.
2576     switch (VA.getLocInfo()) {
2577     default: llvm_unreachable("Unknown loc info!");
2578     case CCValAssign::Full: break;
2579     case CCValAssign::SExt:
2580       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2581       break;
2582     case CCValAssign::ZExt:
2583       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2584       break;
2585     case CCValAssign::AExt:
2586       if (RegVT.is128BitVector()) {
2587         // Special case: passing MMX values in XMM registers.
2588         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2589         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2590         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2591       } else
2592         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2593       break;
2594     case CCValAssign::BCvt:
2595       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2596       break;
2597     case CCValAssign::Indirect: {
2598       // Store the argument.
2599       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2600       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2601       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2602                            MachinePointerInfo::getFixedStack(FI),
2603                            false, false, 0);
2604       Arg = SpillSlot;
2605       break;
2606     }
2607     }
2608
2609     if (VA.isRegLoc()) {
2610       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2611       if (isVarArg && IsWin64) {
2612         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2613         // shadow reg if callee is a varargs function.
2614         unsigned ShadowReg = 0;
2615         switch (VA.getLocReg()) {
2616         case X86::XMM0: ShadowReg = X86::RCX; break;
2617         case X86::XMM1: ShadowReg = X86::RDX; break;
2618         case X86::XMM2: ShadowReg = X86::R8; break;
2619         case X86::XMM3: ShadowReg = X86::R9; break;
2620         }
2621         if (ShadowReg)
2622           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2623       }
2624     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2625       assert(VA.isMemLoc());
2626       if (StackPtr.getNode() == 0)
2627         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2628                                       getPointerTy());
2629       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2630                                              dl, DAG, VA, Flags));
2631     }
2632   }
2633
2634   if (!MemOpChains.empty())
2635     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2636                         &MemOpChains[0], MemOpChains.size());
2637
2638   if (Subtarget->isPICStyleGOT()) {
2639     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2640     // GOT pointer.
2641     if (!isTailCall) {
2642       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2643                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2644     } else {
2645       // If we are tail calling and generating PIC/GOT style code load the
2646       // address of the callee into ECX. The value in ecx is used as target of
2647       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2648       // for tail calls on PIC/GOT architectures. Normally we would just put the
2649       // address of GOT into ebx and then call target@PLT. But for tail calls
2650       // ebx would be restored (since ebx is callee saved) before jumping to the
2651       // target@PLT.
2652
2653       // Note: The actual moving to ECX is done further down.
2654       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2655       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2656           !G->getGlobal()->hasProtectedVisibility())
2657         Callee = LowerGlobalAddress(Callee, DAG);
2658       else if (isa<ExternalSymbolSDNode>(Callee))
2659         Callee = LowerExternalSymbol(Callee, DAG);
2660     }
2661   }
2662
2663   if (Is64Bit && isVarArg && !IsWin64) {
2664     // From AMD64 ABI document:
2665     // For calls that may call functions that use varargs or stdargs
2666     // (prototype-less calls or calls to functions containing ellipsis (...) in
2667     // the declaration) %al is used as hidden argument to specify the number
2668     // of SSE registers used. The contents of %al do not need to match exactly
2669     // the number of registers, but must be an ubound on the number of SSE
2670     // registers used and is in the range 0 - 8 inclusive.
2671
2672     // Count the number of XMM registers allocated.
2673     static const uint16_t XMMArgRegs[] = {
2674       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2675       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2676     };
2677     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2678     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2679            && "SSE registers cannot be used when SSE is disabled");
2680
2681     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2682                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2683   }
2684
2685   // For tail calls lower the arguments to the 'real' stack slot.
2686   if (isTailCall) {
2687     // Force all the incoming stack arguments to be loaded from the stack
2688     // before any new outgoing arguments are stored to the stack, because the
2689     // outgoing stack slots may alias the incoming argument stack slots, and
2690     // the alias isn't otherwise explicit. This is slightly more conservative
2691     // than necessary, because it means that each store effectively depends
2692     // on every argument instead of just those arguments it would clobber.
2693     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2694
2695     SmallVector<SDValue, 8> MemOpChains2;
2696     SDValue FIN;
2697     int FI = 0;
2698     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2699       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2700         CCValAssign &VA = ArgLocs[i];
2701         if (VA.isRegLoc())
2702           continue;
2703         assert(VA.isMemLoc());
2704         SDValue Arg = OutVals[i];
2705         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2706         // Create frame index.
2707         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2708         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2709         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2710         FIN = DAG.getFrameIndex(FI, getPointerTy());
2711
2712         if (Flags.isByVal()) {
2713           // Copy relative to framepointer.
2714           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2715           if (StackPtr.getNode() == 0)
2716             StackPtr = DAG.getCopyFromReg(Chain, dl,
2717                                           RegInfo->getStackRegister(),
2718                                           getPointerTy());
2719           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2720
2721           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2722                                                            ArgChain,
2723                                                            Flags, DAG, dl));
2724         } else {
2725           // Store relative to framepointer.
2726           MemOpChains2.push_back(
2727             DAG.getStore(ArgChain, dl, Arg, FIN,
2728                          MachinePointerInfo::getFixedStack(FI),
2729                          false, false, 0));
2730         }
2731       }
2732     }
2733
2734     if (!MemOpChains2.empty())
2735       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2736                           &MemOpChains2[0], MemOpChains2.size());
2737
2738     // Store the return address to the appropriate stack slot.
2739     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2740                                      getPointerTy(), RegInfo->getSlotSize(),
2741                                      FPDiff, dl);
2742   }
2743
2744   // Build a sequence of copy-to-reg nodes chained together with token chain
2745   // and flag operands which copy the outgoing args into registers.
2746   SDValue InFlag;
2747   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2748     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2749                              RegsToPass[i].second, InFlag);
2750     InFlag = Chain.getValue(1);
2751   }
2752
2753   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2754     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2755     // In the 64-bit large code model, we have to make all calls
2756     // through a register, since the call instruction's 32-bit
2757     // pc-relative offset may not be large enough to hold the whole
2758     // address.
2759   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2760     // If the callee is a GlobalAddress node (quite common, every direct call
2761     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2762     // it.
2763
2764     // We should use extra load for direct calls to dllimported functions in
2765     // non-JIT mode.
2766     const GlobalValue *GV = G->getGlobal();
2767     if (!GV->hasDLLImportLinkage()) {
2768       unsigned char OpFlags = 0;
2769       bool ExtraLoad = false;
2770       unsigned WrapperKind = ISD::DELETED_NODE;
2771
2772       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2773       // external symbols most go through the PLT in PIC mode.  If the symbol
2774       // has hidden or protected visibility, or if it is static or local, then
2775       // we don't need to use the PLT - we can directly call it.
2776       if (Subtarget->isTargetELF() &&
2777           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2778           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2779         OpFlags = X86II::MO_PLT;
2780       } else if (Subtarget->isPICStyleStubAny() &&
2781                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2782                  (!Subtarget->getTargetTriple().isMacOSX() ||
2783                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2784         // PC-relative references to external symbols should go through $stub,
2785         // unless we're building with the leopard linker or later, which
2786         // automatically synthesizes these stubs.
2787         OpFlags = X86II::MO_DARWIN_STUB;
2788       } else if (Subtarget->isPICStyleRIPRel() &&
2789                  isa<Function>(GV) &&
2790                  cast<Function>(GV)->getAttributes().
2791                    hasAttribute(AttributeSet::FunctionIndex,
2792                                 Attribute::NonLazyBind)) {
2793         // If the function is marked as non-lazy, generate an indirect call
2794         // which loads from the GOT directly. This avoids runtime overhead
2795         // at the cost of eager binding (and one extra byte of encoding).
2796         OpFlags = X86II::MO_GOTPCREL;
2797         WrapperKind = X86ISD::WrapperRIP;
2798         ExtraLoad = true;
2799       }
2800
2801       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2802                                           G->getOffset(), OpFlags);
2803
2804       // Add a wrapper if needed.
2805       if (WrapperKind != ISD::DELETED_NODE)
2806         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2807       // Add extra indirection if needed.
2808       if (ExtraLoad)
2809         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2810                              MachinePointerInfo::getGOT(),
2811                              false, false, false, 0);
2812     }
2813   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2814     unsigned char OpFlags = 0;
2815
2816     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2817     // external symbols should go through the PLT.
2818     if (Subtarget->isTargetELF() &&
2819         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2820       OpFlags = X86II::MO_PLT;
2821     } else if (Subtarget->isPICStyleStubAny() &&
2822                (!Subtarget->getTargetTriple().isMacOSX() ||
2823                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2824       // PC-relative references to external symbols should go through $stub,
2825       // unless we're building with the leopard linker or later, which
2826       // automatically synthesizes these stubs.
2827       OpFlags = X86II::MO_DARWIN_STUB;
2828     }
2829
2830     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2831                                          OpFlags);
2832   }
2833
2834   // Returns a chain & a flag for retval copy to use.
2835   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2836   SmallVector<SDValue, 8> Ops;
2837
2838   if (!IsSibcall && isTailCall) {
2839     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2840                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2841     InFlag = Chain.getValue(1);
2842   }
2843
2844   Ops.push_back(Chain);
2845   Ops.push_back(Callee);
2846
2847   if (isTailCall)
2848     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2849
2850   // Add argument registers to the end of the list so that they are known live
2851   // into the call.
2852   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2853     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2854                                   RegsToPass[i].second.getValueType()));
2855
2856   // Add a register mask operand representing the call-preserved registers.
2857   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2858   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2859   assert(Mask && "Missing call preserved mask for calling convention");
2860   Ops.push_back(DAG.getRegisterMask(Mask));
2861
2862   if (InFlag.getNode())
2863     Ops.push_back(InFlag);
2864
2865   if (isTailCall) {
2866     // We used to do:
2867     //// If this is the first return lowered for this function, add the regs
2868     //// to the liveout set for the function.
2869     // This isn't right, although it's probably harmless on x86; liveouts
2870     // should be computed from returns not tail calls.  Consider a void
2871     // function making a tail call to a function returning int.
2872     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2873   }
2874
2875   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2876   InFlag = Chain.getValue(1);
2877
2878   // Create the CALLSEQ_END node.
2879   unsigned NumBytesForCalleeToPush;
2880   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2881                        getTargetMachine().Options.GuaranteedTailCallOpt))
2882     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2883   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2884            SR == StackStructReturn)
2885     // If this is a call to a struct-return function, the callee
2886     // pops the hidden struct pointer, so we have to push it back.
2887     // This is common for Darwin/X86, Linux & Mingw32 targets.
2888     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2889     NumBytesForCalleeToPush = 4;
2890   else
2891     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2892
2893   // Returns a flag for retval copy to use.
2894   if (!IsSibcall) {
2895     Chain = DAG.getCALLSEQ_END(Chain,
2896                                DAG.getIntPtrConstant(NumBytes, true),
2897                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2898                                                      true),
2899                                InFlag, dl);
2900     InFlag = Chain.getValue(1);
2901   }
2902
2903   // Handle result values, copying them out of physregs into vregs that we
2904   // return.
2905   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2906                          Ins, dl, DAG, InVals);
2907 }
2908
2909 //===----------------------------------------------------------------------===//
2910 //                Fast Calling Convention (tail call) implementation
2911 //===----------------------------------------------------------------------===//
2912
2913 //  Like std call, callee cleans arguments, convention except that ECX is
2914 //  reserved for storing the tail called function address. Only 2 registers are
2915 //  free for argument passing (inreg). Tail call optimization is performed
2916 //  provided:
2917 //                * tailcallopt is enabled
2918 //                * caller/callee are fastcc
2919 //  On X86_64 architecture with GOT-style position independent code only local
2920 //  (within module) calls are supported at the moment.
2921 //  To keep the stack aligned according to platform abi the function
2922 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2923 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2924 //  If a tail called function callee has more arguments than the caller the
2925 //  caller needs to make sure that there is room to move the RETADDR to. This is
2926 //  achieved by reserving an area the size of the argument delta right after the
2927 //  original REtADDR, but before the saved framepointer or the spilled registers
2928 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2929 //  stack layout:
2930 //    arg1
2931 //    arg2
2932 //    RETADDR
2933 //    [ new RETADDR
2934 //      move area ]
2935 //    (possible EBP)
2936 //    ESI
2937 //    EDI
2938 //    local1 ..
2939
2940 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2941 /// for a 16 byte align requirement.
2942 unsigned
2943 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2944                                                SelectionDAG& DAG) const {
2945   MachineFunction &MF = DAG.getMachineFunction();
2946   const TargetMachine &TM = MF.getTarget();
2947   const X86RegisterInfo *RegInfo =
2948     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2949   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2950   unsigned StackAlignment = TFI.getStackAlignment();
2951   uint64_t AlignMask = StackAlignment - 1;
2952   int64_t Offset = StackSize;
2953   unsigned SlotSize = RegInfo->getSlotSize();
2954   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2955     // Number smaller than 12 so just add the difference.
2956     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2957   } else {
2958     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2959     Offset = ((~AlignMask) & Offset) + StackAlignment +
2960       (StackAlignment-SlotSize);
2961   }
2962   return Offset;
2963 }
2964
2965 /// MatchingStackOffset - Return true if the given stack call argument is
2966 /// already available in the same position (relatively) of the caller's
2967 /// incoming argument stack.
2968 static
2969 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2970                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2971                          const X86InstrInfo *TII) {
2972   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2973   int FI = INT_MAX;
2974   if (Arg.getOpcode() == ISD::CopyFromReg) {
2975     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2976     if (!TargetRegisterInfo::isVirtualRegister(VR))
2977       return false;
2978     MachineInstr *Def = MRI->getVRegDef(VR);
2979     if (!Def)
2980       return false;
2981     if (!Flags.isByVal()) {
2982       if (!TII->isLoadFromStackSlot(Def, FI))
2983         return false;
2984     } else {
2985       unsigned Opcode = Def->getOpcode();
2986       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2987           Def->getOperand(1).isFI()) {
2988         FI = Def->getOperand(1).getIndex();
2989         Bytes = Flags.getByValSize();
2990       } else
2991         return false;
2992     }
2993   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2994     if (Flags.isByVal())
2995       // ByVal argument is passed in as a pointer but it's now being
2996       // dereferenced. e.g.
2997       // define @foo(%struct.X* %A) {
2998       //   tail call @bar(%struct.X* byval %A)
2999       // }
3000       return false;
3001     SDValue Ptr = Ld->getBasePtr();
3002     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3003     if (!FINode)
3004       return false;
3005     FI = FINode->getIndex();
3006   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3007     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3008     FI = FINode->getIndex();
3009     Bytes = Flags.getByValSize();
3010   } else
3011     return false;
3012
3013   assert(FI != INT_MAX);
3014   if (!MFI->isFixedObjectIndex(FI))
3015     return false;
3016   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3017 }
3018
3019 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3020 /// for tail call optimization. Targets which want to do tail call
3021 /// optimization should implement this function.
3022 bool
3023 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3024                                                      CallingConv::ID CalleeCC,
3025                                                      bool isVarArg,
3026                                                      bool isCalleeStructRet,
3027                                                      bool isCallerStructRet,
3028                                                      Type *RetTy,
3029                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3030                                     const SmallVectorImpl<SDValue> &OutVals,
3031                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3032                                                      SelectionDAG &DAG) const {
3033   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3034     return false;
3035
3036   // If -tailcallopt is specified, make fastcc functions tail-callable.
3037   const MachineFunction &MF = DAG.getMachineFunction();
3038   const Function *CallerF = MF.getFunction();
3039
3040   // If the function return type is x86_fp80 and the callee return type is not,
3041   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3042   // perform a tailcall optimization here.
3043   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3044     return false;
3045
3046   CallingConv::ID CallerCC = CallerF->getCallingConv();
3047   bool CCMatch = CallerCC == CalleeCC;
3048   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3049   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3050
3051   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3052     if (IsTailCallConvention(CalleeCC) && CCMatch)
3053       return true;
3054     return false;
3055   }
3056
3057   // Look for obvious safe cases to perform tail call optimization that do not
3058   // require ABI changes. This is what gcc calls sibcall.
3059
3060   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3061   // emit a special epilogue.
3062   const X86RegisterInfo *RegInfo =
3063     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3064   if (RegInfo->needsStackRealignment(MF))
3065     return false;
3066
3067   // Also avoid sibcall optimization if either caller or callee uses struct
3068   // return semantics.
3069   if (isCalleeStructRet || isCallerStructRet)
3070     return false;
3071
3072   // An stdcall caller is expected to clean up its arguments; the callee
3073   // isn't going to do that.
3074   if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
3075     return false;
3076
3077   // Do not sibcall optimize vararg calls unless all arguments are passed via
3078   // registers.
3079   if (isVarArg && !Outs.empty()) {
3080
3081     // Optimizing for varargs on Win64 is unlikely to be safe without
3082     // additional testing.
3083     if (IsCalleeWin64 || IsCallerWin64)
3084       return false;
3085
3086     SmallVector<CCValAssign, 16> ArgLocs;
3087     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3088                    getTargetMachine(), ArgLocs, *DAG.getContext());
3089
3090     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3091     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3092       if (!ArgLocs[i].isRegLoc())
3093         return false;
3094   }
3095
3096   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3097   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3098   // this into a sibcall.
3099   bool Unused = false;
3100   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3101     if (!Ins[i].Used) {
3102       Unused = true;
3103       break;
3104     }
3105   }
3106   if (Unused) {
3107     SmallVector<CCValAssign, 16> RVLocs;
3108     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3109                    getTargetMachine(), RVLocs, *DAG.getContext());
3110     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3111     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3112       CCValAssign &VA = RVLocs[i];
3113       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3114         return false;
3115     }
3116   }
3117
3118   // If the calling conventions do not match, then we'd better make sure the
3119   // results are returned in the same way as what the caller expects.
3120   if (!CCMatch) {
3121     SmallVector<CCValAssign, 16> RVLocs1;
3122     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3123                     getTargetMachine(), RVLocs1, *DAG.getContext());
3124     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3125
3126     SmallVector<CCValAssign, 16> RVLocs2;
3127     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3128                     getTargetMachine(), RVLocs2, *DAG.getContext());
3129     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3130
3131     if (RVLocs1.size() != RVLocs2.size())
3132       return false;
3133     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3134       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3135         return false;
3136       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3137         return false;
3138       if (RVLocs1[i].isRegLoc()) {
3139         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3140           return false;
3141       } else {
3142         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3143           return false;
3144       }
3145     }
3146   }
3147
3148   // If the callee takes no arguments then go on to check the results of the
3149   // call.
3150   if (!Outs.empty()) {
3151     // Check if stack adjustment is needed. For now, do not do this if any
3152     // argument is passed on the stack.
3153     SmallVector<CCValAssign, 16> ArgLocs;
3154     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3155                    getTargetMachine(), ArgLocs, *DAG.getContext());
3156
3157     // Allocate shadow area for Win64
3158     if (IsCalleeWin64)
3159       CCInfo.AllocateStack(32, 8);
3160
3161     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3162     if (CCInfo.getNextStackOffset()) {
3163       MachineFunction &MF = DAG.getMachineFunction();
3164       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3165         return false;
3166
3167       // Check if the arguments are already laid out in the right way as
3168       // the caller's fixed stack objects.
3169       MachineFrameInfo *MFI = MF.getFrameInfo();
3170       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3171       const X86InstrInfo *TII =
3172         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3173       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3174         CCValAssign &VA = ArgLocs[i];
3175         SDValue Arg = OutVals[i];
3176         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3177         if (VA.getLocInfo() == CCValAssign::Indirect)
3178           return false;
3179         if (!VA.isRegLoc()) {
3180           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3181                                    MFI, MRI, TII))
3182             return false;
3183         }
3184       }
3185     }
3186
3187     // If the tailcall address may be in a register, then make sure it's
3188     // possible to register allocate for it. In 32-bit, the call address can
3189     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3190     // callee-saved registers are restored. These happen to be the same
3191     // registers used to pass 'inreg' arguments so watch out for those.
3192     if (!Subtarget->is64Bit() &&
3193         ((!isa<GlobalAddressSDNode>(Callee) &&
3194           !isa<ExternalSymbolSDNode>(Callee)) ||
3195          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3196       unsigned NumInRegs = 0;
3197       // In PIC we need an extra register to formulate the address computation
3198       // for the callee.
3199       unsigned MaxInRegs =
3200           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3201
3202       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3203         CCValAssign &VA = ArgLocs[i];
3204         if (!VA.isRegLoc())
3205           continue;
3206         unsigned Reg = VA.getLocReg();
3207         switch (Reg) {
3208         default: break;
3209         case X86::EAX: case X86::EDX: case X86::ECX:
3210           if (++NumInRegs == MaxInRegs)
3211             return false;
3212           break;
3213         }
3214       }
3215     }
3216   }
3217
3218   return true;
3219 }
3220
3221 FastISel *
3222 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3223                                   const TargetLibraryInfo *libInfo) const {
3224   return X86::createFastISel(funcInfo, libInfo);
3225 }
3226
3227 //===----------------------------------------------------------------------===//
3228 //                           Other Lowering Hooks
3229 //===----------------------------------------------------------------------===//
3230
3231 static bool MayFoldLoad(SDValue Op) {
3232   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3233 }
3234
3235 static bool MayFoldIntoStore(SDValue Op) {
3236   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3237 }
3238
3239 static bool isTargetShuffle(unsigned Opcode) {
3240   switch(Opcode) {
3241   default: return false;
3242   case X86ISD::PSHUFD:
3243   case X86ISD::PSHUFHW:
3244   case X86ISD::PSHUFLW:
3245   case X86ISD::SHUFP:
3246   case X86ISD::PALIGNR:
3247   case X86ISD::MOVLHPS:
3248   case X86ISD::MOVLHPD:
3249   case X86ISD::MOVHLPS:
3250   case X86ISD::MOVLPS:
3251   case X86ISD::MOVLPD:
3252   case X86ISD::MOVSHDUP:
3253   case X86ISD::MOVSLDUP:
3254   case X86ISD::MOVDDUP:
3255   case X86ISD::MOVSS:
3256   case X86ISD::MOVSD:
3257   case X86ISD::UNPCKL:
3258   case X86ISD::UNPCKH:
3259   case X86ISD::VPERMILP:
3260   case X86ISD::VPERM2X128:
3261   case X86ISD::VPERMI:
3262     return true;
3263   }
3264 }
3265
3266 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3267                                     SDValue V1, SelectionDAG &DAG) {
3268   switch(Opc) {
3269   default: llvm_unreachable("Unknown x86 shuffle node");
3270   case X86ISD::MOVSHDUP:
3271   case X86ISD::MOVSLDUP:
3272   case X86ISD::MOVDDUP:
3273     return DAG.getNode(Opc, dl, VT, V1);
3274   }
3275 }
3276
3277 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3278                                     SDValue V1, unsigned TargetMask,
3279                                     SelectionDAG &DAG) {
3280   switch(Opc) {
3281   default: llvm_unreachable("Unknown x86 shuffle node");
3282   case X86ISD::PSHUFD:
3283   case X86ISD::PSHUFHW:
3284   case X86ISD::PSHUFLW:
3285   case X86ISD::VPERMILP:
3286   case X86ISD::VPERMI:
3287     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3288   }
3289 }
3290
3291 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3292                                     SDValue V1, SDValue V2, unsigned TargetMask,
3293                                     SelectionDAG &DAG) {
3294   switch(Opc) {
3295   default: llvm_unreachable("Unknown x86 shuffle node");
3296   case X86ISD::PALIGNR:
3297   case X86ISD::SHUFP:
3298   case X86ISD::VPERM2X128:
3299     return DAG.getNode(Opc, dl, VT, V1, V2,
3300                        DAG.getConstant(TargetMask, MVT::i8));
3301   }
3302 }
3303
3304 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3305                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3306   switch(Opc) {
3307   default: llvm_unreachable("Unknown x86 shuffle node");
3308   case X86ISD::MOVLHPS:
3309   case X86ISD::MOVLHPD:
3310   case X86ISD::MOVHLPS:
3311   case X86ISD::MOVLPS:
3312   case X86ISD::MOVLPD:
3313   case X86ISD::MOVSS:
3314   case X86ISD::MOVSD:
3315   case X86ISD::UNPCKL:
3316   case X86ISD::UNPCKH:
3317     return DAG.getNode(Opc, dl, VT, V1, V2);
3318   }
3319 }
3320
3321 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3322   MachineFunction &MF = DAG.getMachineFunction();
3323   const X86RegisterInfo *RegInfo =
3324     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3325   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3326   int ReturnAddrIndex = FuncInfo->getRAIndex();
3327
3328   if (ReturnAddrIndex == 0) {
3329     // Set up a frame object for the return address.
3330     unsigned SlotSize = RegInfo->getSlotSize();
3331     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3332                                                            -(int64_t)SlotSize,
3333                                                            false);
3334     FuncInfo->setRAIndex(ReturnAddrIndex);
3335   }
3336
3337   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3338 }
3339
3340 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3341                                        bool hasSymbolicDisplacement) {
3342   // Offset should fit into 32 bit immediate field.
3343   if (!isInt<32>(Offset))
3344     return false;
3345
3346   // If we don't have a symbolic displacement - we don't have any extra
3347   // restrictions.
3348   if (!hasSymbolicDisplacement)
3349     return true;
3350
3351   // FIXME: Some tweaks might be needed for medium code model.
3352   if (M != CodeModel::Small && M != CodeModel::Kernel)
3353     return false;
3354
3355   // For small code model we assume that latest object is 16MB before end of 31
3356   // bits boundary. We may also accept pretty large negative constants knowing
3357   // that all objects are in the positive half of address space.
3358   if (M == CodeModel::Small && Offset < 16*1024*1024)
3359     return true;
3360
3361   // For kernel code model we know that all object resist in the negative half
3362   // of 32bits address space. We may not accept negative offsets, since they may
3363   // be just off and we may accept pretty large positive ones.
3364   if (M == CodeModel::Kernel && Offset > 0)
3365     return true;
3366
3367   return false;
3368 }
3369
3370 /// isCalleePop - Determines whether the callee is required to pop its
3371 /// own arguments. Callee pop is necessary to support tail calls.
3372 bool X86::isCalleePop(CallingConv::ID CallingConv,
3373                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3374   if (IsVarArg)
3375     return false;
3376
3377   switch (CallingConv) {
3378   default:
3379     return false;
3380   case CallingConv::X86_StdCall:
3381     return !is64Bit;
3382   case CallingConv::X86_FastCall:
3383     return !is64Bit;
3384   case CallingConv::X86_ThisCall:
3385     return !is64Bit;
3386   case CallingConv::Fast:
3387     return TailCallOpt;
3388   case CallingConv::GHC:
3389     return TailCallOpt;
3390   case CallingConv::HiPE:
3391     return TailCallOpt;
3392   }
3393 }
3394
3395 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3396 /// specific condition code, returning the condition code and the LHS/RHS of the
3397 /// comparison to make.
3398 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3399                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3400   if (!isFP) {
3401     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3402       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3403         // X > -1   -> X == 0, jump !sign.
3404         RHS = DAG.getConstant(0, RHS.getValueType());
3405         return X86::COND_NS;
3406       }
3407       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3408         // X < 0   -> X == 0, jump on sign.
3409         return X86::COND_S;
3410       }
3411       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3412         // X < 1   -> X <= 0
3413         RHS = DAG.getConstant(0, RHS.getValueType());
3414         return X86::COND_LE;
3415       }
3416     }
3417
3418     switch (SetCCOpcode) {
3419     default: llvm_unreachable("Invalid integer condition!");
3420     case ISD::SETEQ:  return X86::COND_E;
3421     case ISD::SETGT:  return X86::COND_G;
3422     case ISD::SETGE:  return X86::COND_GE;
3423     case ISD::SETLT:  return X86::COND_L;
3424     case ISD::SETLE:  return X86::COND_LE;
3425     case ISD::SETNE:  return X86::COND_NE;
3426     case ISD::SETULT: return X86::COND_B;
3427     case ISD::SETUGT: return X86::COND_A;
3428     case ISD::SETULE: return X86::COND_BE;
3429     case ISD::SETUGE: return X86::COND_AE;
3430     }
3431   }
3432
3433   // First determine if it is required or is profitable to flip the operands.
3434
3435   // If LHS is a foldable load, but RHS is not, flip the condition.
3436   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3437       !ISD::isNON_EXTLoad(RHS.getNode())) {
3438     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3439     std::swap(LHS, RHS);
3440   }
3441
3442   switch (SetCCOpcode) {
3443   default: break;
3444   case ISD::SETOLT:
3445   case ISD::SETOLE:
3446   case ISD::SETUGT:
3447   case ISD::SETUGE:
3448     std::swap(LHS, RHS);
3449     break;
3450   }
3451
3452   // On a floating point condition, the flags are set as follows:
3453   // ZF  PF  CF   op
3454   //  0 | 0 | 0 | X > Y
3455   //  0 | 0 | 1 | X < Y
3456   //  1 | 0 | 0 | X == Y
3457   //  1 | 1 | 1 | unordered
3458   switch (SetCCOpcode) {
3459   default: llvm_unreachable("Condcode should be pre-legalized away");
3460   case ISD::SETUEQ:
3461   case ISD::SETEQ:   return X86::COND_E;
3462   case ISD::SETOLT:              // flipped
3463   case ISD::SETOGT:
3464   case ISD::SETGT:   return X86::COND_A;
3465   case ISD::SETOLE:              // flipped
3466   case ISD::SETOGE:
3467   case ISD::SETGE:   return X86::COND_AE;
3468   case ISD::SETUGT:              // flipped
3469   case ISD::SETULT:
3470   case ISD::SETLT:   return X86::COND_B;
3471   case ISD::SETUGE:              // flipped
3472   case ISD::SETULE:
3473   case ISD::SETLE:   return X86::COND_BE;
3474   case ISD::SETONE:
3475   case ISD::SETNE:   return X86::COND_NE;
3476   case ISD::SETUO:   return X86::COND_P;
3477   case ISD::SETO:    return X86::COND_NP;
3478   case ISD::SETOEQ:
3479   case ISD::SETUNE:  return X86::COND_INVALID;
3480   }
3481 }
3482
3483 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3484 /// code. Current x86 isa includes the following FP cmov instructions:
3485 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3486 static bool hasFPCMov(unsigned X86CC) {
3487   switch (X86CC) {
3488   default:
3489     return false;
3490   case X86::COND_B:
3491   case X86::COND_BE:
3492   case X86::COND_E:
3493   case X86::COND_P:
3494   case X86::COND_A:
3495   case X86::COND_AE:
3496   case X86::COND_NE:
3497   case X86::COND_NP:
3498     return true;
3499   }
3500 }
3501
3502 /// isFPImmLegal - Returns true if the target can instruction select the
3503 /// specified FP immediate natively. If false, the legalizer will
3504 /// materialize the FP immediate as a load from a constant pool.
3505 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3506   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3507     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3508       return true;
3509   }
3510   return false;
3511 }
3512
3513 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3514 /// the specified range (L, H].
3515 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3516   return (Val < 0) || (Val >= Low && Val < Hi);
3517 }
3518
3519 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3520 /// specified value.
3521 static bool isUndefOrEqual(int Val, int CmpVal) {
3522   return (Val < 0 || Val == CmpVal);
3523 }
3524
3525 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3526 /// from position Pos and ending in Pos+Size, falls within the specified
3527 /// sequential range (L, L+Pos]. or is undef.
3528 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3529                                        unsigned Pos, unsigned Size, int Low) {
3530   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3531     if (!isUndefOrEqual(Mask[i], Low))
3532       return false;
3533   return true;
3534 }
3535
3536 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3537 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3538 /// the second operand.
3539 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3540   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3541     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3542   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3543     return (Mask[0] < 2 && Mask[1] < 2);
3544   return false;
3545 }
3546
3547 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3548 /// is suitable for input to PSHUFHW.
3549 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3550   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3551     return false;
3552
3553   // Lower quadword copied in order or undef.
3554   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3555     return false;
3556
3557   // Upper quadword shuffled.
3558   for (unsigned i = 4; i != 8; ++i)
3559     if (!isUndefOrInRange(Mask[i], 4, 8))
3560       return false;
3561
3562   if (VT == MVT::v16i16) {
3563     // Lower quadword copied in order or undef.
3564     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3565       return false;
3566
3567     // Upper quadword shuffled.
3568     for (unsigned i = 12; i != 16; ++i)
3569       if (!isUndefOrInRange(Mask[i], 12, 16))
3570         return false;
3571   }
3572
3573   return true;
3574 }
3575
3576 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3577 /// is suitable for input to PSHUFLW.
3578 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3579   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3580     return false;
3581
3582   // Upper quadword copied in order.
3583   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3584     return false;
3585
3586   // Lower quadword shuffled.
3587   for (unsigned i = 0; i != 4; ++i)
3588     if (!isUndefOrInRange(Mask[i], 0, 4))
3589       return false;
3590
3591   if (VT == MVT::v16i16) {
3592     // Upper quadword copied in order.
3593     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3594       return false;
3595
3596     // Lower quadword shuffled.
3597     for (unsigned i = 8; i != 12; ++i)
3598       if (!isUndefOrInRange(Mask[i], 8, 12))
3599         return false;
3600   }
3601
3602   return true;
3603 }
3604
3605 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3606 /// is suitable for input to PALIGNR.
3607 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3608                           const X86Subtarget *Subtarget) {
3609   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3610       (VT.is256BitVector() && !Subtarget->hasInt256()))
3611     return false;
3612
3613   unsigned NumElts = VT.getVectorNumElements();
3614   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3615   unsigned NumLaneElts = NumElts/NumLanes;
3616
3617   // Do not handle 64-bit element shuffles with palignr.
3618   if (NumLaneElts == 2)
3619     return false;
3620
3621   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3622     unsigned i;
3623     for (i = 0; i != NumLaneElts; ++i) {
3624       if (Mask[i+l] >= 0)
3625         break;
3626     }
3627
3628     // Lane is all undef, go to next lane
3629     if (i == NumLaneElts)
3630       continue;
3631
3632     int Start = Mask[i+l];
3633
3634     // Make sure its in this lane in one of the sources
3635     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3636         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3637       return false;
3638
3639     // If not lane 0, then we must match lane 0
3640     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3641       return false;
3642
3643     // Correct second source to be contiguous with first source
3644     if (Start >= (int)NumElts)
3645       Start -= NumElts - NumLaneElts;
3646
3647     // Make sure we're shifting in the right direction.
3648     if (Start <= (int)(i+l))
3649       return false;
3650
3651     Start -= i;
3652
3653     // Check the rest of the elements to see if they are consecutive.
3654     for (++i; i != NumLaneElts; ++i) {
3655       int Idx = Mask[i+l];
3656
3657       // Make sure its in this lane
3658       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3659           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3660         return false;
3661
3662       // If not lane 0, then we must match lane 0
3663       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3664         return false;
3665
3666       if (Idx >= (int)NumElts)
3667         Idx -= NumElts - NumLaneElts;
3668
3669       if (!isUndefOrEqual(Idx, Start+i))
3670         return false;
3671
3672     }
3673   }
3674
3675   return true;
3676 }
3677
3678 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3679 /// the two vector operands have swapped position.
3680 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3681                                      unsigned NumElems) {
3682   for (unsigned i = 0; i != NumElems; ++i) {
3683     int idx = Mask[i];
3684     if (idx < 0)
3685       continue;
3686     else if (idx < (int)NumElems)
3687       Mask[i] = idx + NumElems;
3688     else
3689       Mask[i] = idx - NumElems;
3690   }
3691 }
3692
3693 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3694 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3695 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3696 /// reverse of what x86 shuffles want.
3697 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3698
3699   unsigned NumElems = VT.getVectorNumElements();
3700   unsigned NumLanes = VT.getSizeInBits()/128;
3701   unsigned NumLaneElems = NumElems/NumLanes;
3702
3703   if (NumLaneElems != 2 && NumLaneElems != 4)
3704     return false;
3705
3706   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3707   bool symetricMaskRequired =
3708     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3709
3710   // VSHUFPSY divides the resulting vector into 4 chunks.
3711   // The sources are also splitted into 4 chunks, and each destination
3712   // chunk must come from a different source chunk.
3713   //
3714   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3715   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3716   //
3717   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3718   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3719   //
3720   // VSHUFPDY divides the resulting vector into 4 chunks.
3721   // The sources are also splitted into 4 chunks, and each destination
3722   // chunk must come from a different source chunk.
3723   //
3724   //  SRC1 =>      X3       X2       X1       X0
3725   //  SRC2 =>      Y3       Y2       Y1       Y0
3726   //
3727   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3728   //
3729   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3730   unsigned HalfLaneElems = NumLaneElems/2;
3731   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3732     for (unsigned i = 0; i != NumLaneElems; ++i) {
3733       int Idx = Mask[i+l];
3734       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3735       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3736         return false;
3737       // For VSHUFPSY, the mask of the second half must be the same as the
3738       // first but with the appropriate offsets. This works in the same way as
3739       // VPERMILPS works with masks.
3740       if (!symetricMaskRequired || Idx < 0)
3741         continue;
3742       if (MaskVal[i] < 0) {
3743         MaskVal[i] = Idx - l;
3744         continue;
3745       }
3746       if ((signed)(Idx - l) != MaskVal[i])
3747         return false;
3748     }
3749   }
3750
3751   return true;
3752 }
3753
3754 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3755 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3756 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3757   if (!VT.is128BitVector())
3758     return false;
3759
3760   unsigned NumElems = VT.getVectorNumElements();
3761
3762   if (NumElems != 4)
3763     return false;
3764
3765   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3766   return isUndefOrEqual(Mask[0], 6) &&
3767          isUndefOrEqual(Mask[1], 7) &&
3768          isUndefOrEqual(Mask[2], 2) &&
3769          isUndefOrEqual(Mask[3], 3);
3770 }
3771
3772 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3773 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3774 /// <2, 3, 2, 3>
3775 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3776   if (!VT.is128BitVector())
3777     return false;
3778
3779   unsigned NumElems = VT.getVectorNumElements();
3780
3781   if (NumElems != 4)
3782     return false;
3783
3784   return isUndefOrEqual(Mask[0], 2) &&
3785          isUndefOrEqual(Mask[1], 3) &&
3786          isUndefOrEqual(Mask[2], 2) &&
3787          isUndefOrEqual(Mask[3], 3);
3788 }
3789
3790 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3791 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3792 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3793   if (!VT.is128BitVector())
3794     return false;
3795
3796   unsigned NumElems = VT.getVectorNumElements();
3797
3798   if (NumElems != 2 && NumElems != 4)
3799     return false;
3800
3801   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3802     if (!isUndefOrEqual(Mask[i], i + NumElems))
3803       return false;
3804
3805   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3806     if (!isUndefOrEqual(Mask[i], i))
3807       return false;
3808
3809   return true;
3810 }
3811
3812 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3813 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3814 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3815   if (!VT.is128BitVector())
3816     return false;
3817
3818   unsigned NumElems = VT.getVectorNumElements();
3819
3820   if (NumElems != 2 && NumElems != 4)
3821     return false;
3822
3823   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3824     if (!isUndefOrEqual(Mask[i], i))
3825       return false;
3826
3827   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3828     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3829       return false;
3830
3831   return true;
3832 }
3833
3834 //
3835 // Some special combinations that can be optimized.
3836 //
3837 static
3838 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3839                                SelectionDAG &DAG) {
3840   MVT VT = SVOp->getSimpleValueType(0);
3841   SDLoc dl(SVOp);
3842
3843   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3844     return SDValue();
3845
3846   ArrayRef<int> Mask = SVOp->getMask();
3847
3848   // These are the special masks that may be optimized.
3849   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3850   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3851   bool MatchEvenMask = true;
3852   bool MatchOddMask  = true;
3853   for (int i=0; i<8; ++i) {
3854     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3855       MatchEvenMask = false;
3856     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3857       MatchOddMask = false;
3858   }
3859
3860   if (!MatchEvenMask && !MatchOddMask)
3861     return SDValue();
3862
3863   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3864
3865   SDValue Op0 = SVOp->getOperand(0);
3866   SDValue Op1 = SVOp->getOperand(1);
3867
3868   if (MatchEvenMask) {
3869     // Shift the second operand right to 32 bits.
3870     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3871     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3872   } else {
3873     // Shift the first operand left to 32 bits.
3874     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3875     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3876   }
3877   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3878   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3879 }
3880
3881 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3882 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3883 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3884                          bool HasInt256, bool V2IsSplat = false) {
3885
3886   assert(VT.getSizeInBits() >= 128 &&
3887          "Unsupported vector type for unpckl");
3888
3889   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3890   unsigned NumLanes;
3891   unsigned NumOf256BitLanes;
3892   unsigned NumElts = VT.getVectorNumElements();
3893   if (VT.is256BitVector()) {
3894     if (NumElts != 4 && NumElts != 8 &&
3895         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3896     return false;
3897     NumLanes = 2;
3898     NumOf256BitLanes = 1;
3899   } else if (VT.is512BitVector()) {
3900     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3901            "Unsupported vector type for unpckh");
3902     NumLanes = 2;
3903     NumOf256BitLanes = 2;
3904   } else {
3905     NumLanes = 1;
3906     NumOf256BitLanes = 1;
3907   }
3908
3909   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3910   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3911
3912   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3913     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3914       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3915         int BitI  = Mask[l256*NumEltsInStride+l+i];
3916         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3917         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3918           return false;
3919         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3920           return false;
3921         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3922           return false;
3923       }
3924     }
3925   }
3926   return true;
3927 }
3928
3929 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3930 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3931 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3932                          bool HasInt256, bool V2IsSplat = false) {
3933   assert(VT.getSizeInBits() >= 128 &&
3934          "Unsupported vector type for unpckh");
3935
3936   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3937   unsigned NumLanes;
3938   unsigned NumOf256BitLanes;
3939   unsigned NumElts = VT.getVectorNumElements();
3940   if (VT.is256BitVector()) {
3941     if (NumElts != 4 && NumElts != 8 &&
3942         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3943     return false;
3944     NumLanes = 2;
3945     NumOf256BitLanes = 1;
3946   } else if (VT.is512BitVector()) {
3947     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3948            "Unsupported vector type for unpckh");
3949     NumLanes = 2;
3950     NumOf256BitLanes = 2;
3951   } else {
3952     NumLanes = 1;
3953     NumOf256BitLanes = 1;
3954   }
3955
3956   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3957   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3958
3959   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3960     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3961       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3962         int BitI  = Mask[l256*NumEltsInStride+l+i];
3963         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3964         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3965           return false;
3966         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3967           return false;
3968         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3969           return false;
3970       }
3971     }
3972   }
3973   return true;
3974 }
3975
3976 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3977 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3978 /// <0, 0, 1, 1>
3979 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3980   unsigned NumElts = VT.getVectorNumElements();
3981   bool Is256BitVec = VT.is256BitVector();
3982
3983   if (VT.is512BitVector())
3984     return false;
3985   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3986          "Unsupported vector type for unpckh");
3987
3988   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
3989       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3990     return false;
3991
3992   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3993   // FIXME: Need a better way to get rid of this, there's no latency difference
3994   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3995   // the former later. We should also remove the "_undef" special mask.
3996   if (NumElts == 4 && Is256BitVec)
3997     return false;
3998
3999   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4000   // independently on 128-bit lanes.
4001   unsigned NumLanes = VT.getSizeInBits()/128;
4002   unsigned NumLaneElts = NumElts/NumLanes;
4003
4004   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4005     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4006       int BitI  = Mask[l+i];
4007       int BitI1 = Mask[l+i+1];
4008
4009       if (!isUndefOrEqual(BitI, j))
4010         return false;
4011       if (!isUndefOrEqual(BitI1, j))
4012         return false;
4013     }
4014   }
4015
4016   return true;
4017 }
4018
4019 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4020 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4021 /// <2, 2, 3, 3>
4022 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4023   unsigned NumElts = VT.getVectorNumElements();
4024
4025   if (VT.is512BitVector())
4026     return false;
4027
4028   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4029          "Unsupported vector type for unpckh");
4030
4031   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4032       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4033     return false;
4034
4035   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4036   // independently on 128-bit lanes.
4037   unsigned NumLanes = VT.getSizeInBits()/128;
4038   unsigned NumLaneElts = NumElts/NumLanes;
4039
4040   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4041     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4042       int BitI  = Mask[l+i];
4043       int BitI1 = Mask[l+i+1];
4044       if (!isUndefOrEqual(BitI, j))
4045         return false;
4046       if (!isUndefOrEqual(BitI1, j))
4047         return false;
4048     }
4049   }
4050   return true;
4051 }
4052
4053 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4054 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4055 /// MOVSD, and MOVD, i.e. setting the lowest element.
4056 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4057   if (VT.getVectorElementType().getSizeInBits() < 32)
4058     return false;
4059   if (!VT.is128BitVector())
4060     return false;
4061
4062   unsigned NumElts = VT.getVectorNumElements();
4063
4064   if (!isUndefOrEqual(Mask[0], NumElts))
4065     return false;
4066
4067   for (unsigned i = 1; i != NumElts; ++i)
4068     if (!isUndefOrEqual(Mask[i], i))
4069       return false;
4070
4071   return true;
4072 }
4073
4074 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4075 /// as permutations between 128-bit chunks or halves. As an example: this
4076 /// shuffle bellow:
4077 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4078 /// The first half comes from the second half of V1 and the second half from the
4079 /// the second half of V2.
4080 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4081   if (!HasFp256 || !VT.is256BitVector())
4082     return false;
4083
4084   // The shuffle result is divided into half A and half B. In total the two
4085   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4086   // B must come from C, D, E or F.
4087   unsigned HalfSize = VT.getVectorNumElements()/2;
4088   bool MatchA = false, MatchB = false;
4089
4090   // Check if A comes from one of C, D, E, F.
4091   for (unsigned Half = 0; Half != 4; ++Half) {
4092     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4093       MatchA = true;
4094       break;
4095     }
4096   }
4097
4098   // Check if B comes from one of C, D, E, F.
4099   for (unsigned Half = 0; Half != 4; ++Half) {
4100     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4101       MatchB = true;
4102       break;
4103     }
4104   }
4105
4106   return MatchA && MatchB;
4107 }
4108
4109 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4110 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4111 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4112   MVT VT = SVOp->getSimpleValueType(0);
4113
4114   unsigned HalfSize = VT.getVectorNumElements()/2;
4115
4116   unsigned FstHalf = 0, SndHalf = 0;
4117   for (unsigned i = 0; i < HalfSize; ++i) {
4118     if (SVOp->getMaskElt(i) > 0) {
4119       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4120       break;
4121     }
4122   }
4123   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4124     if (SVOp->getMaskElt(i) > 0) {
4125       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4126       break;
4127     }
4128   }
4129
4130   return (FstHalf | (SndHalf << 4));
4131 }
4132
4133 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4134 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4135   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4136   if (EltSize < 32)
4137     return false;
4138
4139   unsigned NumElts = VT.getVectorNumElements();
4140   Imm8 = 0;
4141   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4142     for (unsigned i = 0; i != NumElts; ++i) {
4143       if (Mask[i] < 0)
4144         continue;
4145       Imm8 |= Mask[i] << (i*2);
4146     }
4147     return true;
4148   }
4149
4150   unsigned LaneSize = 4;
4151   SmallVector<int, 4> MaskVal(LaneSize, -1);
4152
4153   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4154     for (unsigned i = 0; i != LaneSize; ++i) {
4155       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4156         return false;
4157       if (Mask[i+l] < 0)
4158         continue;
4159       if (MaskVal[i] < 0) {
4160         MaskVal[i] = Mask[i+l] - l;
4161         Imm8 |= MaskVal[i] << (i*2);
4162         continue;
4163       }
4164       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4165         return false;
4166     }
4167   }
4168   return true;
4169 }
4170
4171 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4172 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4173 /// Note that VPERMIL mask matching is different depending whether theunderlying
4174 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4175 /// to the same elements of the low, but to the higher half of the source.
4176 /// In VPERMILPD the two lanes could be shuffled independently of each other
4177 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4178 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4179   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4180   if (VT.getSizeInBits() < 256 || EltSize < 32)
4181     return false;
4182   bool symetricMaskRequired = (EltSize == 32);
4183   unsigned NumElts = VT.getVectorNumElements();
4184
4185   unsigned NumLanes = VT.getSizeInBits()/128;
4186   unsigned LaneSize = NumElts/NumLanes;
4187   // 2 or 4 elements in one lane
4188   
4189   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4190   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4191     for (unsigned i = 0; i != LaneSize; ++i) {
4192       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4193         return false;
4194       if (symetricMaskRequired) {
4195         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4196           ExpectedMaskVal[i] = Mask[i+l] - l;
4197           continue;
4198         }
4199         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4200           return false;
4201       }
4202     }
4203   }
4204   return true;
4205 }
4206
4207 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4208 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4209 /// element of vector 2 and the other elements to come from vector 1 in order.
4210 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4211                                bool V2IsSplat = false, bool V2IsUndef = false) {
4212   if (!VT.is128BitVector())
4213     return false;
4214
4215   unsigned NumOps = VT.getVectorNumElements();
4216   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4217     return false;
4218
4219   if (!isUndefOrEqual(Mask[0], 0))
4220     return false;
4221
4222   for (unsigned i = 1; i != NumOps; ++i)
4223     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4224           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4225           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4226       return false;
4227
4228   return true;
4229 }
4230
4231 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4232 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4233 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4234 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4235                            const X86Subtarget *Subtarget) {
4236   if (!Subtarget->hasSSE3())
4237     return false;
4238
4239   unsigned NumElems = VT.getVectorNumElements();
4240
4241   if ((VT.is128BitVector() && NumElems != 4) ||
4242       (VT.is256BitVector() && NumElems != 8) ||
4243       (VT.is512BitVector() && NumElems != 16))
4244     return false;
4245
4246   // "i+1" is the value the indexed mask element must have
4247   for (unsigned i = 0; i != NumElems; i += 2)
4248     if (!isUndefOrEqual(Mask[i], i+1) ||
4249         !isUndefOrEqual(Mask[i+1], i+1))
4250       return false;
4251
4252   return true;
4253 }
4254
4255 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4256 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4257 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4258 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4259                            const X86Subtarget *Subtarget) {
4260   if (!Subtarget->hasSSE3())
4261     return false;
4262
4263   unsigned NumElems = VT.getVectorNumElements();
4264
4265   if ((VT.is128BitVector() && NumElems != 4) ||
4266       (VT.is256BitVector() && NumElems != 8) ||
4267       (VT.is512BitVector() && NumElems != 16))
4268     return false;
4269
4270   // "i" is the value the indexed mask element must have
4271   for (unsigned i = 0; i != NumElems; i += 2)
4272     if (!isUndefOrEqual(Mask[i], i) ||
4273         !isUndefOrEqual(Mask[i+1], i))
4274       return false;
4275
4276   return true;
4277 }
4278
4279 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4280 /// specifies a shuffle of elements that is suitable for input to 256-bit
4281 /// version of MOVDDUP.
4282 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4283   if (!HasFp256 || !VT.is256BitVector())
4284     return false;
4285
4286   unsigned NumElts = VT.getVectorNumElements();
4287   if (NumElts != 4)
4288     return false;
4289
4290   for (unsigned i = 0; i != NumElts/2; ++i)
4291     if (!isUndefOrEqual(Mask[i], 0))
4292       return false;
4293   for (unsigned i = NumElts/2; i != NumElts; ++i)
4294     if (!isUndefOrEqual(Mask[i], NumElts/2))
4295       return false;
4296   return true;
4297 }
4298
4299 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4300 /// specifies a shuffle of elements that is suitable for input to 128-bit
4301 /// version of MOVDDUP.
4302 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4303   if (!VT.is128BitVector())
4304     return false;
4305
4306   unsigned e = VT.getVectorNumElements() / 2;
4307   for (unsigned i = 0; i != e; ++i)
4308     if (!isUndefOrEqual(Mask[i], i))
4309       return false;
4310   for (unsigned i = 0; i != e; ++i)
4311     if (!isUndefOrEqual(Mask[e+i], i))
4312       return false;
4313   return true;
4314 }
4315
4316 /// isVEXTRACTIndex - Return true if the specified
4317 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4318 /// suitable for instruction that extract 128 or 256 bit vectors
4319 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4320   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4321   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4322     return false;
4323
4324   // The index should be aligned on a vecWidth-bit boundary.
4325   uint64_t Index =
4326     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4327
4328   MVT VT = N->getSimpleValueType(0);
4329   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4330   bool Result = (Index * ElSize) % vecWidth == 0;
4331
4332   return Result;
4333 }
4334
4335 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4336 /// operand specifies a subvector insert that is suitable for input to
4337 /// insertion of 128 or 256-bit subvectors
4338 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4339   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4340   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4341     return false;
4342   // The index should be aligned on a vecWidth-bit boundary.
4343   uint64_t Index =
4344     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4345
4346   MVT VT = N->getSimpleValueType(0);
4347   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4348   bool Result = (Index * ElSize) % vecWidth == 0;
4349
4350   return Result;
4351 }
4352
4353 bool X86::isVINSERT128Index(SDNode *N) {
4354   return isVINSERTIndex(N, 128);
4355 }
4356
4357 bool X86::isVINSERT256Index(SDNode *N) {
4358   return isVINSERTIndex(N, 256);
4359 }
4360
4361 bool X86::isVEXTRACT128Index(SDNode *N) {
4362   return isVEXTRACTIndex(N, 128);
4363 }
4364
4365 bool X86::isVEXTRACT256Index(SDNode *N) {
4366   return isVEXTRACTIndex(N, 256);
4367 }
4368
4369 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4370 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4371 /// Handles 128-bit and 256-bit.
4372 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4373   MVT VT = N->getSimpleValueType(0);
4374
4375   assert((VT.getSizeInBits() >= 128) &&
4376          "Unsupported vector type for PSHUF/SHUFP");
4377
4378   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4379   // independently on 128-bit lanes.
4380   unsigned NumElts = VT.getVectorNumElements();
4381   unsigned NumLanes = VT.getSizeInBits()/128;
4382   unsigned NumLaneElts = NumElts/NumLanes;
4383
4384   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4385          "Only supports 2, 4 or 8 elements per lane");
4386
4387   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4388   unsigned Mask = 0;
4389   for (unsigned i = 0; i != NumElts; ++i) {
4390     int Elt = N->getMaskElt(i);
4391     if (Elt < 0) continue;
4392     Elt &= NumLaneElts - 1;
4393     unsigned ShAmt = (i << Shift) % 8;
4394     Mask |= Elt << ShAmt;
4395   }
4396
4397   return Mask;
4398 }
4399
4400 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4401 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4402 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4403   MVT VT = N->getSimpleValueType(0);
4404
4405   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4406          "Unsupported vector type for PSHUFHW");
4407
4408   unsigned NumElts = VT.getVectorNumElements();
4409
4410   unsigned Mask = 0;
4411   for (unsigned l = 0; l != NumElts; l += 8) {
4412     // 8 nodes per lane, but we only care about the last 4.
4413     for (unsigned i = 0; i < 4; ++i) {
4414       int Elt = N->getMaskElt(l+i+4);
4415       if (Elt < 0) continue;
4416       Elt &= 0x3; // only 2-bits.
4417       Mask |= Elt << (i * 2);
4418     }
4419   }
4420
4421   return Mask;
4422 }
4423
4424 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4425 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4426 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4427   MVT VT = N->getSimpleValueType(0);
4428
4429   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4430          "Unsupported vector type for PSHUFHW");
4431
4432   unsigned NumElts = VT.getVectorNumElements();
4433
4434   unsigned Mask = 0;
4435   for (unsigned l = 0; l != NumElts; l += 8) {
4436     // 8 nodes per lane, but we only care about the first 4.
4437     for (unsigned i = 0; i < 4; ++i) {
4438       int Elt = N->getMaskElt(l+i);
4439       if (Elt < 0) continue;
4440       Elt &= 0x3; // only 2-bits
4441       Mask |= Elt << (i * 2);
4442     }
4443   }
4444
4445   return Mask;
4446 }
4447
4448 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4449 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4450 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4451   MVT VT = SVOp->getSimpleValueType(0);
4452   unsigned EltSize = VT.is512BitVector() ? 1 :
4453     VT.getVectorElementType().getSizeInBits() >> 3;
4454
4455   unsigned NumElts = VT.getVectorNumElements();
4456   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4457   unsigned NumLaneElts = NumElts/NumLanes;
4458
4459   int Val = 0;
4460   unsigned i;
4461   for (i = 0; i != NumElts; ++i) {
4462     Val = SVOp->getMaskElt(i);
4463     if (Val >= 0)
4464       break;
4465   }
4466   if (Val >= (int)NumElts)
4467     Val -= NumElts - NumLaneElts;
4468
4469   assert(Val - i > 0 && "PALIGNR imm should be positive");
4470   return (Val - i) * EltSize;
4471 }
4472
4473 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4474   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4475   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4476     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4477
4478   uint64_t Index =
4479     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4480
4481   MVT VecVT = N->getOperand(0).getSimpleValueType();
4482   MVT ElVT = VecVT.getVectorElementType();
4483
4484   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4485   return Index / NumElemsPerChunk;
4486 }
4487
4488 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4489   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4490   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4491     llvm_unreachable("Illegal insert subvector for VINSERT");
4492
4493   uint64_t Index =
4494     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4495
4496   MVT VecVT = N->getSimpleValueType(0);
4497   MVT ElVT = VecVT.getVectorElementType();
4498
4499   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4500   return Index / NumElemsPerChunk;
4501 }
4502
4503 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4504 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4505 /// and VINSERTI128 instructions.
4506 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4507   return getExtractVEXTRACTImmediate(N, 128);
4508 }
4509
4510 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4511 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4512 /// and VINSERTI64x4 instructions.
4513 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4514   return getExtractVEXTRACTImmediate(N, 256);
4515 }
4516
4517 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4518 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4519 /// and VINSERTI128 instructions.
4520 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4521   return getInsertVINSERTImmediate(N, 128);
4522 }
4523
4524 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4525 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4526 /// and VINSERTI64x4 instructions.
4527 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4528   return getInsertVINSERTImmediate(N, 256);
4529 }
4530
4531 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4532 /// constant +0.0.
4533 bool X86::isZeroNode(SDValue Elt) {
4534   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4535     return CN->isNullValue();
4536   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4537     return CFP->getValueAPF().isPosZero();
4538   return false;
4539 }
4540
4541 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4542 /// their permute mask.
4543 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4544                                     SelectionDAG &DAG) {
4545   MVT VT = SVOp->getSimpleValueType(0);
4546   unsigned NumElems = VT.getVectorNumElements();
4547   SmallVector<int, 8> MaskVec;
4548
4549   for (unsigned i = 0; i != NumElems; ++i) {
4550     int Idx = SVOp->getMaskElt(i);
4551     if (Idx >= 0) {
4552       if (Idx < (int)NumElems)
4553         Idx += NumElems;
4554       else
4555         Idx -= NumElems;
4556     }
4557     MaskVec.push_back(Idx);
4558   }
4559   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4560                               SVOp->getOperand(0), &MaskVec[0]);
4561 }
4562
4563 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4564 /// match movhlps. The lower half elements should come from upper half of
4565 /// V1 (and in order), and the upper half elements should come from the upper
4566 /// half of V2 (and in order).
4567 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4568   if (!VT.is128BitVector())
4569     return false;
4570   if (VT.getVectorNumElements() != 4)
4571     return false;
4572   for (unsigned i = 0, e = 2; i != e; ++i)
4573     if (!isUndefOrEqual(Mask[i], i+2))
4574       return false;
4575   for (unsigned i = 2; i != 4; ++i)
4576     if (!isUndefOrEqual(Mask[i], i+4))
4577       return false;
4578   return true;
4579 }
4580
4581 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4582 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4583 /// required.
4584 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4585   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4586     return false;
4587   N = N->getOperand(0).getNode();
4588   if (!ISD::isNON_EXTLoad(N))
4589     return false;
4590   if (LD)
4591     *LD = cast<LoadSDNode>(N);
4592   return true;
4593 }
4594
4595 // Test whether the given value is a vector value which will be legalized
4596 // into a load.
4597 static bool WillBeConstantPoolLoad(SDNode *N) {
4598   if (N->getOpcode() != ISD::BUILD_VECTOR)
4599     return false;
4600
4601   // Check for any non-constant elements.
4602   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4603     switch (N->getOperand(i).getNode()->getOpcode()) {
4604     case ISD::UNDEF:
4605     case ISD::ConstantFP:
4606     case ISD::Constant:
4607       break;
4608     default:
4609       return false;
4610     }
4611
4612   // Vectors of all-zeros and all-ones are materialized with special
4613   // instructions rather than being loaded.
4614   return !ISD::isBuildVectorAllZeros(N) &&
4615          !ISD::isBuildVectorAllOnes(N);
4616 }
4617
4618 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4619 /// match movlp{s|d}. The lower half elements should come from lower half of
4620 /// V1 (and in order), and the upper half elements should come from the upper
4621 /// half of V2 (and in order). And since V1 will become the source of the
4622 /// MOVLP, it must be either a vector load or a scalar load to vector.
4623 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4624                                ArrayRef<int> Mask, MVT VT) {
4625   if (!VT.is128BitVector())
4626     return false;
4627
4628   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4629     return false;
4630   // Is V2 is a vector load, don't do this transformation. We will try to use
4631   // load folding shufps op.
4632   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4633     return false;
4634
4635   unsigned NumElems = VT.getVectorNumElements();
4636
4637   if (NumElems != 2 && NumElems != 4)
4638     return false;
4639   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4640     if (!isUndefOrEqual(Mask[i], i))
4641       return false;
4642   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4643     if (!isUndefOrEqual(Mask[i], i+NumElems))
4644       return false;
4645   return true;
4646 }
4647
4648 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4649 /// all the same.
4650 static bool isSplatVector(SDNode *N) {
4651   if (N->getOpcode() != ISD::BUILD_VECTOR)
4652     return false;
4653
4654   SDValue SplatValue = N->getOperand(0);
4655   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4656     if (N->getOperand(i) != SplatValue)
4657       return false;
4658   return true;
4659 }
4660
4661 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4662 /// to an zero vector.
4663 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4664 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4665   SDValue V1 = N->getOperand(0);
4666   SDValue V2 = N->getOperand(1);
4667   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4668   for (unsigned i = 0; i != NumElems; ++i) {
4669     int Idx = N->getMaskElt(i);
4670     if (Idx >= (int)NumElems) {
4671       unsigned Opc = V2.getOpcode();
4672       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4673         continue;
4674       if (Opc != ISD::BUILD_VECTOR ||
4675           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4676         return false;
4677     } else if (Idx >= 0) {
4678       unsigned Opc = V1.getOpcode();
4679       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4680         continue;
4681       if (Opc != ISD::BUILD_VECTOR ||
4682           !X86::isZeroNode(V1.getOperand(Idx)))
4683         return false;
4684     }
4685   }
4686   return true;
4687 }
4688
4689 /// getZeroVector - Returns a vector of specified type with all zero elements.
4690 ///
4691 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4692                              SelectionDAG &DAG, SDLoc dl) {
4693   assert(VT.isVector() && "Expected a vector type");
4694
4695   // Always build SSE zero vectors as <4 x i32> bitcasted
4696   // to their dest type. This ensures they get CSE'd.
4697   SDValue Vec;
4698   if (VT.is128BitVector()) {  // SSE
4699     if (Subtarget->hasSSE2()) {  // SSE2
4700       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4701       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4702     } else { // SSE1
4703       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4704       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4705     }
4706   } else if (VT.is256BitVector()) { // AVX
4707     if (Subtarget->hasInt256()) { // AVX2
4708       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4709       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4710       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4711                         array_lengthof(Ops));
4712     } else {
4713       // 256-bit logic and arithmetic instructions in AVX are all
4714       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4715       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4716       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4717       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4718                         array_lengthof(Ops));
4719     }
4720   } else if (VT.is512BitVector()) { // AVX-512
4721       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4722       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4723                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4724       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4725   } else
4726     llvm_unreachable("Unexpected vector type");
4727
4728   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4729 }
4730
4731 /// getOnesVector - Returns a vector of specified type with all bits set.
4732 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4733 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4734 /// Then bitcast to their original type, ensuring they get CSE'd.
4735 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4736                              SDLoc dl) {
4737   assert(VT.isVector() && "Expected a vector type");
4738
4739   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4740   SDValue Vec;
4741   if (VT.is256BitVector()) {
4742     if (HasInt256) { // AVX2
4743       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4744       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4745                         array_lengthof(Ops));
4746     } else { // AVX
4747       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4748       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4749     }
4750   } else if (VT.is128BitVector()) {
4751     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4752   } else
4753     llvm_unreachable("Unexpected vector type");
4754
4755   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4756 }
4757
4758 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4759 /// that point to V2 points to its first element.
4760 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4761   for (unsigned i = 0; i != NumElems; ++i) {
4762     if (Mask[i] > (int)NumElems) {
4763       Mask[i] = NumElems;
4764     }
4765   }
4766 }
4767
4768 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4769 /// operation of specified width.
4770 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4771                        SDValue V2) {
4772   unsigned NumElems = VT.getVectorNumElements();
4773   SmallVector<int, 8> Mask;
4774   Mask.push_back(NumElems);
4775   for (unsigned i = 1; i != NumElems; ++i)
4776     Mask.push_back(i);
4777   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4778 }
4779
4780 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4781 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4782                           SDValue V2) {
4783   unsigned NumElems = VT.getVectorNumElements();
4784   SmallVector<int, 8> Mask;
4785   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4786     Mask.push_back(i);
4787     Mask.push_back(i + NumElems);
4788   }
4789   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4790 }
4791
4792 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4793 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4794                           SDValue V2) {
4795   unsigned NumElems = VT.getVectorNumElements();
4796   SmallVector<int, 8> Mask;
4797   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4798     Mask.push_back(i + Half);
4799     Mask.push_back(i + NumElems + Half);
4800   }
4801   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4802 }
4803
4804 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4805 // a generic shuffle instruction because the target has no such instructions.
4806 // Generate shuffles which repeat i16 and i8 several times until they can be
4807 // represented by v4f32 and then be manipulated by target suported shuffles.
4808 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4809   MVT VT = V.getSimpleValueType();
4810   int NumElems = VT.getVectorNumElements();
4811   SDLoc dl(V);
4812
4813   while (NumElems > 4) {
4814     if (EltNo < NumElems/2) {
4815       V = getUnpackl(DAG, dl, VT, V, V);
4816     } else {
4817       V = getUnpackh(DAG, dl, VT, V, V);
4818       EltNo -= NumElems/2;
4819     }
4820     NumElems >>= 1;
4821   }
4822   return V;
4823 }
4824
4825 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4826 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4827   MVT VT = V.getSimpleValueType();
4828   SDLoc dl(V);
4829
4830   if (VT.is128BitVector()) {
4831     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4832     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4833     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4834                              &SplatMask[0]);
4835   } else if (VT.is256BitVector()) {
4836     // To use VPERMILPS to splat scalars, the second half of indicies must
4837     // refer to the higher part, which is a duplication of the lower one,
4838     // because VPERMILPS can only handle in-lane permutations.
4839     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4840                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4841
4842     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4843     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4844                              &SplatMask[0]);
4845   } else
4846     llvm_unreachable("Vector size not supported");
4847
4848   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4849 }
4850
4851 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4852 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4853   MVT SrcVT = SV->getSimpleValueType(0);
4854   SDValue V1 = SV->getOperand(0);
4855   SDLoc dl(SV);
4856
4857   int EltNo = SV->getSplatIndex();
4858   int NumElems = SrcVT.getVectorNumElements();
4859   bool Is256BitVec = SrcVT.is256BitVector();
4860
4861   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4862          "Unknown how to promote splat for type");
4863
4864   // Extract the 128-bit part containing the splat element and update
4865   // the splat element index when it refers to the higher register.
4866   if (Is256BitVec) {
4867     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4868     if (EltNo >= NumElems/2)
4869       EltNo -= NumElems/2;
4870   }
4871
4872   // All i16 and i8 vector types can't be used directly by a generic shuffle
4873   // instruction because the target has no such instruction. Generate shuffles
4874   // which repeat i16 and i8 several times until they fit in i32, and then can
4875   // be manipulated by target suported shuffles.
4876   MVT EltVT = SrcVT.getVectorElementType();
4877   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4878     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4879
4880   // Recreate the 256-bit vector and place the same 128-bit vector
4881   // into the low and high part. This is necessary because we want
4882   // to use VPERM* to shuffle the vectors
4883   if (Is256BitVec) {
4884     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4885   }
4886
4887   return getLegalSplat(DAG, V1, EltNo);
4888 }
4889
4890 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4891 /// vector of zero or undef vector.  This produces a shuffle where the low
4892 /// element of V2 is swizzled into the zero/undef vector, landing at element
4893 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4894 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4895                                            bool IsZero,
4896                                            const X86Subtarget *Subtarget,
4897                                            SelectionDAG &DAG) {
4898   MVT VT = V2.getSimpleValueType();
4899   SDValue V1 = IsZero
4900     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4901   unsigned NumElems = VT.getVectorNumElements();
4902   SmallVector<int, 16> MaskVec;
4903   for (unsigned i = 0; i != NumElems; ++i)
4904     // If this is the insertion idx, put the low elt of V2 here.
4905     MaskVec.push_back(i == Idx ? NumElems : i);
4906   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4907 }
4908
4909 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4910 /// target specific opcode. Returns true if the Mask could be calculated.
4911 /// Sets IsUnary to true if only uses one source.
4912 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4913                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4914   unsigned NumElems = VT.getVectorNumElements();
4915   SDValue ImmN;
4916
4917   IsUnary = false;
4918   switch(N->getOpcode()) {
4919   case X86ISD::SHUFP:
4920     ImmN = N->getOperand(N->getNumOperands()-1);
4921     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4922     break;
4923   case X86ISD::UNPCKH:
4924     DecodeUNPCKHMask(VT, Mask);
4925     break;
4926   case X86ISD::UNPCKL:
4927     DecodeUNPCKLMask(VT, Mask);
4928     break;
4929   case X86ISD::MOVHLPS:
4930     DecodeMOVHLPSMask(NumElems, Mask);
4931     break;
4932   case X86ISD::MOVLHPS:
4933     DecodeMOVLHPSMask(NumElems, Mask);
4934     break;
4935   case X86ISD::PALIGNR:
4936     ImmN = N->getOperand(N->getNumOperands()-1);
4937     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4938     break;
4939   case X86ISD::PSHUFD:
4940   case X86ISD::VPERMILP:
4941     ImmN = N->getOperand(N->getNumOperands()-1);
4942     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4943     IsUnary = true;
4944     break;
4945   case X86ISD::PSHUFHW:
4946     ImmN = N->getOperand(N->getNumOperands()-1);
4947     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4948     IsUnary = true;
4949     break;
4950   case X86ISD::PSHUFLW:
4951     ImmN = N->getOperand(N->getNumOperands()-1);
4952     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4953     IsUnary = true;
4954     break;
4955   case X86ISD::VPERMI:
4956     ImmN = N->getOperand(N->getNumOperands()-1);
4957     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4958     IsUnary = true;
4959     break;
4960   case X86ISD::MOVSS:
4961   case X86ISD::MOVSD: {
4962     // The index 0 always comes from the first element of the second source,
4963     // this is why MOVSS and MOVSD are used in the first place. The other
4964     // elements come from the other positions of the first source vector
4965     Mask.push_back(NumElems);
4966     for (unsigned i = 1; i != NumElems; ++i) {
4967       Mask.push_back(i);
4968     }
4969     break;
4970   }
4971   case X86ISD::VPERM2X128:
4972     ImmN = N->getOperand(N->getNumOperands()-1);
4973     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4974     if (Mask.empty()) return false;
4975     break;
4976   case X86ISD::MOVDDUP:
4977   case X86ISD::MOVLHPD:
4978   case X86ISD::MOVLPD:
4979   case X86ISD::MOVLPS:
4980   case X86ISD::MOVSHDUP:
4981   case X86ISD::MOVSLDUP:
4982     // Not yet implemented
4983     return false;
4984   default: llvm_unreachable("unknown target shuffle node");
4985   }
4986
4987   return true;
4988 }
4989
4990 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4991 /// element of the result of the vector shuffle.
4992 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4993                                    unsigned Depth) {
4994   if (Depth == 6)
4995     return SDValue();  // Limit search depth.
4996
4997   SDValue V = SDValue(N, 0);
4998   EVT VT = V.getValueType();
4999   unsigned Opcode = V.getOpcode();
5000
5001   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5002   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5003     int Elt = SV->getMaskElt(Index);
5004
5005     if (Elt < 0)
5006       return DAG.getUNDEF(VT.getVectorElementType());
5007
5008     unsigned NumElems = VT.getVectorNumElements();
5009     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5010                                          : SV->getOperand(1);
5011     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5012   }
5013
5014   // Recurse into target specific vector shuffles to find scalars.
5015   if (isTargetShuffle(Opcode)) {
5016     MVT ShufVT = V.getSimpleValueType();
5017     unsigned NumElems = ShufVT.getVectorNumElements();
5018     SmallVector<int, 16> ShuffleMask;
5019     bool IsUnary;
5020
5021     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5022       return SDValue();
5023
5024     int Elt = ShuffleMask[Index];
5025     if (Elt < 0)
5026       return DAG.getUNDEF(ShufVT.getVectorElementType());
5027
5028     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5029                                          : N->getOperand(1);
5030     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5031                                Depth+1);
5032   }
5033
5034   // Actual nodes that may contain scalar elements
5035   if (Opcode == ISD::BITCAST) {
5036     V = V.getOperand(0);
5037     EVT SrcVT = V.getValueType();
5038     unsigned NumElems = VT.getVectorNumElements();
5039
5040     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5041       return SDValue();
5042   }
5043
5044   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5045     return (Index == 0) ? V.getOperand(0)
5046                         : DAG.getUNDEF(VT.getVectorElementType());
5047
5048   if (V.getOpcode() == ISD::BUILD_VECTOR)
5049     return V.getOperand(Index);
5050
5051   return SDValue();
5052 }
5053
5054 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5055 /// shuffle operation which come from a consecutively from a zero. The
5056 /// search can start in two different directions, from left or right.
5057 /// We count undefs as zeros until PreferredNum is reached.
5058 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5059                                          unsigned NumElems, bool ZerosFromLeft,
5060                                          SelectionDAG &DAG,
5061                                          unsigned PreferredNum = -1U) {
5062   unsigned NumZeros = 0;
5063   for (unsigned i = 0; i != NumElems; ++i) {
5064     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5065     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5066     if (!Elt.getNode())
5067       break;
5068
5069     if (X86::isZeroNode(Elt))
5070       ++NumZeros;
5071     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5072       NumZeros = std::min(NumZeros + 1, PreferredNum);
5073     else
5074       break;
5075   }
5076
5077   return NumZeros;
5078 }
5079
5080 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5081 /// correspond consecutively to elements from one of the vector operands,
5082 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5083 static
5084 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5085                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5086                               unsigned NumElems, unsigned &OpNum) {
5087   bool SeenV1 = false;
5088   bool SeenV2 = false;
5089
5090   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5091     int Idx = SVOp->getMaskElt(i);
5092     // Ignore undef indicies
5093     if (Idx < 0)
5094       continue;
5095
5096     if (Idx < (int)NumElems)
5097       SeenV1 = true;
5098     else
5099       SeenV2 = true;
5100
5101     // Only accept consecutive elements from the same vector
5102     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5103       return false;
5104   }
5105
5106   OpNum = SeenV1 ? 0 : 1;
5107   return true;
5108 }
5109
5110 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5111 /// logical left shift of a vector.
5112 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5113                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5114   unsigned NumElems =
5115     SVOp->getSimpleValueType(0).getVectorNumElements();
5116   unsigned NumZeros = getNumOfConsecutiveZeros(
5117       SVOp, NumElems, false /* check zeros from right */, DAG,
5118       SVOp->getMaskElt(0));
5119   unsigned OpSrc;
5120
5121   if (!NumZeros)
5122     return false;
5123
5124   // Considering the elements in the mask that are not consecutive zeros,
5125   // check if they consecutively come from only one of the source vectors.
5126   //
5127   //               V1 = {X, A, B, C}     0
5128   //                         \  \  \    /
5129   //   vector_shuffle V1, V2 <1, 2, 3, X>
5130   //
5131   if (!isShuffleMaskConsecutive(SVOp,
5132             0,                   // Mask Start Index
5133             NumElems-NumZeros,   // Mask End Index(exclusive)
5134             NumZeros,            // Where to start looking in the src vector
5135             NumElems,            // Number of elements in vector
5136             OpSrc))              // Which source operand ?
5137     return false;
5138
5139   isLeft = false;
5140   ShAmt = NumZeros;
5141   ShVal = SVOp->getOperand(OpSrc);
5142   return true;
5143 }
5144
5145 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5146 /// logical left shift of a vector.
5147 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5148                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5149   unsigned NumElems =
5150     SVOp->getSimpleValueType(0).getVectorNumElements();
5151   unsigned NumZeros = getNumOfConsecutiveZeros(
5152       SVOp, NumElems, true /* check zeros from left */, DAG,
5153       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5154   unsigned OpSrc;
5155
5156   if (!NumZeros)
5157     return false;
5158
5159   // Considering the elements in the mask that are not consecutive zeros,
5160   // check if they consecutively come from only one of the source vectors.
5161   //
5162   //                           0    { A, B, X, X } = V2
5163   //                          / \    /  /
5164   //   vector_shuffle V1, V2 <X, X, 4, 5>
5165   //
5166   if (!isShuffleMaskConsecutive(SVOp,
5167             NumZeros,     // Mask Start Index
5168             NumElems,     // Mask End Index(exclusive)
5169             0,            // Where to start looking in the src vector
5170             NumElems,     // Number of elements in vector
5171             OpSrc))       // Which source operand ?
5172     return false;
5173
5174   isLeft = true;
5175   ShAmt = NumZeros;
5176   ShVal = SVOp->getOperand(OpSrc);
5177   return true;
5178 }
5179
5180 /// isVectorShift - Returns true if the shuffle can be implemented as a
5181 /// logical left or right shift of a vector.
5182 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5183                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5184   // Although the logic below support any bitwidth size, there are no
5185   // shift instructions which handle more than 128-bit vectors.
5186   if (!SVOp->getSimpleValueType(0).is128BitVector())
5187     return false;
5188
5189   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5190       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5191     return true;
5192
5193   return false;
5194 }
5195
5196 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5197 ///
5198 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5199                                        unsigned NumNonZero, unsigned NumZero,
5200                                        SelectionDAG &DAG,
5201                                        const X86Subtarget* Subtarget,
5202                                        const TargetLowering &TLI) {
5203   if (NumNonZero > 8)
5204     return SDValue();
5205
5206   SDLoc dl(Op);
5207   SDValue V(0, 0);
5208   bool First = true;
5209   for (unsigned i = 0; i < 16; ++i) {
5210     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5211     if (ThisIsNonZero && First) {
5212       if (NumZero)
5213         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5214       else
5215         V = DAG.getUNDEF(MVT::v8i16);
5216       First = false;
5217     }
5218
5219     if ((i & 1) != 0) {
5220       SDValue ThisElt(0, 0), LastElt(0, 0);
5221       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5222       if (LastIsNonZero) {
5223         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5224                               MVT::i16, Op.getOperand(i-1));
5225       }
5226       if (ThisIsNonZero) {
5227         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5228         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5229                               ThisElt, DAG.getConstant(8, MVT::i8));
5230         if (LastIsNonZero)
5231           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5232       } else
5233         ThisElt = LastElt;
5234
5235       if (ThisElt.getNode())
5236         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5237                         DAG.getIntPtrConstant(i/2));
5238     }
5239   }
5240
5241   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5242 }
5243
5244 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5245 ///
5246 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5247                                      unsigned NumNonZero, unsigned NumZero,
5248                                      SelectionDAG &DAG,
5249                                      const X86Subtarget* Subtarget,
5250                                      const TargetLowering &TLI) {
5251   if (NumNonZero > 4)
5252     return SDValue();
5253
5254   SDLoc dl(Op);
5255   SDValue V(0, 0);
5256   bool First = true;
5257   for (unsigned i = 0; i < 8; ++i) {
5258     bool isNonZero = (NonZeros & (1 << i)) != 0;
5259     if (isNonZero) {
5260       if (First) {
5261         if (NumZero)
5262           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5263         else
5264           V = DAG.getUNDEF(MVT::v8i16);
5265         First = false;
5266       }
5267       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5268                       MVT::v8i16, V, Op.getOperand(i),
5269                       DAG.getIntPtrConstant(i));
5270     }
5271   }
5272
5273   return V;
5274 }
5275
5276 /// getVShift - Return a vector logical shift node.
5277 ///
5278 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5279                          unsigned NumBits, SelectionDAG &DAG,
5280                          const TargetLowering &TLI, SDLoc dl) {
5281   assert(VT.is128BitVector() && "Unknown type for VShift");
5282   EVT ShVT = MVT::v2i64;
5283   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5284   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5285   return DAG.getNode(ISD::BITCAST, dl, VT,
5286                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5287                              DAG.getConstant(NumBits,
5288                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5289 }
5290
5291 static SDValue
5292 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5293
5294   // Check if the scalar load can be widened into a vector load. And if
5295   // the address is "base + cst" see if the cst can be "absorbed" into
5296   // the shuffle mask.
5297   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5298     SDValue Ptr = LD->getBasePtr();
5299     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5300       return SDValue();
5301     EVT PVT = LD->getValueType(0);
5302     if (PVT != MVT::i32 && PVT != MVT::f32)
5303       return SDValue();
5304
5305     int FI = -1;
5306     int64_t Offset = 0;
5307     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5308       FI = FINode->getIndex();
5309       Offset = 0;
5310     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5311                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5312       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5313       Offset = Ptr.getConstantOperandVal(1);
5314       Ptr = Ptr.getOperand(0);
5315     } else {
5316       return SDValue();
5317     }
5318
5319     // FIXME: 256-bit vector instructions don't require a strict alignment,
5320     // improve this code to support it better.
5321     unsigned RequiredAlign = VT.getSizeInBits()/8;
5322     SDValue Chain = LD->getChain();
5323     // Make sure the stack object alignment is at least 16 or 32.
5324     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5325     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5326       if (MFI->isFixedObjectIndex(FI)) {
5327         // Can't change the alignment. FIXME: It's possible to compute
5328         // the exact stack offset and reference FI + adjust offset instead.
5329         // If someone *really* cares about this. That's the way to implement it.
5330         return SDValue();
5331       } else {
5332         MFI->setObjectAlignment(FI, RequiredAlign);
5333       }
5334     }
5335
5336     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5337     // Ptr + (Offset & ~15).
5338     if (Offset < 0)
5339       return SDValue();
5340     if ((Offset % RequiredAlign) & 3)
5341       return SDValue();
5342     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5343     if (StartOffset)
5344       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5345                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5346
5347     int EltNo = (Offset - StartOffset) >> 2;
5348     unsigned NumElems = VT.getVectorNumElements();
5349
5350     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5351     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5352                              LD->getPointerInfo().getWithOffset(StartOffset),
5353                              false, false, false, 0);
5354
5355     SmallVector<int, 8> Mask;
5356     for (unsigned i = 0; i != NumElems; ++i)
5357       Mask.push_back(EltNo);
5358
5359     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5360   }
5361
5362   return SDValue();
5363 }
5364
5365 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5366 /// vector of type 'VT', see if the elements can be replaced by a single large
5367 /// load which has the same value as a build_vector whose operands are 'elts'.
5368 ///
5369 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5370 ///
5371 /// FIXME: we'd also like to handle the case where the last elements are zero
5372 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5373 /// There's even a handy isZeroNode for that purpose.
5374 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5375                                         SDLoc &DL, SelectionDAG &DAG) {
5376   EVT EltVT = VT.getVectorElementType();
5377   unsigned NumElems = Elts.size();
5378
5379   LoadSDNode *LDBase = NULL;
5380   unsigned LastLoadedElt = -1U;
5381
5382   // For each element in the initializer, see if we've found a load or an undef.
5383   // If we don't find an initial load element, or later load elements are
5384   // non-consecutive, bail out.
5385   for (unsigned i = 0; i < NumElems; ++i) {
5386     SDValue Elt = Elts[i];
5387
5388     if (!Elt.getNode() ||
5389         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5390       return SDValue();
5391     if (!LDBase) {
5392       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5393         return SDValue();
5394       LDBase = cast<LoadSDNode>(Elt.getNode());
5395       LastLoadedElt = i;
5396       continue;
5397     }
5398     if (Elt.getOpcode() == ISD::UNDEF)
5399       continue;
5400
5401     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5402     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5403       return SDValue();
5404     LastLoadedElt = i;
5405   }
5406
5407   // If we have found an entire vector of loads and undefs, then return a large
5408   // load of the entire vector width starting at the base pointer.  If we found
5409   // consecutive loads for the low half, generate a vzext_load node.
5410   if (LastLoadedElt == NumElems - 1) {
5411     SDValue NewLd = SDValue();
5412     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5413       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5414                           LDBase->getPointerInfo(),
5415                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5416                           LDBase->isInvariant(), 0);
5417     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5418                         LDBase->getPointerInfo(),
5419                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5420                         LDBase->isInvariant(), LDBase->getAlignment());
5421
5422     if (LDBase->hasAnyUseOfValue(1)) {
5423       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5424                                      SDValue(LDBase, 1),
5425                                      SDValue(NewLd.getNode(), 1));
5426       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5427       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5428                              SDValue(NewLd.getNode(), 1));
5429     }
5430
5431     return NewLd;
5432   }
5433   if (NumElems == 4 && LastLoadedElt == 1 &&
5434       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5435     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5436     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5437     SDValue ResNode =
5438         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5439                                 array_lengthof(Ops), MVT::i64,
5440                                 LDBase->getPointerInfo(),
5441                                 LDBase->getAlignment(),
5442                                 false/*isVolatile*/, true/*ReadMem*/,
5443                                 false/*WriteMem*/);
5444
5445     // Make sure the newly-created LOAD is in the same position as LDBase in
5446     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5447     // update uses of LDBase's output chain to use the TokenFactor.
5448     if (LDBase->hasAnyUseOfValue(1)) {
5449       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5450                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5451       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5452       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5453                              SDValue(ResNode.getNode(), 1));
5454     }
5455
5456     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5457   }
5458   return SDValue();
5459 }
5460
5461 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5462 /// to generate a splat value for the following cases:
5463 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5464 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5465 /// a scalar load, or a constant.
5466 /// The VBROADCAST node is returned when a pattern is found,
5467 /// or SDValue() otherwise.
5468 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5469                                     SelectionDAG &DAG) {
5470   if (!Subtarget->hasFp256())
5471     return SDValue();
5472
5473   MVT VT = Op.getSimpleValueType();
5474   SDLoc dl(Op);
5475
5476   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5477          "Unsupported vector type for broadcast.");
5478
5479   SDValue Ld;
5480   bool ConstSplatVal;
5481
5482   switch (Op.getOpcode()) {
5483     default:
5484       // Unknown pattern found.
5485       return SDValue();
5486
5487     case ISD::BUILD_VECTOR: {
5488       // The BUILD_VECTOR node must be a splat.
5489       if (!isSplatVector(Op.getNode()))
5490         return SDValue();
5491
5492       Ld = Op.getOperand(0);
5493       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5494                      Ld.getOpcode() == ISD::ConstantFP);
5495
5496       // The suspected load node has several users. Make sure that all
5497       // of its users are from the BUILD_VECTOR node.
5498       // Constants may have multiple users.
5499       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5500         return SDValue();
5501       break;
5502     }
5503
5504     case ISD::VECTOR_SHUFFLE: {
5505       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5506
5507       // Shuffles must have a splat mask where the first element is
5508       // broadcasted.
5509       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5510         return SDValue();
5511
5512       SDValue Sc = Op.getOperand(0);
5513       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5514           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5515
5516         if (!Subtarget->hasInt256())
5517           return SDValue();
5518
5519         // Use the register form of the broadcast instruction available on AVX2.
5520         if (VT.getSizeInBits() >= 256)
5521           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5522         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5523       }
5524
5525       Ld = Sc.getOperand(0);
5526       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5527                        Ld.getOpcode() == ISD::ConstantFP);
5528
5529       // The scalar_to_vector node and the suspected
5530       // load node must have exactly one user.
5531       // Constants may have multiple users.
5532
5533       // AVX-512 has register version of the broadcast
5534       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5535         Ld.getValueType().getSizeInBits() >= 32;
5536       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5537           !hasRegVer))
5538         return SDValue();
5539       break;
5540     }
5541   }
5542
5543   bool IsGE256 = (VT.getSizeInBits() >= 256);
5544
5545   // Handle the broadcasting a single constant scalar from the constant pool
5546   // into a vector. On Sandybridge it is still better to load a constant vector
5547   // from the constant pool and not to broadcast it from a scalar.
5548   if (ConstSplatVal && Subtarget->hasInt256()) {
5549     EVT CVT = Ld.getValueType();
5550     assert(!CVT.isVector() && "Must not broadcast a vector type");
5551     unsigned ScalarSize = CVT.getSizeInBits();
5552
5553     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5554       const Constant *C = 0;
5555       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5556         C = CI->getConstantIntValue();
5557       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5558         C = CF->getConstantFPValue();
5559
5560       assert(C && "Invalid constant type");
5561
5562       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5563       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5564       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5565       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5566                        MachinePointerInfo::getConstantPool(),
5567                        false, false, false, Alignment);
5568
5569       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5570     }
5571   }
5572
5573   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5574   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5575
5576   // Handle AVX2 in-register broadcasts.
5577   if (!IsLoad && Subtarget->hasInt256() &&
5578       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5579     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5580
5581   // The scalar source must be a normal load.
5582   if (!IsLoad)
5583     return SDValue();
5584
5585   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5586     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5587
5588   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5589   // double since there is no vbroadcastsd xmm
5590   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5591     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5592       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5593   }
5594
5595   // Unsupported broadcast.
5596   return SDValue();
5597 }
5598
5599 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5600   MVT VT = Op.getSimpleValueType();
5601
5602   // Skip if insert_vec_elt is not supported.
5603   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5604   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5605     return SDValue();
5606
5607   SDLoc DL(Op);
5608   unsigned NumElems = Op.getNumOperands();
5609
5610   SDValue VecIn1;
5611   SDValue VecIn2;
5612   SmallVector<unsigned, 4> InsertIndices;
5613   SmallVector<int, 8> Mask(NumElems, -1);
5614
5615   for (unsigned i = 0; i != NumElems; ++i) {
5616     unsigned Opc = Op.getOperand(i).getOpcode();
5617
5618     if (Opc == ISD::UNDEF)
5619       continue;
5620
5621     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5622       // Quit if more than 1 elements need inserting.
5623       if (InsertIndices.size() > 1)
5624         return SDValue();
5625
5626       InsertIndices.push_back(i);
5627       continue;
5628     }
5629
5630     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5631     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5632
5633     // Quit if extracted from vector of different type.
5634     if (ExtractedFromVec.getValueType() != VT)
5635       return SDValue();
5636
5637     // Quit if non-constant index.
5638     if (!isa<ConstantSDNode>(ExtIdx))
5639       return SDValue();
5640
5641     if (VecIn1.getNode() == 0)
5642       VecIn1 = ExtractedFromVec;
5643     else if (VecIn1 != ExtractedFromVec) {
5644       if (VecIn2.getNode() == 0)
5645         VecIn2 = ExtractedFromVec;
5646       else if (VecIn2 != ExtractedFromVec)
5647         // Quit if more than 2 vectors to shuffle
5648         return SDValue();
5649     }
5650
5651     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5652
5653     if (ExtractedFromVec == VecIn1)
5654       Mask[i] = Idx;
5655     else if (ExtractedFromVec == VecIn2)
5656       Mask[i] = Idx + NumElems;
5657   }
5658
5659   if (VecIn1.getNode() == 0)
5660     return SDValue();
5661
5662   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5663   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5664   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5665     unsigned Idx = InsertIndices[i];
5666     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5667                      DAG.getIntPtrConstant(Idx));
5668   }
5669
5670   return NV;
5671 }
5672
5673 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5674 SDValue
5675 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5676
5677   MVT VT = Op.getSimpleValueType();
5678   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5679          "Unexpected type in LowerBUILD_VECTORvXi1!");
5680
5681   SDLoc dl(Op);
5682   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5683     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5684     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5685                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5686     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5687                        Ops, VT.getVectorNumElements());
5688   }
5689
5690   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5691     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5692     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5693                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5694     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5695                        Ops, VT.getVectorNumElements());
5696   }
5697
5698   bool AllContants = true;
5699   uint64_t Immediate = 0;
5700   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5701     SDValue In = Op.getOperand(idx);
5702     if (In.getOpcode() == ISD::UNDEF)
5703       continue;
5704     if (!isa<ConstantSDNode>(In)) {
5705       AllContants = false;
5706       break;
5707     }
5708     if (cast<ConstantSDNode>(In)->getZExtValue())
5709       Immediate |= (1ULL << idx);
5710   }
5711
5712   if (AllContants) {
5713     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5714       DAG.getConstant(Immediate, MVT::i16));
5715     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5716                        DAG.getIntPtrConstant(0));
5717   }
5718
5719   // Splat vector (with undefs)
5720   SDValue In = Op.getOperand(0);
5721   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5722     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5723       llvm_unreachable("Unsupported predicate operation");
5724   }
5725
5726   SDValue EFLAGS, X86CC;
5727   if (In.getOpcode() == ISD::SETCC) {
5728     SDValue Op0 = In.getOperand(0);
5729     SDValue Op1 = In.getOperand(1);
5730     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5731     bool isFP = Op1.getValueType().isFloatingPoint();
5732     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5733
5734     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5735
5736     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5737     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5738     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5739   } else if (In.getOpcode() == X86ISD::SETCC) {
5740     X86CC = In.getOperand(0);
5741     EFLAGS = In.getOperand(1);
5742   } else {
5743     // The algorithm:
5744     //   Bit1 = In & 0x1
5745     //   if (Bit1 != 0)
5746     //     ZF = 0
5747     //   else
5748     //     ZF = 1
5749     //   if (ZF == 0)
5750     //     res = allOnes ### CMOVNE -1, %res
5751     //   else
5752     //     res = allZero
5753     MVT InVT = In.getSimpleValueType();
5754     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5755     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5756     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5757   }
5758
5759   if (VT == MVT::v16i1) {
5760     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5761     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5762     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5763           Cst0, Cst1, X86CC, EFLAGS);
5764     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5765   }
5766
5767   if (VT == MVT::v8i1) {
5768     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5769     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5770     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5771           Cst0, Cst1, X86CC, EFLAGS);
5772     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5773     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5774   }
5775   llvm_unreachable("Unsupported predicate operation");
5776 }
5777
5778 SDValue
5779 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5780   SDLoc dl(Op);
5781
5782   MVT VT = Op.getSimpleValueType();
5783   MVT ExtVT = VT.getVectorElementType();
5784   unsigned NumElems = Op.getNumOperands();
5785
5786   // Generate vectors for predicate vectors.
5787   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5788     return LowerBUILD_VECTORvXi1(Op, DAG);
5789
5790   // Vectors containing all zeros can be matched by pxor and xorps later
5791   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5792     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5793     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5794     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5795       return Op;
5796
5797     return getZeroVector(VT, Subtarget, DAG, dl);
5798   }
5799
5800   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5801   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5802   // vpcmpeqd on 256-bit vectors.
5803   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5804     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5805       return Op;
5806
5807     if (!VT.is512BitVector())
5808       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5809   }
5810
5811   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5812   if (Broadcast.getNode())
5813     return Broadcast;
5814
5815   unsigned EVTBits = ExtVT.getSizeInBits();
5816
5817   unsigned NumZero  = 0;
5818   unsigned NumNonZero = 0;
5819   unsigned NonZeros = 0;
5820   bool IsAllConstants = true;
5821   SmallSet<SDValue, 8> Values;
5822   for (unsigned i = 0; i < NumElems; ++i) {
5823     SDValue Elt = Op.getOperand(i);
5824     if (Elt.getOpcode() == ISD::UNDEF)
5825       continue;
5826     Values.insert(Elt);
5827     if (Elt.getOpcode() != ISD::Constant &&
5828         Elt.getOpcode() != ISD::ConstantFP)
5829       IsAllConstants = false;
5830     if (X86::isZeroNode(Elt))
5831       NumZero++;
5832     else {
5833       NonZeros |= (1 << i);
5834       NumNonZero++;
5835     }
5836   }
5837
5838   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5839   if (NumNonZero == 0)
5840     return DAG.getUNDEF(VT);
5841
5842   // Special case for single non-zero, non-undef, element.
5843   if (NumNonZero == 1) {
5844     unsigned Idx = countTrailingZeros(NonZeros);
5845     SDValue Item = Op.getOperand(Idx);
5846
5847     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5848     // the value are obviously zero, truncate the value to i32 and do the
5849     // insertion that way.  Only do this if the value is non-constant or if the
5850     // value is a constant being inserted into element 0.  It is cheaper to do
5851     // a constant pool load than it is to do a movd + shuffle.
5852     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5853         (!IsAllConstants || Idx == 0)) {
5854       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5855         // Handle SSE only.
5856         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5857         EVT VecVT = MVT::v4i32;
5858         unsigned VecElts = 4;
5859
5860         // Truncate the value (which may itself be a constant) to i32, and
5861         // convert it to a vector with movd (S2V+shuffle to zero extend).
5862         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5863         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5864         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5865
5866         // Now we have our 32-bit value zero extended in the low element of
5867         // a vector.  If Idx != 0, swizzle it into place.
5868         if (Idx != 0) {
5869           SmallVector<int, 4> Mask;
5870           Mask.push_back(Idx);
5871           for (unsigned i = 1; i != VecElts; ++i)
5872             Mask.push_back(i);
5873           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5874                                       &Mask[0]);
5875         }
5876         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5877       }
5878     }
5879
5880     // If we have a constant or non-constant insertion into the low element of
5881     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5882     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5883     // depending on what the source datatype is.
5884     if (Idx == 0) {
5885       if (NumZero == 0)
5886         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5887
5888       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5889           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5890         if (VT.is256BitVector() || VT.is512BitVector()) {
5891           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5892           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5893                              Item, DAG.getIntPtrConstant(0));
5894         }
5895         assert(VT.is128BitVector() && "Expected an SSE value type!");
5896         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5897         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5898         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5899       }
5900
5901       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5902         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5903         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5904         if (VT.is256BitVector()) {
5905           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5906           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5907         } else {
5908           assert(VT.is128BitVector() && "Expected an SSE value type!");
5909           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5910         }
5911         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5912       }
5913     }
5914
5915     // Is it a vector logical left shift?
5916     if (NumElems == 2 && Idx == 1 &&
5917         X86::isZeroNode(Op.getOperand(0)) &&
5918         !X86::isZeroNode(Op.getOperand(1))) {
5919       unsigned NumBits = VT.getSizeInBits();
5920       return getVShift(true, VT,
5921                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5922                                    VT, Op.getOperand(1)),
5923                        NumBits/2, DAG, *this, dl);
5924     }
5925
5926     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5927       return SDValue();
5928
5929     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5930     // is a non-constant being inserted into an element other than the low one,
5931     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5932     // movd/movss) to move this into the low element, then shuffle it into
5933     // place.
5934     if (EVTBits == 32) {
5935       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5936
5937       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5938       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5939       SmallVector<int, 8> MaskVec;
5940       for (unsigned i = 0; i != NumElems; ++i)
5941         MaskVec.push_back(i == Idx ? 0 : 1);
5942       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5943     }
5944   }
5945
5946   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5947   if (Values.size() == 1) {
5948     if (EVTBits == 32) {
5949       // Instead of a shuffle like this:
5950       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5951       // Check if it's possible to issue this instead.
5952       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5953       unsigned Idx = countTrailingZeros(NonZeros);
5954       SDValue Item = Op.getOperand(Idx);
5955       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5956         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5957     }
5958     return SDValue();
5959   }
5960
5961   // A vector full of immediates; various special cases are already
5962   // handled, so this is best done with a single constant-pool load.
5963   if (IsAllConstants)
5964     return SDValue();
5965
5966   // For AVX-length vectors, build the individual 128-bit pieces and use
5967   // shuffles to put them in place.
5968   if (VT.is256BitVector()) {
5969     SmallVector<SDValue, 32> V;
5970     for (unsigned i = 0; i != NumElems; ++i)
5971       V.push_back(Op.getOperand(i));
5972
5973     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5974
5975     // Build both the lower and upper subvector.
5976     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5977     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5978                                 NumElems/2);
5979
5980     // Recreate the wider vector with the lower and upper part.
5981     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5982   }
5983
5984   // Let legalizer expand 2-wide build_vectors.
5985   if (EVTBits == 64) {
5986     if (NumNonZero == 1) {
5987       // One half is zero or undef.
5988       unsigned Idx = countTrailingZeros(NonZeros);
5989       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5990                                  Op.getOperand(Idx));
5991       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5992     }
5993     return SDValue();
5994   }
5995
5996   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5997   if (EVTBits == 8 && NumElems == 16) {
5998     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5999                                         Subtarget, *this);
6000     if (V.getNode()) return V;
6001   }
6002
6003   if (EVTBits == 16 && NumElems == 8) {
6004     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6005                                       Subtarget, *this);
6006     if (V.getNode()) return V;
6007   }
6008
6009   // If element VT is == 32 bits, turn it into a number of shuffles.
6010   SmallVector<SDValue, 8> V(NumElems);
6011   if (NumElems == 4 && NumZero > 0) {
6012     for (unsigned i = 0; i < 4; ++i) {
6013       bool isZero = !(NonZeros & (1 << i));
6014       if (isZero)
6015         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6016       else
6017         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6018     }
6019
6020     for (unsigned i = 0; i < 2; ++i) {
6021       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6022         default: break;
6023         case 0:
6024           V[i] = V[i*2];  // Must be a zero vector.
6025           break;
6026         case 1:
6027           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6028           break;
6029         case 2:
6030           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6031           break;
6032         case 3:
6033           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6034           break;
6035       }
6036     }
6037
6038     bool Reverse1 = (NonZeros & 0x3) == 2;
6039     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6040     int MaskVec[] = {
6041       Reverse1 ? 1 : 0,
6042       Reverse1 ? 0 : 1,
6043       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6044       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6045     };
6046     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6047   }
6048
6049   if (Values.size() > 1 && VT.is128BitVector()) {
6050     // Check for a build vector of consecutive loads.
6051     for (unsigned i = 0; i < NumElems; ++i)
6052       V[i] = Op.getOperand(i);
6053
6054     // Check for elements which are consecutive loads.
6055     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6056     if (LD.getNode())
6057       return LD;
6058
6059     // Check for a build vector from mostly shuffle plus few inserting.
6060     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6061     if (Sh.getNode())
6062       return Sh;
6063
6064     // For SSE 4.1, use insertps to put the high elements into the low element.
6065     if (getSubtarget()->hasSSE41()) {
6066       SDValue Result;
6067       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6068         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6069       else
6070         Result = DAG.getUNDEF(VT);
6071
6072       for (unsigned i = 1; i < NumElems; ++i) {
6073         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6074         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6075                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6076       }
6077       return Result;
6078     }
6079
6080     // Otherwise, expand into a number of unpckl*, start by extending each of
6081     // our (non-undef) elements to the full vector width with the element in the
6082     // bottom slot of the vector (which generates no code for SSE).
6083     for (unsigned i = 0; i < NumElems; ++i) {
6084       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6085         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6086       else
6087         V[i] = DAG.getUNDEF(VT);
6088     }
6089
6090     // Next, we iteratively mix elements, e.g. for v4f32:
6091     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6092     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6093     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6094     unsigned EltStride = NumElems >> 1;
6095     while (EltStride != 0) {
6096       for (unsigned i = 0; i < EltStride; ++i) {
6097         // If V[i+EltStride] is undef and this is the first round of mixing,
6098         // then it is safe to just drop this shuffle: V[i] is already in the
6099         // right place, the one element (since it's the first round) being
6100         // inserted as undef can be dropped.  This isn't safe for successive
6101         // rounds because they will permute elements within both vectors.
6102         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6103             EltStride == NumElems/2)
6104           continue;
6105
6106         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6107       }
6108       EltStride >>= 1;
6109     }
6110     return V[0];
6111   }
6112   return SDValue();
6113 }
6114
6115 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6116 // to create 256-bit vectors from two other 128-bit ones.
6117 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6118   SDLoc dl(Op);
6119   MVT ResVT = Op.getSimpleValueType();
6120
6121   assert((ResVT.is256BitVector() ||
6122           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6123
6124   SDValue V1 = Op.getOperand(0);
6125   SDValue V2 = Op.getOperand(1);
6126   unsigned NumElems = ResVT.getVectorNumElements();
6127   if(ResVT.is256BitVector())
6128     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6129
6130   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6131 }
6132
6133 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6134   assert(Op.getNumOperands() == 2);
6135
6136   // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
6137   // from two other 128-bit ones.
6138   return LowerAVXCONCAT_VECTORS(Op, DAG);
6139 }
6140
6141 // Try to lower a shuffle node into a simple blend instruction.
6142 static SDValue
6143 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6144                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6145   SDValue V1 = SVOp->getOperand(0);
6146   SDValue V2 = SVOp->getOperand(1);
6147   SDLoc dl(SVOp);
6148   MVT VT = SVOp->getSimpleValueType(0);
6149   MVT EltVT = VT.getVectorElementType();
6150   unsigned NumElems = VT.getVectorNumElements();
6151
6152   // There is no blend with immediate in AVX-512.
6153   if (VT.is512BitVector())
6154     return SDValue();
6155
6156   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6157     return SDValue();
6158   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6159     return SDValue();
6160
6161   // Check the mask for BLEND and build the value.
6162   unsigned MaskValue = 0;
6163   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6164   unsigned NumLanes = (NumElems-1)/8 + 1;
6165   unsigned NumElemsInLane = NumElems / NumLanes;
6166
6167   // Blend for v16i16 should be symetric for the both lanes.
6168   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6169
6170     int SndLaneEltIdx = (NumLanes == 2) ?
6171       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6172     int EltIdx = SVOp->getMaskElt(i);
6173
6174     if ((EltIdx < 0 || EltIdx == (int)i) &&
6175         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6176       continue;
6177
6178     if (((unsigned)EltIdx == (i + NumElems)) &&
6179         (SndLaneEltIdx < 0 ||
6180          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6181       MaskValue |= (1<<i);
6182     else
6183       return SDValue();
6184   }
6185
6186   // Convert i32 vectors to floating point if it is not AVX2.
6187   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6188   MVT BlendVT = VT;
6189   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6190     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6191                                NumElems);
6192     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6193     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6194   }
6195
6196   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6197                             DAG.getConstant(MaskValue, MVT::i32));
6198   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6199 }
6200
6201 // v8i16 shuffles - Prefer shuffles in the following order:
6202 // 1. [all]   pshuflw, pshufhw, optional move
6203 // 2. [ssse3] 1 x pshufb
6204 // 3. [ssse3] 2 x pshufb + 1 x por
6205 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6206 static SDValue
6207 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6208                          SelectionDAG &DAG) {
6209   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6210   SDValue V1 = SVOp->getOperand(0);
6211   SDValue V2 = SVOp->getOperand(1);
6212   SDLoc dl(SVOp);
6213   SmallVector<int, 8> MaskVals;
6214
6215   // Determine if more than 1 of the words in each of the low and high quadwords
6216   // of the result come from the same quadword of one of the two inputs.  Undef
6217   // mask values count as coming from any quadword, for better codegen.
6218   unsigned LoQuad[] = { 0, 0, 0, 0 };
6219   unsigned HiQuad[] = { 0, 0, 0, 0 };
6220   std::bitset<4> InputQuads;
6221   for (unsigned i = 0; i < 8; ++i) {
6222     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6223     int EltIdx = SVOp->getMaskElt(i);
6224     MaskVals.push_back(EltIdx);
6225     if (EltIdx < 0) {
6226       ++Quad[0];
6227       ++Quad[1];
6228       ++Quad[2];
6229       ++Quad[3];
6230       continue;
6231     }
6232     ++Quad[EltIdx / 4];
6233     InputQuads.set(EltIdx / 4);
6234   }
6235
6236   int BestLoQuad = -1;
6237   unsigned MaxQuad = 1;
6238   for (unsigned i = 0; i < 4; ++i) {
6239     if (LoQuad[i] > MaxQuad) {
6240       BestLoQuad = i;
6241       MaxQuad = LoQuad[i];
6242     }
6243   }
6244
6245   int BestHiQuad = -1;
6246   MaxQuad = 1;
6247   for (unsigned i = 0; i < 4; ++i) {
6248     if (HiQuad[i] > MaxQuad) {
6249       BestHiQuad = i;
6250       MaxQuad = HiQuad[i];
6251     }
6252   }
6253
6254   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6255   // of the two input vectors, shuffle them into one input vector so only a
6256   // single pshufb instruction is necessary. If There are more than 2 input
6257   // quads, disable the next transformation since it does not help SSSE3.
6258   bool V1Used = InputQuads[0] || InputQuads[1];
6259   bool V2Used = InputQuads[2] || InputQuads[3];
6260   if (Subtarget->hasSSSE3()) {
6261     if (InputQuads.count() == 2 && V1Used && V2Used) {
6262       BestLoQuad = InputQuads[0] ? 0 : 1;
6263       BestHiQuad = InputQuads[2] ? 2 : 3;
6264     }
6265     if (InputQuads.count() > 2) {
6266       BestLoQuad = -1;
6267       BestHiQuad = -1;
6268     }
6269   }
6270
6271   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6272   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6273   // words from all 4 input quadwords.
6274   SDValue NewV;
6275   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6276     int MaskV[] = {
6277       BestLoQuad < 0 ? 0 : BestLoQuad,
6278       BestHiQuad < 0 ? 1 : BestHiQuad
6279     };
6280     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6281                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6282                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6283     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6284
6285     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6286     // source words for the shuffle, to aid later transformations.
6287     bool AllWordsInNewV = true;
6288     bool InOrder[2] = { true, true };
6289     for (unsigned i = 0; i != 8; ++i) {
6290       int idx = MaskVals[i];
6291       if (idx != (int)i)
6292         InOrder[i/4] = false;
6293       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6294         continue;
6295       AllWordsInNewV = false;
6296       break;
6297     }
6298
6299     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6300     if (AllWordsInNewV) {
6301       for (int i = 0; i != 8; ++i) {
6302         int idx = MaskVals[i];
6303         if (idx < 0)
6304           continue;
6305         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6306         if ((idx != i) && idx < 4)
6307           pshufhw = false;
6308         if ((idx != i) && idx > 3)
6309           pshuflw = false;
6310       }
6311       V1 = NewV;
6312       V2Used = false;
6313       BestLoQuad = 0;
6314       BestHiQuad = 1;
6315     }
6316
6317     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6318     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6319     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6320       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6321       unsigned TargetMask = 0;
6322       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6323                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6324       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6325       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6326                              getShufflePSHUFLWImmediate(SVOp);
6327       V1 = NewV.getOperand(0);
6328       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6329     }
6330   }
6331
6332   // Promote splats to a larger type which usually leads to more efficient code.
6333   // FIXME: Is this true if pshufb is available?
6334   if (SVOp->isSplat())
6335     return PromoteSplat(SVOp, DAG);
6336
6337   // If we have SSSE3, and all words of the result are from 1 input vector,
6338   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6339   // is present, fall back to case 4.
6340   if (Subtarget->hasSSSE3()) {
6341     SmallVector<SDValue,16> pshufbMask;
6342
6343     // If we have elements from both input vectors, set the high bit of the
6344     // shuffle mask element to zero out elements that come from V2 in the V1
6345     // mask, and elements that come from V1 in the V2 mask, so that the two
6346     // results can be OR'd together.
6347     bool TwoInputs = V1Used && V2Used;
6348     for (unsigned i = 0; i != 8; ++i) {
6349       int EltIdx = MaskVals[i] * 2;
6350       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6351       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6352       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6353       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6354     }
6355     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6356     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6357                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6358                                  MVT::v16i8, &pshufbMask[0], 16));
6359     if (!TwoInputs)
6360       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6361
6362     // Calculate the shuffle mask for the second input, shuffle it, and
6363     // OR it with the first shuffled input.
6364     pshufbMask.clear();
6365     for (unsigned i = 0; i != 8; ++i) {
6366       int EltIdx = MaskVals[i] * 2;
6367       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6368       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6369       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6370       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6371     }
6372     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6373     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6374                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6375                                  MVT::v16i8, &pshufbMask[0], 16));
6376     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6377     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6378   }
6379
6380   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6381   // and update MaskVals with new element order.
6382   std::bitset<8> InOrder;
6383   if (BestLoQuad >= 0) {
6384     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6385     for (int i = 0; i != 4; ++i) {
6386       int idx = MaskVals[i];
6387       if (idx < 0) {
6388         InOrder.set(i);
6389       } else if ((idx / 4) == BestLoQuad) {
6390         MaskV[i] = idx & 3;
6391         InOrder.set(i);
6392       }
6393     }
6394     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6395                                 &MaskV[0]);
6396
6397     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6398       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6399       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6400                                   NewV.getOperand(0),
6401                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6402     }
6403   }
6404
6405   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6406   // and update MaskVals with the new element order.
6407   if (BestHiQuad >= 0) {
6408     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6409     for (unsigned i = 4; i != 8; ++i) {
6410       int idx = MaskVals[i];
6411       if (idx < 0) {
6412         InOrder.set(i);
6413       } else if ((idx / 4) == BestHiQuad) {
6414         MaskV[i] = (idx & 3) + 4;
6415         InOrder.set(i);
6416       }
6417     }
6418     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6419                                 &MaskV[0]);
6420
6421     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6422       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6423       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6424                                   NewV.getOperand(0),
6425                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6426     }
6427   }
6428
6429   // In case BestHi & BestLo were both -1, which means each quadword has a word
6430   // from each of the four input quadwords, calculate the InOrder bitvector now
6431   // before falling through to the insert/extract cleanup.
6432   if (BestLoQuad == -1 && BestHiQuad == -1) {
6433     NewV = V1;
6434     for (int i = 0; i != 8; ++i)
6435       if (MaskVals[i] < 0 || MaskVals[i] == i)
6436         InOrder.set(i);
6437   }
6438
6439   // The other elements are put in the right place using pextrw and pinsrw.
6440   for (unsigned i = 0; i != 8; ++i) {
6441     if (InOrder[i])
6442       continue;
6443     int EltIdx = MaskVals[i];
6444     if (EltIdx < 0)
6445       continue;
6446     SDValue ExtOp = (EltIdx < 8) ?
6447       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6448                   DAG.getIntPtrConstant(EltIdx)) :
6449       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6450                   DAG.getIntPtrConstant(EltIdx - 8));
6451     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6452                        DAG.getIntPtrConstant(i));
6453   }
6454   return NewV;
6455 }
6456
6457 // v16i8 shuffles - Prefer shuffles in the following order:
6458 // 1. [ssse3] 1 x pshufb
6459 // 2. [ssse3] 2 x pshufb + 1 x por
6460 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6461 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6462                                         const X86Subtarget* Subtarget,
6463                                         SelectionDAG &DAG) {
6464   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6465   SDValue V1 = SVOp->getOperand(0);
6466   SDValue V2 = SVOp->getOperand(1);
6467   SDLoc dl(SVOp);
6468   ArrayRef<int> MaskVals = SVOp->getMask();
6469
6470   // Promote splats to a larger type which usually leads to more efficient code.
6471   // FIXME: Is this true if pshufb is available?
6472   if (SVOp->isSplat())
6473     return PromoteSplat(SVOp, DAG);
6474
6475   // If we have SSSE3, case 1 is generated when all result bytes come from
6476   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6477   // present, fall back to case 3.
6478
6479   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6480   if (Subtarget->hasSSSE3()) {
6481     SmallVector<SDValue,16> pshufbMask;
6482
6483     // If all result elements are from one input vector, then only translate
6484     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6485     //
6486     // Otherwise, we have elements from both input vectors, and must zero out
6487     // elements that come from V2 in the first mask, and V1 in the second mask
6488     // so that we can OR them together.
6489     for (unsigned i = 0; i != 16; ++i) {
6490       int EltIdx = MaskVals[i];
6491       if (EltIdx < 0 || EltIdx >= 16)
6492         EltIdx = 0x80;
6493       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6494     }
6495     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6496                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6497                                  MVT::v16i8, &pshufbMask[0], 16));
6498
6499     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6500     // the 2nd operand if it's undefined or zero.
6501     if (V2.getOpcode() == ISD::UNDEF ||
6502         ISD::isBuildVectorAllZeros(V2.getNode()))
6503       return V1;
6504
6505     // Calculate the shuffle mask for the second input, shuffle it, and
6506     // OR it with the first shuffled input.
6507     pshufbMask.clear();
6508     for (unsigned i = 0; i != 16; ++i) {
6509       int EltIdx = MaskVals[i];
6510       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6511       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6512     }
6513     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6514                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6515                                  MVT::v16i8, &pshufbMask[0], 16));
6516     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6517   }
6518
6519   // No SSSE3 - Calculate in place words and then fix all out of place words
6520   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6521   // the 16 different words that comprise the two doublequadword input vectors.
6522   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6523   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6524   SDValue NewV = V1;
6525   for (int i = 0; i != 8; ++i) {
6526     int Elt0 = MaskVals[i*2];
6527     int Elt1 = MaskVals[i*2+1];
6528
6529     // This word of the result is all undef, skip it.
6530     if (Elt0 < 0 && Elt1 < 0)
6531       continue;
6532
6533     // This word of the result is already in the correct place, skip it.
6534     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6535       continue;
6536
6537     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6538     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6539     SDValue InsElt;
6540
6541     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6542     // using a single extract together, load it and store it.
6543     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6544       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6545                            DAG.getIntPtrConstant(Elt1 / 2));
6546       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6547                         DAG.getIntPtrConstant(i));
6548       continue;
6549     }
6550
6551     // If Elt1 is defined, extract it from the appropriate source.  If the
6552     // source byte is not also odd, shift the extracted word left 8 bits
6553     // otherwise clear the bottom 8 bits if we need to do an or.
6554     if (Elt1 >= 0) {
6555       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6556                            DAG.getIntPtrConstant(Elt1 / 2));
6557       if ((Elt1 & 1) == 0)
6558         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6559                              DAG.getConstant(8,
6560                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6561       else if (Elt0 >= 0)
6562         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6563                              DAG.getConstant(0xFF00, MVT::i16));
6564     }
6565     // If Elt0 is defined, extract it from the appropriate source.  If the
6566     // source byte is not also even, shift the extracted word right 8 bits. If
6567     // Elt1 was also defined, OR the extracted values together before
6568     // inserting them in the result.
6569     if (Elt0 >= 0) {
6570       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6571                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6572       if ((Elt0 & 1) != 0)
6573         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6574                               DAG.getConstant(8,
6575                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6576       else if (Elt1 >= 0)
6577         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6578                              DAG.getConstant(0x00FF, MVT::i16));
6579       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6580                          : InsElt0;
6581     }
6582     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6583                        DAG.getIntPtrConstant(i));
6584   }
6585   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6586 }
6587
6588 // v32i8 shuffles - Translate to VPSHUFB if possible.
6589 static
6590 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6591                                  const X86Subtarget *Subtarget,
6592                                  SelectionDAG &DAG) {
6593   MVT VT = SVOp->getSimpleValueType(0);
6594   SDValue V1 = SVOp->getOperand(0);
6595   SDValue V2 = SVOp->getOperand(1);
6596   SDLoc dl(SVOp);
6597   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6598
6599   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6600   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6601   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6602
6603   // VPSHUFB may be generated if
6604   // (1) one of input vector is undefined or zeroinitializer.
6605   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6606   // And (2) the mask indexes don't cross the 128-bit lane.
6607   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6608       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6609     return SDValue();
6610
6611   if (V1IsAllZero && !V2IsAllZero) {
6612     CommuteVectorShuffleMask(MaskVals, 32);
6613     V1 = V2;
6614   }
6615   SmallVector<SDValue, 32> pshufbMask;
6616   for (unsigned i = 0; i != 32; i++) {
6617     int EltIdx = MaskVals[i];
6618     if (EltIdx < 0 || EltIdx >= 32)
6619       EltIdx = 0x80;
6620     else {
6621       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6622         // Cross lane is not allowed.
6623         return SDValue();
6624       EltIdx &= 0xf;
6625     }
6626     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6627   }
6628   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6629                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6630                                   MVT::v32i8, &pshufbMask[0], 32));
6631 }
6632
6633 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6634 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6635 /// done when every pair / quad of shuffle mask elements point to elements in
6636 /// the right sequence. e.g.
6637 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6638 static
6639 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6640                                  SelectionDAG &DAG) {
6641   MVT VT = SVOp->getSimpleValueType(0);
6642   SDLoc dl(SVOp);
6643   unsigned NumElems = VT.getVectorNumElements();
6644   MVT NewVT;
6645   unsigned Scale;
6646   switch (VT.SimpleTy) {
6647   default: llvm_unreachable("Unexpected!");
6648   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6649   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6650   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6651   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6652   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6653   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6654   }
6655
6656   SmallVector<int, 8> MaskVec;
6657   for (unsigned i = 0; i != NumElems; i += Scale) {
6658     int StartIdx = -1;
6659     for (unsigned j = 0; j != Scale; ++j) {
6660       int EltIdx = SVOp->getMaskElt(i+j);
6661       if (EltIdx < 0)
6662         continue;
6663       if (StartIdx < 0)
6664         StartIdx = (EltIdx / Scale);
6665       if (EltIdx != (int)(StartIdx*Scale + j))
6666         return SDValue();
6667     }
6668     MaskVec.push_back(StartIdx);
6669   }
6670
6671   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6672   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6673   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6674 }
6675
6676 /// getVZextMovL - Return a zero-extending vector move low node.
6677 ///
6678 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6679                             SDValue SrcOp, SelectionDAG &DAG,
6680                             const X86Subtarget *Subtarget, SDLoc dl) {
6681   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6682     LoadSDNode *LD = NULL;
6683     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6684       LD = dyn_cast<LoadSDNode>(SrcOp);
6685     if (!LD) {
6686       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6687       // instead.
6688       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6689       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6690           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6691           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6692           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6693         // PR2108
6694         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6695         return DAG.getNode(ISD::BITCAST, dl, VT,
6696                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6697                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6698                                                    OpVT,
6699                                                    SrcOp.getOperand(0)
6700                                                           .getOperand(0))));
6701       }
6702     }
6703   }
6704
6705   return DAG.getNode(ISD::BITCAST, dl, VT,
6706                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6707                                  DAG.getNode(ISD::BITCAST, dl,
6708                                              OpVT, SrcOp)));
6709 }
6710
6711 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6712 /// which could not be matched by any known target speficic shuffle
6713 static SDValue
6714 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6715
6716   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6717   if (NewOp.getNode())
6718     return NewOp;
6719
6720   MVT VT = SVOp->getSimpleValueType(0);
6721
6722   unsigned NumElems = VT.getVectorNumElements();
6723   unsigned NumLaneElems = NumElems / 2;
6724
6725   SDLoc dl(SVOp);
6726   MVT EltVT = VT.getVectorElementType();
6727   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6728   SDValue Output[2];
6729
6730   SmallVector<int, 16> Mask;
6731   for (unsigned l = 0; l < 2; ++l) {
6732     // Build a shuffle mask for the output, discovering on the fly which
6733     // input vectors to use as shuffle operands (recorded in InputUsed).
6734     // If building a suitable shuffle vector proves too hard, then bail
6735     // out with UseBuildVector set.
6736     bool UseBuildVector = false;
6737     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6738     unsigned LaneStart = l * NumLaneElems;
6739     for (unsigned i = 0; i != NumLaneElems; ++i) {
6740       // The mask element.  This indexes into the input.
6741       int Idx = SVOp->getMaskElt(i+LaneStart);
6742       if (Idx < 0) {
6743         // the mask element does not index into any input vector.
6744         Mask.push_back(-1);
6745         continue;
6746       }
6747
6748       // The input vector this mask element indexes into.
6749       int Input = Idx / NumLaneElems;
6750
6751       // Turn the index into an offset from the start of the input vector.
6752       Idx -= Input * NumLaneElems;
6753
6754       // Find or create a shuffle vector operand to hold this input.
6755       unsigned OpNo;
6756       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6757         if (InputUsed[OpNo] == Input)
6758           // This input vector is already an operand.
6759           break;
6760         if (InputUsed[OpNo] < 0) {
6761           // Create a new operand for this input vector.
6762           InputUsed[OpNo] = Input;
6763           break;
6764         }
6765       }
6766
6767       if (OpNo >= array_lengthof(InputUsed)) {
6768         // More than two input vectors used!  Give up on trying to create a
6769         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6770         UseBuildVector = true;
6771         break;
6772       }
6773
6774       // Add the mask index for the new shuffle vector.
6775       Mask.push_back(Idx + OpNo * NumLaneElems);
6776     }
6777
6778     if (UseBuildVector) {
6779       SmallVector<SDValue, 16> SVOps;
6780       for (unsigned i = 0; i != NumLaneElems; ++i) {
6781         // The mask element.  This indexes into the input.
6782         int Idx = SVOp->getMaskElt(i+LaneStart);
6783         if (Idx < 0) {
6784           SVOps.push_back(DAG.getUNDEF(EltVT));
6785           continue;
6786         }
6787
6788         // The input vector this mask element indexes into.
6789         int Input = Idx / NumElems;
6790
6791         // Turn the index into an offset from the start of the input vector.
6792         Idx -= Input * NumElems;
6793
6794         // Extract the vector element by hand.
6795         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6796                                     SVOp->getOperand(Input),
6797                                     DAG.getIntPtrConstant(Idx)));
6798       }
6799
6800       // Construct the output using a BUILD_VECTOR.
6801       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6802                               SVOps.size());
6803     } else if (InputUsed[0] < 0) {
6804       // No input vectors were used! The result is undefined.
6805       Output[l] = DAG.getUNDEF(NVT);
6806     } else {
6807       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6808                                         (InputUsed[0] % 2) * NumLaneElems,
6809                                         DAG, dl);
6810       // If only one input was used, use an undefined vector for the other.
6811       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6812         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6813                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6814       // At least one input vector was used. Create a new shuffle vector.
6815       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6816     }
6817
6818     Mask.clear();
6819   }
6820
6821   // Concatenate the result back
6822   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6823 }
6824
6825 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6826 /// 4 elements, and match them with several different shuffle types.
6827 static SDValue
6828 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6829   SDValue V1 = SVOp->getOperand(0);
6830   SDValue V2 = SVOp->getOperand(1);
6831   SDLoc dl(SVOp);
6832   MVT VT = SVOp->getSimpleValueType(0);
6833
6834   assert(VT.is128BitVector() && "Unsupported vector size");
6835
6836   std::pair<int, int> Locs[4];
6837   int Mask1[] = { -1, -1, -1, -1 };
6838   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6839
6840   unsigned NumHi = 0;
6841   unsigned NumLo = 0;
6842   for (unsigned i = 0; i != 4; ++i) {
6843     int Idx = PermMask[i];
6844     if (Idx < 0) {
6845       Locs[i] = std::make_pair(-1, -1);
6846     } else {
6847       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6848       if (Idx < 4) {
6849         Locs[i] = std::make_pair(0, NumLo);
6850         Mask1[NumLo] = Idx;
6851         NumLo++;
6852       } else {
6853         Locs[i] = std::make_pair(1, NumHi);
6854         if (2+NumHi < 4)
6855           Mask1[2+NumHi] = Idx;
6856         NumHi++;
6857       }
6858     }
6859   }
6860
6861   if (NumLo <= 2 && NumHi <= 2) {
6862     // If no more than two elements come from either vector. This can be
6863     // implemented with two shuffles. First shuffle gather the elements.
6864     // The second shuffle, which takes the first shuffle as both of its
6865     // vector operands, put the elements into the right order.
6866     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6867
6868     int Mask2[] = { -1, -1, -1, -1 };
6869
6870     for (unsigned i = 0; i != 4; ++i)
6871       if (Locs[i].first != -1) {
6872         unsigned Idx = (i < 2) ? 0 : 4;
6873         Idx += Locs[i].first * 2 + Locs[i].second;
6874         Mask2[i] = Idx;
6875       }
6876
6877     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6878   }
6879
6880   if (NumLo == 3 || NumHi == 3) {
6881     // Otherwise, we must have three elements from one vector, call it X, and
6882     // one element from the other, call it Y.  First, use a shufps to build an
6883     // intermediate vector with the one element from Y and the element from X
6884     // that will be in the same half in the final destination (the indexes don't
6885     // matter). Then, use a shufps to build the final vector, taking the half
6886     // containing the element from Y from the intermediate, and the other half
6887     // from X.
6888     if (NumHi == 3) {
6889       // Normalize it so the 3 elements come from V1.
6890       CommuteVectorShuffleMask(PermMask, 4);
6891       std::swap(V1, V2);
6892     }
6893
6894     // Find the element from V2.
6895     unsigned HiIndex;
6896     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6897       int Val = PermMask[HiIndex];
6898       if (Val < 0)
6899         continue;
6900       if (Val >= 4)
6901         break;
6902     }
6903
6904     Mask1[0] = PermMask[HiIndex];
6905     Mask1[1] = -1;
6906     Mask1[2] = PermMask[HiIndex^1];
6907     Mask1[3] = -1;
6908     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6909
6910     if (HiIndex >= 2) {
6911       Mask1[0] = PermMask[0];
6912       Mask1[1] = PermMask[1];
6913       Mask1[2] = HiIndex & 1 ? 6 : 4;
6914       Mask1[3] = HiIndex & 1 ? 4 : 6;
6915       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6916     }
6917
6918     Mask1[0] = HiIndex & 1 ? 2 : 0;
6919     Mask1[1] = HiIndex & 1 ? 0 : 2;
6920     Mask1[2] = PermMask[2];
6921     Mask1[3] = PermMask[3];
6922     if (Mask1[2] >= 0)
6923       Mask1[2] += 4;
6924     if (Mask1[3] >= 0)
6925       Mask1[3] += 4;
6926     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6927   }
6928
6929   // Break it into (shuffle shuffle_hi, shuffle_lo).
6930   int LoMask[] = { -1, -1, -1, -1 };
6931   int HiMask[] = { -1, -1, -1, -1 };
6932
6933   int *MaskPtr = LoMask;
6934   unsigned MaskIdx = 0;
6935   unsigned LoIdx = 0;
6936   unsigned HiIdx = 2;
6937   for (unsigned i = 0; i != 4; ++i) {
6938     if (i == 2) {
6939       MaskPtr = HiMask;
6940       MaskIdx = 1;
6941       LoIdx = 0;
6942       HiIdx = 2;
6943     }
6944     int Idx = PermMask[i];
6945     if (Idx < 0) {
6946       Locs[i] = std::make_pair(-1, -1);
6947     } else if (Idx < 4) {
6948       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6949       MaskPtr[LoIdx] = Idx;
6950       LoIdx++;
6951     } else {
6952       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6953       MaskPtr[HiIdx] = Idx;
6954       HiIdx++;
6955     }
6956   }
6957
6958   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6959   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6960   int MaskOps[] = { -1, -1, -1, -1 };
6961   for (unsigned i = 0; i != 4; ++i)
6962     if (Locs[i].first != -1)
6963       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6964   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6965 }
6966
6967 static bool MayFoldVectorLoad(SDValue V) {
6968   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6969     V = V.getOperand(0);
6970
6971   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6972     V = V.getOperand(0);
6973   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6974       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6975     // BUILD_VECTOR (load), undef
6976     V = V.getOperand(0);
6977
6978   return MayFoldLoad(V);
6979 }
6980
6981 static
6982 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6983   MVT VT = Op.getSimpleValueType();
6984
6985   // Canonizalize to v2f64.
6986   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6987   return DAG.getNode(ISD::BITCAST, dl, VT,
6988                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6989                                           V1, DAG));
6990 }
6991
6992 static
6993 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6994                         bool HasSSE2) {
6995   SDValue V1 = Op.getOperand(0);
6996   SDValue V2 = Op.getOperand(1);
6997   MVT VT = Op.getSimpleValueType();
6998
6999   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7000
7001   if (HasSSE2 && VT == MVT::v2f64)
7002     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7003
7004   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7005   return DAG.getNode(ISD::BITCAST, dl, VT,
7006                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7007                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7008                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7009 }
7010
7011 static
7012 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7013   SDValue V1 = Op.getOperand(0);
7014   SDValue V2 = Op.getOperand(1);
7015   MVT VT = Op.getSimpleValueType();
7016
7017   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7018          "unsupported shuffle type");
7019
7020   if (V2.getOpcode() == ISD::UNDEF)
7021     V2 = V1;
7022
7023   // v4i32 or v4f32
7024   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7025 }
7026
7027 static
7028 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7029   SDValue V1 = Op.getOperand(0);
7030   SDValue V2 = Op.getOperand(1);
7031   MVT VT = Op.getSimpleValueType();
7032   unsigned NumElems = VT.getVectorNumElements();
7033
7034   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7035   // operand of these instructions is only memory, so check if there's a
7036   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7037   // same masks.
7038   bool CanFoldLoad = false;
7039
7040   // Trivial case, when V2 comes from a load.
7041   if (MayFoldVectorLoad(V2))
7042     CanFoldLoad = true;
7043
7044   // When V1 is a load, it can be folded later into a store in isel, example:
7045   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7046   //    turns into:
7047   //  (MOVLPSmr addr:$src1, VR128:$src2)
7048   // So, recognize this potential and also use MOVLPS or MOVLPD
7049   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7050     CanFoldLoad = true;
7051
7052   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7053   if (CanFoldLoad) {
7054     if (HasSSE2 && NumElems == 2)
7055       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7056
7057     if (NumElems == 4)
7058       // If we don't care about the second element, proceed to use movss.
7059       if (SVOp->getMaskElt(1) != -1)
7060         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7061   }
7062
7063   // movl and movlp will both match v2i64, but v2i64 is never matched by
7064   // movl earlier because we make it strict to avoid messing with the movlp load
7065   // folding logic (see the code above getMOVLP call). Match it here then,
7066   // this is horrible, but will stay like this until we move all shuffle
7067   // matching to x86 specific nodes. Note that for the 1st condition all
7068   // types are matched with movsd.
7069   if (HasSSE2) {
7070     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7071     // as to remove this logic from here, as much as possible
7072     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7073       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7074     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7075   }
7076
7077   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7078
7079   // Invert the operand order and use SHUFPS to match it.
7080   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7081                               getShuffleSHUFImmediate(SVOp), DAG);
7082 }
7083
7084 // Reduce a vector shuffle to zext.
7085 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7086                                     SelectionDAG &DAG) {
7087   // PMOVZX is only available from SSE41.
7088   if (!Subtarget->hasSSE41())
7089     return SDValue();
7090
7091   MVT VT = Op.getSimpleValueType();
7092
7093   // Only AVX2 support 256-bit vector integer extending.
7094   if (!Subtarget->hasInt256() && VT.is256BitVector())
7095     return SDValue();
7096
7097   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7098   SDLoc DL(Op);
7099   SDValue V1 = Op.getOperand(0);
7100   SDValue V2 = Op.getOperand(1);
7101   unsigned NumElems = VT.getVectorNumElements();
7102
7103   // Extending is an unary operation and the element type of the source vector
7104   // won't be equal to or larger than i64.
7105   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7106       VT.getVectorElementType() == MVT::i64)
7107     return SDValue();
7108
7109   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7110   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7111   while ((1U << Shift) < NumElems) {
7112     if (SVOp->getMaskElt(1U << Shift) == 1)
7113       break;
7114     Shift += 1;
7115     // The maximal ratio is 8, i.e. from i8 to i64.
7116     if (Shift > 3)
7117       return SDValue();
7118   }
7119
7120   // Check the shuffle mask.
7121   unsigned Mask = (1U << Shift) - 1;
7122   for (unsigned i = 0; i != NumElems; ++i) {
7123     int EltIdx = SVOp->getMaskElt(i);
7124     if ((i & Mask) != 0 && EltIdx != -1)
7125       return SDValue();
7126     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7127       return SDValue();
7128   }
7129
7130   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7131   MVT NeVT = MVT::getIntegerVT(NBits);
7132   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7133
7134   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7135     return SDValue();
7136
7137   // Simplify the operand as it's prepared to be fed into shuffle.
7138   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7139   if (V1.getOpcode() == ISD::BITCAST &&
7140       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7141       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7142       V1.getOperand(0).getOperand(0)
7143         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7144     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7145     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7146     ConstantSDNode *CIdx =
7147       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7148     // If it's foldable, i.e. normal load with single use, we will let code
7149     // selection to fold it. Otherwise, we will short the conversion sequence.
7150     if (CIdx && CIdx->getZExtValue() == 0 &&
7151         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7152       MVT FullVT = V.getSimpleValueType();
7153       MVT V1VT = V1.getSimpleValueType();
7154       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7155         // The "ext_vec_elt" node is wider than the result node.
7156         // In this case we should extract subvector from V.
7157         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7158         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7159         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7160                                         FullVT.getVectorNumElements()/Ratio);
7161         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7162                         DAG.getIntPtrConstant(0));
7163       }
7164       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7165     }
7166   }
7167
7168   return DAG.getNode(ISD::BITCAST, DL, VT,
7169                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7170 }
7171
7172 static SDValue
7173 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7174                        SelectionDAG &DAG) {
7175   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7176   MVT VT = Op.getSimpleValueType();
7177   SDLoc dl(Op);
7178   SDValue V1 = Op.getOperand(0);
7179   SDValue V2 = Op.getOperand(1);
7180
7181   if (isZeroShuffle(SVOp))
7182     return getZeroVector(VT, Subtarget, DAG, dl);
7183
7184   // Handle splat operations
7185   if (SVOp->isSplat()) {
7186     // Use vbroadcast whenever the splat comes from a foldable load
7187     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7188     if (Broadcast.getNode())
7189       return Broadcast;
7190   }
7191
7192   // Check integer expanding shuffles.
7193   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7194   if (NewOp.getNode())
7195     return NewOp;
7196
7197   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7198   // do it!
7199   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7200       VT == MVT::v16i16 || VT == MVT::v32i8) {
7201     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7202     if (NewOp.getNode())
7203       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7204   } else if ((VT == MVT::v4i32 ||
7205              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7206     // FIXME: Figure out a cleaner way to do this.
7207     // Try to make use of movq to zero out the top part.
7208     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7209       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7210       if (NewOp.getNode()) {
7211         MVT NewVT = NewOp.getSimpleValueType();
7212         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7213                                NewVT, true, false))
7214           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7215                               DAG, Subtarget, dl);
7216       }
7217     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7218       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7219       if (NewOp.getNode()) {
7220         MVT NewVT = NewOp.getSimpleValueType();
7221         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7222           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7223                               DAG, Subtarget, dl);
7224       }
7225     }
7226   }
7227   return SDValue();
7228 }
7229
7230 SDValue
7231 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7232   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7233   SDValue V1 = Op.getOperand(0);
7234   SDValue V2 = Op.getOperand(1);
7235   MVT VT = Op.getSimpleValueType();
7236   SDLoc dl(Op);
7237   unsigned NumElems = VT.getVectorNumElements();
7238   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7239   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7240   bool V1IsSplat = false;
7241   bool V2IsSplat = false;
7242   bool HasSSE2 = Subtarget->hasSSE2();
7243   bool HasFp256    = Subtarget->hasFp256();
7244   bool HasInt256   = Subtarget->hasInt256();
7245   MachineFunction &MF = DAG.getMachineFunction();
7246   bool OptForSize = MF.getFunction()->getAttributes().
7247     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7248
7249   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7250
7251   if (V1IsUndef && V2IsUndef)
7252     return DAG.getUNDEF(VT);
7253
7254   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7255
7256   // Vector shuffle lowering takes 3 steps:
7257   //
7258   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7259   //    narrowing and commutation of operands should be handled.
7260   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7261   //    shuffle nodes.
7262   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7263   //    so the shuffle can be broken into other shuffles and the legalizer can
7264   //    try the lowering again.
7265   //
7266   // The general idea is that no vector_shuffle operation should be left to
7267   // be matched during isel, all of them must be converted to a target specific
7268   // node here.
7269
7270   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7271   // narrowing and commutation of operands should be handled. The actual code
7272   // doesn't include all of those, work in progress...
7273   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7274   if (NewOp.getNode())
7275     return NewOp;
7276
7277   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7278
7279   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7280   // unpckh_undef). Only use pshufd if speed is more important than size.
7281   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7282     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7283   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7284     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7285
7286   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7287       V2IsUndef && MayFoldVectorLoad(V1))
7288     return getMOVDDup(Op, dl, V1, DAG);
7289
7290   if (isMOVHLPS_v_undef_Mask(M, VT))
7291     return getMOVHighToLow(Op, dl, DAG);
7292
7293   // Use to match splats
7294   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7295       (VT == MVT::v2f64 || VT == MVT::v2i64))
7296     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7297
7298   if (isPSHUFDMask(M, VT)) {
7299     // The actual implementation will match the mask in the if above and then
7300     // during isel it can match several different instructions, not only pshufd
7301     // as its name says, sad but true, emulate the behavior for now...
7302     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7303       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7304
7305     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7306
7307     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7308       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7309
7310     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7311       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7312                                   DAG);
7313
7314     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7315                                 TargetMask, DAG);
7316   }
7317
7318   if (isPALIGNRMask(M, VT, Subtarget))
7319     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7320                                 getShufflePALIGNRImmediate(SVOp),
7321                                 DAG);
7322
7323   // Check if this can be converted into a logical shift.
7324   bool isLeft = false;
7325   unsigned ShAmt = 0;
7326   SDValue ShVal;
7327   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7328   if (isShift && ShVal.hasOneUse()) {
7329     // If the shifted value has multiple uses, it may be cheaper to use
7330     // v_set0 + movlhps or movhlps, etc.
7331     MVT EltVT = VT.getVectorElementType();
7332     ShAmt *= EltVT.getSizeInBits();
7333     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7334   }
7335
7336   if (isMOVLMask(M, VT)) {
7337     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7338       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7339     if (!isMOVLPMask(M, VT)) {
7340       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7341         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7342
7343       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7344         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7345     }
7346   }
7347
7348   // FIXME: fold these into legal mask.
7349   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7350     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7351
7352   if (isMOVHLPSMask(M, VT))
7353     return getMOVHighToLow(Op, dl, DAG);
7354
7355   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7356     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7357
7358   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7359     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7360
7361   if (isMOVLPMask(M, VT))
7362     return getMOVLP(Op, dl, DAG, HasSSE2);
7363
7364   if (ShouldXformToMOVHLPS(M, VT) ||
7365       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7366     return CommuteVectorShuffle(SVOp, DAG);
7367
7368   if (isShift) {
7369     // No better options. Use a vshldq / vsrldq.
7370     MVT EltVT = VT.getVectorElementType();
7371     ShAmt *= EltVT.getSizeInBits();
7372     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7373   }
7374
7375   bool Commuted = false;
7376   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7377   // 1,1,1,1 -> v8i16 though.
7378   V1IsSplat = isSplatVector(V1.getNode());
7379   V2IsSplat = isSplatVector(V2.getNode());
7380
7381   // Canonicalize the splat or undef, if present, to be on the RHS.
7382   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7383     CommuteVectorShuffleMask(M, NumElems);
7384     std::swap(V1, V2);
7385     std::swap(V1IsSplat, V2IsSplat);
7386     Commuted = true;
7387   }
7388
7389   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7390     // Shuffling low element of v1 into undef, just return v1.
7391     if (V2IsUndef)
7392       return V1;
7393     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7394     // the instruction selector will not match, so get a canonical MOVL with
7395     // swapped operands to undo the commute.
7396     return getMOVL(DAG, dl, VT, V2, V1);
7397   }
7398
7399   if (isUNPCKLMask(M, VT, HasInt256))
7400     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7401
7402   if (isUNPCKHMask(M, VT, HasInt256))
7403     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7404
7405   if (V2IsSplat) {
7406     // Normalize mask so all entries that point to V2 points to its first
7407     // element then try to match unpck{h|l} again. If match, return a
7408     // new vector_shuffle with the corrected mask.p
7409     SmallVector<int, 8> NewMask(M.begin(), M.end());
7410     NormalizeMask(NewMask, NumElems);
7411     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7412       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7413     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7414       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7415   }
7416
7417   if (Commuted) {
7418     // Commute is back and try unpck* again.
7419     // FIXME: this seems wrong.
7420     CommuteVectorShuffleMask(M, NumElems);
7421     std::swap(V1, V2);
7422     std::swap(V1IsSplat, V2IsSplat);
7423     Commuted = false;
7424
7425     if (isUNPCKLMask(M, VT, HasInt256))
7426       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7427
7428     if (isUNPCKHMask(M, VT, HasInt256))
7429       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7430   }
7431
7432   // Normalize the node to match x86 shuffle ops if needed
7433   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7434     return CommuteVectorShuffle(SVOp, DAG);
7435
7436   // The checks below are all present in isShuffleMaskLegal, but they are
7437   // inlined here right now to enable us to directly emit target specific
7438   // nodes, and remove one by one until they don't return Op anymore.
7439
7440   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7441       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7442     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7443       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7444   }
7445
7446   if (isPSHUFHWMask(M, VT, HasInt256))
7447     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7448                                 getShufflePSHUFHWImmediate(SVOp),
7449                                 DAG);
7450
7451   if (isPSHUFLWMask(M, VT, HasInt256))
7452     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7453                                 getShufflePSHUFLWImmediate(SVOp),
7454                                 DAG);
7455
7456   if (isSHUFPMask(M, VT))
7457     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7458                                 getShuffleSHUFImmediate(SVOp), DAG);
7459
7460   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7461     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7462   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7463     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7464
7465   //===--------------------------------------------------------------------===//
7466   // Generate target specific nodes for 128 or 256-bit shuffles only
7467   // supported in the AVX instruction set.
7468   //
7469
7470   // Handle VMOVDDUPY permutations
7471   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7472     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7473
7474   // Handle VPERMILPS/D* permutations
7475   if (isVPERMILPMask(M, VT)) {
7476     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7477       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7478                                   getShuffleSHUFImmediate(SVOp), DAG);
7479     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7480                                 getShuffleSHUFImmediate(SVOp), DAG);
7481   }
7482
7483   // Handle VPERM2F128/VPERM2I128 permutations
7484   if (isVPERM2X128Mask(M, VT, HasFp256))
7485     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7486                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7487
7488   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7489   if (BlendOp.getNode())
7490     return BlendOp;
7491
7492   unsigned Imm8;
7493   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7494     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7495
7496   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7497       VT.is512BitVector()) {
7498     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7499     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7500     SmallVector<SDValue, 16> permclMask;
7501     for (unsigned i = 0; i != NumElems; ++i) {
7502       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7503     }
7504
7505     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7506                                 &permclMask[0], NumElems);
7507     if (V2IsUndef)
7508       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7509       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7510                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7511     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7512                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7513   }
7514
7515   //===--------------------------------------------------------------------===//
7516   // Since no target specific shuffle was selected for this generic one,
7517   // lower it into other known shuffles. FIXME: this isn't true yet, but
7518   // this is the plan.
7519   //
7520
7521   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7522   if (VT == MVT::v8i16) {
7523     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7524     if (NewOp.getNode())
7525       return NewOp;
7526   }
7527
7528   if (VT == MVT::v16i8) {
7529     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7530     if (NewOp.getNode())
7531       return NewOp;
7532   }
7533
7534   if (VT == MVT::v32i8) {
7535     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7536     if (NewOp.getNode())
7537       return NewOp;
7538   }
7539
7540   // Handle all 128-bit wide vectors with 4 elements, and match them with
7541   // several different shuffle types.
7542   if (NumElems == 4 && VT.is128BitVector())
7543     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7544
7545   // Handle general 256-bit shuffles
7546   if (VT.is256BitVector())
7547     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7548
7549   return SDValue();
7550 }
7551
7552 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7553   MVT VT = Op.getSimpleValueType();
7554   SDLoc dl(Op);
7555
7556   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7557     return SDValue();
7558
7559   if (VT.getSizeInBits() == 8) {
7560     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7561                                   Op.getOperand(0), Op.getOperand(1));
7562     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7563                                   DAG.getValueType(VT));
7564     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7565   }
7566
7567   if (VT.getSizeInBits() == 16) {
7568     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7569     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7570     if (Idx == 0)
7571       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7572                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7573                                      DAG.getNode(ISD::BITCAST, dl,
7574                                                  MVT::v4i32,
7575                                                  Op.getOperand(0)),
7576                                      Op.getOperand(1)));
7577     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7578                                   Op.getOperand(0), Op.getOperand(1));
7579     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7580                                   DAG.getValueType(VT));
7581     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7582   }
7583
7584   if (VT == MVT::f32) {
7585     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7586     // the result back to FR32 register. It's only worth matching if the
7587     // result has a single use which is a store or a bitcast to i32.  And in
7588     // the case of a store, it's not worth it if the index is a constant 0,
7589     // because a MOVSSmr can be used instead, which is smaller and faster.
7590     if (!Op.hasOneUse())
7591       return SDValue();
7592     SDNode *User = *Op.getNode()->use_begin();
7593     if ((User->getOpcode() != ISD::STORE ||
7594          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7595           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7596         (User->getOpcode() != ISD::BITCAST ||
7597          User->getValueType(0) != MVT::i32))
7598       return SDValue();
7599     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7600                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7601                                               Op.getOperand(0)),
7602                                               Op.getOperand(1));
7603     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7604   }
7605
7606   if (VT == MVT::i32 || VT == MVT::i64) {
7607     // ExtractPS/pextrq works with constant index.
7608     if (isa<ConstantSDNode>(Op.getOperand(1)))
7609       return Op;
7610   }
7611   return SDValue();
7612 }
7613
7614 SDValue
7615 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7616                                            SelectionDAG &DAG) const {
7617   SDLoc dl(Op);
7618   SDValue Vec = Op.getOperand(0);
7619   MVT VecVT = Vec.getSimpleValueType();
7620   SDValue Idx = Op.getOperand(1);
7621   if (!isa<ConstantSDNode>(Idx)) {
7622     if (VecVT.is512BitVector() ||
7623         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7624          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7625
7626       MVT MaskEltVT =
7627         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7628       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7629                                     MaskEltVT.getSizeInBits());
7630       
7631       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7632       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7633                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7634                                 Idx, DAG.getConstant(0, getPointerTy()));
7635       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7636       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7637                         Perm, DAG.getConstant(0, getPointerTy()));
7638     }
7639     return SDValue();
7640   }
7641
7642   // If this is a 256-bit vector result, first extract the 128-bit vector and
7643   // then extract the element from the 128-bit vector.
7644   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7645
7646     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7647     // Get the 128-bit vector.
7648     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7649     MVT EltVT = VecVT.getVectorElementType();
7650
7651     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7652
7653     //if (IdxVal >= NumElems/2)
7654     //  IdxVal -= NumElems/2;
7655     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7656     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7657                        DAG.getConstant(IdxVal, MVT::i32));
7658   }
7659
7660   assert(VecVT.is128BitVector() && "Unexpected vector length");
7661
7662   if (Subtarget->hasSSE41()) {
7663     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7664     if (Res.getNode())
7665       return Res;
7666   }
7667
7668   MVT VT = Op.getSimpleValueType();
7669   // TODO: handle v16i8.
7670   if (VT.getSizeInBits() == 16) {
7671     SDValue Vec = Op.getOperand(0);
7672     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7673     if (Idx == 0)
7674       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7675                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7676                                      DAG.getNode(ISD::BITCAST, dl,
7677                                                  MVT::v4i32, Vec),
7678                                      Op.getOperand(1)));
7679     // Transform it so it match pextrw which produces a 32-bit result.
7680     MVT EltVT = MVT::i32;
7681     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7682                                   Op.getOperand(0), Op.getOperand(1));
7683     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7684                                   DAG.getValueType(VT));
7685     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7686   }
7687
7688   if (VT.getSizeInBits() == 32) {
7689     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7690     if (Idx == 0)
7691       return Op;
7692
7693     // SHUFPS the element to the lowest double word, then movss.
7694     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7695     MVT VVT = Op.getOperand(0).getSimpleValueType();
7696     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7697                                        DAG.getUNDEF(VVT), Mask);
7698     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7699                        DAG.getIntPtrConstant(0));
7700   }
7701
7702   if (VT.getSizeInBits() == 64) {
7703     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7704     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7705     //        to match extract_elt for f64.
7706     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7707     if (Idx == 0)
7708       return Op;
7709
7710     // UNPCKHPD the element to the lowest double word, then movsd.
7711     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7712     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7713     int Mask[2] = { 1, -1 };
7714     MVT VVT = Op.getOperand(0).getSimpleValueType();
7715     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7716                                        DAG.getUNDEF(VVT), Mask);
7717     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7718                        DAG.getIntPtrConstant(0));
7719   }
7720
7721   return SDValue();
7722 }
7723
7724 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7725   MVT VT = Op.getSimpleValueType();
7726   MVT EltVT = VT.getVectorElementType();
7727   SDLoc dl(Op);
7728
7729   SDValue N0 = Op.getOperand(0);
7730   SDValue N1 = Op.getOperand(1);
7731   SDValue N2 = Op.getOperand(2);
7732
7733   if (!VT.is128BitVector())
7734     return SDValue();
7735
7736   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7737       isa<ConstantSDNode>(N2)) {
7738     unsigned Opc;
7739     if (VT == MVT::v8i16)
7740       Opc = X86ISD::PINSRW;
7741     else if (VT == MVT::v16i8)
7742       Opc = X86ISD::PINSRB;
7743     else
7744       Opc = X86ISD::PINSRB;
7745
7746     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7747     // argument.
7748     if (N1.getValueType() != MVT::i32)
7749       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7750     if (N2.getValueType() != MVT::i32)
7751       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7752     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7753   }
7754
7755   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7756     // Bits [7:6] of the constant are the source select.  This will always be
7757     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7758     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7759     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7760     // Bits [5:4] of the constant are the destination select.  This is the
7761     //  value of the incoming immediate.
7762     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7763     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7764     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7765     // Create this as a scalar to vector..
7766     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7767     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7768   }
7769
7770   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7771     // PINSR* works with constant index.
7772     return Op;
7773   }
7774   return SDValue();
7775 }
7776
7777 SDValue
7778 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7779   MVT VT = Op.getSimpleValueType();
7780   MVT EltVT = VT.getVectorElementType();
7781
7782   SDLoc dl(Op);
7783   SDValue N0 = Op.getOperand(0);
7784   SDValue N1 = Op.getOperand(1);
7785   SDValue N2 = Op.getOperand(2);
7786
7787   // If this is a 256-bit vector result, first extract the 128-bit vector,
7788   // insert the element into the extracted half and then place it back.
7789   if (VT.is256BitVector() || VT.is512BitVector()) {
7790     if (!isa<ConstantSDNode>(N2))
7791       return SDValue();
7792
7793     // Get the desired 128-bit vector half.
7794     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7795     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7796
7797     // Insert the element into the desired half.
7798     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7799     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7800
7801     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7802                     DAG.getConstant(IdxIn128, MVT::i32));
7803
7804     // Insert the changed part back to the 256-bit vector
7805     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7806   }
7807
7808   if (Subtarget->hasSSE41())
7809     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7810
7811   if (EltVT == MVT::i8)
7812     return SDValue();
7813
7814   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7815     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7816     // as its second argument.
7817     if (N1.getValueType() != MVT::i32)
7818       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7819     if (N2.getValueType() != MVT::i32)
7820       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7821     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7822   }
7823   return SDValue();
7824 }
7825
7826 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7827   SDLoc dl(Op);
7828   MVT OpVT = Op.getSimpleValueType();
7829
7830   // If this is a 256-bit vector result, first insert into a 128-bit
7831   // vector and then insert into the 256-bit vector.
7832   if (!OpVT.is128BitVector()) {
7833     // Insert into a 128-bit vector.
7834     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7835     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7836                                  OpVT.getVectorNumElements() / SizeFactor);
7837
7838     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7839
7840     // Insert the 128-bit vector.
7841     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7842   }
7843
7844   if (OpVT == MVT::v1i64 &&
7845       Op.getOperand(0).getValueType() == MVT::i64)
7846     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7847
7848   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7849   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7850   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7851                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7852 }
7853
7854 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7855 // a simple subregister reference or explicit instructions to grab
7856 // upper bits of a vector.
7857 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7858                                       SelectionDAG &DAG) {
7859   SDLoc dl(Op);
7860   SDValue In =  Op.getOperand(0);
7861   SDValue Idx = Op.getOperand(1);
7862   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7863   MVT ResVT   = Op.getSimpleValueType();
7864   MVT InVT    = In.getSimpleValueType();
7865
7866   if (Subtarget->hasFp256()) {
7867     if (ResVT.is128BitVector() &&
7868         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7869         isa<ConstantSDNode>(Idx)) {
7870       return Extract128BitVector(In, IdxVal, DAG, dl);
7871     }
7872     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7873         isa<ConstantSDNode>(Idx)) {
7874       return Extract256BitVector(In, IdxVal, DAG, dl);
7875     }
7876   }
7877   return SDValue();
7878 }
7879
7880 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7881 // simple superregister reference or explicit instructions to insert
7882 // the upper bits of a vector.
7883 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7884                                      SelectionDAG &DAG) {
7885   if (Subtarget->hasFp256()) {
7886     SDLoc dl(Op.getNode());
7887     SDValue Vec = Op.getNode()->getOperand(0);
7888     SDValue SubVec = Op.getNode()->getOperand(1);
7889     SDValue Idx = Op.getNode()->getOperand(2);
7890
7891     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7892          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7893         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
7894         isa<ConstantSDNode>(Idx)) {
7895       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7896       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7897     }
7898
7899     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7900         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
7901         isa<ConstantSDNode>(Idx)) {
7902       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7903       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7904     }
7905   }
7906   return SDValue();
7907 }
7908
7909 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7910 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7911 // one of the above mentioned nodes. It has to be wrapped because otherwise
7912 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7913 // be used to form addressing mode. These wrapped nodes will be selected
7914 // into MOV32ri.
7915 SDValue
7916 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7917   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7918
7919   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7920   // global base reg.
7921   unsigned char OpFlag = 0;
7922   unsigned WrapperKind = X86ISD::Wrapper;
7923   CodeModel::Model M = getTargetMachine().getCodeModel();
7924
7925   if (Subtarget->isPICStyleRIPRel() &&
7926       (M == CodeModel::Small || M == CodeModel::Kernel))
7927     WrapperKind = X86ISD::WrapperRIP;
7928   else if (Subtarget->isPICStyleGOT())
7929     OpFlag = X86II::MO_GOTOFF;
7930   else if (Subtarget->isPICStyleStubPIC())
7931     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7932
7933   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7934                                              CP->getAlignment(),
7935                                              CP->getOffset(), OpFlag);
7936   SDLoc DL(CP);
7937   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7938   // With PIC, the address is actually $g + Offset.
7939   if (OpFlag) {
7940     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7941                          DAG.getNode(X86ISD::GlobalBaseReg,
7942                                      SDLoc(), getPointerTy()),
7943                          Result);
7944   }
7945
7946   return Result;
7947 }
7948
7949 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7950   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7951
7952   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7953   // global base reg.
7954   unsigned char OpFlag = 0;
7955   unsigned WrapperKind = X86ISD::Wrapper;
7956   CodeModel::Model M = getTargetMachine().getCodeModel();
7957
7958   if (Subtarget->isPICStyleRIPRel() &&
7959       (M == CodeModel::Small || M == CodeModel::Kernel))
7960     WrapperKind = X86ISD::WrapperRIP;
7961   else if (Subtarget->isPICStyleGOT())
7962     OpFlag = X86II::MO_GOTOFF;
7963   else if (Subtarget->isPICStyleStubPIC())
7964     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7965
7966   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7967                                           OpFlag);
7968   SDLoc DL(JT);
7969   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7970
7971   // With PIC, the address is actually $g + Offset.
7972   if (OpFlag)
7973     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7974                          DAG.getNode(X86ISD::GlobalBaseReg,
7975                                      SDLoc(), getPointerTy()),
7976                          Result);
7977
7978   return Result;
7979 }
7980
7981 SDValue
7982 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7983   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7984
7985   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7986   // global base reg.
7987   unsigned char OpFlag = 0;
7988   unsigned WrapperKind = X86ISD::Wrapper;
7989   CodeModel::Model M = getTargetMachine().getCodeModel();
7990
7991   if (Subtarget->isPICStyleRIPRel() &&
7992       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7993     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7994       OpFlag = X86II::MO_GOTPCREL;
7995     WrapperKind = X86ISD::WrapperRIP;
7996   } else if (Subtarget->isPICStyleGOT()) {
7997     OpFlag = X86II::MO_GOT;
7998   } else if (Subtarget->isPICStyleStubPIC()) {
7999     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8000   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8001     OpFlag = X86II::MO_DARWIN_NONLAZY;
8002   }
8003
8004   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8005
8006   SDLoc DL(Op);
8007   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8008
8009   // With PIC, the address is actually $g + Offset.
8010   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8011       !Subtarget->is64Bit()) {
8012     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8013                          DAG.getNode(X86ISD::GlobalBaseReg,
8014                                      SDLoc(), getPointerTy()),
8015                          Result);
8016   }
8017
8018   // For symbols that require a load from a stub to get the address, emit the
8019   // load.
8020   if (isGlobalStubReference(OpFlag))
8021     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8022                          MachinePointerInfo::getGOT(), false, false, false, 0);
8023
8024   return Result;
8025 }
8026
8027 SDValue
8028 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8029   // Create the TargetBlockAddressAddress node.
8030   unsigned char OpFlags =
8031     Subtarget->ClassifyBlockAddressReference();
8032   CodeModel::Model M = getTargetMachine().getCodeModel();
8033   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8034   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8035   SDLoc dl(Op);
8036   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8037                                              OpFlags);
8038
8039   if (Subtarget->isPICStyleRIPRel() &&
8040       (M == CodeModel::Small || M == CodeModel::Kernel))
8041     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8042   else
8043     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8044
8045   // With PIC, the address is actually $g + Offset.
8046   if (isGlobalRelativeToPICBase(OpFlags)) {
8047     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8048                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8049                          Result);
8050   }
8051
8052   return Result;
8053 }
8054
8055 SDValue
8056 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8057                                       int64_t Offset, SelectionDAG &DAG) const {
8058   // Create the TargetGlobalAddress node, folding in the constant
8059   // offset if it is legal.
8060   unsigned char OpFlags =
8061     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8062   CodeModel::Model M = getTargetMachine().getCodeModel();
8063   SDValue Result;
8064   if (OpFlags == X86II::MO_NO_FLAG &&
8065       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8066     // A direct static reference to a global.
8067     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8068     Offset = 0;
8069   } else {
8070     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8071   }
8072
8073   if (Subtarget->isPICStyleRIPRel() &&
8074       (M == CodeModel::Small || M == CodeModel::Kernel))
8075     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8076   else
8077     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8078
8079   // With PIC, the address is actually $g + Offset.
8080   if (isGlobalRelativeToPICBase(OpFlags)) {
8081     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8082                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8083                          Result);
8084   }
8085
8086   // For globals that require a load from a stub to get the address, emit the
8087   // load.
8088   if (isGlobalStubReference(OpFlags))
8089     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8090                          MachinePointerInfo::getGOT(), false, false, false, 0);
8091
8092   // If there was a non-zero offset that we didn't fold, create an explicit
8093   // addition for it.
8094   if (Offset != 0)
8095     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8096                          DAG.getConstant(Offset, getPointerTy()));
8097
8098   return Result;
8099 }
8100
8101 SDValue
8102 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8103   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8104   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8105   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8106 }
8107
8108 static SDValue
8109 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8110            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8111            unsigned char OperandFlags, bool LocalDynamic = false) {
8112   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8113   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8114   SDLoc dl(GA);
8115   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8116                                            GA->getValueType(0),
8117                                            GA->getOffset(),
8118                                            OperandFlags);
8119
8120   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8121                                            : X86ISD::TLSADDR;
8122
8123   if (InFlag) {
8124     SDValue Ops[] = { Chain,  TGA, *InFlag };
8125     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8126   } else {
8127     SDValue Ops[]  = { Chain, TGA };
8128     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8129   }
8130
8131   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8132   MFI->setAdjustsStack(true);
8133
8134   SDValue Flag = Chain.getValue(1);
8135   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8136 }
8137
8138 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8139 static SDValue
8140 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8141                                 const EVT PtrVT) {
8142   SDValue InFlag;
8143   SDLoc dl(GA);  // ? function entry point might be better
8144   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8145                                    DAG.getNode(X86ISD::GlobalBaseReg,
8146                                                SDLoc(), PtrVT), InFlag);
8147   InFlag = Chain.getValue(1);
8148
8149   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8150 }
8151
8152 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8153 static SDValue
8154 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8155                                 const EVT PtrVT) {
8156   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8157                     X86::RAX, X86II::MO_TLSGD);
8158 }
8159
8160 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8161                                            SelectionDAG &DAG,
8162                                            const EVT PtrVT,
8163                                            bool is64Bit) {
8164   SDLoc dl(GA);
8165
8166   // Get the start address of the TLS block for this module.
8167   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8168       .getInfo<X86MachineFunctionInfo>();
8169   MFI->incNumLocalDynamicTLSAccesses();
8170
8171   SDValue Base;
8172   if (is64Bit) {
8173     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8174                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8175   } else {
8176     SDValue InFlag;
8177     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8178         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8179     InFlag = Chain.getValue(1);
8180     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8181                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8182   }
8183
8184   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8185   // of Base.
8186
8187   // Build x@dtpoff.
8188   unsigned char OperandFlags = X86II::MO_DTPOFF;
8189   unsigned WrapperKind = X86ISD::Wrapper;
8190   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8191                                            GA->getValueType(0),
8192                                            GA->getOffset(), OperandFlags);
8193   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8194
8195   // Add x@dtpoff with the base.
8196   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8197 }
8198
8199 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8200 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8201                                    const EVT PtrVT, TLSModel::Model model,
8202                                    bool is64Bit, bool isPIC) {
8203   SDLoc dl(GA);
8204
8205   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8206   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8207                                                          is64Bit ? 257 : 256));
8208
8209   SDValue ThreadPointer =
8210       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8211                   MachinePointerInfo(Ptr), false, false, false, 0);
8212
8213   unsigned char OperandFlags = 0;
8214   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8215   // initialexec.
8216   unsigned WrapperKind = X86ISD::Wrapper;
8217   if (model == TLSModel::LocalExec) {
8218     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8219   } else if (model == TLSModel::InitialExec) {
8220     if (is64Bit) {
8221       OperandFlags = X86II::MO_GOTTPOFF;
8222       WrapperKind = X86ISD::WrapperRIP;
8223     } else {
8224       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8225     }
8226   } else {
8227     llvm_unreachable("Unexpected model");
8228   }
8229
8230   // emit "addl x@ntpoff,%eax" (local exec)
8231   // or "addl x@indntpoff,%eax" (initial exec)
8232   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8233   SDValue TGA =
8234       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8235                                  GA->getOffset(), OperandFlags);
8236   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8237
8238   if (model == TLSModel::InitialExec) {
8239     if (isPIC && !is64Bit) {
8240       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8241                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8242                            Offset);
8243     }
8244
8245     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8246                          MachinePointerInfo::getGOT(), false, false, false, 0);
8247   }
8248
8249   // The address of the thread local variable is the add of the thread
8250   // pointer with the offset of the variable.
8251   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8252 }
8253
8254 SDValue
8255 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8256
8257   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8258   const GlobalValue *GV = GA->getGlobal();
8259
8260   if (Subtarget->isTargetELF()) {
8261     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8262
8263     switch (model) {
8264       case TLSModel::GeneralDynamic:
8265         if (Subtarget->is64Bit())
8266           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8267         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8268       case TLSModel::LocalDynamic:
8269         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8270                                            Subtarget->is64Bit());
8271       case TLSModel::InitialExec:
8272       case TLSModel::LocalExec:
8273         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8274                                    Subtarget->is64Bit(),
8275                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8276     }
8277     llvm_unreachable("Unknown TLS model.");
8278   }
8279
8280   if (Subtarget->isTargetDarwin()) {
8281     // Darwin only has one model of TLS.  Lower to that.
8282     unsigned char OpFlag = 0;
8283     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8284                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8285
8286     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8287     // global base reg.
8288     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8289                   !Subtarget->is64Bit();
8290     if (PIC32)
8291       OpFlag = X86II::MO_TLVP_PIC_BASE;
8292     else
8293       OpFlag = X86II::MO_TLVP;
8294     SDLoc DL(Op);
8295     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8296                                                 GA->getValueType(0),
8297                                                 GA->getOffset(), OpFlag);
8298     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8299
8300     // With PIC32, the address is actually $g + Offset.
8301     if (PIC32)
8302       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8303                            DAG.getNode(X86ISD::GlobalBaseReg,
8304                                        SDLoc(), getPointerTy()),
8305                            Offset);
8306
8307     // Lowering the machine isd will make sure everything is in the right
8308     // location.
8309     SDValue Chain = DAG.getEntryNode();
8310     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8311     SDValue Args[] = { Chain, Offset };
8312     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8313
8314     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8315     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8316     MFI->setAdjustsStack(true);
8317
8318     // And our return value (tls address) is in the standard call return value
8319     // location.
8320     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8321     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8322                               Chain.getValue(1));
8323   }
8324
8325   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8326     // Just use the implicit TLS architecture
8327     // Need to generate someting similar to:
8328     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8329     //                                  ; from TEB
8330     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8331     //   mov     rcx, qword [rdx+rcx*8]
8332     //   mov     eax, .tls$:tlsvar
8333     //   [rax+rcx] contains the address
8334     // Windows 64bit: gs:0x58
8335     // Windows 32bit: fs:__tls_array
8336
8337     // If GV is an alias then use the aliasee for determining
8338     // thread-localness.
8339     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8340       GV = GA->resolveAliasedGlobal(false);
8341     SDLoc dl(GA);
8342     SDValue Chain = DAG.getEntryNode();
8343
8344     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8345     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8346     // use its literal value of 0x2C.
8347     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8348                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8349                                                              256)
8350                                         : Type::getInt32PtrTy(*DAG.getContext(),
8351                                                               257));
8352
8353     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8354       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8355         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8356
8357     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8358                                         MachinePointerInfo(Ptr),
8359                                         false, false, false, 0);
8360
8361     // Load the _tls_index variable
8362     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8363     if (Subtarget->is64Bit())
8364       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8365                            IDX, MachinePointerInfo(), MVT::i32,
8366                            false, false, 0);
8367     else
8368       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8369                         false, false, false, 0);
8370
8371     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8372                                     getPointerTy());
8373     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8374
8375     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8376     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8377                       false, false, false, 0);
8378
8379     // Get the offset of start of .tls section
8380     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8381                                              GA->getValueType(0),
8382                                              GA->getOffset(), X86II::MO_SECREL);
8383     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8384
8385     // The address of the thread local variable is the add of the thread
8386     // pointer with the offset of the variable.
8387     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8388   }
8389
8390   llvm_unreachable("TLS not implemented for this target.");
8391 }
8392
8393 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8394 /// and take a 2 x i32 value to shift plus a shift amount.
8395 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8396   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8397   EVT VT = Op.getValueType();
8398   unsigned VTBits = VT.getSizeInBits();
8399   SDLoc dl(Op);
8400   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8401   SDValue ShOpLo = Op.getOperand(0);
8402   SDValue ShOpHi = Op.getOperand(1);
8403   SDValue ShAmt  = Op.getOperand(2);
8404   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8405                                      DAG.getConstant(VTBits - 1, MVT::i8))
8406                        : DAG.getConstant(0, VT);
8407
8408   SDValue Tmp2, Tmp3;
8409   if (Op.getOpcode() == ISD::SHL_PARTS) {
8410     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8411     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8412   } else {
8413     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8414     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8415   }
8416
8417   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8418                                 DAG.getConstant(VTBits, MVT::i8));
8419   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8420                              AndNode, DAG.getConstant(0, MVT::i8));
8421
8422   SDValue Hi, Lo;
8423   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8424   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8425   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8426
8427   if (Op.getOpcode() == ISD::SHL_PARTS) {
8428     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8429     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8430   } else {
8431     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8432     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8433   }
8434
8435   SDValue Ops[2] = { Lo, Hi };
8436   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8437 }
8438
8439 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8440                                            SelectionDAG &DAG) const {
8441   EVT SrcVT = Op.getOperand(0).getValueType();
8442
8443   if (SrcVT.isVector())
8444     return SDValue();
8445
8446   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8447          "Unknown SINT_TO_FP to lower!");
8448
8449   // These are really Legal; return the operand so the caller accepts it as
8450   // Legal.
8451   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8452     return Op;
8453   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8454       Subtarget->is64Bit()) {
8455     return Op;
8456   }
8457
8458   SDLoc dl(Op);
8459   unsigned Size = SrcVT.getSizeInBits()/8;
8460   MachineFunction &MF = DAG.getMachineFunction();
8461   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8462   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8463   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8464                                StackSlot,
8465                                MachinePointerInfo::getFixedStack(SSFI),
8466                                false, false, 0);
8467   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8468 }
8469
8470 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8471                                      SDValue StackSlot,
8472                                      SelectionDAG &DAG) const {
8473   // Build the FILD
8474   SDLoc DL(Op);
8475   SDVTList Tys;
8476   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8477   if (useSSE)
8478     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8479   else
8480     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8481
8482   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8483
8484   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8485   MachineMemOperand *MMO;
8486   if (FI) {
8487     int SSFI = FI->getIndex();
8488     MMO =
8489       DAG.getMachineFunction()
8490       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8491                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8492   } else {
8493     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8494     StackSlot = StackSlot.getOperand(1);
8495   }
8496   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8497   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8498                                            X86ISD::FILD, DL,
8499                                            Tys, Ops, array_lengthof(Ops),
8500                                            SrcVT, MMO);
8501
8502   if (useSSE) {
8503     Chain = Result.getValue(1);
8504     SDValue InFlag = Result.getValue(2);
8505
8506     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8507     // shouldn't be necessary except that RFP cannot be live across
8508     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8509     MachineFunction &MF = DAG.getMachineFunction();
8510     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8511     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8512     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8513     Tys = DAG.getVTList(MVT::Other);
8514     SDValue Ops[] = {
8515       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8516     };
8517     MachineMemOperand *MMO =
8518       DAG.getMachineFunction()
8519       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8520                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8521
8522     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8523                                     Ops, array_lengthof(Ops),
8524                                     Op.getValueType(), MMO);
8525     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8526                          MachinePointerInfo::getFixedStack(SSFI),
8527                          false, false, false, 0);
8528   }
8529
8530   return Result;
8531 }
8532
8533 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8534 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8535                                                SelectionDAG &DAG) const {
8536   // This algorithm is not obvious. Here it is what we're trying to output:
8537   /*
8538      movq       %rax,  %xmm0
8539      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8540      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8541      #ifdef __SSE3__
8542        haddpd   %xmm0, %xmm0
8543      #else
8544        pshufd   $0x4e, %xmm0, %xmm1
8545        addpd    %xmm1, %xmm0
8546      #endif
8547   */
8548
8549   SDLoc dl(Op);
8550   LLVMContext *Context = DAG.getContext();
8551
8552   // Build some magic constants.
8553   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8554   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8555   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8556
8557   SmallVector<Constant*,2> CV1;
8558   CV1.push_back(
8559     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8560                                       APInt(64, 0x4330000000000000ULL))));
8561   CV1.push_back(
8562     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8563                                       APInt(64, 0x4530000000000000ULL))));
8564   Constant *C1 = ConstantVector::get(CV1);
8565   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8566
8567   // Load the 64-bit value into an XMM register.
8568   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8569                             Op.getOperand(0));
8570   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8571                               MachinePointerInfo::getConstantPool(),
8572                               false, false, false, 16);
8573   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8574                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8575                               CLod0);
8576
8577   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8578                               MachinePointerInfo::getConstantPool(),
8579                               false, false, false, 16);
8580   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8581   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8582   SDValue Result;
8583
8584   if (Subtarget->hasSSE3()) {
8585     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8586     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8587   } else {
8588     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8589     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8590                                            S2F, 0x4E, DAG);
8591     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8592                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8593                          Sub);
8594   }
8595
8596   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8597                      DAG.getIntPtrConstant(0));
8598 }
8599
8600 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8601 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8602                                                SelectionDAG &DAG) const {
8603   SDLoc dl(Op);
8604   // FP constant to bias correct the final result.
8605   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8606                                    MVT::f64);
8607
8608   // Load the 32-bit value into an XMM register.
8609   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8610                              Op.getOperand(0));
8611
8612   // Zero out the upper parts of the register.
8613   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8614
8615   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8616                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8617                      DAG.getIntPtrConstant(0));
8618
8619   // Or the load with the bias.
8620   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8621                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8622                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8623                                                    MVT::v2f64, Load)),
8624                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8625                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8626                                                    MVT::v2f64, Bias)));
8627   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8628                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8629                    DAG.getIntPtrConstant(0));
8630
8631   // Subtract the bias.
8632   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8633
8634   // Handle final rounding.
8635   EVT DestVT = Op.getValueType();
8636
8637   if (DestVT.bitsLT(MVT::f64))
8638     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8639                        DAG.getIntPtrConstant(0));
8640   if (DestVT.bitsGT(MVT::f64))
8641     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8642
8643   // Handle final rounding.
8644   return Sub;
8645 }
8646
8647 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8648                                                SelectionDAG &DAG) const {
8649   SDValue N0 = Op.getOperand(0);
8650   EVT SVT = N0.getValueType();
8651   SDLoc dl(Op);
8652
8653   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8654           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8655          "Custom UINT_TO_FP is not supported!");
8656
8657   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8658                              SVT.getVectorNumElements());
8659   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8660                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8661 }
8662
8663 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8664                                            SelectionDAG &DAG) const {
8665   SDValue N0 = Op.getOperand(0);
8666   SDLoc dl(Op);
8667
8668   if (Op.getValueType().isVector())
8669     return lowerUINT_TO_FP_vec(Op, DAG);
8670
8671   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8672   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8673   // the optimization here.
8674   if (DAG.SignBitIsZero(N0))
8675     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8676
8677   EVT SrcVT = N0.getValueType();
8678   EVT DstVT = Op.getValueType();
8679   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8680     return LowerUINT_TO_FP_i64(Op, DAG);
8681   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8682     return LowerUINT_TO_FP_i32(Op, DAG);
8683   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8684     return SDValue();
8685
8686   // Make a 64-bit buffer, and use it to build an FILD.
8687   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8688   if (SrcVT == MVT::i32) {
8689     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8690     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8691                                      getPointerTy(), StackSlot, WordOff);
8692     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8693                                   StackSlot, MachinePointerInfo(),
8694                                   false, false, 0);
8695     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8696                                   OffsetSlot, MachinePointerInfo(),
8697                                   false, false, 0);
8698     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8699     return Fild;
8700   }
8701
8702   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8703   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8704                                StackSlot, MachinePointerInfo(),
8705                                false, false, 0);
8706   // For i64 source, we need to add the appropriate power of 2 if the input
8707   // was negative.  This is the same as the optimization in
8708   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8709   // we must be careful to do the computation in x87 extended precision, not
8710   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8711   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8712   MachineMemOperand *MMO =
8713     DAG.getMachineFunction()
8714     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8715                           MachineMemOperand::MOLoad, 8, 8);
8716
8717   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8718   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8719   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8720                                          array_lengthof(Ops), MVT::i64, MMO);
8721
8722   APInt FF(32, 0x5F800000ULL);
8723
8724   // Check whether the sign bit is set.
8725   SDValue SignSet = DAG.getSetCC(dl,
8726                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8727                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8728                                  ISD::SETLT);
8729
8730   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8731   SDValue FudgePtr = DAG.getConstantPool(
8732                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8733                                          getPointerTy());
8734
8735   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8736   SDValue Zero = DAG.getIntPtrConstant(0);
8737   SDValue Four = DAG.getIntPtrConstant(4);
8738   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8739                                Zero, Four);
8740   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8741
8742   // Load the value out, extending it from f32 to f80.
8743   // FIXME: Avoid the extend by constructing the right constant pool?
8744   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8745                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8746                                  MVT::f32, false, false, 4);
8747   // Extend everything to 80 bits to force it to be done on x87.
8748   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8749   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8750 }
8751
8752 std::pair<SDValue,SDValue>
8753 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8754                                     bool IsSigned, bool IsReplace) const {
8755   SDLoc DL(Op);
8756
8757   EVT DstTy = Op.getValueType();
8758
8759   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8760     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8761     DstTy = MVT::i64;
8762   }
8763
8764   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8765          DstTy.getSimpleVT() >= MVT::i16 &&
8766          "Unknown FP_TO_INT to lower!");
8767
8768   // These are really Legal.
8769   if (DstTy == MVT::i32 &&
8770       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8771     return std::make_pair(SDValue(), SDValue());
8772   if (Subtarget->is64Bit() &&
8773       DstTy == MVT::i64 &&
8774       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8775     return std::make_pair(SDValue(), SDValue());
8776
8777   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8778   // stack slot, or into the FTOL runtime function.
8779   MachineFunction &MF = DAG.getMachineFunction();
8780   unsigned MemSize = DstTy.getSizeInBits()/8;
8781   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8782   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8783
8784   unsigned Opc;
8785   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8786     Opc = X86ISD::WIN_FTOL;
8787   else
8788     switch (DstTy.getSimpleVT().SimpleTy) {
8789     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8790     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8791     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8792     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8793     }
8794
8795   SDValue Chain = DAG.getEntryNode();
8796   SDValue Value = Op.getOperand(0);
8797   EVT TheVT = Op.getOperand(0).getValueType();
8798   // FIXME This causes a redundant load/store if the SSE-class value is already
8799   // in memory, such as if it is on the callstack.
8800   if (isScalarFPTypeInSSEReg(TheVT)) {
8801     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8802     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8803                          MachinePointerInfo::getFixedStack(SSFI),
8804                          false, false, 0);
8805     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8806     SDValue Ops[] = {
8807       Chain, StackSlot, DAG.getValueType(TheVT)
8808     };
8809
8810     MachineMemOperand *MMO =
8811       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8812                               MachineMemOperand::MOLoad, MemSize, MemSize);
8813     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8814                                     array_lengthof(Ops), DstTy, MMO);
8815     Chain = Value.getValue(1);
8816     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8817     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8818   }
8819
8820   MachineMemOperand *MMO =
8821     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8822                             MachineMemOperand::MOStore, MemSize, MemSize);
8823
8824   if (Opc != X86ISD::WIN_FTOL) {
8825     // Build the FP_TO_INT*_IN_MEM
8826     SDValue Ops[] = { Chain, Value, StackSlot };
8827     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8828                                            Ops, array_lengthof(Ops), DstTy,
8829                                            MMO);
8830     return std::make_pair(FIST, StackSlot);
8831   } else {
8832     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8833       DAG.getVTList(MVT::Other, MVT::Glue),
8834       Chain, Value);
8835     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8836       MVT::i32, ftol.getValue(1));
8837     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8838       MVT::i32, eax.getValue(2));
8839     SDValue Ops[] = { eax, edx };
8840     SDValue pair = IsReplace
8841       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8842       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8843     return std::make_pair(pair, SDValue());
8844   }
8845 }
8846
8847 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8848                               const X86Subtarget *Subtarget) {
8849   MVT VT = Op->getSimpleValueType(0);
8850   SDValue In = Op->getOperand(0);
8851   MVT InVT = In.getSimpleValueType();
8852   SDLoc dl(Op);
8853
8854   // Optimize vectors in AVX mode:
8855   //
8856   //   v8i16 -> v8i32
8857   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8858   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8859   //   Concat upper and lower parts.
8860   //
8861   //   v4i32 -> v4i64
8862   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8863   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8864   //   Concat upper and lower parts.
8865   //
8866
8867   if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8868       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8869     return SDValue();
8870
8871   if (Subtarget->hasInt256())
8872     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8873
8874   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8875   SDValue Undef = DAG.getUNDEF(InVT);
8876   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8877   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8878   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8879
8880   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8881                              VT.getVectorNumElements()/2);
8882
8883   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8884   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8885
8886   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8887 }
8888
8889 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8890                                         SelectionDAG &DAG) {
8891   MVT VT = Op->getValueType(0).getSimpleVT();
8892   SDValue In = Op->getOperand(0);
8893   MVT InVT = In.getValueType().getSimpleVT();
8894   SDLoc DL(Op);
8895   unsigned int NumElts = VT.getVectorNumElements();
8896   if (NumElts != 8 && NumElts != 16)
8897     return SDValue();
8898
8899   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8900     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8901
8902   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8903   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8904   // Now we have only mask extension
8905   assert(InVT.getVectorElementType() == MVT::i1);
8906   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8907   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8908   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8909   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8910   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8911                            MachinePointerInfo::getConstantPool(),
8912                            false, false, false, Alignment);
8913
8914   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8915   if (VT.is512BitVector())
8916     return Brcst;
8917   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8918 }
8919
8920 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8921                                SelectionDAG &DAG) {
8922   if (Subtarget->hasFp256()) {
8923     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8924     if (Res.getNode())
8925       return Res;
8926   }
8927
8928   return SDValue();
8929 }
8930
8931 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8932                                 SelectionDAG &DAG) {
8933   SDLoc DL(Op);
8934   MVT VT = Op.getSimpleValueType();
8935   SDValue In = Op.getOperand(0);
8936   MVT SVT = In.getSimpleValueType();
8937
8938   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8939     return LowerZERO_EXTEND_AVX512(Op, DAG);
8940
8941   if (Subtarget->hasFp256()) {
8942     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8943     if (Res.getNode())
8944       return Res;
8945   }
8946
8947   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8948       VT.getVectorNumElements() != SVT.getVectorNumElements())
8949     return SDValue();
8950
8951   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8952
8953   // AVX2 has better support of integer extending.
8954   if (Subtarget->hasInt256())
8955     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8956
8957   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8958   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8959   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8960                            DAG.getVectorShuffle(MVT::v8i16, DL, In,
8961                                                 DAG.getUNDEF(MVT::v8i16),
8962                                                 &Mask[0]));
8963
8964   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8965 }
8966
8967 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8968   SDLoc DL(Op);
8969   MVT VT = Op.getSimpleValueType();  
8970   SDValue In = Op.getOperand(0);
8971   MVT InVT = In.getSimpleValueType();
8972   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8973          "Invalid TRUNCATE operation");
8974
8975   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8976     if (VT.getVectorElementType().getSizeInBits() >=8)
8977       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8978
8979     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8980     unsigned NumElts = InVT.getVectorNumElements();
8981     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8982     if (InVT.getSizeInBits() < 512) {
8983       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8984       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8985       InVT = ExtVT;
8986     }
8987     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8988     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8989     SDValue CP = DAG.getConstantPool(C, getPointerTy());
8990     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8991     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8992                            MachinePointerInfo::getConstantPool(),
8993                            false, false, false, Alignment);
8994     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8995     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8996     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8997   }
8998
8999   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9000     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9001     if (Subtarget->hasInt256()) {
9002       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9003       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9004       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9005                                 ShufMask);
9006       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9007                          DAG.getIntPtrConstant(0));
9008     }
9009
9010     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9011     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9012                                DAG.getIntPtrConstant(0));
9013     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9014                                DAG.getIntPtrConstant(2));
9015
9016     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9017     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9018
9019     // The PSHUFD mask:
9020     static const int ShufMask1[] = {0, 2, 0, 0};
9021     SDValue Undef = DAG.getUNDEF(VT);
9022     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9023     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9024
9025     // The MOVLHPS mask:
9026     static const int ShufMask2[] = {0, 1, 4, 5};
9027     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9028   }
9029
9030   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9031     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9032     if (Subtarget->hasInt256()) {
9033       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9034
9035       SmallVector<SDValue,32> pshufbMask;
9036       for (unsigned i = 0; i < 2; ++i) {
9037         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9038         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9039         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9040         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9041         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9042         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9043         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9044         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9045         for (unsigned j = 0; j < 8; ++j)
9046           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9047       }
9048       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9049                                &pshufbMask[0], 32);
9050       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9051       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9052
9053       static const int ShufMask[] = {0,  2,  -1,  -1};
9054       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9055                                 &ShufMask[0]);
9056       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9057                        DAG.getIntPtrConstant(0));
9058       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9059     }
9060
9061     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9062                                DAG.getIntPtrConstant(0));
9063
9064     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9065                                DAG.getIntPtrConstant(4));
9066
9067     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9068     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9069
9070     // The PSHUFB mask:
9071     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9072                                    -1, -1, -1, -1, -1, -1, -1, -1};
9073
9074     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9075     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9076     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9077
9078     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9079     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9080
9081     // The MOVLHPS Mask:
9082     static const int ShufMask2[] = {0, 1, 4, 5};
9083     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9084     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9085   }
9086
9087   // Handle truncation of V256 to V128 using shuffles.
9088   if (!VT.is128BitVector() || !InVT.is256BitVector())
9089     return SDValue();
9090
9091   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9092
9093   unsigned NumElems = VT.getVectorNumElements();
9094   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9095                              NumElems * 2);
9096
9097   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9098   // Prepare truncation shuffle mask
9099   for (unsigned i = 0; i != NumElems; ++i)
9100     MaskVec[i] = i * 2;
9101   SDValue V = DAG.getVectorShuffle(NVT, DL,
9102                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9103                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9104   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9105                      DAG.getIntPtrConstant(0));
9106 }
9107
9108 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9109                                            SelectionDAG &DAG) const {
9110   MVT VT = Op.getSimpleValueType();
9111   if (VT.isVector()) {
9112     if (VT == MVT::v8i16)
9113       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9114                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9115                                      MVT::v8i32, Op.getOperand(0)));
9116     return SDValue();
9117   }
9118
9119   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9120     /*IsSigned=*/ true, /*IsReplace=*/ false);
9121   SDValue FIST = Vals.first, StackSlot = Vals.second;
9122   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9123   if (FIST.getNode() == 0) return Op;
9124
9125   if (StackSlot.getNode())
9126     // Load the result.
9127     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9128                        FIST, StackSlot, MachinePointerInfo(),
9129                        false, false, false, 0);
9130
9131   // The node is the result.
9132   return FIST;
9133 }
9134
9135 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9136                                            SelectionDAG &DAG) const {
9137   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9138     /*IsSigned=*/ false, /*IsReplace=*/ false);
9139   SDValue FIST = Vals.first, StackSlot = Vals.second;
9140   assert(FIST.getNode() && "Unexpected failure");
9141
9142   if (StackSlot.getNode())
9143     // Load the result.
9144     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9145                        FIST, StackSlot, MachinePointerInfo(),
9146                        false, false, false, 0);
9147
9148   // The node is the result.
9149   return FIST;
9150 }
9151
9152 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9153   SDLoc DL(Op);
9154   MVT VT = Op.getSimpleValueType();
9155   SDValue In = Op.getOperand(0);
9156   MVT SVT = In.getSimpleValueType();
9157
9158   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9159
9160   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9161                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9162                                  In, DAG.getUNDEF(SVT)));
9163 }
9164
9165 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9166   LLVMContext *Context = DAG.getContext();
9167   SDLoc dl(Op);
9168   MVT VT = Op.getSimpleValueType();
9169   MVT EltVT = VT;
9170   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9171   if (VT.isVector()) {
9172     EltVT = VT.getVectorElementType();
9173     NumElts = VT.getVectorNumElements();
9174   }
9175   Constant *C;
9176   if (EltVT == MVT::f64)
9177     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9178                                           APInt(64, ~(1ULL << 63))));
9179   else
9180     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9181                                           APInt(32, ~(1U << 31))));
9182   C = ConstantVector::getSplat(NumElts, C);
9183   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9184   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9185   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9186                              MachinePointerInfo::getConstantPool(),
9187                              false, false, false, Alignment);
9188   if (VT.isVector()) {
9189     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9190     return DAG.getNode(ISD::BITCAST, dl, VT,
9191                        DAG.getNode(ISD::AND, dl, ANDVT,
9192                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9193                                                Op.getOperand(0)),
9194                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9195   }
9196   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9197 }
9198
9199 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9200   LLVMContext *Context = DAG.getContext();
9201   SDLoc dl(Op);
9202   MVT VT = Op.getSimpleValueType();
9203   MVT EltVT = VT;
9204   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9205   if (VT.isVector()) {
9206     EltVT = VT.getVectorElementType();
9207     NumElts = VT.getVectorNumElements();
9208   }
9209   Constant *C;
9210   if (EltVT == MVT::f64)
9211     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9212                                           APInt(64, 1ULL << 63)));
9213   else
9214     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9215                                           APInt(32, 1U << 31)));
9216   C = ConstantVector::getSplat(NumElts, C);
9217   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9218   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9219   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9220                              MachinePointerInfo::getConstantPool(),
9221                              false, false, false, Alignment);
9222   if (VT.isVector()) {
9223     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9224     return DAG.getNode(ISD::BITCAST, dl, VT,
9225                        DAG.getNode(ISD::XOR, dl, XORVT,
9226                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9227                                                Op.getOperand(0)),
9228                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9229   }
9230
9231   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9232 }
9233
9234 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9235   LLVMContext *Context = DAG.getContext();
9236   SDValue Op0 = Op.getOperand(0);
9237   SDValue Op1 = Op.getOperand(1);
9238   SDLoc dl(Op);
9239   MVT VT = Op.getSimpleValueType();
9240   MVT SrcVT = Op1.getSimpleValueType();
9241
9242   // If second operand is smaller, extend it first.
9243   if (SrcVT.bitsLT(VT)) {
9244     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9245     SrcVT = VT;
9246   }
9247   // And if it is bigger, shrink it first.
9248   if (SrcVT.bitsGT(VT)) {
9249     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9250     SrcVT = VT;
9251   }
9252
9253   // At this point the operands and the result should have the same
9254   // type, and that won't be f80 since that is not custom lowered.
9255
9256   // First get the sign bit of second operand.
9257   SmallVector<Constant*,4> CV;
9258   if (SrcVT == MVT::f64) {
9259     const fltSemantics &Sem = APFloat::IEEEdouble;
9260     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9261     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9262   } else {
9263     const fltSemantics &Sem = APFloat::IEEEsingle;
9264     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9265     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9266     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9267     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9268   }
9269   Constant *C = ConstantVector::get(CV);
9270   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9271   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9272                               MachinePointerInfo::getConstantPool(),
9273                               false, false, false, 16);
9274   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9275
9276   // Shift sign bit right or left if the two operands have different types.
9277   if (SrcVT.bitsGT(VT)) {
9278     // Op0 is MVT::f32, Op1 is MVT::f64.
9279     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9280     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9281                           DAG.getConstant(32, MVT::i32));
9282     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9283     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9284                           DAG.getIntPtrConstant(0));
9285   }
9286
9287   // Clear first operand sign bit.
9288   CV.clear();
9289   if (VT == MVT::f64) {
9290     const fltSemantics &Sem = APFloat::IEEEdouble;
9291     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9292                                                    APInt(64, ~(1ULL << 63)))));
9293     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9294   } else {
9295     const fltSemantics &Sem = APFloat::IEEEsingle;
9296     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9297                                                    APInt(32, ~(1U << 31)))));
9298     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9299     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9300     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9301   }
9302   C = ConstantVector::get(CV);
9303   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9304   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9305                               MachinePointerInfo::getConstantPool(),
9306                               false, false, false, 16);
9307   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9308
9309   // Or the value with the sign bit.
9310   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9311 }
9312
9313 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9314   SDValue N0 = Op.getOperand(0);
9315   SDLoc dl(Op);
9316   MVT VT = Op.getSimpleValueType();
9317
9318   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9319   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9320                                   DAG.getConstant(1, VT));
9321   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9322 }
9323
9324 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9325 //
9326 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9327                                       SelectionDAG &DAG) {
9328   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9329
9330   if (!Subtarget->hasSSE41())
9331     return SDValue();
9332
9333   if (!Op->hasOneUse())
9334     return SDValue();
9335
9336   SDNode *N = Op.getNode();
9337   SDLoc DL(N);
9338
9339   SmallVector<SDValue, 8> Opnds;
9340   DenseMap<SDValue, unsigned> VecInMap;
9341   EVT VT = MVT::Other;
9342
9343   // Recognize a special case where a vector is casted into wide integer to
9344   // test all 0s.
9345   Opnds.push_back(N->getOperand(0));
9346   Opnds.push_back(N->getOperand(1));
9347
9348   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9349     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9350     // BFS traverse all OR'd operands.
9351     if (I->getOpcode() == ISD::OR) {
9352       Opnds.push_back(I->getOperand(0));
9353       Opnds.push_back(I->getOperand(1));
9354       // Re-evaluate the number of nodes to be traversed.
9355       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9356       continue;
9357     }
9358
9359     // Quit if a non-EXTRACT_VECTOR_ELT
9360     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9361       return SDValue();
9362
9363     // Quit if without a constant index.
9364     SDValue Idx = I->getOperand(1);
9365     if (!isa<ConstantSDNode>(Idx))
9366       return SDValue();
9367
9368     SDValue ExtractedFromVec = I->getOperand(0);
9369     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9370     if (M == VecInMap.end()) {
9371       VT = ExtractedFromVec.getValueType();
9372       // Quit if not 128/256-bit vector.
9373       if (!VT.is128BitVector() && !VT.is256BitVector())
9374         return SDValue();
9375       // Quit if not the same type.
9376       if (VecInMap.begin() != VecInMap.end() &&
9377           VT != VecInMap.begin()->first.getValueType())
9378         return SDValue();
9379       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9380     }
9381     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9382   }
9383
9384   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9385          "Not extracted from 128-/256-bit vector.");
9386
9387   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9388   SmallVector<SDValue, 8> VecIns;
9389
9390   for (DenseMap<SDValue, unsigned>::const_iterator
9391         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9392     // Quit if not all elements are used.
9393     if (I->second != FullMask)
9394       return SDValue();
9395     VecIns.push_back(I->first);
9396   }
9397
9398   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9399
9400   // Cast all vectors into TestVT for PTEST.
9401   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9402     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9403
9404   // If more than one full vectors are evaluated, OR them first before PTEST.
9405   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9406     // Each iteration will OR 2 nodes and append the result until there is only
9407     // 1 node left, i.e. the final OR'd value of all vectors.
9408     SDValue LHS = VecIns[Slot];
9409     SDValue RHS = VecIns[Slot + 1];
9410     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9411   }
9412
9413   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9414                      VecIns.back(), VecIns.back());
9415 }
9416
9417 /// Emit nodes that will be selected as "test Op0,Op0", or something
9418 /// equivalent.
9419 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9420                                     SelectionDAG &DAG) const {
9421   SDLoc dl(Op);
9422
9423   // CF and OF aren't always set the way we want. Determine which
9424   // of these we need.
9425   bool NeedCF = false;
9426   bool NeedOF = false;
9427   switch (X86CC) {
9428   default: break;
9429   case X86::COND_A: case X86::COND_AE:
9430   case X86::COND_B: case X86::COND_BE:
9431     NeedCF = true;
9432     break;
9433   case X86::COND_G: case X86::COND_GE:
9434   case X86::COND_L: case X86::COND_LE:
9435   case X86::COND_O: case X86::COND_NO:
9436     NeedOF = true;
9437     break;
9438   }
9439
9440   // See if we can use the EFLAGS value from the operand instead of
9441   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9442   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9443   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9444     // Emit a CMP with 0, which is the TEST pattern.
9445     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9446                        DAG.getConstant(0, Op.getValueType()));
9447
9448   unsigned Opcode = 0;
9449   unsigned NumOperands = 0;
9450
9451   // Truncate operations may prevent the merge of the SETCC instruction
9452   // and the arithmetic instruction before it. Attempt to truncate the operands
9453   // of the arithmetic instruction and use a reduced bit-width instruction.
9454   bool NeedTruncation = false;
9455   SDValue ArithOp = Op;
9456   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9457     SDValue Arith = Op->getOperand(0);
9458     // Both the trunc and the arithmetic op need to have one user each.
9459     if (Arith->hasOneUse())
9460       switch (Arith.getOpcode()) {
9461         default: break;
9462         case ISD::ADD:
9463         case ISD::SUB:
9464         case ISD::AND:
9465         case ISD::OR:
9466         case ISD::XOR: {
9467           NeedTruncation = true;
9468           ArithOp = Arith;
9469         }
9470       }
9471   }
9472
9473   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9474   // which may be the result of a CAST.  We use the variable 'Op', which is the
9475   // non-casted variable when we check for possible users.
9476   switch (ArithOp.getOpcode()) {
9477   case ISD::ADD:
9478     // Due to an isel shortcoming, be conservative if this add is likely to be
9479     // selected as part of a load-modify-store instruction. When the root node
9480     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9481     // uses of other nodes in the match, such as the ADD in this case. This
9482     // leads to the ADD being left around and reselected, with the result being
9483     // two adds in the output.  Alas, even if none our users are stores, that
9484     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9485     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9486     // climbing the DAG back to the root, and it doesn't seem to be worth the
9487     // effort.
9488     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9489          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9490       if (UI->getOpcode() != ISD::CopyToReg &&
9491           UI->getOpcode() != ISD::SETCC &&
9492           UI->getOpcode() != ISD::STORE)
9493         goto default_case;
9494
9495     if (ConstantSDNode *C =
9496         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9497       // An add of one will be selected as an INC.
9498       if (C->getAPIntValue() == 1) {
9499         Opcode = X86ISD::INC;
9500         NumOperands = 1;
9501         break;
9502       }
9503
9504       // An add of negative one (subtract of one) will be selected as a DEC.
9505       if (C->getAPIntValue().isAllOnesValue()) {
9506         Opcode = X86ISD::DEC;
9507         NumOperands = 1;
9508         break;
9509       }
9510     }
9511
9512     // Otherwise use a regular EFLAGS-setting add.
9513     Opcode = X86ISD::ADD;
9514     NumOperands = 2;
9515     break;
9516   case ISD::AND: {
9517     // If the primary and result isn't used, don't bother using X86ISD::AND,
9518     // because a TEST instruction will be better.
9519     bool NonFlagUse = false;
9520     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9521            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9522       SDNode *User = *UI;
9523       unsigned UOpNo = UI.getOperandNo();
9524       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9525         // Look pass truncate.
9526         UOpNo = User->use_begin().getOperandNo();
9527         User = *User->use_begin();
9528       }
9529
9530       if (User->getOpcode() != ISD::BRCOND &&
9531           User->getOpcode() != ISD::SETCC &&
9532           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9533         NonFlagUse = true;
9534         break;
9535       }
9536     }
9537
9538     if (!NonFlagUse)
9539       break;
9540   }
9541     // FALL THROUGH
9542   case ISD::SUB:
9543   case ISD::OR:
9544   case ISD::XOR:
9545     // Due to the ISEL shortcoming noted above, be conservative if this op is
9546     // likely to be selected as part of a load-modify-store instruction.
9547     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9548            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9549       if (UI->getOpcode() == ISD::STORE)
9550         goto default_case;
9551
9552     // Otherwise use a regular EFLAGS-setting instruction.
9553     switch (ArithOp.getOpcode()) {
9554     default: llvm_unreachable("unexpected operator!");
9555     case ISD::SUB: Opcode = X86ISD::SUB; break;
9556     case ISD::XOR: Opcode = X86ISD::XOR; break;
9557     case ISD::AND: Opcode = X86ISD::AND; break;
9558     case ISD::OR: {
9559       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9560         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9561         if (EFLAGS.getNode())
9562           return EFLAGS;
9563       }
9564       Opcode = X86ISD::OR;
9565       break;
9566     }
9567     }
9568
9569     NumOperands = 2;
9570     break;
9571   case X86ISD::ADD:
9572   case X86ISD::SUB:
9573   case X86ISD::INC:
9574   case X86ISD::DEC:
9575   case X86ISD::OR:
9576   case X86ISD::XOR:
9577   case X86ISD::AND:
9578     return SDValue(Op.getNode(), 1);
9579   default:
9580   default_case:
9581     break;
9582   }
9583
9584   // If we found that truncation is beneficial, perform the truncation and
9585   // update 'Op'.
9586   if (NeedTruncation) {
9587     EVT VT = Op.getValueType();
9588     SDValue WideVal = Op->getOperand(0);
9589     EVT WideVT = WideVal.getValueType();
9590     unsigned ConvertedOp = 0;
9591     // Use a target machine opcode to prevent further DAGCombine
9592     // optimizations that may separate the arithmetic operations
9593     // from the setcc node.
9594     switch (WideVal.getOpcode()) {
9595       default: break;
9596       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9597       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9598       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9599       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9600       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9601     }
9602
9603     if (ConvertedOp) {
9604       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9605       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9606         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9607         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9608         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9609       }
9610     }
9611   }
9612
9613   if (Opcode == 0)
9614     // Emit a CMP with 0, which is the TEST pattern.
9615     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9616                        DAG.getConstant(0, Op.getValueType()));
9617
9618   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9619   SmallVector<SDValue, 4> Ops;
9620   for (unsigned i = 0; i != NumOperands; ++i)
9621     Ops.push_back(Op.getOperand(i));
9622
9623   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9624   DAG.ReplaceAllUsesWith(Op, New);
9625   return SDValue(New.getNode(), 1);
9626 }
9627
9628 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9629 /// equivalent.
9630 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9631                                    SelectionDAG &DAG) const {
9632   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9633     if (C->getAPIntValue() == 0)
9634       return EmitTest(Op0, X86CC, DAG);
9635
9636   SDLoc dl(Op0);
9637   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9638        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9639     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9640     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9641     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9642                               Op0, Op1);
9643     return SDValue(Sub.getNode(), 1);
9644   }
9645   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9646 }
9647
9648 /// Convert a comparison if required by the subtarget.
9649 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9650                                                  SelectionDAG &DAG) const {
9651   // If the subtarget does not support the FUCOMI instruction, floating-point
9652   // comparisons have to be converted.
9653   if (Subtarget->hasCMov() ||
9654       Cmp.getOpcode() != X86ISD::CMP ||
9655       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9656       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9657     return Cmp;
9658
9659   // The instruction selector will select an FUCOM instruction instead of
9660   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9661   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9662   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9663   SDLoc dl(Cmp);
9664   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9665   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9666   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9667                             DAG.getConstant(8, MVT::i8));
9668   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9669   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9670 }
9671
9672 static bool isAllOnes(SDValue V) {
9673   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9674   return C && C->isAllOnesValue();
9675 }
9676
9677 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9678 /// if it's possible.
9679 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9680                                      SDLoc dl, SelectionDAG &DAG) const {
9681   SDValue Op0 = And.getOperand(0);
9682   SDValue Op1 = And.getOperand(1);
9683   if (Op0.getOpcode() == ISD::TRUNCATE)
9684     Op0 = Op0.getOperand(0);
9685   if (Op1.getOpcode() == ISD::TRUNCATE)
9686     Op1 = Op1.getOperand(0);
9687
9688   SDValue LHS, RHS;
9689   if (Op1.getOpcode() == ISD::SHL)
9690     std::swap(Op0, Op1);
9691   if (Op0.getOpcode() == ISD::SHL) {
9692     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9693       if (And00C->getZExtValue() == 1) {
9694         // If we looked past a truncate, check that it's only truncating away
9695         // known zeros.
9696         unsigned BitWidth = Op0.getValueSizeInBits();
9697         unsigned AndBitWidth = And.getValueSizeInBits();
9698         if (BitWidth > AndBitWidth) {
9699           APInt Zeros, Ones;
9700           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9701           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9702             return SDValue();
9703         }
9704         LHS = Op1;
9705         RHS = Op0.getOperand(1);
9706       }
9707   } else if (Op1.getOpcode() == ISD::Constant) {
9708     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9709     uint64_t AndRHSVal = AndRHS->getZExtValue();
9710     SDValue AndLHS = Op0;
9711
9712     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9713       LHS = AndLHS.getOperand(0);
9714       RHS = AndLHS.getOperand(1);
9715     }
9716
9717     // Use BT if the immediate can't be encoded in a TEST instruction.
9718     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9719       LHS = AndLHS;
9720       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9721     }
9722   }
9723
9724   if (LHS.getNode()) {
9725     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9726     // instruction.  Since the shift amount is in-range-or-undefined, we know
9727     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9728     // the encoding for the i16 version is larger than the i32 version.
9729     // Also promote i16 to i32 for performance / code size reason.
9730     if (LHS.getValueType() == MVT::i8 ||
9731         LHS.getValueType() == MVT::i16)
9732       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9733
9734     // If the operand types disagree, extend the shift amount to match.  Since
9735     // BT ignores high bits (like shifts) we can use anyextend.
9736     if (LHS.getValueType() != RHS.getValueType())
9737       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9738
9739     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9740     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9741     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9742                        DAG.getConstant(Cond, MVT::i8), BT);
9743   }
9744
9745   return SDValue();
9746 }
9747
9748 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9749 /// mask CMPs.
9750 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9751                               SDValue &Op1) {
9752   unsigned SSECC;
9753   bool Swap = false;
9754
9755   // SSE Condition code mapping:
9756   //  0 - EQ
9757   //  1 - LT
9758   //  2 - LE
9759   //  3 - UNORD
9760   //  4 - NEQ
9761   //  5 - NLT
9762   //  6 - NLE
9763   //  7 - ORD
9764   switch (SetCCOpcode) {
9765   default: llvm_unreachable("Unexpected SETCC condition");
9766   case ISD::SETOEQ:
9767   case ISD::SETEQ:  SSECC = 0; break;
9768   case ISD::SETOGT:
9769   case ISD::SETGT:  Swap = true; // Fallthrough
9770   case ISD::SETLT:
9771   case ISD::SETOLT: SSECC = 1; break;
9772   case ISD::SETOGE:
9773   case ISD::SETGE:  Swap = true; // Fallthrough
9774   case ISD::SETLE:
9775   case ISD::SETOLE: SSECC = 2; break;
9776   case ISD::SETUO:  SSECC = 3; break;
9777   case ISD::SETUNE:
9778   case ISD::SETNE:  SSECC = 4; break;
9779   case ISD::SETULE: Swap = true; // Fallthrough
9780   case ISD::SETUGE: SSECC = 5; break;
9781   case ISD::SETULT: Swap = true; // Fallthrough
9782   case ISD::SETUGT: SSECC = 6; break;
9783   case ISD::SETO:   SSECC = 7; break;
9784   case ISD::SETUEQ:
9785   case ISD::SETONE: SSECC = 8; break;
9786   }
9787   if (Swap)
9788     std::swap(Op0, Op1);
9789
9790   return SSECC;
9791 }
9792
9793 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9794 // ones, and then concatenate the result back.
9795 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9796   MVT VT = Op.getSimpleValueType();
9797
9798   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9799          "Unsupported value type for operation");
9800
9801   unsigned NumElems = VT.getVectorNumElements();
9802   SDLoc dl(Op);
9803   SDValue CC = Op.getOperand(2);
9804
9805   // Extract the LHS vectors
9806   SDValue LHS = Op.getOperand(0);
9807   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9808   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9809
9810   // Extract the RHS vectors
9811   SDValue RHS = Op.getOperand(1);
9812   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9813   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9814
9815   // Issue the operation on the smaller types and concatenate the result back
9816   MVT EltVT = VT.getVectorElementType();
9817   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9818   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9819                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9820                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9821 }
9822
9823 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9824   SDValue Op0 = Op.getOperand(0);
9825   SDValue Op1 = Op.getOperand(1);
9826   SDValue CC = Op.getOperand(2);
9827   MVT VT = Op.getSimpleValueType();
9828
9829   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9830          Op.getValueType().getScalarType() == MVT::i1 &&
9831          "Cannot set masked compare for this operation");
9832
9833   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9834   SDLoc dl(Op);
9835
9836   bool Unsigned = false;
9837   unsigned SSECC;
9838   switch (SetCCOpcode) {
9839   default: llvm_unreachable("Unexpected SETCC condition");
9840   case ISD::SETNE:  SSECC = 4; break;
9841   case ISD::SETEQ:  SSECC = 0; break;
9842   case ISD::SETUGT: Unsigned = true;
9843   case ISD::SETGT:  SSECC = 6; break; // NLE
9844   case ISD::SETULT: Unsigned = true;
9845   case ISD::SETLT:  SSECC = 1; break;
9846   case ISD::SETUGE: Unsigned = true;
9847   case ISD::SETGE:  SSECC = 5; break; // NLT
9848   case ISD::SETULE: Unsigned = true;
9849   case ISD::SETLE:  SSECC = 2; break;
9850   }
9851   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9852   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9853                      DAG.getConstant(SSECC, MVT::i8));
9854
9855 }
9856
9857 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9858                            SelectionDAG &DAG) {
9859   SDValue Op0 = Op.getOperand(0);
9860   SDValue Op1 = Op.getOperand(1);
9861   SDValue CC = Op.getOperand(2);
9862   MVT VT = Op.getSimpleValueType();
9863   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9864   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9865   SDLoc dl(Op);
9866
9867   if (isFP) {
9868 #ifndef NDEBUG
9869     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9870     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9871 #endif
9872
9873     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9874     unsigned Opc = X86ISD::CMPP;
9875     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9876       assert(VT.getVectorNumElements() <= 16);
9877       Opc = X86ISD::CMPM;
9878     }
9879     // In the two special cases we can't handle, emit two comparisons.
9880     if (SSECC == 8) {
9881       unsigned CC0, CC1;
9882       unsigned CombineOpc;
9883       if (SetCCOpcode == ISD::SETUEQ) {
9884         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9885       } else {
9886         assert(SetCCOpcode == ISD::SETONE);
9887         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9888       }
9889
9890       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9891                                  DAG.getConstant(CC0, MVT::i8));
9892       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9893                                  DAG.getConstant(CC1, MVT::i8));
9894       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9895     }
9896     // Handle all other FP comparisons here.
9897     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9898                        DAG.getConstant(SSECC, MVT::i8));
9899   }
9900
9901   // Break 256-bit integer vector compare into smaller ones.
9902   if (VT.is256BitVector() && !Subtarget->hasInt256())
9903     return Lower256IntVSETCC(Op, DAG);
9904
9905   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9906   EVT OpVT = Op1.getValueType();
9907   if (Subtarget->hasAVX512()) {
9908     if (Op1.getValueType().is512BitVector() ||
9909         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9910       return LowerIntVSETCC_AVX512(Op, DAG);
9911
9912     // In AVX-512 architecture setcc returns mask with i1 elements,
9913     // But there is no compare instruction for i8 and i16 elements.
9914     // We are not talking about 512-bit operands in this case, these
9915     // types are illegal.
9916     if (MaskResult &&
9917         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9918          OpVT.getVectorElementType().getSizeInBits() >= 8))
9919       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9920                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9921   }
9922
9923   // We are handling one of the integer comparisons here.  Since SSE only has
9924   // GT and EQ comparisons for integer, swapping operands and multiple
9925   // operations may be required for some comparisons.
9926   unsigned Opc;
9927   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9928   
9929   switch (SetCCOpcode) {
9930   default: llvm_unreachable("Unexpected SETCC condition");
9931   case ISD::SETNE:  Invert = true;
9932   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9933   case ISD::SETLT:  Swap = true;
9934   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9935   case ISD::SETGE:  Swap = true;
9936   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9937                     Invert = true; break;
9938   case ISD::SETULT: Swap = true;
9939   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9940                     FlipSigns = true; break;
9941   case ISD::SETUGE: Swap = true;
9942   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9943                     FlipSigns = true; Invert = true; break;
9944   }
9945   
9946   // Special case: Use min/max operations for SETULE/SETUGE
9947   MVT VET = VT.getVectorElementType();
9948   bool hasMinMax =
9949        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9950     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9951   
9952   if (hasMinMax) {
9953     switch (SetCCOpcode) {
9954     default: break;
9955     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9956     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9957     }
9958     
9959     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9960   }
9961   
9962   if (Swap)
9963     std::swap(Op0, Op1);
9964
9965   // Check that the operation in question is available (most are plain SSE2,
9966   // but PCMPGTQ and PCMPEQQ have different requirements).
9967   if (VT == MVT::v2i64) {
9968     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9969       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9970
9971       // First cast everything to the right type.
9972       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9973       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9974
9975       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9976       // bits of the inputs before performing those operations. The lower
9977       // compare is always unsigned.
9978       SDValue SB;
9979       if (FlipSigns) {
9980         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9981       } else {
9982         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9983         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9984         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9985                          Sign, Zero, Sign, Zero);
9986       }
9987       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9988       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9989
9990       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9991       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9992       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9993
9994       // Create masks for only the low parts/high parts of the 64 bit integers.
9995       static const int MaskHi[] = { 1, 1, 3, 3 };
9996       static const int MaskLo[] = { 0, 0, 2, 2 };
9997       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9998       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9999       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10000
10001       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10002       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10003
10004       if (Invert)
10005         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10006
10007       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10008     }
10009
10010     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10011       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10012       // pcmpeqd + pshufd + pand.
10013       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10014
10015       // First cast everything to the right type.
10016       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10017       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10018
10019       // Do the compare.
10020       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10021
10022       // Make sure the lower and upper halves are both all-ones.
10023       static const int Mask[] = { 1, 0, 3, 2 };
10024       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10025       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10026
10027       if (Invert)
10028         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10029
10030       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10031     }
10032   }
10033
10034   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10035   // bits of the inputs before performing those operations.
10036   if (FlipSigns) {
10037     EVT EltVT = VT.getVectorElementType();
10038     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10039     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10040     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10041   }
10042
10043   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10044
10045   // If the logical-not of the result is required, perform that now.
10046   if (Invert)
10047     Result = DAG.getNOT(dl, Result, VT);
10048   
10049   if (MinMax)
10050     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10051
10052   return Result;
10053 }
10054
10055 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10056
10057   MVT VT = Op.getSimpleValueType();
10058
10059   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10060
10061   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10062   SDValue Op0 = Op.getOperand(0);
10063   SDValue Op1 = Op.getOperand(1);
10064   SDLoc dl(Op);
10065   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10066
10067   // Optimize to BT if possible.
10068   // Lower (X & (1 << N)) == 0 to BT(X, N).
10069   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10070   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10071   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10072       Op1.getOpcode() == ISD::Constant &&
10073       cast<ConstantSDNode>(Op1)->isNullValue() &&
10074       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10075     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10076     if (NewSetCC.getNode())
10077       return NewSetCC;
10078   }
10079
10080   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10081   // these.
10082   if (Op1.getOpcode() == ISD::Constant &&
10083       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10084        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10085       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10086
10087     // If the input is a setcc, then reuse the input setcc or use a new one with
10088     // the inverted condition.
10089     if (Op0.getOpcode() == X86ISD::SETCC) {
10090       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10091       bool Invert = (CC == ISD::SETNE) ^
10092         cast<ConstantSDNode>(Op1)->isNullValue();
10093       if (!Invert) return Op0;
10094
10095       CCode = X86::GetOppositeBranchCondition(CCode);
10096       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10097                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10098     }
10099   }
10100
10101   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10102   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10103   if (X86CC == X86::COND_INVALID)
10104     return SDValue();
10105
10106   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10107   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10108   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10109                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10110 }
10111
10112 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10113 static bool isX86LogicalCmp(SDValue Op) {
10114   unsigned Opc = Op.getNode()->getOpcode();
10115   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10116       Opc == X86ISD::SAHF)
10117     return true;
10118   if (Op.getResNo() == 1 &&
10119       (Opc == X86ISD::ADD ||
10120        Opc == X86ISD::SUB ||
10121        Opc == X86ISD::ADC ||
10122        Opc == X86ISD::SBB ||
10123        Opc == X86ISD::SMUL ||
10124        Opc == X86ISD::UMUL ||
10125        Opc == X86ISD::INC ||
10126        Opc == X86ISD::DEC ||
10127        Opc == X86ISD::OR ||
10128        Opc == X86ISD::XOR ||
10129        Opc == X86ISD::AND))
10130     return true;
10131
10132   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10133     return true;
10134
10135   return false;
10136 }
10137
10138 static bool isZero(SDValue V) {
10139   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10140   return C && C->isNullValue();
10141 }
10142
10143 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10144   if (V.getOpcode() != ISD::TRUNCATE)
10145     return false;
10146
10147   SDValue VOp0 = V.getOperand(0);
10148   unsigned InBits = VOp0.getValueSizeInBits();
10149   unsigned Bits = V.getValueSizeInBits();
10150   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10151 }
10152
10153 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10154   bool addTest = true;
10155   SDValue Cond  = Op.getOperand(0);
10156   SDValue Op1 = Op.getOperand(1);
10157   SDValue Op2 = Op.getOperand(2);
10158   SDLoc DL(Op);
10159   EVT VT = Op1.getValueType();
10160   SDValue CC;
10161
10162   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10163   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10164   // sequence later on.
10165   if (Cond.getOpcode() == ISD::SETCC &&
10166       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10167        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10168       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10169     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10170     int SSECC = translateX86FSETCC(
10171         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10172
10173     if (SSECC != 8) {
10174       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10175       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10176                                 DAG.getConstant(SSECC, MVT::i8));
10177       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10178       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10179       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10180     }
10181   }
10182
10183   if (Cond.getOpcode() == ISD::SETCC) {
10184     SDValue NewCond = LowerSETCC(Cond, DAG);
10185     if (NewCond.getNode())
10186       Cond = NewCond;
10187   }
10188
10189   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10190   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10191   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10192   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10193   if (Cond.getOpcode() == X86ISD::SETCC &&
10194       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10195       isZero(Cond.getOperand(1).getOperand(1))) {
10196     SDValue Cmp = Cond.getOperand(1);
10197
10198     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10199
10200     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10201         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10202       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10203
10204       SDValue CmpOp0 = Cmp.getOperand(0);
10205       // Apply further optimizations for special cases
10206       // (select (x != 0), -1, 0) -> neg & sbb
10207       // (select (x == 0), 0, -1) -> neg & sbb
10208       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10209         if (YC->isNullValue() &&
10210             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10211           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10212           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10213                                     DAG.getConstant(0, CmpOp0.getValueType()),
10214                                     CmpOp0);
10215           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10216                                     DAG.getConstant(X86::COND_B, MVT::i8),
10217                                     SDValue(Neg.getNode(), 1));
10218           return Res;
10219         }
10220
10221       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10222                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10223       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10224
10225       SDValue Res =   // Res = 0 or -1.
10226         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10227                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10228
10229       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10230         Res = DAG.getNOT(DL, Res, Res.getValueType());
10231
10232       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10233       if (N2C == 0 || !N2C->isNullValue())
10234         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10235       return Res;
10236     }
10237   }
10238
10239   // Look past (and (setcc_carry (cmp ...)), 1).
10240   if (Cond.getOpcode() == ISD::AND &&
10241       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10242     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10243     if (C && C->getAPIntValue() == 1)
10244       Cond = Cond.getOperand(0);
10245   }
10246
10247   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10248   // setting operand in place of the X86ISD::SETCC.
10249   unsigned CondOpcode = Cond.getOpcode();
10250   if (CondOpcode == X86ISD::SETCC ||
10251       CondOpcode == X86ISD::SETCC_CARRY) {
10252     CC = Cond.getOperand(0);
10253
10254     SDValue Cmp = Cond.getOperand(1);
10255     unsigned Opc = Cmp.getOpcode();
10256     MVT VT = Op.getSimpleValueType();
10257
10258     bool IllegalFPCMov = false;
10259     if (VT.isFloatingPoint() && !VT.isVector() &&
10260         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10261       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10262
10263     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10264         Opc == X86ISD::BT) { // FIXME
10265       Cond = Cmp;
10266       addTest = false;
10267     }
10268   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10269              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10270              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10271               Cond.getOperand(0).getValueType() != MVT::i8)) {
10272     SDValue LHS = Cond.getOperand(0);
10273     SDValue RHS = Cond.getOperand(1);
10274     unsigned X86Opcode;
10275     unsigned X86Cond;
10276     SDVTList VTs;
10277     switch (CondOpcode) {
10278     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10279     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10280     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10281     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10282     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10283     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10284     default: llvm_unreachable("unexpected overflowing operator");
10285     }
10286     if (CondOpcode == ISD::UMULO)
10287       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10288                           MVT::i32);
10289     else
10290       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10291
10292     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10293
10294     if (CondOpcode == ISD::UMULO)
10295       Cond = X86Op.getValue(2);
10296     else
10297       Cond = X86Op.getValue(1);
10298
10299     CC = DAG.getConstant(X86Cond, MVT::i8);
10300     addTest = false;
10301   }
10302
10303   if (addTest) {
10304     // Look pass the truncate if the high bits are known zero.
10305     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10306         Cond = Cond.getOperand(0);
10307
10308     // We know the result of AND is compared against zero. Try to match
10309     // it to BT.
10310     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10311       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10312       if (NewSetCC.getNode()) {
10313         CC = NewSetCC.getOperand(0);
10314         Cond = NewSetCC.getOperand(1);
10315         addTest = false;
10316       }
10317     }
10318   }
10319
10320   if (addTest) {
10321     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10322     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10323   }
10324
10325   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10326   // a <  b ?  0 : -1 -> RES = setcc_carry
10327   // a >= b ? -1 :  0 -> RES = setcc_carry
10328   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10329   if (Cond.getOpcode() == X86ISD::SUB) {
10330     Cond = ConvertCmpIfNecessary(Cond, DAG);
10331     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10332
10333     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10334         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10335       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10336                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10337       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10338         return DAG.getNOT(DL, Res, Res.getValueType());
10339       return Res;
10340     }
10341   }
10342
10343   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10344   // widen the cmov and push the truncate through. This avoids introducing a new
10345   // branch during isel and doesn't add any extensions.
10346   if (Op.getValueType() == MVT::i8 &&
10347       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10348     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10349     if (T1.getValueType() == T2.getValueType() &&
10350         // Blacklist CopyFromReg to avoid partial register stalls.
10351         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10352       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10353       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10354       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10355     }
10356   }
10357
10358   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10359   // condition is true.
10360   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10361   SDValue Ops[] = { Op2, Op1, CC, Cond };
10362   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10363 }
10364
10365 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10366   MVT VT = Op->getSimpleValueType(0);
10367   SDValue In = Op->getOperand(0);
10368   MVT InVT = In.getSimpleValueType();
10369   SDLoc dl(Op);
10370
10371   unsigned int NumElts = VT.getVectorNumElements();
10372   if (NumElts != 8 && NumElts != 16)
10373     return SDValue();
10374
10375   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10376     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10377
10378   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10379   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10380
10381   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10382   Constant *C = ConstantInt::get(*DAG.getContext(),
10383     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10384
10385   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10386   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10387   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10388                           MachinePointerInfo::getConstantPool(),
10389                           false, false, false, Alignment);
10390   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10391   if (VT.is512BitVector())
10392     return Brcst;
10393   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10394 }
10395
10396 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10397                                 SelectionDAG &DAG) {
10398   MVT VT = Op->getSimpleValueType(0);
10399   SDValue In = Op->getOperand(0);
10400   MVT InVT = In.getSimpleValueType();
10401   SDLoc dl(Op);
10402
10403   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10404     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10405
10406   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10407       (VT != MVT::v8i32 || InVT != MVT::v8i16))
10408     return SDValue();
10409
10410   if (Subtarget->hasInt256())
10411     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10412
10413   // Optimize vectors in AVX mode
10414   // Sign extend  v8i16 to v8i32 and
10415   //              v4i32 to v4i64
10416   //
10417   // Divide input vector into two parts
10418   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10419   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10420   // concat the vectors to original VT
10421
10422   unsigned NumElems = InVT.getVectorNumElements();
10423   SDValue Undef = DAG.getUNDEF(InVT);
10424
10425   SmallVector<int,8> ShufMask1(NumElems, -1);
10426   for (unsigned i = 0; i != NumElems/2; ++i)
10427     ShufMask1[i] = i;
10428
10429   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10430
10431   SmallVector<int,8> ShufMask2(NumElems, -1);
10432   for (unsigned i = 0; i != NumElems/2; ++i)
10433     ShufMask2[i] = i + NumElems/2;
10434
10435   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10436
10437   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10438                                 VT.getVectorNumElements()/2);
10439
10440   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10441   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10442
10443   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10444 }
10445
10446 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10447 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10448 // from the AND / OR.
10449 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10450   Opc = Op.getOpcode();
10451   if (Opc != ISD::OR && Opc != ISD::AND)
10452     return false;
10453   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10454           Op.getOperand(0).hasOneUse() &&
10455           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10456           Op.getOperand(1).hasOneUse());
10457 }
10458
10459 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10460 // 1 and that the SETCC node has a single use.
10461 static bool isXor1OfSetCC(SDValue Op) {
10462   if (Op.getOpcode() != ISD::XOR)
10463     return false;
10464   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10465   if (N1C && N1C->getAPIntValue() == 1) {
10466     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10467       Op.getOperand(0).hasOneUse();
10468   }
10469   return false;
10470 }
10471
10472 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10473   bool addTest = true;
10474   SDValue Chain = Op.getOperand(0);
10475   SDValue Cond  = Op.getOperand(1);
10476   SDValue Dest  = Op.getOperand(2);
10477   SDLoc dl(Op);
10478   SDValue CC;
10479   bool Inverted = false;
10480
10481   if (Cond.getOpcode() == ISD::SETCC) {
10482     // Check for setcc([su]{add,sub,mul}o == 0).
10483     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10484         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10485         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10486         Cond.getOperand(0).getResNo() == 1 &&
10487         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10488          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10489          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10490          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10491          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10492          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10493       Inverted = true;
10494       Cond = Cond.getOperand(0);
10495     } else {
10496       SDValue NewCond = LowerSETCC(Cond, DAG);
10497       if (NewCond.getNode())
10498         Cond = NewCond;
10499     }
10500   }
10501 #if 0
10502   // FIXME: LowerXALUO doesn't handle these!!
10503   else if (Cond.getOpcode() == X86ISD::ADD  ||
10504            Cond.getOpcode() == X86ISD::SUB  ||
10505            Cond.getOpcode() == X86ISD::SMUL ||
10506            Cond.getOpcode() == X86ISD::UMUL)
10507     Cond = LowerXALUO(Cond, DAG);
10508 #endif
10509
10510   // Look pass (and (setcc_carry (cmp ...)), 1).
10511   if (Cond.getOpcode() == ISD::AND &&
10512       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10513     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10514     if (C && C->getAPIntValue() == 1)
10515       Cond = Cond.getOperand(0);
10516   }
10517
10518   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10519   // setting operand in place of the X86ISD::SETCC.
10520   unsigned CondOpcode = Cond.getOpcode();
10521   if (CondOpcode == X86ISD::SETCC ||
10522       CondOpcode == X86ISD::SETCC_CARRY) {
10523     CC = Cond.getOperand(0);
10524
10525     SDValue Cmp = Cond.getOperand(1);
10526     unsigned Opc = Cmp.getOpcode();
10527     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10528     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10529       Cond = Cmp;
10530       addTest = false;
10531     } else {
10532       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10533       default: break;
10534       case X86::COND_O:
10535       case X86::COND_B:
10536         // These can only come from an arithmetic instruction with overflow,
10537         // e.g. SADDO, UADDO.
10538         Cond = Cond.getNode()->getOperand(1);
10539         addTest = false;
10540         break;
10541       }
10542     }
10543   }
10544   CondOpcode = Cond.getOpcode();
10545   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10546       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10547       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10548        Cond.getOperand(0).getValueType() != MVT::i8)) {
10549     SDValue LHS = Cond.getOperand(0);
10550     SDValue RHS = Cond.getOperand(1);
10551     unsigned X86Opcode;
10552     unsigned X86Cond;
10553     SDVTList VTs;
10554     switch (CondOpcode) {
10555     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10556     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10557     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10558     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10559     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10560     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10561     default: llvm_unreachable("unexpected overflowing operator");
10562     }
10563     if (Inverted)
10564       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10565     if (CondOpcode == ISD::UMULO)
10566       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10567                           MVT::i32);
10568     else
10569       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10570
10571     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10572
10573     if (CondOpcode == ISD::UMULO)
10574       Cond = X86Op.getValue(2);
10575     else
10576       Cond = X86Op.getValue(1);
10577
10578     CC = DAG.getConstant(X86Cond, MVT::i8);
10579     addTest = false;
10580   } else {
10581     unsigned CondOpc;
10582     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10583       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10584       if (CondOpc == ISD::OR) {
10585         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10586         // two branches instead of an explicit OR instruction with a
10587         // separate test.
10588         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10589             isX86LogicalCmp(Cmp)) {
10590           CC = Cond.getOperand(0).getOperand(0);
10591           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10592                               Chain, Dest, CC, Cmp);
10593           CC = Cond.getOperand(1).getOperand(0);
10594           Cond = Cmp;
10595           addTest = false;
10596         }
10597       } else { // ISD::AND
10598         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10599         // two branches instead of an explicit AND instruction with a
10600         // separate test. However, we only do this if this block doesn't
10601         // have a fall-through edge, because this requires an explicit
10602         // jmp when the condition is false.
10603         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10604             isX86LogicalCmp(Cmp) &&
10605             Op.getNode()->hasOneUse()) {
10606           X86::CondCode CCode =
10607             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10608           CCode = X86::GetOppositeBranchCondition(CCode);
10609           CC = DAG.getConstant(CCode, MVT::i8);
10610           SDNode *User = *Op.getNode()->use_begin();
10611           // Look for an unconditional branch following this conditional branch.
10612           // We need this because we need to reverse the successors in order
10613           // to implement FCMP_OEQ.
10614           if (User->getOpcode() == ISD::BR) {
10615             SDValue FalseBB = User->getOperand(1);
10616             SDNode *NewBR =
10617               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10618             assert(NewBR == User);
10619             (void)NewBR;
10620             Dest = FalseBB;
10621
10622             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10623                                 Chain, Dest, CC, Cmp);
10624             X86::CondCode CCode =
10625               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10626             CCode = X86::GetOppositeBranchCondition(CCode);
10627             CC = DAG.getConstant(CCode, MVT::i8);
10628             Cond = Cmp;
10629             addTest = false;
10630           }
10631         }
10632       }
10633     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10634       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10635       // It should be transformed during dag combiner except when the condition
10636       // is set by a arithmetics with overflow node.
10637       X86::CondCode CCode =
10638         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10639       CCode = X86::GetOppositeBranchCondition(CCode);
10640       CC = DAG.getConstant(CCode, MVT::i8);
10641       Cond = Cond.getOperand(0).getOperand(1);
10642       addTest = false;
10643     } else if (Cond.getOpcode() == ISD::SETCC &&
10644                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10645       // For FCMP_OEQ, we can emit
10646       // two branches instead of an explicit AND instruction with a
10647       // separate test. However, we only do this if this block doesn't
10648       // have a fall-through edge, because this requires an explicit
10649       // jmp when the condition is false.
10650       if (Op.getNode()->hasOneUse()) {
10651         SDNode *User = *Op.getNode()->use_begin();
10652         // Look for an unconditional branch following this conditional branch.
10653         // We need this because we need to reverse the successors in order
10654         // to implement FCMP_OEQ.
10655         if (User->getOpcode() == ISD::BR) {
10656           SDValue FalseBB = User->getOperand(1);
10657           SDNode *NewBR =
10658             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10659           assert(NewBR == User);
10660           (void)NewBR;
10661           Dest = FalseBB;
10662
10663           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10664                                     Cond.getOperand(0), Cond.getOperand(1));
10665           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10666           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10667           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10668                               Chain, Dest, CC, Cmp);
10669           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10670           Cond = Cmp;
10671           addTest = false;
10672         }
10673       }
10674     } else if (Cond.getOpcode() == ISD::SETCC &&
10675                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10676       // For FCMP_UNE, we can emit
10677       // two branches instead of an explicit AND instruction with a
10678       // separate test. However, we only do this if this block doesn't
10679       // have a fall-through edge, because this requires an explicit
10680       // jmp when the condition is false.
10681       if (Op.getNode()->hasOneUse()) {
10682         SDNode *User = *Op.getNode()->use_begin();
10683         // Look for an unconditional branch following this conditional branch.
10684         // We need this because we need to reverse the successors in order
10685         // to implement FCMP_UNE.
10686         if (User->getOpcode() == ISD::BR) {
10687           SDValue FalseBB = User->getOperand(1);
10688           SDNode *NewBR =
10689             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10690           assert(NewBR == User);
10691           (void)NewBR;
10692
10693           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10694                                     Cond.getOperand(0), Cond.getOperand(1));
10695           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10696           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10697           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10698                               Chain, Dest, CC, Cmp);
10699           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10700           Cond = Cmp;
10701           addTest = false;
10702           Dest = FalseBB;
10703         }
10704       }
10705     }
10706   }
10707
10708   if (addTest) {
10709     // Look pass the truncate if the high bits are known zero.
10710     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10711         Cond = Cond.getOperand(0);
10712
10713     // We know the result of AND is compared against zero. Try to match
10714     // it to BT.
10715     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10716       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10717       if (NewSetCC.getNode()) {
10718         CC = NewSetCC.getOperand(0);
10719         Cond = NewSetCC.getOperand(1);
10720         addTest = false;
10721       }
10722     }
10723   }
10724
10725   if (addTest) {
10726     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10727     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10728   }
10729   Cond = ConvertCmpIfNecessary(Cond, DAG);
10730   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10731                      Chain, Dest, CC, Cond);
10732 }
10733
10734 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10735 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10736 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10737 // that the guard pages used by the OS virtual memory manager are allocated in
10738 // correct sequence.
10739 SDValue
10740 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10741                                            SelectionDAG &DAG) const {
10742   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10743           getTargetMachine().Options.EnableSegmentedStacks) &&
10744          "This should be used only on Windows targets or when segmented stacks "
10745          "are being used");
10746   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10747   SDLoc dl(Op);
10748
10749   // Get the inputs.
10750   SDValue Chain = Op.getOperand(0);
10751   SDValue Size  = Op.getOperand(1);
10752   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10753   EVT VT = Op.getNode()->getValueType(0);
10754
10755   bool Is64Bit = Subtarget->is64Bit();
10756   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10757
10758   if (getTargetMachine().Options.EnableSegmentedStacks) {
10759     MachineFunction &MF = DAG.getMachineFunction();
10760     MachineRegisterInfo &MRI = MF.getRegInfo();
10761
10762     if (Is64Bit) {
10763       // The 64 bit implementation of segmented stacks needs to clobber both r10
10764       // r11. This makes it impossible to use it along with nested parameters.
10765       const Function *F = MF.getFunction();
10766
10767       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10768            I != E; ++I)
10769         if (I->hasNestAttr())
10770           report_fatal_error("Cannot use segmented stacks with functions that "
10771                              "have nested arguments.");
10772     }
10773
10774     const TargetRegisterClass *AddrRegClass =
10775       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10776     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10777     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10778     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10779                                 DAG.getRegister(Vreg, SPTy));
10780     SDValue Ops1[2] = { Value, Chain };
10781     return DAG.getMergeValues(Ops1, 2, dl);
10782   } else {
10783     SDValue Flag;
10784     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10785
10786     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10787     Flag = Chain.getValue(1);
10788     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10789
10790     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10791
10792     const X86RegisterInfo *RegInfo =
10793       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10794     unsigned SPReg = RegInfo->getStackRegister();
10795     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10796     Chain = SP.getValue(1);
10797
10798     if (Align) {
10799       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10800                        DAG.getConstant(-(uint64_t)Align, VT));
10801       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10802     }
10803
10804     SDValue Ops1[2] = { SP, Chain };
10805     return DAG.getMergeValues(Ops1, 2, dl);
10806   }
10807 }
10808
10809 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10810   MachineFunction &MF = DAG.getMachineFunction();
10811   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10812
10813   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10814   SDLoc DL(Op);
10815
10816   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10817     // vastart just stores the address of the VarArgsFrameIndex slot into the
10818     // memory location argument.
10819     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10820                                    getPointerTy());
10821     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10822                         MachinePointerInfo(SV), false, false, 0);
10823   }
10824
10825   // __va_list_tag:
10826   //   gp_offset         (0 - 6 * 8)
10827   //   fp_offset         (48 - 48 + 8 * 16)
10828   //   overflow_arg_area (point to parameters coming in memory).
10829   //   reg_save_area
10830   SmallVector<SDValue, 8> MemOps;
10831   SDValue FIN = Op.getOperand(1);
10832   // Store gp_offset
10833   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10834                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10835                                                MVT::i32),
10836                                FIN, MachinePointerInfo(SV), false, false, 0);
10837   MemOps.push_back(Store);
10838
10839   // Store fp_offset
10840   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10841                     FIN, DAG.getIntPtrConstant(4));
10842   Store = DAG.getStore(Op.getOperand(0), DL,
10843                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10844                                        MVT::i32),
10845                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10846   MemOps.push_back(Store);
10847
10848   // Store ptr to overflow_arg_area
10849   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10850                     FIN, DAG.getIntPtrConstant(4));
10851   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10852                                     getPointerTy());
10853   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10854                        MachinePointerInfo(SV, 8),
10855                        false, false, 0);
10856   MemOps.push_back(Store);
10857
10858   // Store ptr to reg_save_area.
10859   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10860                     FIN, DAG.getIntPtrConstant(8));
10861   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10862                                     getPointerTy());
10863   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10864                        MachinePointerInfo(SV, 16), false, false, 0);
10865   MemOps.push_back(Store);
10866   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10867                      &MemOps[0], MemOps.size());
10868 }
10869
10870 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10871   assert(Subtarget->is64Bit() &&
10872          "LowerVAARG only handles 64-bit va_arg!");
10873   assert((Subtarget->isTargetLinux() ||
10874           Subtarget->isTargetDarwin()) &&
10875           "Unhandled target in LowerVAARG");
10876   assert(Op.getNode()->getNumOperands() == 4);
10877   SDValue Chain = Op.getOperand(0);
10878   SDValue SrcPtr = Op.getOperand(1);
10879   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10880   unsigned Align = Op.getConstantOperandVal(3);
10881   SDLoc dl(Op);
10882
10883   EVT ArgVT = Op.getNode()->getValueType(0);
10884   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10885   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10886   uint8_t ArgMode;
10887
10888   // Decide which area this value should be read from.
10889   // TODO: Implement the AMD64 ABI in its entirety. This simple
10890   // selection mechanism works only for the basic types.
10891   if (ArgVT == MVT::f80) {
10892     llvm_unreachable("va_arg for f80 not yet implemented");
10893   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10894     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10895   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10896     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10897   } else {
10898     llvm_unreachable("Unhandled argument type in LowerVAARG");
10899   }
10900
10901   if (ArgMode == 2) {
10902     // Sanity Check: Make sure using fp_offset makes sense.
10903     assert(!getTargetMachine().Options.UseSoftFloat &&
10904            !(DAG.getMachineFunction()
10905                 .getFunction()->getAttributes()
10906                 .hasAttribute(AttributeSet::FunctionIndex,
10907                               Attribute::NoImplicitFloat)) &&
10908            Subtarget->hasSSE1());
10909   }
10910
10911   // Insert VAARG_64 node into the DAG
10912   // VAARG_64 returns two values: Variable Argument Address, Chain
10913   SmallVector<SDValue, 11> InstOps;
10914   InstOps.push_back(Chain);
10915   InstOps.push_back(SrcPtr);
10916   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10917   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10918   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10919   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10920   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10921                                           VTs, &InstOps[0], InstOps.size(),
10922                                           MVT::i64,
10923                                           MachinePointerInfo(SV),
10924                                           /*Align=*/0,
10925                                           /*Volatile=*/false,
10926                                           /*ReadMem=*/true,
10927                                           /*WriteMem=*/true);
10928   Chain = VAARG.getValue(1);
10929
10930   // Load the next argument and return it
10931   return DAG.getLoad(ArgVT, dl,
10932                      Chain,
10933                      VAARG,
10934                      MachinePointerInfo(),
10935                      false, false, false, 0);
10936 }
10937
10938 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10939                            SelectionDAG &DAG) {
10940   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10941   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10942   SDValue Chain = Op.getOperand(0);
10943   SDValue DstPtr = Op.getOperand(1);
10944   SDValue SrcPtr = Op.getOperand(2);
10945   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10946   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10947   SDLoc DL(Op);
10948
10949   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10950                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10951                        false,
10952                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10953 }
10954
10955 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10956 // may or may not be a constant. Takes immediate version of shift as input.
10957 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10958                                    SDValue SrcOp, SDValue ShAmt,
10959                                    SelectionDAG &DAG) {
10960   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10961
10962   if (isa<ConstantSDNode>(ShAmt)) {
10963     // Constant may be a TargetConstant. Use a regular constant.
10964     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
10965     switch (Opc) {
10966       default: llvm_unreachable("Unknown target vector shift node");
10967       case X86ISD::VSHLI:
10968       case X86ISD::VSRLI:
10969       case X86ISD::VSRAI:
10970         return DAG.getNode(Opc, dl, VT, SrcOp,
10971                            DAG.getConstant(ShiftAmt, MVT::i32));
10972     }
10973   }
10974
10975   // Change opcode to non-immediate version
10976   switch (Opc) {
10977     default: llvm_unreachable("Unknown target vector shift node");
10978     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10979     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10980     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10981   }
10982
10983   // Need to build a vector containing shift amount
10984   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10985   SDValue ShOps[4];
10986   ShOps[0] = ShAmt;
10987   ShOps[1] = DAG.getConstant(0, MVT::i32);
10988   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10989   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10990
10991   // The return type has to be a 128-bit type with the same element
10992   // type as the input type.
10993   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10994   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10995
10996   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
10997   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10998 }
10999
11000 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11001   SDLoc dl(Op);
11002   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11003   switch (IntNo) {
11004   default: return SDValue();    // Don't custom lower most intrinsics.
11005   // Comparison intrinsics.
11006   case Intrinsic::x86_sse_comieq_ss:
11007   case Intrinsic::x86_sse_comilt_ss:
11008   case Intrinsic::x86_sse_comile_ss:
11009   case Intrinsic::x86_sse_comigt_ss:
11010   case Intrinsic::x86_sse_comige_ss:
11011   case Intrinsic::x86_sse_comineq_ss:
11012   case Intrinsic::x86_sse_ucomieq_ss:
11013   case Intrinsic::x86_sse_ucomilt_ss:
11014   case Intrinsic::x86_sse_ucomile_ss:
11015   case Intrinsic::x86_sse_ucomigt_ss:
11016   case Intrinsic::x86_sse_ucomige_ss:
11017   case Intrinsic::x86_sse_ucomineq_ss:
11018   case Intrinsic::x86_sse2_comieq_sd:
11019   case Intrinsic::x86_sse2_comilt_sd:
11020   case Intrinsic::x86_sse2_comile_sd:
11021   case Intrinsic::x86_sse2_comigt_sd:
11022   case Intrinsic::x86_sse2_comige_sd:
11023   case Intrinsic::x86_sse2_comineq_sd:
11024   case Intrinsic::x86_sse2_ucomieq_sd:
11025   case Intrinsic::x86_sse2_ucomilt_sd:
11026   case Intrinsic::x86_sse2_ucomile_sd:
11027   case Intrinsic::x86_sse2_ucomigt_sd:
11028   case Intrinsic::x86_sse2_ucomige_sd:
11029   case Intrinsic::x86_sse2_ucomineq_sd: {
11030     unsigned Opc;
11031     ISD::CondCode CC;
11032     switch (IntNo) {
11033     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11034     case Intrinsic::x86_sse_comieq_ss:
11035     case Intrinsic::x86_sse2_comieq_sd:
11036       Opc = X86ISD::COMI;
11037       CC = ISD::SETEQ;
11038       break;
11039     case Intrinsic::x86_sse_comilt_ss:
11040     case Intrinsic::x86_sse2_comilt_sd:
11041       Opc = X86ISD::COMI;
11042       CC = ISD::SETLT;
11043       break;
11044     case Intrinsic::x86_sse_comile_ss:
11045     case Intrinsic::x86_sse2_comile_sd:
11046       Opc = X86ISD::COMI;
11047       CC = ISD::SETLE;
11048       break;
11049     case Intrinsic::x86_sse_comigt_ss:
11050     case Intrinsic::x86_sse2_comigt_sd:
11051       Opc = X86ISD::COMI;
11052       CC = ISD::SETGT;
11053       break;
11054     case Intrinsic::x86_sse_comige_ss:
11055     case Intrinsic::x86_sse2_comige_sd:
11056       Opc = X86ISD::COMI;
11057       CC = ISD::SETGE;
11058       break;
11059     case Intrinsic::x86_sse_comineq_ss:
11060     case Intrinsic::x86_sse2_comineq_sd:
11061       Opc = X86ISD::COMI;
11062       CC = ISD::SETNE;
11063       break;
11064     case Intrinsic::x86_sse_ucomieq_ss:
11065     case Intrinsic::x86_sse2_ucomieq_sd:
11066       Opc = X86ISD::UCOMI;
11067       CC = ISD::SETEQ;
11068       break;
11069     case Intrinsic::x86_sse_ucomilt_ss:
11070     case Intrinsic::x86_sse2_ucomilt_sd:
11071       Opc = X86ISD::UCOMI;
11072       CC = ISD::SETLT;
11073       break;
11074     case Intrinsic::x86_sse_ucomile_ss:
11075     case Intrinsic::x86_sse2_ucomile_sd:
11076       Opc = X86ISD::UCOMI;
11077       CC = ISD::SETLE;
11078       break;
11079     case Intrinsic::x86_sse_ucomigt_ss:
11080     case Intrinsic::x86_sse2_ucomigt_sd:
11081       Opc = X86ISD::UCOMI;
11082       CC = ISD::SETGT;
11083       break;
11084     case Intrinsic::x86_sse_ucomige_ss:
11085     case Intrinsic::x86_sse2_ucomige_sd:
11086       Opc = X86ISD::UCOMI;
11087       CC = ISD::SETGE;
11088       break;
11089     case Intrinsic::x86_sse_ucomineq_ss:
11090     case Intrinsic::x86_sse2_ucomineq_sd:
11091       Opc = X86ISD::UCOMI;
11092       CC = ISD::SETNE;
11093       break;
11094     }
11095
11096     SDValue LHS = Op.getOperand(1);
11097     SDValue RHS = Op.getOperand(2);
11098     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11099     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11100     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11101     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11102                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11103     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11104   }
11105
11106   // Arithmetic intrinsics.
11107   case Intrinsic::x86_sse2_pmulu_dq:
11108   case Intrinsic::x86_avx2_pmulu_dq:
11109     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11110                        Op.getOperand(1), Op.getOperand(2));
11111
11112   // SSE2/AVX2 sub with unsigned saturation intrinsics
11113   case Intrinsic::x86_sse2_psubus_b:
11114   case Intrinsic::x86_sse2_psubus_w:
11115   case Intrinsic::x86_avx2_psubus_b:
11116   case Intrinsic::x86_avx2_psubus_w:
11117     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11118                        Op.getOperand(1), Op.getOperand(2));
11119
11120   // SSE3/AVX horizontal add/sub intrinsics
11121   case Intrinsic::x86_sse3_hadd_ps:
11122   case Intrinsic::x86_sse3_hadd_pd:
11123   case Intrinsic::x86_avx_hadd_ps_256:
11124   case Intrinsic::x86_avx_hadd_pd_256:
11125   case Intrinsic::x86_sse3_hsub_ps:
11126   case Intrinsic::x86_sse3_hsub_pd:
11127   case Intrinsic::x86_avx_hsub_ps_256:
11128   case Intrinsic::x86_avx_hsub_pd_256:
11129   case Intrinsic::x86_ssse3_phadd_w_128:
11130   case Intrinsic::x86_ssse3_phadd_d_128:
11131   case Intrinsic::x86_avx2_phadd_w:
11132   case Intrinsic::x86_avx2_phadd_d:
11133   case Intrinsic::x86_ssse3_phsub_w_128:
11134   case Intrinsic::x86_ssse3_phsub_d_128:
11135   case Intrinsic::x86_avx2_phsub_w:
11136   case Intrinsic::x86_avx2_phsub_d: {
11137     unsigned Opcode;
11138     switch (IntNo) {
11139     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11140     case Intrinsic::x86_sse3_hadd_ps:
11141     case Intrinsic::x86_sse3_hadd_pd:
11142     case Intrinsic::x86_avx_hadd_ps_256:
11143     case Intrinsic::x86_avx_hadd_pd_256:
11144       Opcode = X86ISD::FHADD;
11145       break;
11146     case Intrinsic::x86_sse3_hsub_ps:
11147     case Intrinsic::x86_sse3_hsub_pd:
11148     case Intrinsic::x86_avx_hsub_ps_256:
11149     case Intrinsic::x86_avx_hsub_pd_256:
11150       Opcode = X86ISD::FHSUB;
11151       break;
11152     case Intrinsic::x86_ssse3_phadd_w_128:
11153     case Intrinsic::x86_ssse3_phadd_d_128:
11154     case Intrinsic::x86_avx2_phadd_w:
11155     case Intrinsic::x86_avx2_phadd_d:
11156       Opcode = X86ISD::HADD;
11157       break;
11158     case Intrinsic::x86_ssse3_phsub_w_128:
11159     case Intrinsic::x86_ssse3_phsub_d_128:
11160     case Intrinsic::x86_avx2_phsub_w:
11161     case Intrinsic::x86_avx2_phsub_d:
11162       Opcode = X86ISD::HSUB;
11163       break;
11164     }
11165     return DAG.getNode(Opcode, dl, Op.getValueType(),
11166                        Op.getOperand(1), Op.getOperand(2));
11167   }
11168
11169   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11170   case Intrinsic::x86_sse2_pmaxu_b:
11171   case Intrinsic::x86_sse41_pmaxuw:
11172   case Intrinsic::x86_sse41_pmaxud:
11173   case Intrinsic::x86_avx2_pmaxu_b:
11174   case Intrinsic::x86_avx2_pmaxu_w:
11175   case Intrinsic::x86_avx2_pmaxu_d:
11176   case Intrinsic::x86_sse2_pminu_b:
11177   case Intrinsic::x86_sse41_pminuw:
11178   case Intrinsic::x86_sse41_pminud:
11179   case Intrinsic::x86_avx2_pminu_b:
11180   case Intrinsic::x86_avx2_pminu_w:
11181   case Intrinsic::x86_avx2_pminu_d:
11182   case Intrinsic::x86_sse41_pmaxsb:
11183   case Intrinsic::x86_sse2_pmaxs_w:
11184   case Intrinsic::x86_sse41_pmaxsd:
11185   case Intrinsic::x86_avx2_pmaxs_b:
11186   case Intrinsic::x86_avx2_pmaxs_w:
11187   case Intrinsic::x86_avx2_pmaxs_d:
11188   case Intrinsic::x86_sse41_pminsb:
11189   case Intrinsic::x86_sse2_pmins_w:
11190   case Intrinsic::x86_sse41_pminsd:
11191   case Intrinsic::x86_avx2_pmins_b:
11192   case Intrinsic::x86_avx2_pmins_w:
11193   case Intrinsic::x86_avx2_pmins_d: {
11194     unsigned Opcode;
11195     switch (IntNo) {
11196     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11197     case Intrinsic::x86_sse2_pmaxu_b:
11198     case Intrinsic::x86_sse41_pmaxuw:
11199     case Intrinsic::x86_sse41_pmaxud:
11200     case Intrinsic::x86_avx2_pmaxu_b:
11201     case Intrinsic::x86_avx2_pmaxu_w:
11202     case Intrinsic::x86_avx2_pmaxu_d:
11203       Opcode = X86ISD::UMAX;
11204       break;
11205     case Intrinsic::x86_sse2_pminu_b:
11206     case Intrinsic::x86_sse41_pminuw:
11207     case Intrinsic::x86_sse41_pminud:
11208     case Intrinsic::x86_avx2_pminu_b:
11209     case Intrinsic::x86_avx2_pminu_w:
11210     case Intrinsic::x86_avx2_pminu_d:
11211       Opcode = X86ISD::UMIN;
11212       break;
11213     case Intrinsic::x86_sse41_pmaxsb:
11214     case Intrinsic::x86_sse2_pmaxs_w:
11215     case Intrinsic::x86_sse41_pmaxsd:
11216     case Intrinsic::x86_avx2_pmaxs_b:
11217     case Intrinsic::x86_avx2_pmaxs_w:
11218     case Intrinsic::x86_avx2_pmaxs_d:
11219       Opcode = X86ISD::SMAX;
11220       break;
11221     case Intrinsic::x86_sse41_pminsb:
11222     case Intrinsic::x86_sse2_pmins_w:
11223     case Intrinsic::x86_sse41_pminsd:
11224     case Intrinsic::x86_avx2_pmins_b:
11225     case Intrinsic::x86_avx2_pmins_w:
11226     case Intrinsic::x86_avx2_pmins_d:
11227       Opcode = X86ISD::SMIN;
11228       break;
11229     }
11230     return DAG.getNode(Opcode, dl, Op.getValueType(),
11231                        Op.getOperand(1), Op.getOperand(2));
11232   }
11233
11234   // SSE/SSE2/AVX floating point max/min intrinsics.
11235   case Intrinsic::x86_sse_max_ps:
11236   case Intrinsic::x86_sse2_max_pd:
11237   case Intrinsic::x86_avx_max_ps_256:
11238   case Intrinsic::x86_avx_max_pd_256:
11239   case Intrinsic::x86_avx512_max_ps_512:
11240   case Intrinsic::x86_avx512_max_pd_512:
11241   case Intrinsic::x86_sse_min_ps:
11242   case Intrinsic::x86_sse2_min_pd:
11243   case Intrinsic::x86_avx_min_ps_256:
11244   case Intrinsic::x86_avx_min_pd_256:
11245   case Intrinsic::x86_avx512_min_ps_512:
11246   case Intrinsic::x86_avx512_min_pd_512:  {
11247     unsigned Opcode;
11248     switch (IntNo) {
11249     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11250     case Intrinsic::x86_sse_max_ps:
11251     case Intrinsic::x86_sse2_max_pd:
11252     case Intrinsic::x86_avx_max_ps_256:
11253     case Intrinsic::x86_avx_max_pd_256:
11254     case Intrinsic::x86_avx512_max_ps_512:
11255     case Intrinsic::x86_avx512_max_pd_512:
11256       Opcode = X86ISD::FMAX;
11257       break;
11258     case Intrinsic::x86_sse_min_ps:
11259     case Intrinsic::x86_sse2_min_pd:
11260     case Intrinsic::x86_avx_min_ps_256:
11261     case Intrinsic::x86_avx_min_pd_256:
11262     case Intrinsic::x86_avx512_min_ps_512:
11263     case Intrinsic::x86_avx512_min_pd_512:
11264       Opcode = X86ISD::FMIN;
11265       break;
11266     }
11267     return DAG.getNode(Opcode, dl, Op.getValueType(),
11268                        Op.getOperand(1), Op.getOperand(2));
11269   }
11270
11271   // AVX2 variable shift intrinsics
11272   case Intrinsic::x86_avx2_psllv_d:
11273   case Intrinsic::x86_avx2_psllv_q:
11274   case Intrinsic::x86_avx2_psllv_d_256:
11275   case Intrinsic::x86_avx2_psllv_q_256:
11276   case Intrinsic::x86_avx2_psrlv_d:
11277   case Intrinsic::x86_avx2_psrlv_q:
11278   case Intrinsic::x86_avx2_psrlv_d_256:
11279   case Intrinsic::x86_avx2_psrlv_q_256:
11280   case Intrinsic::x86_avx2_psrav_d:
11281   case Intrinsic::x86_avx2_psrav_d_256: {
11282     unsigned Opcode;
11283     switch (IntNo) {
11284     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11285     case Intrinsic::x86_avx2_psllv_d:
11286     case Intrinsic::x86_avx2_psllv_q:
11287     case Intrinsic::x86_avx2_psllv_d_256:
11288     case Intrinsic::x86_avx2_psllv_q_256:
11289       Opcode = ISD::SHL;
11290       break;
11291     case Intrinsic::x86_avx2_psrlv_d:
11292     case Intrinsic::x86_avx2_psrlv_q:
11293     case Intrinsic::x86_avx2_psrlv_d_256:
11294     case Intrinsic::x86_avx2_psrlv_q_256:
11295       Opcode = ISD::SRL;
11296       break;
11297     case Intrinsic::x86_avx2_psrav_d:
11298     case Intrinsic::x86_avx2_psrav_d_256:
11299       Opcode = ISD::SRA;
11300       break;
11301     }
11302     return DAG.getNode(Opcode, dl, Op.getValueType(),
11303                        Op.getOperand(1), Op.getOperand(2));
11304   }
11305
11306   case Intrinsic::x86_ssse3_pshuf_b_128:
11307   case Intrinsic::x86_avx2_pshuf_b:
11308     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11309                        Op.getOperand(1), Op.getOperand(2));
11310
11311   case Intrinsic::x86_ssse3_psign_b_128:
11312   case Intrinsic::x86_ssse3_psign_w_128:
11313   case Intrinsic::x86_ssse3_psign_d_128:
11314   case Intrinsic::x86_avx2_psign_b:
11315   case Intrinsic::x86_avx2_psign_w:
11316   case Intrinsic::x86_avx2_psign_d:
11317     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11318                        Op.getOperand(1), Op.getOperand(2));
11319
11320   case Intrinsic::x86_sse41_insertps:
11321     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11322                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11323
11324   case Intrinsic::x86_avx_vperm2f128_ps_256:
11325   case Intrinsic::x86_avx_vperm2f128_pd_256:
11326   case Intrinsic::x86_avx_vperm2f128_si_256:
11327   case Intrinsic::x86_avx2_vperm2i128:
11328     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11329                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11330
11331   case Intrinsic::x86_avx2_permd:
11332   case Intrinsic::x86_avx2_permps:
11333     // Operands intentionally swapped. Mask is last operand to intrinsic,
11334     // but second operand for node/instruction.
11335     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11336                        Op.getOperand(2), Op.getOperand(1));
11337
11338   case Intrinsic::x86_sse_sqrt_ps:
11339   case Intrinsic::x86_sse2_sqrt_pd:
11340   case Intrinsic::x86_avx_sqrt_ps_256:
11341   case Intrinsic::x86_avx_sqrt_pd_256:
11342     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11343
11344   // ptest and testp intrinsics. The intrinsic these come from are designed to
11345   // return an integer value, not just an instruction so lower it to the ptest
11346   // or testp pattern and a setcc for the result.
11347   case Intrinsic::x86_sse41_ptestz:
11348   case Intrinsic::x86_sse41_ptestc:
11349   case Intrinsic::x86_sse41_ptestnzc:
11350   case Intrinsic::x86_avx_ptestz_256:
11351   case Intrinsic::x86_avx_ptestc_256:
11352   case Intrinsic::x86_avx_ptestnzc_256:
11353   case Intrinsic::x86_avx_vtestz_ps:
11354   case Intrinsic::x86_avx_vtestc_ps:
11355   case Intrinsic::x86_avx_vtestnzc_ps:
11356   case Intrinsic::x86_avx_vtestz_pd:
11357   case Intrinsic::x86_avx_vtestc_pd:
11358   case Intrinsic::x86_avx_vtestnzc_pd:
11359   case Intrinsic::x86_avx_vtestz_ps_256:
11360   case Intrinsic::x86_avx_vtestc_ps_256:
11361   case Intrinsic::x86_avx_vtestnzc_ps_256:
11362   case Intrinsic::x86_avx_vtestz_pd_256:
11363   case Intrinsic::x86_avx_vtestc_pd_256:
11364   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11365     bool IsTestPacked = false;
11366     unsigned X86CC;
11367     switch (IntNo) {
11368     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11369     case Intrinsic::x86_avx_vtestz_ps:
11370     case Intrinsic::x86_avx_vtestz_pd:
11371     case Intrinsic::x86_avx_vtestz_ps_256:
11372     case Intrinsic::x86_avx_vtestz_pd_256:
11373       IsTestPacked = true; // Fallthrough
11374     case Intrinsic::x86_sse41_ptestz:
11375     case Intrinsic::x86_avx_ptestz_256:
11376       // ZF = 1
11377       X86CC = X86::COND_E;
11378       break;
11379     case Intrinsic::x86_avx_vtestc_ps:
11380     case Intrinsic::x86_avx_vtestc_pd:
11381     case Intrinsic::x86_avx_vtestc_ps_256:
11382     case Intrinsic::x86_avx_vtestc_pd_256:
11383       IsTestPacked = true; // Fallthrough
11384     case Intrinsic::x86_sse41_ptestc:
11385     case Intrinsic::x86_avx_ptestc_256:
11386       // CF = 1
11387       X86CC = X86::COND_B;
11388       break;
11389     case Intrinsic::x86_avx_vtestnzc_ps:
11390     case Intrinsic::x86_avx_vtestnzc_pd:
11391     case Intrinsic::x86_avx_vtestnzc_ps_256:
11392     case Intrinsic::x86_avx_vtestnzc_pd_256:
11393       IsTestPacked = true; // Fallthrough
11394     case Intrinsic::x86_sse41_ptestnzc:
11395     case Intrinsic::x86_avx_ptestnzc_256:
11396       // ZF and CF = 0
11397       X86CC = X86::COND_A;
11398       break;
11399     }
11400
11401     SDValue LHS = Op.getOperand(1);
11402     SDValue RHS = Op.getOperand(2);
11403     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11404     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11405     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11406     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11407     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11408   }
11409   case Intrinsic::x86_avx512_kortestz:
11410   case Intrinsic::x86_avx512_kortestc: {
11411     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11412     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11413     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11414     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11415     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11416     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11417     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11418   }
11419
11420   // SSE/AVX shift intrinsics
11421   case Intrinsic::x86_sse2_psll_w:
11422   case Intrinsic::x86_sse2_psll_d:
11423   case Intrinsic::x86_sse2_psll_q:
11424   case Intrinsic::x86_avx2_psll_w:
11425   case Intrinsic::x86_avx2_psll_d:
11426   case Intrinsic::x86_avx2_psll_q:
11427   case Intrinsic::x86_sse2_psrl_w:
11428   case Intrinsic::x86_sse2_psrl_d:
11429   case Intrinsic::x86_sse2_psrl_q:
11430   case Intrinsic::x86_avx2_psrl_w:
11431   case Intrinsic::x86_avx2_psrl_d:
11432   case Intrinsic::x86_avx2_psrl_q:
11433   case Intrinsic::x86_sse2_psra_w:
11434   case Intrinsic::x86_sse2_psra_d:
11435   case Intrinsic::x86_avx2_psra_w:
11436   case Intrinsic::x86_avx2_psra_d: {
11437     unsigned Opcode;
11438     switch (IntNo) {
11439     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11440     case Intrinsic::x86_sse2_psll_w:
11441     case Intrinsic::x86_sse2_psll_d:
11442     case Intrinsic::x86_sse2_psll_q:
11443     case Intrinsic::x86_avx2_psll_w:
11444     case Intrinsic::x86_avx2_psll_d:
11445     case Intrinsic::x86_avx2_psll_q:
11446       Opcode = X86ISD::VSHL;
11447       break;
11448     case Intrinsic::x86_sse2_psrl_w:
11449     case Intrinsic::x86_sse2_psrl_d:
11450     case Intrinsic::x86_sse2_psrl_q:
11451     case Intrinsic::x86_avx2_psrl_w:
11452     case Intrinsic::x86_avx2_psrl_d:
11453     case Intrinsic::x86_avx2_psrl_q:
11454       Opcode = X86ISD::VSRL;
11455       break;
11456     case Intrinsic::x86_sse2_psra_w:
11457     case Intrinsic::x86_sse2_psra_d:
11458     case Intrinsic::x86_avx2_psra_w:
11459     case Intrinsic::x86_avx2_psra_d:
11460       Opcode = X86ISD::VSRA;
11461       break;
11462     }
11463     return DAG.getNode(Opcode, dl, Op.getValueType(),
11464                        Op.getOperand(1), Op.getOperand(2));
11465   }
11466
11467   // SSE/AVX immediate shift intrinsics
11468   case Intrinsic::x86_sse2_pslli_w:
11469   case Intrinsic::x86_sse2_pslli_d:
11470   case Intrinsic::x86_sse2_pslli_q:
11471   case Intrinsic::x86_avx2_pslli_w:
11472   case Intrinsic::x86_avx2_pslli_d:
11473   case Intrinsic::x86_avx2_pslli_q:
11474   case Intrinsic::x86_sse2_psrli_w:
11475   case Intrinsic::x86_sse2_psrli_d:
11476   case Intrinsic::x86_sse2_psrli_q:
11477   case Intrinsic::x86_avx2_psrli_w:
11478   case Intrinsic::x86_avx2_psrli_d:
11479   case Intrinsic::x86_avx2_psrli_q:
11480   case Intrinsic::x86_sse2_psrai_w:
11481   case Intrinsic::x86_sse2_psrai_d:
11482   case Intrinsic::x86_avx2_psrai_w:
11483   case Intrinsic::x86_avx2_psrai_d: {
11484     unsigned Opcode;
11485     switch (IntNo) {
11486     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11487     case Intrinsic::x86_sse2_pslli_w:
11488     case Intrinsic::x86_sse2_pslli_d:
11489     case Intrinsic::x86_sse2_pslli_q:
11490     case Intrinsic::x86_avx2_pslli_w:
11491     case Intrinsic::x86_avx2_pslli_d:
11492     case Intrinsic::x86_avx2_pslli_q:
11493       Opcode = X86ISD::VSHLI;
11494       break;
11495     case Intrinsic::x86_sse2_psrli_w:
11496     case Intrinsic::x86_sse2_psrli_d:
11497     case Intrinsic::x86_sse2_psrli_q:
11498     case Intrinsic::x86_avx2_psrli_w:
11499     case Intrinsic::x86_avx2_psrli_d:
11500     case Intrinsic::x86_avx2_psrli_q:
11501       Opcode = X86ISD::VSRLI;
11502       break;
11503     case Intrinsic::x86_sse2_psrai_w:
11504     case Intrinsic::x86_sse2_psrai_d:
11505     case Intrinsic::x86_avx2_psrai_w:
11506     case Intrinsic::x86_avx2_psrai_d:
11507       Opcode = X86ISD::VSRAI;
11508       break;
11509     }
11510     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11511                                Op.getOperand(1), Op.getOperand(2), DAG);
11512   }
11513
11514   case Intrinsic::x86_sse42_pcmpistria128:
11515   case Intrinsic::x86_sse42_pcmpestria128:
11516   case Intrinsic::x86_sse42_pcmpistric128:
11517   case Intrinsic::x86_sse42_pcmpestric128:
11518   case Intrinsic::x86_sse42_pcmpistrio128:
11519   case Intrinsic::x86_sse42_pcmpestrio128:
11520   case Intrinsic::x86_sse42_pcmpistris128:
11521   case Intrinsic::x86_sse42_pcmpestris128:
11522   case Intrinsic::x86_sse42_pcmpistriz128:
11523   case Intrinsic::x86_sse42_pcmpestriz128: {
11524     unsigned Opcode;
11525     unsigned X86CC;
11526     switch (IntNo) {
11527     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11528     case Intrinsic::x86_sse42_pcmpistria128:
11529       Opcode = X86ISD::PCMPISTRI;
11530       X86CC = X86::COND_A;
11531       break;
11532     case Intrinsic::x86_sse42_pcmpestria128:
11533       Opcode = X86ISD::PCMPESTRI;
11534       X86CC = X86::COND_A;
11535       break;
11536     case Intrinsic::x86_sse42_pcmpistric128:
11537       Opcode = X86ISD::PCMPISTRI;
11538       X86CC = X86::COND_B;
11539       break;
11540     case Intrinsic::x86_sse42_pcmpestric128:
11541       Opcode = X86ISD::PCMPESTRI;
11542       X86CC = X86::COND_B;
11543       break;
11544     case Intrinsic::x86_sse42_pcmpistrio128:
11545       Opcode = X86ISD::PCMPISTRI;
11546       X86CC = X86::COND_O;
11547       break;
11548     case Intrinsic::x86_sse42_pcmpestrio128:
11549       Opcode = X86ISD::PCMPESTRI;
11550       X86CC = X86::COND_O;
11551       break;
11552     case Intrinsic::x86_sse42_pcmpistris128:
11553       Opcode = X86ISD::PCMPISTRI;
11554       X86CC = X86::COND_S;
11555       break;
11556     case Intrinsic::x86_sse42_pcmpestris128:
11557       Opcode = X86ISD::PCMPESTRI;
11558       X86CC = X86::COND_S;
11559       break;
11560     case Intrinsic::x86_sse42_pcmpistriz128:
11561       Opcode = X86ISD::PCMPISTRI;
11562       X86CC = X86::COND_E;
11563       break;
11564     case Intrinsic::x86_sse42_pcmpestriz128:
11565       Opcode = X86ISD::PCMPESTRI;
11566       X86CC = X86::COND_E;
11567       break;
11568     }
11569     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11570     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11571     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11572     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11573                                 DAG.getConstant(X86CC, MVT::i8),
11574                                 SDValue(PCMP.getNode(), 1));
11575     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11576   }
11577
11578   case Intrinsic::x86_sse42_pcmpistri128:
11579   case Intrinsic::x86_sse42_pcmpestri128: {
11580     unsigned Opcode;
11581     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11582       Opcode = X86ISD::PCMPISTRI;
11583     else
11584       Opcode = X86ISD::PCMPESTRI;
11585
11586     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11587     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11588     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11589   }
11590   case Intrinsic::x86_fma_vfmadd_ps:
11591   case Intrinsic::x86_fma_vfmadd_pd:
11592   case Intrinsic::x86_fma_vfmsub_ps:
11593   case Intrinsic::x86_fma_vfmsub_pd:
11594   case Intrinsic::x86_fma_vfnmadd_ps:
11595   case Intrinsic::x86_fma_vfnmadd_pd:
11596   case Intrinsic::x86_fma_vfnmsub_ps:
11597   case Intrinsic::x86_fma_vfnmsub_pd:
11598   case Intrinsic::x86_fma_vfmaddsub_ps:
11599   case Intrinsic::x86_fma_vfmaddsub_pd:
11600   case Intrinsic::x86_fma_vfmsubadd_ps:
11601   case Intrinsic::x86_fma_vfmsubadd_pd:
11602   case Intrinsic::x86_fma_vfmadd_ps_256:
11603   case Intrinsic::x86_fma_vfmadd_pd_256:
11604   case Intrinsic::x86_fma_vfmsub_ps_256:
11605   case Intrinsic::x86_fma_vfmsub_pd_256:
11606   case Intrinsic::x86_fma_vfnmadd_ps_256:
11607   case Intrinsic::x86_fma_vfnmadd_pd_256:
11608   case Intrinsic::x86_fma_vfnmsub_ps_256:
11609   case Intrinsic::x86_fma_vfnmsub_pd_256:
11610   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11611   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11612   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11613   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11614     unsigned Opc;
11615     switch (IntNo) {
11616     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11617     case Intrinsic::x86_fma_vfmadd_ps:
11618     case Intrinsic::x86_fma_vfmadd_pd:
11619     case Intrinsic::x86_fma_vfmadd_ps_256:
11620     case Intrinsic::x86_fma_vfmadd_pd_256:
11621       Opc = X86ISD::FMADD;
11622       break;
11623     case Intrinsic::x86_fma_vfmsub_ps:
11624     case Intrinsic::x86_fma_vfmsub_pd:
11625     case Intrinsic::x86_fma_vfmsub_ps_256:
11626     case Intrinsic::x86_fma_vfmsub_pd_256:
11627       Opc = X86ISD::FMSUB;
11628       break;
11629     case Intrinsic::x86_fma_vfnmadd_ps:
11630     case Intrinsic::x86_fma_vfnmadd_pd:
11631     case Intrinsic::x86_fma_vfnmadd_ps_256:
11632     case Intrinsic::x86_fma_vfnmadd_pd_256:
11633       Opc = X86ISD::FNMADD;
11634       break;
11635     case Intrinsic::x86_fma_vfnmsub_ps:
11636     case Intrinsic::x86_fma_vfnmsub_pd:
11637     case Intrinsic::x86_fma_vfnmsub_ps_256:
11638     case Intrinsic::x86_fma_vfnmsub_pd_256:
11639       Opc = X86ISD::FNMSUB;
11640       break;
11641     case Intrinsic::x86_fma_vfmaddsub_ps:
11642     case Intrinsic::x86_fma_vfmaddsub_pd:
11643     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11644     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11645       Opc = X86ISD::FMADDSUB;
11646       break;
11647     case Intrinsic::x86_fma_vfmsubadd_ps:
11648     case Intrinsic::x86_fma_vfmsubadd_pd:
11649     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11650     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11651       Opc = X86ISD::FMSUBADD;
11652       break;
11653     }
11654
11655     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11656                        Op.getOperand(2), Op.getOperand(3));
11657   }
11658   }
11659 }
11660
11661 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11662                              SDValue Base, SDValue Index,
11663                              SDValue ScaleOp, SDValue Chain,
11664                              const X86Subtarget * Subtarget) {
11665   SDLoc dl(Op);
11666   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11667   assert(C && "Invalid scale type");
11668   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11669   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11670   EVT MaskVT = MVT::getVectorVT(MVT::i1, 
11671                                 Index.getValueType().getVectorNumElements());
11672   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11673   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11674   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11675   SDValue Segment = DAG.getRegister(0, MVT::i32);
11676   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11677   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11678   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11679   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11680 }
11681
11682 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11683                               SDValue Src, SDValue Mask, SDValue Base,
11684                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11685                               const X86Subtarget * Subtarget) {
11686   SDLoc dl(Op);
11687   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11688   assert(C && "Invalid scale type");
11689   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11690   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11691                                 Index.getValueType().getVectorNumElements());
11692   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11693   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11694   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11695   SDValue Segment = DAG.getRegister(0, MVT::i32);
11696   if (Src.getOpcode() == ISD::UNDEF)
11697     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11698   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11699   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11700   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11701   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11702 }
11703
11704 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11705                               SDValue Src, SDValue Base, SDValue Index,
11706                               SDValue ScaleOp, SDValue Chain) {
11707   SDLoc dl(Op);
11708   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11709   assert(C && "Invalid scale type");
11710   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11711   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11712   SDValue Segment = DAG.getRegister(0, MVT::i32);
11713   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11714                                 Index.getValueType().getVectorNumElements());
11715   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11716   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11717   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11718   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11719   return SDValue(Res, 1);
11720 }
11721
11722 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11723                                SDValue Src, SDValue Mask, SDValue Base,
11724                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11725   SDLoc dl(Op);
11726   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11727   assert(C && "Invalid scale type");
11728   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11729   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11730   SDValue Segment = DAG.getRegister(0, MVT::i32);
11731   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11732                                 Index.getValueType().getVectorNumElements());
11733   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11734   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11735   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11736   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11737   return SDValue(Res, 1);
11738 }
11739
11740 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11741                                       SelectionDAG &DAG) {
11742   SDLoc dl(Op);
11743   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11744   switch (IntNo) {
11745   default: return SDValue();    // Don't custom lower most intrinsics.
11746
11747   // RDRAND/RDSEED intrinsics.
11748   case Intrinsic::x86_rdrand_16:
11749   case Intrinsic::x86_rdrand_32:
11750   case Intrinsic::x86_rdrand_64:
11751   case Intrinsic::x86_rdseed_16:
11752   case Intrinsic::x86_rdseed_32:
11753   case Intrinsic::x86_rdseed_64: {
11754     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11755                        IntNo == Intrinsic::x86_rdseed_32 ||
11756                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11757                                                             X86ISD::RDRAND;
11758     // Emit the node with the right value type.
11759     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11760     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11761
11762     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11763     // Otherwise return the value from Rand, which is always 0, casted to i32.
11764     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11765                       DAG.getConstant(1, Op->getValueType(1)),
11766                       DAG.getConstant(X86::COND_B, MVT::i32),
11767                       SDValue(Result.getNode(), 1) };
11768     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11769                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11770                                   Ops, array_lengthof(Ops));
11771
11772     // Return { result, isValid, chain }.
11773     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11774                        SDValue(Result.getNode(), 2));
11775   }
11776   //int_gather(index, base, scale);
11777   case Intrinsic::x86_avx512_gather_qpd_512:
11778   case Intrinsic::x86_avx512_gather_qps_512:
11779   case Intrinsic::x86_avx512_gather_dpd_512:
11780   case Intrinsic::x86_avx512_gather_qpi_512:
11781   case Intrinsic::x86_avx512_gather_qpq_512:
11782   case Intrinsic::x86_avx512_gather_dpq_512:
11783   case Intrinsic::x86_avx512_gather_dps_512:
11784   case Intrinsic::x86_avx512_gather_dpi_512: {
11785     unsigned Opc;
11786     switch (IntNo) {
11787       default: llvm_unreachable("Unexpected intrinsic!");
11788       case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11789       case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11790       case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11791       case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11792       case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11793       case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11794       case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11795       case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11796     }
11797     SDValue Chain = Op.getOperand(0);
11798     SDValue Index = Op.getOperand(2);
11799     SDValue Base  = Op.getOperand(3);
11800     SDValue Scale = Op.getOperand(4);
11801     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11802   }
11803   //int_gather_mask(v1, mask, index, base, scale);
11804   case Intrinsic::x86_avx512_gather_qps_mask_512:
11805   case Intrinsic::x86_avx512_gather_qpd_mask_512:
11806   case Intrinsic::x86_avx512_gather_dpd_mask_512:
11807   case Intrinsic::x86_avx512_gather_dps_mask_512:
11808   case Intrinsic::x86_avx512_gather_qpi_mask_512:
11809   case Intrinsic::x86_avx512_gather_qpq_mask_512:
11810   case Intrinsic::x86_avx512_gather_dpi_mask_512:
11811   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11812     unsigned Opc;
11813     switch (IntNo) {
11814       default: llvm_unreachable("Unexpected intrinsic!");
11815       case Intrinsic::x86_avx512_gather_qps_mask_512: 
11816         Opc = X86::VGATHERQPSZrm; break;
11817       case Intrinsic::x86_avx512_gather_qpd_mask_512:
11818         Opc = X86::VGATHERQPDZrm; break;
11819       case Intrinsic::x86_avx512_gather_dpd_mask_512:
11820         Opc = X86::VGATHERDPDZrm; break;
11821       case Intrinsic::x86_avx512_gather_dps_mask_512:
11822         Opc = X86::VGATHERDPSZrm; break;
11823       case Intrinsic::x86_avx512_gather_qpi_mask_512:
11824         Opc = X86::VPGATHERQDZrm; break;
11825       case Intrinsic::x86_avx512_gather_qpq_mask_512:
11826         Opc = X86::VPGATHERQQZrm; break;
11827       case Intrinsic::x86_avx512_gather_dpi_mask_512:
11828         Opc = X86::VPGATHERDDZrm; break;
11829       case Intrinsic::x86_avx512_gather_dpq_mask_512:
11830         Opc = X86::VPGATHERDQZrm; break;
11831     }
11832     SDValue Chain = Op.getOperand(0);
11833     SDValue Src   = Op.getOperand(2);
11834     SDValue Mask  = Op.getOperand(3);
11835     SDValue Index = Op.getOperand(4);
11836     SDValue Base  = Op.getOperand(5);
11837     SDValue Scale = Op.getOperand(6);
11838     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11839                           Subtarget);
11840   }
11841   //int_scatter(base, index, v1, scale);
11842   case Intrinsic::x86_avx512_scatter_qpd_512:
11843   case Intrinsic::x86_avx512_scatter_qps_512:
11844   case Intrinsic::x86_avx512_scatter_dpd_512:
11845   case Intrinsic::x86_avx512_scatter_qpi_512:
11846   case Intrinsic::x86_avx512_scatter_qpq_512:
11847   case Intrinsic::x86_avx512_scatter_dpq_512:
11848   case Intrinsic::x86_avx512_scatter_dps_512:
11849   case Intrinsic::x86_avx512_scatter_dpi_512: {
11850     unsigned Opc;
11851     switch (IntNo) {
11852       default: llvm_unreachable("Unexpected intrinsic!");
11853       case Intrinsic::x86_avx512_scatter_qpd_512: 
11854         Opc = X86::VSCATTERQPDZmr; break;
11855       case Intrinsic::x86_avx512_scatter_qps_512:
11856         Opc = X86::VSCATTERQPSZmr; break;
11857       case Intrinsic::x86_avx512_scatter_dpd_512:
11858         Opc = X86::VSCATTERDPDZmr; break;
11859       case Intrinsic::x86_avx512_scatter_dps_512:
11860         Opc = X86::VSCATTERDPSZmr; break;
11861       case Intrinsic::x86_avx512_scatter_qpi_512:
11862         Opc = X86::VPSCATTERQDZmr; break;
11863       case Intrinsic::x86_avx512_scatter_qpq_512:
11864         Opc = X86::VPSCATTERQQZmr; break;
11865       case Intrinsic::x86_avx512_scatter_dpq_512:
11866         Opc = X86::VPSCATTERDQZmr; break;
11867       case Intrinsic::x86_avx512_scatter_dpi_512:
11868         Opc = X86::VPSCATTERDDZmr; break;
11869     }
11870     SDValue Chain = Op.getOperand(0);
11871     SDValue Base  = Op.getOperand(2);
11872     SDValue Index = Op.getOperand(3);
11873     SDValue Src   = Op.getOperand(4);
11874     SDValue Scale = Op.getOperand(5);
11875     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11876   }
11877   //int_scatter_mask(base, mask, index, v1, scale);
11878   case Intrinsic::x86_avx512_scatter_qps_mask_512:
11879   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11880   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11881   case Intrinsic::x86_avx512_scatter_dps_mask_512:
11882   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11883   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11884   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11885   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11886     unsigned Opc;
11887     switch (IntNo) {
11888       default: llvm_unreachable("Unexpected intrinsic!");
11889       case Intrinsic::x86_avx512_scatter_qpd_mask_512: 
11890         Opc = X86::VSCATTERQPDZmr; break;
11891       case Intrinsic::x86_avx512_scatter_qps_mask_512:
11892         Opc = X86::VSCATTERQPSZmr; break;
11893       case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11894         Opc = X86::VSCATTERDPDZmr; break;
11895       case Intrinsic::x86_avx512_scatter_dps_mask_512:
11896         Opc = X86::VSCATTERDPSZmr; break;
11897       case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11898         Opc = X86::VPSCATTERQDZmr; break;
11899       case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11900         Opc = X86::VPSCATTERQQZmr; break;
11901       case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11902         Opc = X86::VPSCATTERDQZmr; break;
11903       case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11904         Opc = X86::VPSCATTERDDZmr; break;
11905     }
11906     SDValue Chain = Op.getOperand(0);
11907     SDValue Base  = Op.getOperand(2);
11908     SDValue Mask  = Op.getOperand(3);
11909     SDValue Index = Op.getOperand(4);
11910     SDValue Src   = Op.getOperand(5);
11911     SDValue Scale = Op.getOperand(6);
11912     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11913   }
11914   // XTEST intrinsics.
11915   case Intrinsic::x86_xtest: {
11916     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11917     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11918     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11919                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11920                                 InTrans);
11921     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11922     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11923                        Ret, SDValue(InTrans.getNode(), 1));
11924   }
11925   }
11926 }
11927
11928 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11929                                            SelectionDAG &DAG) const {
11930   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11931   MFI->setReturnAddressIsTaken(true);
11932
11933   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11934   SDLoc dl(Op);
11935   EVT PtrVT = getPointerTy();
11936
11937   if (Depth > 0) {
11938     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11939     const X86RegisterInfo *RegInfo =
11940       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11941     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11942     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11943                        DAG.getNode(ISD::ADD, dl, PtrVT,
11944                                    FrameAddr, Offset),
11945                        MachinePointerInfo(), false, false, false, 0);
11946   }
11947
11948   // Just load the return address.
11949   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11950   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11951                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11952 }
11953
11954 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11955   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11956   MFI->setFrameAddressIsTaken(true);
11957
11958   EVT VT = Op.getValueType();
11959   SDLoc dl(Op);  // FIXME probably not meaningful
11960   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11961   const X86RegisterInfo *RegInfo =
11962     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11963   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11964   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11965           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11966          "Invalid Frame Register!");
11967   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11968   while (Depth--)
11969     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11970                             MachinePointerInfo(),
11971                             false, false, false, 0);
11972   return FrameAddr;
11973 }
11974
11975 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11976                                                      SelectionDAG &DAG) const {
11977   const X86RegisterInfo *RegInfo =
11978     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11979   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11980 }
11981
11982 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11983   SDValue Chain     = Op.getOperand(0);
11984   SDValue Offset    = Op.getOperand(1);
11985   SDValue Handler   = Op.getOperand(2);
11986   SDLoc dl      (Op);
11987
11988   EVT PtrVT = getPointerTy();
11989   const X86RegisterInfo *RegInfo =
11990     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11991   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11992   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11993           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11994          "Invalid Frame Register!");
11995   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11996   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
11997
11998   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
11999                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12000   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12001   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12002                        false, false, 0);
12003   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12004
12005   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12006                      DAG.getRegister(StoreAddrReg, PtrVT));
12007 }
12008
12009 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12010                                                SelectionDAG &DAG) const {
12011   SDLoc DL(Op);
12012   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12013                      DAG.getVTList(MVT::i32, MVT::Other),
12014                      Op.getOperand(0), Op.getOperand(1));
12015 }
12016
12017 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12018                                                 SelectionDAG &DAG) const {
12019   SDLoc DL(Op);
12020   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12021                      Op.getOperand(0), Op.getOperand(1));
12022 }
12023
12024 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12025   return Op.getOperand(0);
12026 }
12027
12028 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12029                                                 SelectionDAG &DAG) const {
12030   SDValue Root = Op.getOperand(0);
12031   SDValue Trmp = Op.getOperand(1); // trampoline
12032   SDValue FPtr = Op.getOperand(2); // nested function
12033   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12034   SDLoc dl (Op);
12035
12036   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12037   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12038
12039   if (Subtarget->is64Bit()) {
12040     SDValue OutChains[6];
12041
12042     // Large code-model.
12043     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12044     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12045
12046     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12047     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12048
12049     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12050
12051     // Load the pointer to the nested function into R11.
12052     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12053     SDValue Addr = Trmp;
12054     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12055                                 Addr, MachinePointerInfo(TrmpAddr),
12056                                 false, false, 0);
12057
12058     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12059                        DAG.getConstant(2, MVT::i64));
12060     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12061                                 MachinePointerInfo(TrmpAddr, 2),
12062                                 false, false, 2);
12063
12064     // Load the 'nest' parameter value into R10.
12065     // R10 is specified in X86CallingConv.td
12066     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12067     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12068                        DAG.getConstant(10, MVT::i64));
12069     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12070                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12071                                 false, false, 0);
12072
12073     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12074                        DAG.getConstant(12, MVT::i64));
12075     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12076                                 MachinePointerInfo(TrmpAddr, 12),
12077                                 false, false, 2);
12078
12079     // Jump to the nested function.
12080     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12081     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12082                        DAG.getConstant(20, MVT::i64));
12083     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12084                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12085                                 false, false, 0);
12086
12087     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12088     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12089                        DAG.getConstant(22, MVT::i64));
12090     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12091                                 MachinePointerInfo(TrmpAddr, 22),
12092                                 false, false, 0);
12093
12094     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12095   } else {
12096     const Function *Func =
12097       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12098     CallingConv::ID CC = Func->getCallingConv();
12099     unsigned NestReg;
12100
12101     switch (CC) {
12102     default:
12103       llvm_unreachable("Unsupported calling convention");
12104     case CallingConv::C:
12105     case CallingConv::X86_StdCall: {
12106       // Pass 'nest' parameter in ECX.
12107       // Must be kept in sync with X86CallingConv.td
12108       NestReg = X86::ECX;
12109
12110       // Check that ECX wasn't needed by an 'inreg' parameter.
12111       FunctionType *FTy = Func->getFunctionType();
12112       const AttributeSet &Attrs = Func->getAttributes();
12113
12114       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12115         unsigned InRegCount = 0;
12116         unsigned Idx = 1;
12117
12118         for (FunctionType::param_iterator I = FTy->param_begin(),
12119              E = FTy->param_end(); I != E; ++I, ++Idx)
12120           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12121             // FIXME: should only count parameters that are lowered to integers.
12122             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12123
12124         if (InRegCount > 2) {
12125           report_fatal_error("Nest register in use - reduce number of inreg"
12126                              " parameters!");
12127         }
12128       }
12129       break;
12130     }
12131     case CallingConv::X86_FastCall:
12132     case CallingConv::X86_ThisCall:
12133     case CallingConv::Fast:
12134       // Pass 'nest' parameter in EAX.
12135       // Must be kept in sync with X86CallingConv.td
12136       NestReg = X86::EAX;
12137       break;
12138     }
12139
12140     SDValue OutChains[4];
12141     SDValue Addr, Disp;
12142
12143     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12144                        DAG.getConstant(10, MVT::i32));
12145     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12146
12147     // This is storing the opcode for MOV32ri.
12148     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12149     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12150     OutChains[0] = DAG.getStore(Root, dl,
12151                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12152                                 Trmp, MachinePointerInfo(TrmpAddr),
12153                                 false, false, 0);
12154
12155     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12156                        DAG.getConstant(1, MVT::i32));
12157     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12158                                 MachinePointerInfo(TrmpAddr, 1),
12159                                 false, false, 1);
12160
12161     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12162     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12163                        DAG.getConstant(5, MVT::i32));
12164     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12165                                 MachinePointerInfo(TrmpAddr, 5),
12166                                 false, false, 1);
12167
12168     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12169                        DAG.getConstant(6, MVT::i32));
12170     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12171                                 MachinePointerInfo(TrmpAddr, 6),
12172                                 false, false, 1);
12173
12174     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12175   }
12176 }
12177
12178 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12179                                             SelectionDAG &DAG) const {
12180   /*
12181    The rounding mode is in bits 11:10 of FPSR, and has the following
12182    settings:
12183      00 Round to nearest
12184      01 Round to -inf
12185      10 Round to +inf
12186      11 Round to 0
12187
12188   FLT_ROUNDS, on the other hand, expects the following:
12189     -1 Undefined
12190      0 Round to 0
12191      1 Round to nearest
12192      2 Round to +inf
12193      3 Round to -inf
12194
12195   To perform the conversion, we do:
12196     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12197   */
12198
12199   MachineFunction &MF = DAG.getMachineFunction();
12200   const TargetMachine &TM = MF.getTarget();
12201   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12202   unsigned StackAlignment = TFI.getStackAlignment();
12203   EVT VT = Op.getValueType();
12204   SDLoc DL(Op);
12205
12206   // Save FP Control Word to stack slot
12207   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12208   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12209
12210   MachineMemOperand *MMO =
12211    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12212                            MachineMemOperand::MOStore, 2, 2);
12213
12214   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12215   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12216                                           DAG.getVTList(MVT::Other),
12217                                           Ops, array_lengthof(Ops), MVT::i16,
12218                                           MMO);
12219
12220   // Load FP Control Word from stack slot
12221   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12222                             MachinePointerInfo(), false, false, false, 0);
12223
12224   // Transform as necessary
12225   SDValue CWD1 =
12226     DAG.getNode(ISD::SRL, DL, MVT::i16,
12227                 DAG.getNode(ISD::AND, DL, MVT::i16,
12228                             CWD, DAG.getConstant(0x800, MVT::i16)),
12229                 DAG.getConstant(11, MVT::i8));
12230   SDValue CWD2 =
12231     DAG.getNode(ISD::SRL, DL, MVT::i16,
12232                 DAG.getNode(ISD::AND, DL, MVT::i16,
12233                             CWD, DAG.getConstant(0x400, MVT::i16)),
12234                 DAG.getConstant(9, MVT::i8));
12235
12236   SDValue RetVal =
12237     DAG.getNode(ISD::AND, DL, MVT::i16,
12238                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12239                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12240                             DAG.getConstant(1, MVT::i16)),
12241                 DAG.getConstant(3, MVT::i16));
12242
12243   return DAG.getNode((VT.getSizeInBits() < 16 ?
12244                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12245 }
12246
12247 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12248   EVT VT = Op.getValueType();
12249   EVT OpVT = VT;
12250   unsigned NumBits = VT.getSizeInBits();
12251   SDLoc dl(Op);
12252
12253   Op = Op.getOperand(0);
12254   if (VT == MVT::i8) {
12255     // Zero extend to i32 since there is not an i8 bsr.
12256     OpVT = MVT::i32;
12257     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12258   }
12259
12260   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12261   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12262   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12263
12264   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12265   SDValue Ops[] = {
12266     Op,
12267     DAG.getConstant(NumBits+NumBits-1, OpVT),
12268     DAG.getConstant(X86::COND_E, MVT::i8),
12269     Op.getValue(1)
12270   };
12271   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12272
12273   // Finally xor with NumBits-1.
12274   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12275
12276   if (VT == MVT::i8)
12277     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12278   return Op;
12279 }
12280
12281 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12282   EVT VT = Op.getValueType();
12283   EVT OpVT = VT;
12284   unsigned NumBits = VT.getSizeInBits();
12285   SDLoc dl(Op);
12286
12287   Op = Op.getOperand(0);
12288   if (VT == MVT::i8) {
12289     // Zero extend to i32 since there is not an i8 bsr.
12290     OpVT = MVT::i32;
12291     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12292   }
12293
12294   // Issue a bsr (scan bits in reverse).
12295   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12296   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12297
12298   // And xor with NumBits-1.
12299   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12300
12301   if (VT == MVT::i8)
12302     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12303   return Op;
12304 }
12305
12306 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12307   EVT VT = Op.getValueType();
12308   unsigned NumBits = VT.getSizeInBits();
12309   SDLoc dl(Op);
12310   Op = Op.getOperand(0);
12311
12312   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12313   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12314   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12315
12316   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12317   SDValue Ops[] = {
12318     Op,
12319     DAG.getConstant(NumBits, VT),
12320     DAG.getConstant(X86::COND_E, MVT::i8),
12321     Op.getValue(1)
12322   };
12323   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12324 }
12325
12326 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12327 // ones, and then concatenate the result back.
12328 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12329   EVT VT = Op.getValueType();
12330
12331   assert(VT.is256BitVector() && VT.isInteger() &&
12332          "Unsupported value type for operation");
12333
12334   unsigned NumElems = VT.getVectorNumElements();
12335   SDLoc dl(Op);
12336
12337   // Extract the LHS vectors
12338   SDValue LHS = Op.getOperand(0);
12339   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12340   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12341
12342   // Extract the RHS vectors
12343   SDValue RHS = Op.getOperand(1);
12344   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12345   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12346
12347   MVT EltVT = VT.getVectorElementType().getSimpleVT();
12348   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12349
12350   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12351                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12352                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12353 }
12354
12355 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12356   assert(Op.getValueType().is256BitVector() &&
12357          Op.getValueType().isInteger() &&
12358          "Only handle AVX 256-bit vector integer operation");
12359   return Lower256IntArith(Op, DAG);
12360 }
12361
12362 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12363   assert(Op.getValueType().is256BitVector() &&
12364          Op.getValueType().isInteger() &&
12365          "Only handle AVX 256-bit vector integer operation");
12366   return Lower256IntArith(Op, DAG);
12367 }
12368
12369 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12370                         SelectionDAG &DAG) {
12371   SDLoc dl(Op);
12372   EVT VT = Op.getValueType();
12373
12374   // Decompose 256-bit ops into smaller 128-bit ops.
12375   if (VT.is256BitVector() && !Subtarget->hasInt256())
12376     return Lower256IntArith(Op, DAG);
12377
12378   SDValue A = Op.getOperand(0);
12379   SDValue B = Op.getOperand(1);
12380
12381   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12382   if (VT == MVT::v4i32) {
12383     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12384            "Should not custom lower when pmuldq is available!");
12385
12386     // Extract the odd parts.
12387     static const int UnpackMask[] = { 1, -1, 3, -1 };
12388     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12389     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12390
12391     // Multiply the even parts.
12392     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12393     // Now multiply odd parts.
12394     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12395
12396     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12397     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12398
12399     // Merge the two vectors back together with a shuffle. This expands into 2
12400     // shuffles.
12401     static const int ShufMask[] = { 0, 4, 2, 6 };
12402     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12403   }
12404
12405   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12406          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12407
12408   //  Ahi = psrlqi(a, 32);
12409   //  Bhi = psrlqi(b, 32);
12410   //
12411   //  AloBlo = pmuludq(a, b);
12412   //  AloBhi = pmuludq(a, Bhi);
12413   //  AhiBlo = pmuludq(Ahi, b);
12414
12415   //  AloBhi = psllqi(AloBhi, 32);
12416   //  AhiBlo = psllqi(AhiBlo, 32);
12417   //  return AloBlo + AloBhi + AhiBlo;
12418
12419   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
12420
12421   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12422   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
12423
12424   // Bit cast to 32-bit vectors for MULUDQ
12425   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12426                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12427   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12428   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12429   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12430   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12431
12432   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12433   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12434   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12435
12436   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12437   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
12438
12439   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12440   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12441 }
12442
12443 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12444   EVT VT = Op.getValueType();
12445   EVT EltTy = VT.getVectorElementType();
12446   unsigned NumElts = VT.getVectorNumElements();
12447   SDValue N0 = Op.getOperand(0);
12448   SDLoc dl(Op);
12449
12450   // Lower sdiv X, pow2-const.
12451   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12452   if (!C)
12453     return SDValue();
12454
12455   APInt SplatValue, SplatUndef;
12456   unsigned SplatBitSize;
12457   bool HasAnyUndefs;
12458   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12459                           HasAnyUndefs) ||
12460       EltTy.getSizeInBits() < SplatBitSize)
12461     return SDValue();
12462
12463   if ((SplatValue != 0) &&
12464       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12465     unsigned lg2 = SplatValue.countTrailingZeros();
12466     // Splat the sign bit.
12467     SmallVector<SDValue, 16> Sz(NumElts,
12468                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12469                                                 EltTy));
12470     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12471                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12472                                           NumElts));
12473     // Add (N0 < 0) ? abs2 - 1 : 0;
12474     SmallVector<SDValue, 16> Amt(NumElts,
12475                                  DAG.getConstant(EltTy.getSizeInBits() - lg2,
12476                                                  EltTy));
12477     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12478                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12479                                           NumElts));
12480     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12481     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(lg2, EltTy));
12482     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12483                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12484                                           NumElts));
12485
12486     // If we're dividing by a positive value, we're done.  Otherwise, we must
12487     // negate the result.
12488     if (SplatValue.isNonNegative())
12489       return SRA;
12490
12491     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12492     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12493     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12494   }
12495   return SDValue();
12496 }
12497
12498 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12499                                          const X86Subtarget *Subtarget) {
12500   EVT VT = Op.getValueType();
12501   SDLoc dl(Op);
12502   SDValue R = Op.getOperand(0);
12503   SDValue Amt = Op.getOperand(1);
12504
12505   // Optimize shl/srl/sra with constant shift amount.
12506   if (isSplatVector(Amt.getNode())) {
12507     SDValue SclrAmt = Amt->getOperand(0);
12508     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12509       uint64_t ShiftAmt = C->getZExtValue();
12510
12511       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12512           (Subtarget->hasInt256() &&
12513            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12514           (Subtarget->hasAVX512() &&
12515            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12516         if (Op.getOpcode() == ISD::SHL)
12517           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12518                              DAG.getConstant(ShiftAmt, MVT::i32));
12519         if (Op.getOpcode() == ISD::SRL)
12520           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12521                              DAG.getConstant(ShiftAmt, MVT::i32));
12522         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12523           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12524                              DAG.getConstant(ShiftAmt, MVT::i32));
12525       }
12526
12527       if (VT == MVT::v16i8) {
12528         if (Op.getOpcode() == ISD::SHL) {
12529           // Make a large shift.
12530           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12531                                     DAG.getConstant(ShiftAmt, MVT::i32));
12532           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12533           // Zero out the rightmost bits.
12534           SmallVector<SDValue, 16> V(16,
12535                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12536                                                      MVT::i8));
12537           return DAG.getNode(ISD::AND, dl, VT, SHL,
12538                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12539         }
12540         if (Op.getOpcode() == ISD::SRL) {
12541           // Make a large shift.
12542           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12543                                     DAG.getConstant(ShiftAmt, MVT::i32));
12544           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12545           // Zero out the leftmost bits.
12546           SmallVector<SDValue, 16> V(16,
12547                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12548                                                      MVT::i8));
12549           return DAG.getNode(ISD::AND, dl, VT, SRL,
12550                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12551         }
12552         if (Op.getOpcode() == ISD::SRA) {
12553           if (ShiftAmt == 7) {
12554             // R s>> 7  ===  R s< 0
12555             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12556             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12557           }
12558
12559           // R s>> a === ((R u>> a) ^ m) - m
12560           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12561           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12562                                                          MVT::i8));
12563           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12564           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12565           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12566           return Res;
12567         }
12568         llvm_unreachable("Unknown shift opcode.");
12569       }
12570
12571       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12572         if (Op.getOpcode() == ISD::SHL) {
12573           // Make a large shift.
12574           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12575                                     DAG.getConstant(ShiftAmt, MVT::i32));
12576           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12577           // Zero out the rightmost bits.
12578           SmallVector<SDValue, 32> V(32,
12579                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12580                                                      MVT::i8));
12581           return DAG.getNode(ISD::AND, dl, VT, SHL,
12582                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12583         }
12584         if (Op.getOpcode() == ISD::SRL) {
12585           // Make a large shift.
12586           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12587                                     DAG.getConstant(ShiftAmt, MVT::i32));
12588           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12589           // Zero out the leftmost bits.
12590           SmallVector<SDValue, 32> V(32,
12591                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12592                                                      MVT::i8));
12593           return DAG.getNode(ISD::AND, dl, VT, SRL,
12594                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12595         }
12596         if (Op.getOpcode() == ISD::SRA) {
12597           if (ShiftAmt == 7) {
12598             // R s>> 7  ===  R s< 0
12599             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12600             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12601           }
12602
12603           // R s>> a === ((R u>> a) ^ m) - m
12604           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12605           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12606                                                          MVT::i8));
12607           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12608           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12609           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12610           return Res;
12611         }
12612         llvm_unreachable("Unknown shift opcode.");
12613       }
12614     }
12615   }
12616
12617   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12618   if (!Subtarget->is64Bit() &&
12619       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12620       Amt.getOpcode() == ISD::BITCAST &&
12621       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12622     Amt = Amt.getOperand(0);
12623     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12624                      VT.getVectorNumElements();
12625     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12626     uint64_t ShiftAmt = 0;
12627     for (unsigned i = 0; i != Ratio; ++i) {
12628       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12629       if (C == 0)
12630         return SDValue();
12631       // 6 == Log2(64)
12632       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12633     }
12634     // Check remaining shift amounts.
12635     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12636       uint64_t ShAmt = 0;
12637       for (unsigned j = 0; j != Ratio; ++j) {
12638         ConstantSDNode *C =
12639           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12640         if (C == 0)
12641           return SDValue();
12642         // 6 == Log2(64)
12643         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12644       }
12645       if (ShAmt != ShiftAmt)
12646         return SDValue();
12647     }
12648     switch (Op.getOpcode()) {
12649     default:
12650       llvm_unreachable("Unknown shift opcode!");
12651     case ISD::SHL:
12652       return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12653                          DAG.getConstant(ShiftAmt, MVT::i32));
12654     case ISD::SRL:
12655       return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12656                          DAG.getConstant(ShiftAmt, MVT::i32));
12657     case ISD::SRA:
12658       return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12659                          DAG.getConstant(ShiftAmt, MVT::i32));
12660     }
12661   }
12662
12663   return SDValue();
12664 }
12665
12666 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12667                                         const X86Subtarget* Subtarget) {
12668   EVT VT = Op.getValueType();
12669   SDLoc dl(Op);
12670   SDValue R = Op.getOperand(0);
12671   SDValue Amt = Op.getOperand(1);
12672
12673   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12674       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12675       (Subtarget->hasInt256() &&
12676        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12677         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12678        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12679     SDValue BaseShAmt;
12680     EVT EltVT = VT.getVectorElementType();
12681
12682     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12683       unsigned NumElts = VT.getVectorNumElements();
12684       unsigned i, j;
12685       for (i = 0; i != NumElts; ++i) {
12686         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12687           continue;
12688         break;
12689       }
12690       for (j = i; j != NumElts; ++j) {
12691         SDValue Arg = Amt.getOperand(j);
12692         if (Arg.getOpcode() == ISD::UNDEF) continue;
12693         if (Arg != Amt.getOperand(i))
12694           break;
12695       }
12696       if (i != NumElts && j == NumElts)
12697         BaseShAmt = Amt.getOperand(i);
12698     } else {
12699       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12700         Amt = Amt.getOperand(0);
12701       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12702                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12703         SDValue InVec = Amt.getOperand(0);
12704         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12705           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12706           unsigned i = 0;
12707           for (; i != NumElts; ++i) {
12708             SDValue Arg = InVec.getOperand(i);
12709             if (Arg.getOpcode() == ISD::UNDEF) continue;
12710             BaseShAmt = Arg;
12711             break;
12712           }
12713         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12714            if (ConstantSDNode *C =
12715                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12716              unsigned SplatIdx =
12717                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12718              if (C->getZExtValue() == SplatIdx)
12719                BaseShAmt = InVec.getOperand(1);
12720            }
12721         }
12722         if (BaseShAmt.getNode() == 0)
12723           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12724                                   DAG.getIntPtrConstant(0));
12725       }
12726     }
12727
12728     if (BaseShAmt.getNode()) {
12729       if (EltVT.bitsGT(MVT::i32))
12730         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12731       else if (EltVT.bitsLT(MVT::i32))
12732         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12733
12734       switch (Op.getOpcode()) {
12735       default:
12736         llvm_unreachable("Unknown shift opcode!");
12737       case ISD::SHL:
12738         switch (VT.getSimpleVT().SimpleTy) {
12739         default: return SDValue();
12740         case MVT::v2i64:
12741         case MVT::v4i32:
12742         case MVT::v8i16:
12743         case MVT::v4i64:
12744         case MVT::v8i32:
12745         case MVT::v16i16:
12746         case MVT::v16i32:
12747         case MVT::v8i64:
12748           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12749         }
12750       case ISD::SRA:
12751         switch (VT.getSimpleVT().SimpleTy) {
12752         default: return SDValue();
12753         case MVT::v4i32:
12754         case MVT::v8i16:
12755         case MVT::v8i32:
12756         case MVT::v16i16:
12757         case MVT::v16i32:
12758         case MVT::v8i64:
12759           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12760         }
12761       case ISD::SRL:
12762         switch (VT.getSimpleVT().SimpleTy) {
12763         default: return SDValue();
12764         case MVT::v2i64:
12765         case MVT::v4i32:
12766         case MVT::v8i16:
12767         case MVT::v4i64:
12768         case MVT::v8i32:
12769         case MVT::v16i16:
12770         case MVT::v16i32:
12771         case MVT::v8i64:
12772           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12773         }
12774       }
12775     }
12776   }
12777
12778   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12779   if (!Subtarget->is64Bit() &&
12780       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12781       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12782       Amt.getOpcode() == ISD::BITCAST &&
12783       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12784     Amt = Amt.getOperand(0);
12785     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12786                      VT.getVectorNumElements();
12787     std::vector<SDValue> Vals(Ratio);
12788     for (unsigned i = 0; i != Ratio; ++i)
12789       Vals[i] = Amt.getOperand(i);
12790     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12791       for (unsigned j = 0; j != Ratio; ++j)
12792         if (Vals[j] != Amt.getOperand(i + j))
12793           return SDValue();
12794     }
12795     switch (Op.getOpcode()) {
12796     default:
12797       llvm_unreachable("Unknown shift opcode!");
12798     case ISD::SHL:
12799       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12800     case ISD::SRL:
12801       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12802     case ISD::SRA:
12803       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12804     }
12805   }
12806
12807   return SDValue();
12808 }
12809
12810 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12811                           SelectionDAG &DAG) {
12812
12813   EVT VT = Op.getValueType();
12814   SDLoc dl(Op);
12815   SDValue R = Op.getOperand(0);
12816   SDValue Amt = Op.getOperand(1);
12817   SDValue V;
12818
12819   if (!Subtarget->hasSSE2())
12820     return SDValue();
12821
12822   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12823   if (V.getNode())
12824     return V;
12825
12826   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12827   if (V.getNode())
12828       return V;
12829
12830   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12831     return Op;
12832   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12833   if (Subtarget->hasInt256()) {
12834     if (Op.getOpcode() == ISD::SRL &&
12835         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12836          VT == MVT::v4i64 || VT == MVT::v8i32))
12837       return Op;
12838     if (Op.getOpcode() == ISD::SHL &&
12839         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12840          VT == MVT::v4i64 || VT == MVT::v8i32))
12841       return Op;
12842     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12843       return Op;
12844   }
12845
12846   // Lower SHL with variable shift amount.
12847   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12848     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12849
12850     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12851     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12852     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12853     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12854   }
12855   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12856     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12857
12858     // a = a << 5;
12859     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12860     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12861
12862     // Turn 'a' into a mask suitable for VSELECT
12863     SDValue VSelM = DAG.getConstant(0x80, VT);
12864     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12865     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12866
12867     SDValue CM1 = DAG.getConstant(0x0f, VT);
12868     SDValue CM2 = DAG.getConstant(0x3f, VT);
12869
12870     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12871     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12872     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12873                             DAG.getConstant(4, MVT::i32), DAG);
12874     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12875     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12876
12877     // a += a
12878     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12879     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12880     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12881
12882     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12883     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12884     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12885                             DAG.getConstant(2, MVT::i32), DAG);
12886     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12887     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12888
12889     // a += a
12890     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12891     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12892     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12893
12894     // return VSELECT(r, r+r, a);
12895     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12896                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12897     return R;
12898   }
12899
12900   // Decompose 256-bit shifts into smaller 128-bit shifts.
12901   if (VT.is256BitVector()) {
12902     unsigned NumElems = VT.getVectorNumElements();
12903     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12904     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12905
12906     // Extract the two vectors
12907     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12908     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12909
12910     // Recreate the shift amount vectors
12911     SDValue Amt1, Amt2;
12912     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12913       // Constant shift amount
12914       SmallVector<SDValue, 4> Amt1Csts;
12915       SmallVector<SDValue, 4> Amt2Csts;
12916       for (unsigned i = 0; i != NumElems/2; ++i)
12917         Amt1Csts.push_back(Amt->getOperand(i));
12918       for (unsigned i = NumElems/2; i != NumElems; ++i)
12919         Amt2Csts.push_back(Amt->getOperand(i));
12920
12921       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12922                                  &Amt1Csts[0], NumElems/2);
12923       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12924                                  &Amt2Csts[0], NumElems/2);
12925     } else {
12926       // Variable shift amount
12927       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12928       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12929     }
12930
12931     // Issue new vector shifts for the smaller types
12932     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12933     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12934
12935     // Concatenate the result back
12936     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12937   }
12938
12939   return SDValue();
12940 }
12941
12942 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12943   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12944   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12945   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12946   // has only one use.
12947   SDNode *N = Op.getNode();
12948   SDValue LHS = N->getOperand(0);
12949   SDValue RHS = N->getOperand(1);
12950   unsigned BaseOp = 0;
12951   unsigned Cond = 0;
12952   SDLoc DL(Op);
12953   switch (Op.getOpcode()) {
12954   default: llvm_unreachable("Unknown ovf instruction!");
12955   case ISD::SADDO:
12956     // A subtract of one will be selected as a INC. Note that INC doesn't
12957     // set CF, so we can't do this for UADDO.
12958     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12959       if (C->isOne()) {
12960         BaseOp = X86ISD::INC;
12961         Cond = X86::COND_O;
12962         break;
12963       }
12964     BaseOp = X86ISD::ADD;
12965     Cond = X86::COND_O;
12966     break;
12967   case ISD::UADDO:
12968     BaseOp = X86ISD::ADD;
12969     Cond = X86::COND_B;
12970     break;
12971   case ISD::SSUBO:
12972     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12973     // set CF, so we can't do this for USUBO.
12974     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12975       if (C->isOne()) {
12976         BaseOp = X86ISD::DEC;
12977         Cond = X86::COND_O;
12978         break;
12979       }
12980     BaseOp = X86ISD::SUB;
12981     Cond = X86::COND_O;
12982     break;
12983   case ISD::USUBO:
12984     BaseOp = X86ISD::SUB;
12985     Cond = X86::COND_B;
12986     break;
12987   case ISD::SMULO:
12988     BaseOp = X86ISD::SMUL;
12989     Cond = X86::COND_O;
12990     break;
12991   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12992     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12993                                  MVT::i32);
12994     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
12995
12996     SDValue SetCC =
12997       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12998                   DAG.getConstant(X86::COND_O, MVT::i32),
12999                   SDValue(Sum.getNode(), 2));
13000
13001     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13002   }
13003   }
13004
13005   // Also sets EFLAGS.
13006   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13007   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13008
13009   SDValue SetCC =
13010     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13011                 DAG.getConstant(Cond, MVT::i32),
13012                 SDValue(Sum.getNode(), 1));
13013
13014   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13015 }
13016
13017 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13018                                                   SelectionDAG &DAG) const {
13019   SDLoc dl(Op);
13020   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13021   EVT VT = Op.getValueType();
13022
13023   if (!Subtarget->hasSSE2() || !VT.isVector())
13024     return SDValue();
13025
13026   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13027                       ExtraVT.getScalarType().getSizeInBits();
13028   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
13029
13030   switch (VT.getSimpleVT().SimpleTy) {
13031     default: return SDValue();
13032     case MVT::v8i32:
13033     case MVT::v16i16:
13034       if (!Subtarget->hasFp256())
13035         return SDValue();
13036       if (!Subtarget->hasInt256()) {
13037         // needs to be split
13038         unsigned NumElems = VT.getVectorNumElements();
13039
13040         // Extract the LHS vectors
13041         SDValue LHS = Op.getOperand(0);
13042         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13043         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13044
13045         MVT EltVT = VT.getVectorElementType().getSimpleVT();
13046         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13047
13048         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13049         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13050         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13051                                    ExtraNumElems/2);
13052         SDValue Extra = DAG.getValueType(ExtraVT);
13053
13054         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13055         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13056
13057         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13058       }
13059       // fall through
13060     case MVT::v4i32:
13061     case MVT::v8i16: {
13062       // (sext (vzext x)) -> (vsext x)
13063       SDValue Op0 = Op.getOperand(0);
13064       SDValue Op00 = Op0.getOperand(0);
13065       SDValue Tmp1;
13066       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13067       if (Op0.getOpcode() == ISD::BITCAST &&
13068           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
13069         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13070       if (Tmp1.getNode()) {
13071         SDValue Tmp1Op0 = Tmp1.getOperand(0);
13072         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13073                "This optimization is invalid without a VZEXT.");
13074         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13075       }
13076
13077       // If the above didn't work, then just use Shift-Left + Shift-Right.
13078       Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
13079       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
13080     }
13081   }
13082 }
13083
13084 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13085                                  SelectionDAG &DAG) {
13086   SDLoc dl(Op);
13087   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13088     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13089   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13090     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13091
13092   // The only fence that needs an instruction is a sequentially-consistent
13093   // cross-thread fence.
13094   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13095     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13096     // no-sse2). There isn't any reason to disable it if the target processor
13097     // supports it.
13098     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13099       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13100
13101     SDValue Chain = Op.getOperand(0);
13102     SDValue Zero = DAG.getConstant(0, MVT::i32);
13103     SDValue Ops[] = {
13104       DAG.getRegister(X86::ESP, MVT::i32), // Base
13105       DAG.getTargetConstant(1, MVT::i8),   // Scale
13106       DAG.getRegister(0, MVT::i32),        // Index
13107       DAG.getTargetConstant(0, MVT::i32),  // Disp
13108       DAG.getRegister(0, MVT::i32),        // Segment.
13109       Zero,
13110       Chain
13111     };
13112     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13113     return SDValue(Res, 0);
13114   }
13115
13116   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13117   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13118 }
13119
13120 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13121                              SelectionDAG &DAG) {
13122   EVT T = Op.getValueType();
13123   SDLoc DL(Op);
13124   unsigned Reg = 0;
13125   unsigned size = 0;
13126   switch(T.getSimpleVT().SimpleTy) {
13127   default: llvm_unreachable("Invalid value type!");
13128   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13129   case MVT::i16: Reg = X86::AX;  size = 2; break;
13130   case MVT::i32: Reg = X86::EAX; size = 4; break;
13131   case MVT::i64:
13132     assert(Subtarget->is64Bit() && "Node not type legal!");
13133     Reg = X86::RAX; size = 8;
13134     break;
13135   }
13136   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13137                                     Op.getOperand(2), SDValue());
13138   SDValue Ops[] = { cpIn.getValue(0),
13139                     Op.getOperand(1),
13140                     Op.getOperand(3),
13141                     DAG.getTargetConstant(size, MVT::i8),
13142                     cpIn.getValue(1) };
13143   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13144   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13145   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13146                                            Ops, array_lengthof(Ops), T, MMO);
13147   SDValue cpOut =
13148     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13149   return cpOut;
13150 }
13151
13152 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13153                                      SelectionDAG &DAG) {
13154   assert(Subtarget->is64Bit() && "Result not type legalized?");
13155   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13156   SDValue TheChain = Op.getOperand(0);
13157   SDLoc dl(Op);
13158   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13159   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13160   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13161                                    rax.getValue(2));
13162   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13163                             DAG.getConstant(32, MVT::i8));
13164   SDValue Ops[] = {
13165     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13166     rdx.getValue(1)
13167   };
13168   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13169 }
13170
13171 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13172                             SelectionDAG &DAG) {
13173   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13174   MVT DstVT = Op.getSimpleValueType();
13175   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13176          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13177   assert((DstVT == MVT::i64 ||
13178           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13179          "Unexpected custom BITCAST");
13180   // i64 <=> MMX conversions are Legal.
13181   if (SrcVT==MVT::i64 && DstVT.isVector())
13182     return Op;
13183   if (DstVT==MVT::i64 && SrcVT.isVector())
13184     return Op;
13185   // MMX <=> MMX conversions are Legal.
13186   if (SrcVT.isVector() && DstVT.isVector())
13187     return Op;
13188   // All other conversions need to be expanded.
13189   return SDValue();
13190 }
13191
13192 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13193   SDNode *Node = Op.getNode();
13194   SDLoc dl(Node);
13195   EVT T = Node->getValueType(0);
13196   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13197                               DAG.getConstant(0, T), Node->getOperand(2));
13198   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13199                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13200                        Node->getOperand(0),
13201                        Node->getOperand(1), negOp,
13202                        cast<AtomicSDNode>(Node)->getSrcValue(),
13203                        cast<AtomicSDNode>(Node)->getAlignment(),
13204                        cast<AtomicSDNode>(Node)->getOrdering(),
13205                        cast<AtomicSDNode>(Node)->getSynchScope());
13206 }
13207
13208 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13209   SDNode *Node = Op.getNode();
13210   SDLoc dl(Node);
13211   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13212
13213   // Convert seq_cst store -> xchg
13214   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13215   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13216   //        (The only way to get a 16-byte store is cmpxchg16b)
13217   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13218   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13219       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13220     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13221                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13222                                  Node->getOperand(0),
13223                                  Node->getOperand(1), Node->getOperand(2),
13224                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13225                                  cast<AtomicSDNode>(Node)->getOrdering(),
13226                                  cast<AtomicSDNode>(Node)->getSynchScope());
13227     return Swap.getValue(1);
13228   }
13229   // Other atomic stores have a simple pattern.
13230   return Op;
13231 }
13232
13233 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13234   EVT VT = Op.getNode()->getValueType(0);
13235
13236   // Let legalize expand this if it isn't a legal type yet.
13237   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13238     return SDValue();
13239
13240   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13241
13242   unsigned Opc;
13243   bool ExtraOp = false;
13244   switch (Op.getOpcode()) {
13245   default: llvm_unreachable("Invalid code");
13246   case ISD::ADDC: Opc = X86ISD::ADD; break;
13247   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13248   case ISD::SUBC: Opc = X86ISD::SUB; break;
13249   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13250   }
13251
13252   if (!ExtraOp)
13253     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13254                        Op.getOperand(1));
13255   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13256                      Op.getOperand(1), Op.getOperand(2));
13257 }
13258
13259 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13260                             SelectionDAG &DAG) {
13261   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13262
13263   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13264   // which returns the values as { float, float } (in XMM0) or
13265   // { double, double } (which is returned in XMM0, XMM1).
13266   SDLoc dl(Op);
13267   SDValue Arg = Op.getOperand(0);
13268   EVT ArgVT = Arg.getValueType();
13269   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13270
13271   TargetLowering::ArgListTy Args;
13272   TargetLowering::ArgListEntry Entry;
13273
13274   Entry.Node = Arg;
13275   Entry.Ty = ArgTy;
13276   Entry.isSExt = false;
13277   Entry.isZExt = false;
13278   Args.push_back(Entry);
13279
13280   bool isF64 = ArgVT == MVT::f64;
13281   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13282   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13283   // the results are returned via SRet in memory.
13284   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13285   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13286   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13287
13288   Type *RetTy = isF64
13289     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13290     : (Type*)VectorType::get(ArgTy, 4);
13291   TargetLowering::
13292     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13293                          false, false, false, false, 0,
13294                          CallingConv::C, /*isTaillCall=*/false,
13295                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13296                          Callee, Args, DAG, dl);
13297   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13298
13299   if (isF64)
13300     // Returned in xmm0 and xmm1.
13301     return CallResult.first;
13302
13303   // Returned in bits 0:31 and 32:64 xmm0.
13304   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13305                                CallResult.first, DAG.getIntPtrConstant(0));
13306   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13307                                CallResult.first, DAG.getIntPtrConstant(1));
13308   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13309   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13310 }
13311
13312 /// LowerOperation - Provide custom lowering hooks for some operations.
13313 ///
13314 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13315   switch (Op.getOpcode()) {
13316   default: llvm_unreachable("Should not custom lower this!");
13317   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13318   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13319   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13320   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13321   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13322   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13323   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13324   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13325   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13326   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13327   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13328   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13329   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13330   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13331   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13332   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13333   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13334   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13335   case ISD::SHL_PARTS:
13336   case ISD::SRA_PARTS:
13337   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13338   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13339   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13340   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13341   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13342   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13343   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13344   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13345   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13346   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13347   case ISD::FABS:               return LowerFABS(Op, DAG);
13348   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13349   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13350   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13351   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13352   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13353   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13354   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13355   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13356   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13357   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13358   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13359   case ISD::INTRINSIC_VOID:
13360   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13361   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13362   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13363   case ISD::FRAME_TO_ARGS_OFFSET:
13364                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13365   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13366   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13367   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13368   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13369   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13370   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13371   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13372   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13373   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13374   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13375   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13376   case ISD::SRA:
13377   case ISD::SRL:
13378   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13379   case ISD::SADDO:
13380   case ISD::UADDO:
13381   case ISD::SSUBO:
13382   case ISD::USUBO:
13383   case ISD::SMULO:
13384   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13385   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13386   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13387   case ISD::ADDC:
13388   case ISD::ADDE:
13389   case ISD::SUBC:
13390   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13391   case ISD::ADD:                return LowerADD(Op, DAG);
13392   case ISD::SUB:                return LowerSUB(Op, DAG);
13393   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13394   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13395   }
13396 }
13397
13398 static void ReplaceATOMIC_LOAD(SDNode *Node,
13399                                   SmallVectorImpl<SDValue> &Results,
13400                                   SelectionDAG &DAG) {
13401   SDLoc dl(Node);
13402   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13403
13404   // Convert wide load -> cmpxchg8b/cmpxchg16b
13405   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13406   //        (The only way to get a 16-byte load is cmpxchg16b)
13407   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13408   SDValue Zero = DAG.getConstant(0, VT);
13409   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13410                                Node->getOperand(0),
13411                                Node->getOperand(1), Zero, Zero,
13412                                cast<AtomicSDNode>(Node)->getMemOperand(),
13413                                cast<AtomicSDNode>(Node)->getOrdering(),
13414                                cast<AtomicSDNode>(Node)->getSynchScope());
13415   Results.push_back(Swap.getValue(0));
13416   Results.push_back(Swap.getValue(1));
13417 }
13418
13419 static void
13420 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13421                         SelectionDAG &DAG, unsigned NewOp) {
13422   SDLoc dl(Node);
13423   assert (Node->getValueType(0) == MVT::i64 &&
13424           "Only know how to expand i64 atomics");
13425
13426   SDValue Chain = Node->getOperand(0);
13427   SDValue In1 = Node->getOperand(1);
13428   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13429                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13430   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13431                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13432   SDValue Ops[] = { Chain, In1, In2L, In2H };
13433   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13434   SDValue Result =
13435     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13436                             cast<MemSDNode>(Node)->getMemOperand());
13437   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13438   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13439   Results.push_back(Result.getValue(2));
13440 }
13441
13442 /// ReplaceNodeResults - Replace a node with an illegal result type
13443 /// with a new node built out of custom code.
13444 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13445                                            SmallVectorImpl<SDValue>&Results,
13446                                            SelectionDAG &DAG) const {
13447   SDLoc dl(N);
13448   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13449   switch (N->getOpcode()) {
13450   default:
13451     llvm_unreachable("Do not know how to custom type legalize this operation!");
13452   case ISD::SIGN_EXTEND_INREG:
13453   case ISD::ADDC:
13454   case ISD::ADDE:
13455   case ISD::SUBC:
13456   case ISD::SUBE:
13457     // We don't want to expand or promote these.
13458     return;
13459   case ISD::FP_TO_SINT:
13460   case ISD::FP_TO_UINT: {
13461     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13462
13463     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13464       return;
13465
13466     std::pair<SDValue,SDValue> Vals =
13467         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13468     SDValue FIST = Vals.first, StackSlot = Vals.second;
13469     if (FIST.getNode() != 0) {
13470       EVT VT = N->getValueType(0);
13471       // Return a load from the stack slot.
13472       if (StackSlot.getNode() != 0)
13473         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13474                                       MachinePointerInfo(),
13475                                       false, false, false, 0));
13476       else
13477         Results.push_back(FIST);
13478     }
13479     return;
13480   }
13481   case ISD::UINT_TO_FP: {
13482     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13483     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13484         N->getValueType(0) != MVT::v2f32)
13485       return;
13486     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13487                                  N->getOperand(0));
13488     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13489                                      MVT::f64);
13490     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13491     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13492                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13493     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13494     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13495     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13496     return;
13497   }
13498   case ISD::FP_ROUND: {
13499     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13500         return;
13501     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13502     Results.push_back(V);
13503     return;
13504   }
13505   case ISD::READCYCLECOUNTER: {
13506     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13507     SDValue TheChain = N->getOperand(0);
13508     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13509     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13510                                      rd.getValue(1));
13511     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13512                                      eax.getValue(2));
13513     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13514     SDValue Ops[] = { eax, edx };
13515     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13516                                   array_lengthof(Ops)));
13517     Results.push_back(edx.getValue(1));
13518     return;
13519   }
13520   case ISD::ATOMIC_CMP_SWAP: {
13521     EVT T = N->getValueType(0);
13522     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13523     bool Regs64bit = T == MVT::i128;
13524     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13525     SDValue cpInL, cpInH;
13526     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13527                         DAG.getConstant(0, HalfT));
13528     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13529                         DAG.getConstant(1, HalfT));
13530     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13531                              Regs64bit ? X86::RAX : X86::EAX,
13532                              cpInL, SDValue());
13533     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13534                              Regs64bit ? X86::RDX : X86::EDX,
13535                              cpInH, cpInL.getValue(1));
13536     SDValue swapInL, swapInH;
13537     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13538                           DAG.getConstant(0, HalfT));
13539     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13540                           DAG.getConstant(1, HalfT));
13541     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13542                                Regs64bit ? X86::RBX : X86::EBX,
13543                                swapInL, cpInH.getValue(1));
13544     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13545                                Regs64bit ? X86::RCX : X86::ECX,
13546                                swapInH, swapInL.getValue(1));
13547     SDValue Ops[] = { swapInH.getValue(0),
13548                       N->getOperand(1),
13549                       swapInH.getValue(1) };
13550     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13551     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13552     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13553                                   X86ISD::LCMPXCHG8_DAG;
13554     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13555                                              Ops, array_lengthof(Ops), T, MMO);
13556     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13557                                         Regs64bit ? X86::RAX : X86::EAX,
13558                                         HalfT, Result.getValue(1));
13559     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13560                                         Regs64bit ? X86::RDX : X86::EDX,
13561                                         HalfT, cpOutL.getValue(2));
13562     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13563     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13564     Results.push_back(cpOutH.getValue(1));
13565     return;
13566   }
13567   case ISD::ATOMIC_LOAD_ADD:
13568   case ISD::ATOMIC_LOAD_AND:
13569   case ISD::ATOMIC_LOAD_NAND:
13570   case ISD::ATOMIC_LOAD_OR:
13571   case ISD::ATOMIC_LOAD_SUB:
13572   case ISD::ATOMIC_LOAD_XOR:
13573   case ISD::ATOMIC_LOAD_MAX:
13574   case ISD::ATOMIC_LOAD_MIN:
13575   case ISD::ATOMIC_LOAD_UMAX:
13576   case ISD::ATOMIC_LOAD_UMIN:
13577   case ISD::ATOMIC_SWAP: {
13578     unsigned Opc;
13579     switch (N->getOpcode()) {
13580     default: llvm_unreachable("Unexpected opcode");
13581     case ISD::ATOMIC_LOAD_ADD:
13582       Opc = X86ISD::ATOMADD64_DAG;
13583       break;
13584     case ISD::ATOMIC_LOAD_AND:
13585       Opc = X86ISD::ATOMAND64_DAG;
13586       break;
13587     case ISD::ATOMIC_LOAD_NAND:
13588       Opc = X86ISD::ATOMNAND64_DAG;
13589       break;
13590     case ISD::ATOMIC_LOAD_OR:
13591       Opc = X86ISD::ATOMOR64_DAG;
13592       break;
13593     case ISD::ATOMIC_LOAD_SUB:
13594       Opc = X86ISD::ATOMSUB64_DAG;
13595       break;
13596     case ISD::ATOMIC_LOAD_XOR:
13597       Opc = X86ISD::ATOMXOR64_DAG;
13598       break;
13599     case ISD::ATOMIC_LOAD_MAX:
13600       Opc = X86ISD::ATOMMAX64_DAG;
13601       break;
13602     case ISD::ATOMIC_LOAD_MIN:
13603       Opc = X86ISD::ATOMMIN64_DAG;
13604       break;
13605     case ISD::ATOMIC_LOAD_UMAX:
13606       Opc = X86ISD::ATOMUMAX64_DAG;
13607       break;
13608     case ISD::ATOMIC_LOAD_UMIN:
13609       Opc = X86ISD::ATOMUMIN64_DAG;
13610       break;
13611     case ISD::ATOMIC_SWAP:
13612       Opc = X86ISD::ATOMSWAP64_DAG;
13613       break;
13614     }
13615     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13616     return;
13617   }
13618   case ISD::ATOMIC_LOAD:
13619     ReplaceATOMIC_LOAD(N, Results, DAG);
13620   }
13621 }
13622
13623 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13624   switch (Opcode) {
13625   default: return NULL;
13626   case X86ISD::BSF:                return "X86ISD::BSF";
13627   case X86ISD::BSR:                return "X86ISD::BSR";
13628   case X86ISD::SHLD:               return "X86ISD::SHLD";
13629   case X86ISD::SHRD:               return "X86ISD::SHRD";
13630   case X86ISD::FAND:               return "X86ISD::FAND";
13631   case X86ISD::FANDN:              return "X86ISD::FANDN";
13632   case X86ISD::FOR:                return "X86ISD::FOR";
13633   case X86ISD::FXOR:               return "X86ISD::FXOR";
13634   case X86ISD::FSRL:               return "X86ISD::FSRL";
13635   case X86ISD::FILD:               return "X86ISD::FILD";
13636   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13637   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13638   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13639   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13640   case X86ISD::FLD:                return "X86ISD::FLD";
13641   case X86ISD::FST:                return "X86ISD::FST";
13642   case X86ISD::CALL:               return "X86ISD::CALL";
13643   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13644   case X86ISD::BT:                 return "X86ISD::BT";
13645   case X86ISD::CMP:                return "X86ISD::CMP";
13646   case X86ISD::COMI:               return "X86ISD::COMI";
13647   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13648   case X86ISD::CMPM:               return "X86ISD::CMPM";
13649   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13650   case X86ISD::SETCC:              return "X86ISD::SETCC";
13651   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13652   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13653   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13654   case X86ISD::CMOV:               return "X86ISD::CMOV";
13655   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13656   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13657   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13658   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13659   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13660   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13661   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13662   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13663   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13664   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13665   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13666   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13667   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13668   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13669   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13670   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13671   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13672   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13673   case X86ISD::HADD:               return "X86ISD::HADD";
13674   case X86ISD::HSUB:               return "X86ISD::HSUB";
13675   case X86ISD::FHADD:              return "X86ISD::FHADD";
13676   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13677   case X86ISD::UMAX:               return "X86ISD::UMAX";
13678   case X86ISD::UMIN:               return "X86ISD::UMIN";
13679   case X86ISD::SMAX:               return "X86ISD::SMAX";
13680   case X86ISD::SMIN:               return "X86ISD::SMIN";
13681   case X86ISD::FMAX:               return "X86ISD::FMAX";
13682   case X86ISD::FMIN:               return "X86ISD::FMIN";
13683   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13684   case X86ISD::FMINC:              return "X86ISD::FMINC";
13685   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13686   case X86ISD::FRCP:               return "X86ISD::FRCP";
13687   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13688   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13689   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13690   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13691   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13692   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13693   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13694   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13695   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13696   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13697   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13698   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13699   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13700   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13701   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13702   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13703   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13704   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13705   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13706   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13707   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13708   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13709   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13710   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13711   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13712   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13713   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13714   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13715   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13716   case X86ISD::VSHL:               return "X86ISD::VSHL";
13717   case X86ISD::VSRL:               return "X86ISD::VSRL";
13718   case X86ISD::VSRA:               return "X86ISD::VSRA";
13719   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13720   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13721   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13722   case X86ISD::CMPP:               return "X86ISD::CMPP";
13723   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13724   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13725   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13726   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13727   case X86ISD::ADD:                return "X86ISD::ADD";
13728   case X86ISD::SUB:                return "X86ISD::SUB";
13729   case X86ISD::ADC:                return "X86ISD::ADC";
13730   case X86ISD::SBB:                return "X86ISD::SBB";
13731   case X86ISD::SMUL:               return "X86ISD::SMUL";
13732   case X86ISD::UMUL:               return "X86ISD::UMUL";
13733   case X86ISD::INC:                return "X86ISD::INC";
13734   case X86ISD::DEC:                return "X86ISD::DEC";
13735   case X86ISD::OR:                 return "X86ISD::OR";
13736   case X86ISD::XOR:                return "X86ISD::XOR";
13737   case X86ISD::AND:                return "X86ISD::AND";
13738   case X86ISD::BLSI:               return "X86ISD::BLSI";
13739   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13740   case X86ISD::BLSR:               return "X86ISD::BLSR";
13741   case X86ISD::BZHI:               return "X86ISD::BZHI";
13742   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13743   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13744   case X86ISD::PTEST:              return "X86ISD::PTEST";
13745   case X86ISD::TESTP:              return "X86ISD::TESTP";
13746   case X86ISD::TESTM:              return "X86ISD::TESTM";
13747   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13748   case X86ISD::KTEST:              return "X86ISD::KTEST";
13749   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13750   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13751   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13752   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13753   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13754   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13755   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13756   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13757   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13758   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13759   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13760   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13761   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13762   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13763   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13764   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13765   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13766   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13767   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13768   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13769   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13770   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13771   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13772   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13773   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13774   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13775   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13776   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13777   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13778   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13779   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13780   case X86ISD::SAHF:               return "X86ISD::SAHF";
13781   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13782   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13783   case X86ISD::FMADD:              return "X86ISD::FMADD";
13784   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13785   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13786   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13787   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13788   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13789   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13790   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13791   case X86ISD::XTEST:              return "X86ISD::XTEST";
13792   }
13793 }
13794
13795 // isLegalAddressingMode - Return true if the addressing mode represented
13796 // by AM is legal for this target, for a load/store of the specified type.
13797 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13798                                               Type *Ty) const {
13799   // X86 supports extremely general addressing modes.
13800   CodeModel::Model M = getTargetMachine().getCodeModel();
13801   Reloc::Model R = getTargetMachine().getRelocationModel();
13802
13803   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13804   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13805     return false;
13806
13807   if (AM.BaseGV) {
13808     unsigned GVFlags =
13809       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13810
13811     // If a reference to this global requires an extra load, we can't fold it.
13812     if (isGlobalStubReference(GVFlags))
13813       return false;
13814
13815     // If BaseGV requires a register for the PIC base, we cannot also have a
13816     // BaseReg specified.
13817     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13818       return false;
13819
13820     // If lower 4G is not available, then we must use rip-relative addressing.
13821     if ((M != CodeModel::Small || R != Reloc::Static) &&
13822         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13823       return false;
13824   }
13825
13826   switch (AM.Scale) {
13827   case 0:
13828   case 1:
13829   case 2:
13830   case 4:
13831   case 8:
13832     // These scales always work.
13833     break;
13834   case 3:
13835   case 5:
13836   case 9:
13837     // These scales are formed with basereg+scalereg.  Only accept if there is
13838     // no basereg yet.
13839     if (AM.HasBaseReg)
13840       return false;
13841     break;
13842   default:  // Other stuff never works.
13843     return false;
13844   }
13845
13846   return true;
13847 }
13848
13849 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13850   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13851     return false;
13852   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13853   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13854   return NumBits1 > NumBits2;
13855 }
13856
13857 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13858   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13859     return false;
13860
13861   if (!isTypeLegal(EVT::getEVT(Ty1)))
13862     return false;
13863
13864   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13865
13866   // Assuming the caller doesn't have a zeroext or signext return parameter,
13867   // truncation all the way down to i1 is valid.
13868   return true;
13869 }
13870
13871 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13872   return isInt<32>(Imm);
13873 }
13874
13875 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13876   // Can also use sub to handle negated immediates.
13877   return isInt<32>(Imm);
13878 }
13879
13880 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13881   if (!VT1.isInteger() || !VT2.isInteger())
13882     return false;
13883   unsigned NumBits1 = VT1.getSizeInBits();
13884   unsigned NumBits2 = VT2.getSizeInBits();
13885   return NumBits1 > NumBits2;
13886 }
13887
13888 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13889   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13890   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13891 }
13892
13893 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13894   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13895   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13896 }
13897
13898 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13899   EVT VT1 = Val.getValueType();
13900   if (isZExtFree(VT1, VT2))
13901     return true;
13902
13903   if (Val.getOpcode() != ISD::LOAD)
13904     return false;
13905
13906   if (!VT1.isSimple() || !VT1.isInteger() ||
13907       !VT2.isSimple() || !VT2.isInteger())
13908     return false;
13909
13910   switch (VT1.getSimpleVT().SimpleTy) {
13911   default: break;
13912   case MVT::i8:
13913   case MVT::i16:
13914   case MVT::i32:
13915     // X86 has 8, 16, and 32-bit zero-extending loads.
13916     return true;
13917   }
13918
13919   return false;
13920 }
13921
13922 bool
13923 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13924   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13925     return false;
13926
13927   VT = VT.getScalarType();
13928
13929   if (!VT.isSimple())
13930     return false;
13931
13932   switch (VT.getSimpleVT().SimpleTy) {
13933   case MVT::f32:
13934   case MVT::f64:
13935     return true;
13936   default:
13937     break;
13938   }
13939
13940   return false;
13941 }
13942
13943 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13944   // i16 instructions are longer (0x66 prefix) and potentially slower.
13945   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13946 }
13947
13948 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13949 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13950 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13951 /// are assumed to be legal.
13952 bool
13953 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13954                                       EVT VT) const {
13955   if (!VT.isSimple())
13956     return false;
13957
13958   MVT SVT = VT.getSimpleVT();
13959
13960   // Very little shuffling can be done for 64-bit vectors right now.
13961   if (VT.getSizeInBits() == 64)
13962     return false;
13963
13964   // FIXME: pshufb, blends, shifts.
13965   return (SVT.getVectorNumElements() == 2 ||
13966           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13967           isMOVLMask(M, SVT) ||
13968           isSHUFPMask(M, SVT) ||
13969           isPSHUFDMask(M, SVT) ||
13970           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13971           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13972           isPALIGNRMask(M, SVT, Subtarget) ||
13973           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13974           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13975           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13976           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13977 }
13978
13979 bool
13980 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13981                                           EVT VT) const {
13982   if (!VT.isSimple())
13983     return false;
13984
13985   MVT SVT = VT.getSimpleVT();
13986   unsigned NumElts = SVT.getVectorNumElements();
13987   // FIXME: This collection of masks seems suspect.
13988   if (NumElts == 2)
13989     return true;
13990   if (NumElts == 4 && SVT.is128BitVector()) {
13991     return (isMOVLMask(Mask, SVT)  ||
13992             isCommutedMOVLMask(Mask, SVT, true) ||
13993             isSHUFPMask(Mask, SVT) ||
13994             isSHUFPMask(Mask, SVT, /* Commuted */ true));
13995   }
13996   return false;
13997 }
13998
13999 //===----------------------------------------------------------------------===//
14000 //                           X86 Scheduler Hooks
14001 //===----------------------------------------------------------------------===//
14002
14003 /// Utility function to emit xbegin specifying the start of an RTM region.
14004 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14005                                      const TargetInstrInfo *TII) {
14006   DebugLoc DL = MI->getDebugLoc();
14007
14008   const BasicBlock *BB = MBB->getBasicBlock();
14009   MachineFunction::iterator I = MBB;
14010   ++I;
14011
14012   // For the v = xbegin(), we generate
14013   //
14014   // thisMBB:
14015   //  xbegin sinkMBB
14016   //
14017   // mainMBB:
14018   //  eax = -1
14019   //
14020   // sinkMBB:
14021   //  v = eax
14022
14023   MachineBasicBlock *thisMBB = MBB;
14024   MachineFunction *MF = MBB->getParent();
14025   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14026   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14027   MF->insert(I, mainMBB);
14028   MF->insert(I, sinkMBB);
14029
14030   // Transfer the remainder of BB and its successor edges to sinkMBB.
14031   sinkMBB->splice(sinkMBB->begin(), MBB,
14032                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14033   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14034
14035   // thisMBB:
14036   //  xbegin sinkMBB
14037   //  # fallthrough to mainMBB
14038   //  # abortion to sinkMBB
14039   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14040   thisMBB->addSuccessor(mainMBB);
14041   thisMBB->addSuccessor(sinkMBB);
14042
14043   // mainMBB:
14044   //  EAX = -1
14045   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14046   mainMBB->addSuccessor(sinkMBB);
14047
14048   // sinkMBB:
14049   // EAX is live into the sinkMBB
14050   sinkMBB->addLiveIn(X86::EAX);
14051   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14052           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14053     .addReg(X86::EAX);
14054
14055   MI->eraseFromParent();
14056   return sinkMBB;
14057 }
14058
14059 // Get CMPXCHG opcode for the specified data type.
14060 static unsigned getCmpXChgOpcode(EVT VT) {
14061   switch (VT.getSimpleVT().SimpleTy) {
14062   case MVT::i8:  return X86::LCMPXCHG8;
14063   case MVT::i16: return X86::LCMPXCHG16;
14064   case MVT::i32: return X86::LCMPXCHG32;
14065   case MVT::i64: return X86::LCMPXCHG64;
14066   default:
14067     break;
14068   }
14069   llvm_unreachable("Invalid operand size!");
14070 }
14071
14072 // Get LOAD opcode for the specified data type.
14073 static unsigned getLoadOpcode(EVT VT) {
14074   switch (VT.getSimpleVT().SimpleTy) {
14075   case MVT::i8:  return X86::MOV8rm;
14076   case MVT::i16: return X86::MOV16rm;
14077   case MVT::i32: return X86::MOV32rm;
14078   case MVT::i64: return X86::MOV64rm;
14079   default:
14080     break;
14081   }
14082   llvm_unreachable("Invalid operand size!");
14083 }
14084
14085 // Get opcode of the non-atomic one from the specified atomic instruction.
14086 static unsigned getNonAtomicOpcode(unsigned Opc) {
14087   switch (Opc) {
14088   case X86::ATOMAND8:  return X86::AND8rr;
14089   case X86::ATOMAND16: return X86::AND16rr;
14090   case X86::ATOMAND32: return X86::AND32rr;
14091   case X86::ATOMAND64: return X86::AND64rr;
14092   case X86::ATOMOR8:   return X86::OR8rr;
14093   case X86::ATOMOR16:  return X86::OR16rr;
14094   case X86::ATOMOR32:  return X86::OR32rr;
14095   case X86::ATOMOR64:  return X86::OR64rr;
14096   case X86::ATOMXOR8:  return X86::XOR8rr;
14097   case X86::ATOMXOR16: return X86::XOR16rr;
14098   case X86::ATOMXOR32: return X86::XOR32rr;
14099   case X86::ATOMXOR64: return X86::XOR64rr;
14100   }
14101   llvm_unreachable("Unhandled atomic-load-op opcode!");
14102 }
14103
14104 // Get opcode of the non-atomic one from the specified atomic instruction with
14105 // extra opcode.
14106 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14107                                                unsigned &ExtraOpc) {
14108   switch (Opc) {
14109   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14110   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14111   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14112   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14113   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14114   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14115   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14116   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14117   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14118   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14119   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14120   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14121   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14122   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14123   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14124   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14125   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14126   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14127   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14128   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14129   }
14130   llvm_unreachable("Unhandled atomic-load-op opcode!");
14131 }
14132
14133 // Get opcode of the non-atomic one from the specified atomic instruction for
14134 // 64-bit data type on 32-bit target.
14135 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14136   switch (Opc) {
14137   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14138   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14139   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14140   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14141   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14142   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14143   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14144   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14145   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14146   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14147   }
14148   llvm_unreachable("Unhandled atomic-load-op opcode!");
14149 }
14150
14151 // Get opcode of the non-atomic one from the specified atomic instruction for
14152 // 64-bit data type on 32-bit target with extra opcode.
14153 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14154                                                    unsigned &HiOpc,
14155                                                    unsigned &ExtraOpc) {
14156   switch (Opc) {
14157   case X86::ATOMNAND6432:
14158     ExtraOpc = X86::NOT32r;
14159     HiOpc = X86::AND32rr;
14160     return X86::AND32rr;
14161   }
14162   llvm_unreachable("Unhandled atomic-load-op opcode!");
14163 }
14164
14165 // Get pseudo CMOV opcode from the specified data type.
14166 static unsigned getPseudoCMOVOpc(EVT VT) {
14167   switch (VT.getSimpleVT().SimpleTy) {
14168   case MVT::i8:  return X86::CMOV_GR8;
14169   case MVT::i16: return X86::CMOV_GR16;
14170   case MVT::i32: return X86::CMOV_GR32;
14171   default:
14172     break;
14173   }
14174   llvm_unreachable("Unknown CMOV opcode!");
14175 }
14176
14177 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14178 // They will be translated into a spin-loop or compare-exchange loop from
14179 //
14180 //    ...
14181 //    dst = atomic-fetch-op MI.addr, MI.val
14182 //    ...
14183 //
14184 // to
14185 //
14186 //    ...
14187 //    t1 = LOAD MI.addr
14188 // loop:
14189 //    t4 = phi(t1, t3 / loop)
14190 //    t2 = OP MI.val, t4
14191 //    EAX = t4
14192 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14193 //    t3 = EAX
14194 //    JNE loop
14195 // sink:
14196 //    dst = t3
14197 //    ...
14198 MachineBasicBlock *
14199 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14200                                        MachineBasicBlock *MBB) const {
14201   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14202   DebugLoc DL = MI->getDebugLoc();
14203
14204   MachineFunction *MF = MBB->getParent();
14205   MachineRegisterInfo &MRI = MF->getRegInfo();
14206
14207   const BasicBlock *BB = MBB->getBasicBlock();
14208   MachineFunction::iterator I = MBB;
14209   ++I;
14210
14211   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14212          "Unexpected number of operands");
14213
14214   assert(MI->hasOneMemOperand() &&
14215          "Expected atomic-load-op to have one memoperand");
14216
14217   // Memory Reference
14218   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14219   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14220
14221   unsigned DstReg, SrcReg;
14222   unsigned MemOpndSlot;
14223
14224   unsigned CurOp = 0;
14225
14226   DstReg = MI->getOperand(CurOp++).getReg();
14227   MemOpndSlot = CurOp;
14228   CurOp += X86::AddrNumOperands;
14229   SrcReg = MI->getOperand(CurOp++).getReg();
14230
14231   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14232   MVT::SimpleValueType VT = *RC->vt_begin();
14233   unsigned t1 = MRI.createVirtualRegister(RC);
14234   unsigned t2 = MRI.createVirtualRegister(RC);
14235   unsigned t3 = MRI.createVirtualRegister(RC);
14236   unsigned t4 = MRI.createVirtualRegister(RC);
14237   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14238
14239   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14240   unsigned LOADOpc = getLoadOpcode(VT);
14241
14242   // For the atomic load-arith operator, we generate
14243   //
14244   //  thisMBB:
14245   //    t1 = LOAD [MI.addr]
14246   //  mainMBB:
14247   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14248   //    t1 = OP MI.val, EAX
14249   //    EAX = t4
14250   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14251   //    t3 = EAX
14252   //    JNE mainMBB
14253   //  sinkMBB:
14254   //    dst = t3
14255
14256   MachineBasicBlock *thisMBB = MBB;
14257   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14258   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14259   MF->insert(I, mainMBB);
14260   MF->insert(I, sinkMBB);
14261
14262   MachineInstrBuilder MIB;
14263
14264   // Transfer the remainder of BB and its successor edges to sinkMBB.
14265   sinkMBB->splice(sinkMBB->begin(), MBB,
14266                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14267   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14268
14269   // thisMBB:
14270   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14271   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14272     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14273     if (NewMO.isReg())
14274       NewMO.setIsKill(false);
14275     MIB.addOperand(NewMO);
14276   }
14277   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14278     unsigned flags = (*MMOI)->getFlags();
14279     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14280     MachineMemOperand *MMO =
14281       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14282                                (*MMOI)->getSize(),
14283                                (*MMOI)->getBaseAlignment(),
14284                                (*MMOI)->getTBAAInfo(),
14285                                (*MMOI)->getRanges());
14286     MIB.addMemOperand(MMO);
14287   }
14288
14289   thisMBB->addSuccessor(mainMBB);
14290
14291   // mainMBB:
14292   MachineBasicBlock *origMainMBB = mainMBB;
14293
14294   // Add a PHI.
14295   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14296                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14297
14298   unsigned Opc = MI->getOpcode();
14299   switch (Opc) {
14300   default:
14301     llvm_unreachable("Unhandled atomic-load-op opcode!");
14302   case X86::ATOMAND8:
14303   case X86::ATOMAND16:
14304   case X86::ATOMAND32:
14305   case X86::ATOMAND64:
14306   case X86::ATOMOR8:
14307   case X86::ATOMOR16:
14308   case X86::ATOMOR32:
14309   case X86::ATOMOR64:
14310   case X86::ATOMXOR8:
14311   case X86::ATOMXOR16:
14312   case X86::ATOMXOR32:
14313   case X86::ATOMXOR64: {
14314     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14315     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14316       .addReg(t4);
14317     break;
14318   }
14319   case X86::ATOMNAND8:
14320   case X86::ATOMNAND16:
14321   case X86::ATOMNAND32:
14322   case X86::ATOMNAND64: {
14323     unsigned Tmp = MRI.createVirtualRegister(RC);
14324     unsigned NOTOpc;
14325     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14326     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14327       .addReg(t4);
14328     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14329     break;
14330   }
14331   case X86::ATOMMAX8:
14332   case X86::ATOMMAX16:
14333   case X86::ATOMMAX32:
14334   case X86::ATOMMAX64:
14335   case X86::ATOMMIN8:
14336   case X86::ATOMMIN16:
14337   case X86::ATOMMIN32:
14338   case X86::ATOMMIN64:
14339   case X86::ATOMUMAX8:
14340   case X86::ATOMUMAX16:
14341   case X86::ATOMUMAX32:
14342   case X86::ATOMUMAX64:
14343   case X86::ATOMUMIN8:
14344   case X86::ATOMUMIN16:
14345   case X86::ATOMUMIN32:
14346   case X86::ATOMUMIN64: {
14347     unsigned CMPOpc;
14348     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14349
14350     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14351       .addReg(SrcReg)
14352       .addReg(t4);
14353
14354     if (Subtarget->hasCMov()) {
14355       if (VT != MVT::i8) {
14356         // Native support
14357         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14358           .addReg(SrcReg)
14359           .addReg(t4);
14360       } else {
14361         // Promote i8 to i32 to use CMOV32
14362         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14363         const TargetRegisterClass *RC32 =
14364           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14365         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14366         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14367         unsigned Tmp = MRI.createVirtualRegister(RC32);
14368
14369         unsigned Undef = MRI.createVirtualRegister(RC32);
14370         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14371
14372         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14373           .addReg(Undef)
14374           .addReg(SrcReg)
14375           .addImm(X86::sub_8bit);
14376         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14377           .addReg(Undef)
14378           .addReg(t4)
14379           .addImm(X86::sub_8bit);
14380
14381         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14382           .addReg(SrcReg32)
14383           .addReg(AccReg32);
14384
14385         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14386           .addReg(Tmp, 0, X86::sub_8bit);
14387       }
14388     } else {
14389       // Use pseudo select and lower them.
14390       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14391              "Invalid atomic-load-op transformation!");
14392       unsigned SelOpc = getPseudoCMOVOpc(VT);
14393       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14394       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14395       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14396               .addReg(SrcReg).addReg(t4)
14397               .addImm(CC);
14398       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14399       // Replace the original PHI node as mainMBB is changed after CMOV
14400       // lowering.
14401       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14402         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14403       Phi->eraseFromParent();
14404     }
14405     break;
14406   }
14407   }
14408
14409   // Copy PhyReg back from virtual register.
14410   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14411     .addReg(t4);
14412
14413   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14414   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14415     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14416     if (NewMO.isReg())
14417       NewMO.setIsKill(false);
14418     MIB.addOperand(NewMO);
14419   }
14420   MIB.addReg(t2);
14421   MIB.setMemRefs(MMOBegin, MMOEnd);
14422
14423   // Copy PhyReg back to virtual register.
14424   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14425     .addReg(PhyReg);
14426
14427   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14428
14429   mainMBB->addSuccessor(origMainMBB);
14430   mainMBB->addSuccessor(sinkMBB);
14431
14432   // sinkMBB:
14433   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14434           TII->get(TargetOpcode::COPY), DstReg)
14435     .addReg(t3);
14436
14437   MI->eraseFromParent();
14438   return sinkMBB;
14439 }
14440
14441 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14442 // instructions. They will be translated into a spin-loop or compare-exchange
14443 // loop from
14444 //
14445 //    ...
14446 //    dst = atomic-fetch-op MI.addr, MI.val
14447 //    ...
14448 //
14449 // to
14450 //
14451 //    ...
14452 //    t1L = LOAD [MI.addr + 0]
14453 //    t1H = LOAD [MI.addr + 4]
14454 // loop:
14455 //    t4L = phi(t1L, t3L / loop)
14456 //    t4H = phi(t1H, t3H / loop)
14457 //    t2L = OP MI.val.lo, t4L
14458 //    t2H = OP MI.val.hi, t4H
14459 //    EAX = t4L
14460 //    EDX = t4H
14461 //    EBX = t2L
14462 //    ECX = t2H
14463 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14464 //    t3L = EAX
14465 //    t3H = EDX
14466 //    JNE loop
14467 // sink:
14468 //    dstL = t3L
14469 //    dstH = t3H
14470 //    ...
14471 MachineBasicBlock *
14472 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14473                                            MachineBasicBlock *MBB) const {
14474   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14475   DebugLoc DL = MI->getDebugLoc();
14476
14477   MachineFunction *MF = MBB->getParent();
14478   MachineRegisterInfo &MRI = MF->getRegInfo();
14479
14480   const BasicBlock *BB = MBB->getBasicBlock();
14481   MachineFunction::iterator I = MBB;
14482   ++I;
14483
14484   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14485          "Unexpected number of operands");
14486
14487   assert(MI->hasOneMemOperand() &&
14488          "Expected atomic-load-op32 to have one memoperand");
14489
14490   // Memory Reference
14491   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14492   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14493
14494   unsigned DstLoReg, DstHiReg;
14495   unsigned SrcLoReg, SrcHiReg;
14496   unsigned MemOpndSlot;
14497
14498   unsigned CurOp = 0;
14499
14500   DstLoReg = MI->getOperand(CurOp++).getReg();
14501   DstHiReg = MI->getOperand(CurOp++).getReg();
14502   MemOpndSlot = CurOp;
14503   CurOp += X86::AddrNumOperands;
14504   SrcLoReg = MI->getOperand(CurOp++).getReg();
14505   SrcHiReg = MI->getOperand(CurOp++).getReg();
14506
14507   const TargetRegisterClass *RC = &X86::GR32RegClass;
14508   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14509
14510   unsigned t1L = MRI.createVirtualRegister(RC);
14511   unsigned t1H = MRI.createVirtualRegister(RC);
14512   unsigned t2L = MRI.createVirtualRegister(RC);
14513   unsigned t2H = MRI.createVirtualRegister(RC);
14514   unsigned t3L = MRI.createVirtualRegister(RC);
14515   unsigned t3H = MRI.createVirtualRegister(RC);
14516   unsigned t4L = MRI.createVirtualRegister(RC);
14517   unsigned t4H = MRI.createVirtualRegister(RC);
14518
14519   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14520   unsigned LOADOpc = X86::MOV32rm;
14521
14522   // For the atomic load-arith operator, we generate
14523   //
14524   //  thisMBB:
14525   //    t1L = LOAD [MI.addr + 0]
14526   //    t1H = LOAD [MI.addr + 4]
14527   //  mainMBB:
14528   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14529   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14530   //    t2L = OP MI.val.lo, t4L
14531   //    t2H = OP MI.val.hi, t4H
14532   //    EBX = t2L
14533   //    ECX = t2H
14534   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14535   //    t3L = EAX
14536   //    t3H = EDX
14537   //    JNE loop
14538   //  sinkMBB:
14539   //    dstL = t3L
14540   //    dstH = t3H
14541
14542   MachineBasicBlock *thisMBB = MBB;
14543   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14544   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14545   MF->insert(I, mainMBB);
14546   MF->insert(I, sinkMBB);
14547
14548   MachineInstrBuilder MIB;
14549
14550   // Transfer the remainder of BB and its successor edges to sinkMBB.
14551   sinkMBB->splice(sinkMBB->begin(), MBB,
14552                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14553   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14554
14555   // thisMBB:
14556   // Lo
14557   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14558   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14559     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14560     if (NewMO.isReg())
14561       NewMO.setIsKill(false);
14562     MIB.addOperand(NewMO);
14563   }
14564   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14565     unsigned flags = (*MMOI)->getFlags();
14566     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14567     MachineMemOperand *MMO =
14568       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14569                                (*MMOI)->getSize(),
14570                                (*MMOI)->getBaseAlignment(),
14571                                (*MMOI)->getTBAAInfo(),
14572                                (*MMOI)->getRanges());
14573     MIB.addMemOperand(MMO);
14574   };
14575   MachineInstr *LowMI = MIB;
14576
14577   // Hi
14578   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14579   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14580     if (i == X86::AddrDisp) {
14581       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14582     } else {
14583       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14584       if (NewMO.isReg())
14585         NewMO.setIsKill(false);
14586       MIB.addOperand(NewMO);
14587     }
14588   }
14589   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14590
14591   thisMBB->addSuccessor(mainMBB);
14592
14593   // mainMBB:
14594   MachineBasicBlock *origMainMBB = mainMBB;
14595
14596   // Add PHIs.
14597   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14598                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14599   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14600                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14601
14602   unsigned Opc = MI->getOpcode();
14603   switch (Opc) {
14604   default:
14605     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14606   case X86::ATOMAND6432:
14607   case X86::ATOMOR6432:
14608   case X86::ATOMXOR6432:
14609   case X86::ATOMADD6432:
14610   case X86::ATOMSUB6432: {
14611     unsigned HiOpc;
14612     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14613     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14614       .addReg(SrcLoReg);
14615     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14616       .addReg(SrcHiReg);
14617     break;
14618   }
14619   case X86::ATOMNAND6432: {
14620     unsigned HiOpc, NOTOpc;
14621     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14622     unsigned TmpL = MRI.createVirtualRegister(RC);
14623     unsigned TmpH = MRI.createVirtualRegister(RC);
14624     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14625       .addReg(t4L);
14626     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14627       .addReg(t4H);
14628     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14629     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14630     break;
14631   }
14632   case X86::ATOMMAX6432:
14633   case X86::ATOMMIN6432:
14634   case X86::ATOMUMAX6432:
14635   case X86::ATOMUMIN6432: {
14636     unsigned HiOpc;
14637     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14638     unsigned cL = MRI.createVirtualRegister(RC8);
14639     unsigned cH = MRI.createVirtualRegister(RC8);
14640     unsigned cL32 = MRI.createVirtualRegister(RC);
14641     unsigned cH32 = MRI.createVirtualRegister(RC);
14642     unsigned cc = MRI.createVirtualRegister(RC);
14643     // cl := cmp src_lo, lo
14644     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14645       .addReg(SrcLoReg).addReg(t4L);
14646     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14647     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14648     // ch := cmp src_hi, hi
14649     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14650       .addReg(SrcHiReg).addReg(t4H);
14651     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14652     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14653     // cc := if (src_hi == hi) ? cl : ch;
14654     if (Subtarget->hasCMov()) {
14655       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14656         .addReg(cH32).addReg(cL32);
14657     } else {
14658       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14659               .addReg(cH32).addReg(cL32)
14660               .addImm(X86::COND_E);
14661       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14662     }
14663     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14664     if (Subtarget->hasCMov()) {
14665       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14666         .addReg(SrcLoReg).addReg(t4L);
14667       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14668         .addReg(SrcHiReg).addReg(t4H);
14669     } else {
14670       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14671               .addReg(SrcLoReg).addReg(t4L)
14672               .addImm(X86::COND_NE);
14673       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14674       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14675       // 2nd CMOV lowering.
14676       mainMBB->addLiveIn(X86::EFLAGS);
14677       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14678               .addReg(SrcHiReg).addReg(t4H)
14679               .addImm(X86::COND_NE);
14680       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14681       // Replace the original PHI node as mainMBB is changed after CMOV
14682       // lowering.
14683       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14684         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14685       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14686         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14687       PhiL->eraseFromParent();
14688       PhiH->eraseFromParent();
14689     }
14690     break;
14691   }
14692   case X86::ATOMSWAP6432: {
14693     unsigned HiOpc;
14694     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14695     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14696     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14697     break;
14698   }
14699   }
14700
14701   // Copy EDX:EAX back from HiReg:LoReg
14702   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14703   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14704   // Copy ECX:EBX from t1H:t1L
14705   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14706   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14707
14708   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14709   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14710     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14711     if (NewMO.isReg())
14712       NewMO.setIsKill(false);
14713     MIB.addOperand(NewMO);
14714   }
14715   MIB.setMemRefs(MMOBegin, MMOEnd);
14716
14717   // Copy EDX:EAX back to t3H:t3L
14718   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14719   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14720
14721   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14722
14723   mainMBB->addSuccessor(origMainMBB);
14724   mainMBB->addSuccessor(sinkMBB);
14725
14726   // sinkMBB:
14727   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14728           TII->get(TargetOpcode::COPY), DstLoReg)
14729     .addReg(t3L);
14730   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14731           TII->get(TargetOpcode::COPY), DstHiReg)
14732     .addReg(t3H);
14733
14734   MI->eraseFromParent();
14735   return sinkMBB;
14736 }
14737
14738 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14739 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14740 // in the .td file.
14741 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14742                                        const TargetInstrInfo *TII) {
14743   unsigned Opc;
14744   switch (MI->getOpcode()) {
14745   default: llvm_unreachable("illegal opcode!");
14746   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14747   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14748   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14749   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14750   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14751   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14752   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14753   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14754   }
14755
14756   DebugLoc dl = MI->getDebugLoc();
14757   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14758
14759   unsigned NumArgs = MI->getNumOperands();
14760   for (unsigned i = 1; i < NumArgs; ++i) {
14761     MachineOperand &Op = MI->getOperand(i);
14762     if (!(Op.isReg() && Op.isImplicit()))
14763       MIB.addOperand(Op);
14764   }
14765   if (MI->hasOneMemOperand())
14766     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14767
14768   BuildMI(*BB, MI, dl,
14769     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14770     .addReg(X86::XMM0);
14771
14772   MI->eraseFromParent();
14773   return BB;
14774 }
14775
14776 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14777 // defs in an instruction pattern
14778 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14779                                        const TargetInstrInfo *TII) {
14780   unsigned Opc;
14781   switch (MI->getOpcode()) {
14782   default: llvm_unreachable("illegal opcode!");
14783   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14784   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14785   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14786   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14787   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14788   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14789   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14790   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14791   }
14792
14793   DebugLoc dl = MI->getDebugLoc();
14794   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14795
14796   unsigned NumArgs = MI->getNumOperands(); // remove the results
14797   for (unsigned i = 1; i < NumArgs; ++i) {
14798     MachineOperand &Op = MI->getOperand(i);
14799     if (!(Op.isReg() && Op.isImplicit()))
14800       MIB.addOperand(Op);
14801   }
14802   if (MI->hasOneMemOperand())
14803     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14804
14805   BuildMI(*BB, MI, dl,
14806     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14807     .addReg(X86::ECX);
14808
14809   MI->eraseFromParent();
14810   return BB;
14811 }
14812
14813 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14814                                        const TargetInstrInfo *TII,
14815                                        const X86Subtarget* Subtarget) {
14816   DebugLoc dl = MI->getDebugLoc();
14817
14818   // Address into RAX/EAX, other two args into ECX, EDX.
14819   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14820   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14821   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14822   for (int i = 0; i < X86::AddrNumOperands; ++i)
14823     MIB.addOperand(MI->getOperand(i));
14824
14825   unsigned ValOps = X86::AddrNumOperands;
14826   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14827     .addReg(MI->getOperand(ValOps).getReg());
14828   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14829     .addReg(MI->getOperand(ValOps+1).getReg());
14830
14831   // The instruction doesn't actually take any operands though.
14832   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14833
14834   MI->eraseFromParent(); // The pseudo is gone now.
14835   return BB;
14836 }
14837
14838 MachineBasicBlock *
14839 X86TargetLowering::EmitVAARG64WithCustomInserter(
14840                    MachineInstr *MI,
14841                    MachineBasicBlock *MBB) const {
14842   // Emit va_arg instruction on X86-64.
14843
14844   // Operands to this pseudo-instruction:
14845   // 0  ) Output        : destination address (reg)
14846   // 1-5) Input         : va_list address (addr, i64mem)
14847   // 6  ) ArgSize       : Size (in bytes) of vararg type
14848   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14849   // 8  ) Align         : Alignment of type
14850   // 9  ) EFLAGS (implicit-def)
14851
14852   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14853   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14854
14855   unsigned DestReg = MI->getOperand(0).getReg();
14856   MachineOperand &Base = MI->getOperand(1);
14857   MachineOperand &Scale = MI->getOperand(2);
14858   MachineOperand &Index = MI->getOperand(3);
14859   MachineOperand &Disp = MI->getOperand(4);
14860   MachineOperand &Segment = MI->getOperand(5);
14861   unsigned ArgSize = MI->getOperand(6).getImm();
14862   unsigned ArgMode = MI->getOperand(7).getImm();
14863   unsigned Align = MI->getOperand(8).getImm();
14864
14865   // Memory Reference
14866   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14867   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14868   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14869
14870   // Machine Information
14871   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14872   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14873   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14874   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14875   DebugLoc DL = MI->getDebugLoc();
14876
14877   // struct va_list {
14878   //   i32   gp_offset
14879   //   i32   fp_offset
14880   //   i64   overflow_area (address)
14881   //   i64   reg_save_area (address)
14882   // }
14883   // sizeof(va_list) = 24
14884   // alignment(va_list) = 8
14885
14886   unsigned TotalNumIntRegs = 6;
14887   unsigned TotalNumXMMRegs = 8;
14888   bool UseGPOffset = (ArgMode == 1);
14889   bool UseFPOffset = (ArgMode == 2);
14890   unsigned MaxOffset = TotalNumIntRegs * 8 +
14891                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14892
14893   /* Align ArgSize to a multiple of 8 */
14894   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14895   bool NeedsAlign = (Align > 8);
14896
14897   MachineBasicBlock *thisMBB = MBB;
14898   MachineBasicBlock *overflowMBB;
14899   MachineBasicBlock *offsetMBB;
14900   MachineBasicBlock *endMBB;
14901
14902   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14903   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14904   unsigned OffsetReg = 0;
14905
14906   if (!UseGPOffset && !UseFPOffset) {
14907     // If we only pull from the overflow region, we don't create a branch.
14908     // We don't need to alter control flow.
14909     OffsetDestReg = 0; // unused
14910     OverflowDestReg = DestReg;
14911
14912     offsetMBB = NULL;
14913     overflowMBB = thisMBB;
14914     endMBB = thisMBB;
14915   } else {
14916     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14917     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14918     // If not, pull from overflow_area. (branch to overflowMBB)
14919     //
14920     //       thisMBB
14921     //         |     .
14922     //         |        .
14923     //     offsetMBB   overflowMBB
14924     //         |        .
14925     //         |     .
14926     //        endMBB
14927
14928     // Registers for the PHI in endMBB
14929     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14930     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14931
14932     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14933     MachineFunction *MF = MBB->getParent();
14934     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14935     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14936     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14937
14938     MachineFunction::iterator MBBIter = MBB;
14939     ++MBBIter;
14940
14941     // Insert the new basic blocks
14942     MF->insert(MBBIter, offsetMBB);
14943     MF->insert(MBBIter, overflowMBB);
14944     MF->insert(MBBIter, endMBB);
14945
14946     // Transfer the remainder of MBB and its successor edges to endMBB.
14947     endMBB->splice(endMBB->begin(), thisMBB,
14948                     llvm::next(MachineBasicBlock::iterator(MI)),
14949                     thisMBB->end());
14950     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14951
14952     // Make offsetMBB and overflowMBB successors of thisMBB
14953     thisMBB->addSuccessor(offsetMBB);
14954     thisMBB->addSuccessor(overflowMBB);
14955
14956     // endMBB is a successor of both offsetMBB and overflowMBB
14957     offsetMBB->addSuccessor(endMBB);
14958     overflowMBB->addSuccessor(endMBB);
14959
14960     // Load the offset value into a register
14961     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14962     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14963       .addOperand(Base)
14964       .addOperand(Scale)
14965       .addOperand(Index)
14966       .addDisp(Disp, UseFPOffset ? 4 : 0)
14967       .addOperand(Segment)
14968       .setMemRefs(MMOBegin, MMOEnd);
14969
14970     // Check if there is enough room left to pull this argument.
14971     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14972       .addReg(OffsetReg)
14973       .addImm(MaxOffset + 8 - ArgSizeA8);
14974
14975     // Branch to "overflowMBB" if offset >= max
14976     // Fall through to "offsetMBB" otherwise
14977     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14978       .addMBB(overflowMBB);
14979   }
14980
14981   // In offsetMBB, emit code to use the reg_save_area.
14982   if (offsetMBB) {
14983     assert(OffsetReg != 0);
14984
14985     // Read the reg_save_area address.
14986     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14987     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14988       .addOperand(Base)
14989       .addOperand(Scale)
14990       .addOperand(Index)
14991       .addDisp(Disp, 16)
14992       .addOperand(Segment)
14993       .setMemRefs(MMOBegin, MMOEnd);
14994
14995     // Zero-extend the offset
14996     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14997       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14998         .addImm(0)
14999         .addReg(OffsetReg)
15000         .addImm(X86::sub_32bit);
15001
15002     // Add the offset to the reg_save_area to get the final address.
15003     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15004       .addReg(OffsetReg64)
15005       .addReg(RegSaveReg);
15006
15007     // Compute the offset for the next argument
15008     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15009     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15010       .addReg(OffsetReg)
15011       .addImm(UseFPOffset ? 16 : 8);
15012
15013     // Store it back into the va_list.
15014     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15015       .addOperand(Base)
15016       .addOperand(Scale)
15017       .addOperand(Index)
15018       .addDisp(Disp, UseFPOffset ? 4 : 0)
15019       .addOperand(Segment)
15020       .addReg(NextOffsetReg)
15021       .setMemRefs(MMOBegin, MMOEnd);
15022
15023     // Jump to endMBB
15024     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15025       .addMBB(endMBB);
15026   }
15027
15028   //
15029   // Emit code to use overflow area
15030   //
15031
15032   // Load the overflow_area address into a register.
15033   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15034   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15035     .addOperand(Base)
15036     .addOperand(Scale)
15037     .addOperand(Index)
15038     .addDisp(Disp, 8)
15039     .addOperand(Segment)
15040     .setMemRefs(MMOBegin, MMOEnd);
15041
15042   // If we need to align it, do so. Otherwise, just copy the address
15043   // to OverflowDestReg.
15044   if (NeedsAlign) {
15045     // Align the overflow address
15046     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15047     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15048
15049     // aligned_addr = (addr + (align-1)) & ~(align-1)
15050     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15051       .addReg(OverflowAddrReg)
15052       .addImm(Align-1);
15053
15054     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15055       .addReg(TmpReg)
15056       .addImm(~(uint64_t)(Align-1));
15057   } else {
15058     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15059       .addReg(OverflowAddrReg);
15060   }
15061
15062   // Compute the next overflow address after this argument.
15063   // (the overflow address should be kept 8-byte aligned)
15064   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15065   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15066     .addReg(OverflowDestReg)
15067     .addImm(ArgSizeA8);
15068
15069   // Store the new overflow address.
15070   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15071     .addOperand(Base)
15072     .addOperand(Scale)
15073     .addOperand(Index)
15074     .addDisp(Disp, 8)
15075     .addOperand(Segment)
15076     .addReg(NextAddrReg)
15077     .setMemRefs(MMOBegin, MMOEnd);
15078
15079   // If we branched, emit the PHI to the front of endMBB.
15080   if (offsetMBB) {
15081     BuildMI(*endMBB, endMBB->begin(), DL,
15082             TII->get(X86::PHI), DestReg)
15083       .addReg(OffsetDestReg).addMBB(offsetMBB)
15084       .addReg(OverflowDestReg).addMBB(overflowMBB);
15085   }
15086
15087   // Erase the pseudo instruction
15088   MI->eraseFromParent();
15089
15090   return endMBB;
15091 }
15092
15093 MachineBasicBlock *
15094 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15095                                                  MachineInstr *MI,
15096                                                  MachineBasicBlock *MBB) const {
15097   // Emit code to save XMM registers to the stack. The ABI says that the
15098   // number of registers to save is given in %al, so it's theoretically
15099   // possible to do an indirect jump trick to avoid saving all of them,
15100   // however this code takes a simpler approach and just executes all
15101   // of the stores if %al is non-zero. It's less code, and it's probably
15102   // easier on the hardware branch predictor, and stores aren't all that
15103   // expensive anyway.
15104
15105   // Create the new basic blocks. One block contains all the XMM stores,
15106   // and one block is the final destination regardless of whether any
15107   // stores were performed.
15108   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15109   MachineFunction *F = MBB->getParent();
15110   MachineFunction::iterator MBBIter = MBB;
15111   ++MBBIter;
15112   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15113   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15114   F->insert(MBBIter, XMMSaveMBB);
15115   F->insert(MBBIter, EndMBB);
15116
15117   // Transfer the remainder of MBB and its successor edges to EndMBB.
15118   EndMBB->splice(EndMBB->begin(), MBB,
15119                  llvm::next(MachineBasicBlock::iterator(MI)),
15120                  MBB->end());
15121   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15122
15123   // The original block will now fall through to the XMM save block.
15124   MBB->addSuccessor(XMMSaveMBB);
15125   // The XMMSaveMBB will fall through to the end block.
15126   XMMSaveMBB->addSuccessor(EndMBB);
15127
15128   // Now add the instructions.
15129   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15130   DebugLoc DL = MI->getDebugLoc();
15131
15132   unsigned CountReg = MI->getOperand(0).getReg();
15133   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15134   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15135
15136   if (!Subtarget->isTargetWin64()) {
15137     // If %al is 0, branch around the XMM save block.
15138     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15139     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15140     MBB->addSuccessor(EndMBB);
15141   }
15142
15143   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15144   // In the XMM save block, save all the XMM argument registers.
15145   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15146     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15147     MachineMemOperand *MMO =
15148       F->getMachineMemOperand(
15149           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15150         MachineMemOperand::MOStore,
15151         /*Size=*/16, /*Align=*/16);
15152     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15153       .addFrameIndex(RegSaveFrameIndex)
15154       .addImm(/*Scale=*/1)
15155       .addReg(/*IndexReg=*/0)
15156       .addImm(/*Disp=*/Offset)
15157       .addReg(/*Segment=*/0)
15158       .addReg(MI->getOperand(i).getReg())
15159       .addMemOperand(MMO);
15160   }
15161
15162   MI->eraseFromParent();   // The pseudo instruction is gone now.
15163
15164   return EndMBB;
15165 }
15166
15167 // The EFLAGS operand of SelectItr might be missing a kill marker
15168 // because there were multiple uses of EFLAGS, and ISel didn't know
15169 // which to mark. Figure out whether SelectItr should have had a
15170 // kill marker, and set it if it should. Returns the correct kill
15171 // marker value.
15172 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15173                                      MachineBasicBlock* BB,
15174                                      const TargetRegisterInfo* TRI) {
15175   // Scan forward through BB for a use/def of EFLAGS.
15176   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15177   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15178     const MachineInstr& mi = *miI;
15179     if (mi.readsRegister(X86::EFLAGS))
15180       return false;
15181     if (mi.definesRegister(X86::EFLAGS))
15182       break; // Should have kill-flag - update below.
15183   }
15184
15185   // If we hit the end of the block, check whether EFLAGS is live into a
15186   // successor.
15187   if (miI == BB->end()) {
15188     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15189                                           sEnd = BB->succ_end();
15190          sItr != sEnd; ++sItr) {
15191       MachineBasicBlock* succ = *sItr;
15192       if (succ->isLiveIn(X86::EFLAGS))
15193         return false;
15194     }
15195   }
15196
15197   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15198   // out. SelectMI should have a kill flag on EFLAGS.
15199   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15200   return true;
15201 }
15202
15203 MachineBasicBlock *
15204 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15205                                      MachineBasicBlock *BB) const {
15206   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15207   DebugLoc DL = MI->getDebugLoc();
15208
15209   // To "insert" a SELECT_CC instruction, we actually have to insert the
15210   // diamond control-flow pattern.  The incoming instruction knows the
15211   // destination vreg to set, the condition code register to branch on, the
15212   // true/false values to select between, and a branch opcode to use.
15213   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15214   MachineFunction::iterator It = BB;
15215   ++It;
15216
15217   //  thisMBB:
15218   //  ...
15219   //   TrueVal = ...
15220   //   cmpTY ccX, r1, r2
15221   //   bCC copy1MBB
15222   //   fallthrough --> copy0MBB
15223   MachineBasicBlock *thisMBB = BB;
15224   MachineFunction *F = BB->getParent();
15225   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15226   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15227   F->insert(It, copy0MBB);
15228   F->insert(It, sinkMBB);
15229
15230   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15231   // live into the sink and copy blocks.
15232   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15233   if (!MI->killsRegister(X86::EFLAGS) &&
15234       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15235     copy0MBB->addLiveIn(X86::EFLAGS);
15236     sinkMBB->addLiveIn(X86::EFLAGS);
15237   }
15238
15239   // Transfer the remainder of BB and its successor edges to sinkMBB.
15240   sinkMBB->splice(sinkMBB->begin(), BB,
15241                   llvm::next(MachineBasicBlock::iterator(MI)),
15242                   BB->end());
15243   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15244
15245   // Add the true and fallthrough blocks as its successors.
15246   BB->addSuccessor(copy0MBB);
15247   BB->addSuccessor(sinkMBB);
15248
15249   // Create the conditional branch instruction.
15250   unsigned Opc =
15251     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15252   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15253
15254   //  copy0MBB:
15255   //   %FalseValue = ...
15256   //   # fallthrough to sinkMBB
15257   copy0MBB->addSuccessor(sinkMBB);
15258
15259   //  sinkMBB:
15260   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15261   //  ...
15262   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15263           TII->get(X86::PHI), MI->getOperand(0).getReg())
15264     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15265     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15266
15267   MI->eraseFromParent();   // The pseudo instruction is gone now.
15268   return sinkMBB;
15269 }
15270
15271 MachineBasicBlock *
15272 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15273                                         bool Is64Bit) const {
15274   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15275   DebugLoc DL = MI->getDebugLoc();
15276   MachineFunction *MF = BB->getParent();
15277   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15278
15279   assert(getTargetMachine().Options.EnableSegmentedStacks);
15280
15281   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15282   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15283
15284   // BB:
15285   //  ... [Till the alloca]
15286   // If stacklet is not large enough, jump to mallocMBB
15287   //
15288   // bumpMBB:
15289   //  Allocate by subtracting from RSP
15290   //  Jump to continueMBB
15291   //
15292   // mallocMBB:
15293   //  Allocate by call to runtime
15294   //
15295   // continueMBB:
15296   //  ...
15297   //  [rest of original BB]
15298   //
15299
15300   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15301   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15302   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15303
15304   MachineRegisterInfo &MRI = MF->getRegInfo();
15305   const TargetRegisterClass *AddrRegClass =
15306     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15307
15308   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15309     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15310     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15311     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15312     sizeVReg = MI->getOperand(1).getReg(),
15313     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15314
15315   MachineFunction::iterator MBBIter = BB;
15316   ++MBBIter;
15317
15318   MF->insert(MBBIter, bumpMBB);
15319   MF->insert(MBBIter, mallocMBB);
15320   MF->insert(MBBIter, continueMBB);
15321
15322   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15323                       (MachineBasicBlock::iterator(MI)), BB->end());
15324   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15325
15326   // Add code to the main basic block to check if the stack limit has been hit,
15327   // and if so, jump to mallocMBB otherwise to bumpMBB.
15328   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15329   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15330     .addReg(tmpSPVReg).addReg(sizeVReg);
15331   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15332     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15333     .addReg(SPLimitVReg);
15334   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15335
15336   // bumpMBB simply decreases the stack pointer, since we know the current
15337   // stacklet has enough space.
15338   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15339     .addReg(SPLimitVReg);
15340   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15341     .addReg(SPLimitVReg);
15342   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15343
15344   // Calls into a routine in libgcc to allocate more space from the heap.
15345   const uint32_t *RegMask =
15346     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15347   if (Is64Bit) {
15348     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15349       .addReg(sizeVReg);
15350     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15351       .addExternalSymbol("__morestack_allocate_stack_space")
15352       .addRegMask(RegMask)
15353       .addReg(X86::RDI, RegState::Implicit)
15354       .addReg(X86::RAX, RegState::ImplicitDefine);
15355   } else {
15356     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15357       .addImm(12);
15358     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15359     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15360       .addExternalSymbol("__morestack_allocate_stack_space")
15361       .addRegMask(RegMask)
15362       .addReg(X86::EAX, RegState::ImplicitDefine);
15363   }
15364
15365   if (!Is64Bit)
15366     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15367       .addImm(16);
15368
15369   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15370     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15371   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15372
15373   // Set up the CFG correctly.
15374   BB->addSuccessor(bumpMBB);
15375   BB->addSuccessor(mallocMBB);
15376   mallocMBB->addSuccessor(continueMBB);
15377   bumpMBB->addSuccessor(continueMBB);
15378
15379   // Take care of the PHI nodes.
15380   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15381           MI->getOperand(0).getReg())
15382     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15383     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15384
15385   // Delete the original pseudo instruction.
15386   MI->eraseFromParent();
15387
15388   // And we're done.
15389   return continueMBB;
15390 }
15391
15392 MachineBasicBlock *
15393 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15394                                           MachineBasicBlock *BB) const {
15395   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15396   DebugLoc DL = MI->getDebugLoc();
15397
15398   assert(!Subtarget->isTargetEnvMacho());
15399
15400   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15401   // non-trivial part is impdef of ESP.
15402
15403   if (Subtarget->isTargetWin64()) {
15404     if (Subtarget->isTargetCygMing()) {
15405       // ___chkstk(Mingw64):
15406       // Clobbers R10, R11, RAX and EFLAGS.
15407       // Updates RSP.
15408       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15409         .addExternalSymbol("___chkstk")
15410         .addReg(X86::RAX, RegState::Implicit)
15411         .addReg(X86::RSP, RegState::Implicit)
15412         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15413         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15414         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15415     } else {
15416       // __chkstk(MSVCRT): does not update stack pointer.
15417       // Clobbers R10, R11 and EFLAGS.
15418       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15419         .addExternalSymbol("__chkstk")
15420         .addReg(X86::RAX, RegState::Implicit)
15421         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15422       // RAX has the offset to be subtracted from RSP.
15423       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15424         .addReg(X86::RSP)
15425         .addReg(X86::RAX);
15426     }
15427   } else {
15428     const char *StackProbeSymbol =
15429       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15430
15431     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15432       .addExternalSymbol(StackProbeSymbol)
15433       .addReg(X86::EAX, RegState::Implicit)
15434       .addReg(X86::ESP, RegState::Implicit)
15435       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15436       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15437       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15438   }
15439
15440   MI->eraseFromParent();   // The pseudo instruction is gone now.
15441   return BB;
15442 }
15443
15444 MachineBasicBlock *
15445 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15446                                       MachineBasicBlock *BB) const {
15447   // This is pretty easy.  We're taking the value that we received from
15448   // our load from the relocation, sticking it in either RDI (x86-64)
15449   // or EAX and doing an indirect call.  The return value will then
15450   // be in the normal return register.
15451   const X86InstrInfo *TII
15452     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15453   DebugLoc DL = MI->getDebugLoc();
15454   MachineFunction *F = BB->getParent();
15455
15456   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15457   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15458
15459   // Get a register mask for the lowered call.
15460   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15461   // proper register mask.
15462   const uint32_t *RegMask =
15463     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15464   if (Subtarget->is64Bit()) {
15465     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15466                                       TII->get(X86::MOV64rm), X86::RDI)
15467     .addReg(X86::RIP)
15468     .addImm(0).addReg(0)
15469     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15470                       MI->getOperand(3).getTargetFlags())
15471     .addReg(0);
15472     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15473     addDirectMem(MIB, X86::RDI);
15474     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15475   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15476     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15477                                       TII->get(X86::MOV32rm), X86::EAX)
15478     .addReg(0)
15479     .addImm(0).addReg(0)
15480     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15481                       MI->getOperand(3).getTargetFlags())
15482     .addReg(0);
15483     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15484     addDirectMem(MIB, X86::EAX);
15485     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15486   } else {
15487     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15488                                       TII->get(X86::MOV32rm), X86::EAX)
15489     .addReg(TII->getGlobalBaseReg(F))
15490     .addImm(0).addReg(0)
15491     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15492                       MI->getOperand(3).getTargetFlags())
15493     .addReg(0);
15494     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15495     addDirectMem(MIB, X86::EAX);
15496     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15497   }
15498
15499   MI->eraseFromParent(); // The pseudo instruction is gone now.
15500   return BB;
15501 }
15502
15503 MachineBasicBlock *
15504 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15505                                     MachineBasicBlock *MBB) const {
15506   DebugLoc DL = MI->getDebugLoc();
15507   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15508
15509   MachineFunction *MF = MBB->getParent();
15510   MachineRegisterInfo &MRI = MF->getRegInfo();
15511
15512   const BasicBlock *BB = MBB->getBasicBlock();
15513   MachineFunction::iterator I = MBB;
15514   ++I;
15515
15516   // Memory Reference
15517   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15518   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15519
15520   unsigned DstReg;
15521   unsigned MemOpndSlot = 0;
15522
15523   unsigned CurOp = 0;
15524
15525   DstReg = MI->getOperand(CurOp++).getReg();
15526   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15527   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15528   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15529   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15530
15531   MemOpndSlot = CurOp;
15532
15533   MVT PVT = getPointerTy();
15534   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15535          "Invalid Pointer Size!");
15536
15537   // For v = setjmp(buf), we generate
15538   //
15539   // thisMBB:
15540   //  buf[LabelOffset] = restoreMBB
15541   //  SjLjSetup restoreMBB
15542   //
15543   // mainMBB:
15544   //  v_main = 0
15545   //
15546   // sinkMBB:
15547   //  v = phi(main, restore)
15548   //
15549   // restoreMBB:
15550   //  v_restore = 1
15551
15552   MachineBasicBlock *thisMBB = MBB;
15553   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15554   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15555   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15556   MF->insert(I, mainMBB);
15557   MF->insert(I, sinkMBB);
15558   MF->push_back(restoreMBB);
15559
15560   MachineInstrBuilder MIB;
15561
15562   // Transfer the remainder of BB and its successor edges to sinkMBB.
15563   sinkMBB->splice(sinkMBB->begin(), MBB,
15564                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15565   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15566
15567   // thisMBB:
15568   unsigned PtrStoreOpc = 0;
15569   unsigned LabelReg = 0;
15570   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15571   Reloc::Model RM = getTargetMachine().getRelocationModel();
15572   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15573                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15574
15575   // Prepare IP either in reg or imm.
15576   if (!UseImmLabel) {
15577     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15578     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15579     LabelReg = MRI.createVirtualRegister(PtrRC);
15580     if (Subtarget->is64Bit()) {
15581       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15582               .addReg(X86::RIP)
15583               .addImm(0)
15584               .addReg(0)
15585               .addMBB(restoreMBB)
15586               .addReg(0);
15587     } else {
15588       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15589       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15590               .addReg(XII->getGlobalBaseReg(MF))
15591               .addImm(0)
15592               .addReg(0)
15593               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15594               .addReg(0);
15595     }
15596   } else
15597     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15598   // Store IP
15599   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15600   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15601     if (i == X86::AddrDisp)
15602       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15603     else
15604       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15605   }
15606   if (!UseImmLabel)
15607     MIB.addReg(LabelReg);
15608   else
15609     MIB.addMBB(restoreMBB);
15610   MIB.setMemRefs(MMOBegin, MMOEnd);
15611   // Setup
15612   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15613           .addMBB(restoreMBB);
15614
15615   const X86RegisterInfo *RegInfo =
15616     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15617   MIB.addRegMask(RegInfo->getNoPreservedMask());
15618   thisMBB->addSuccessor(mainMBB);
15619   thisMBB->addSuccessor(restoreMBB);
15620
15621   // mainMBB:
15622   //  EAX = 0
15623   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15624   mainMBB->addSuccessor(sinkMBB);
15625
15626   // sinkMBB:
15627   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15628           TII->get(X86::PHI), DstReg)
15629     .addReg(mainDstReg).addMBB(mainMBB)
15630     .addReg(restoreDstReg).addMBB(restoreMBB);
15631
15632   // restoreMBB:
15633   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15634   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15635   restoreMBB->addSuccessor(sinkMBB);
15636
15637   MI->eraseFromParent();
15638   return sinkMBB;
15639 }
15640
15641 MachineBasicBlock *
15642 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15643                                      MachineBasicBlock *MBB) const {
15644   DebugLoc DL = MI->getDebugLoc();
15645   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15646
15647   MachineFunction *MF = MBB->getParent();
15648   MachineRegisterInfo &MRI = MF->getRegInfo();
15649
15650   // Memory Reference
15651   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15652   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15653
15654   MVT PVT = getPointerTy();
15655   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15656          "Invalid Pointer Size!");
15657
15658   const TargetRegisterClass *RC =
15659     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15660   unsigned Tmp = MRI.createVirtualRegister(RC);
15661   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15662   const X86RegisterInfo *RegInfo =
15663     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15664   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15665   unsigned SP = RegInfo->getStackRegister();
15666
15667   MachineInstrBuilder MIB;
15668
15669   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15670   const int64_t SPOffset = 2 * PVT.getStoreSize();
15671
15672   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15673   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15674
15675   // Reload FP
15676   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15677   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15678     MIB.addOperand(MI->getOperand(i));
15679   MIB.setMemRefs(MMOBegin, MMOEnd);
15680   // Reload IP
15681   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15682   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15683     if (i == X86::AddrDisp)
15684       MIB.addDisp(MI->getOperand(i), LabelOffset);
15685     else
15686       MIB.addOperand(MI->getOperand(i));
15687   }
15688   MIB.setMemRefs(MMOBegin, MMOEnd);
15689   // Reload SP
15690   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15691   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15692     if (i == X86::AddrDisp)
15693       MIB.addDisp(MI->getOperand(i), SPOffset);
15694     else
15695       MIB.addOperand(MI->getOperand(i));
15696   }
15697   MIB.setMemRefs(MMOBegin, MMOEnd);
15698   // Jump
15699   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15700
15701   MI->eraseFromParent();
15702   return MBB;
15703 }
15704
15705 MachineBasicBlock *
15706 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15707                                                MachineBasicBlock *BB) const {
15708   switch (MI->getOpcode()) {
15709   default: llvm_unreachable("Unexpected instr type to insert");
15710   case X86::TAILJMPd64:
15711   case X86::TAILJMPr64:
15712   case X86::TAILJMPm64:
15713     llvm_unreachable("TAILJMP64 would not be touched here.");
15714   case X86::TCRETURNdi64:
15715   case X86::TCRETURNri64:
15716   case X86::TCRETURNmi64:
15717     return BB;
15718   case X86::WIN_ALLOCA:
15719     return EmitLoweredWinAlloca(MI, BB);
15720   case X86::SEG_ALLOCA_32:
15721     return EmitLoweredSegAlloca(MI, BB, false);
15722   case X86::SEG_ALLOCA_64:
15723     return EmitLoweredSegAlloca(MI, BB, true);
15724   case X86::TLSCall_32:
15725   case X86::TLSCall_64:
15726     return EmitLoweredTLSCall(MI, BB);
15727   case X86::CMOV_GR8:
15728   case X86::CMOV_FR32:
15729   case X86::CMOV_FR64:
15730   case X86::CMOV_V4F32:
15731   case X86::CMOV_V2F64:
15732   case X86::CMOV_V2I64:
15733   case X86::CMOV_V8F32:
15734   case X86::CMOV_V4F64:
15735   case X86::CMOV_V4I64:
15736   case X86::CMOV_GR16:
15737   case X86::CMOV_GR32:
15738   case X86::CMOV_RFP32:
15739   case X86::CMOV_RFP64:
15740   case X86::CMOV_RFP80:
15741     return EmitLoweredSelect(MI, BB);
15742
15743   case X86::FP32_TO_INT16_IN_MEM:
15744   case X86::FP32_TO_INT32_IN_MEM:
15745   case X86::FP32_TO_INT64_IN_MEM:
15746   case X86::FP64_TO_INT16_IN_MEM:
15747   case X86::FP64_TO_INT32_IN_MEM:
15748   case X86::FP64_TO_INT64_IN_MEM:
15749   case X86::FP80_TO_INT16_IN_MEM:
15750   case X86::FP80_TO_INT32_IN_MEM:
15751   case X86::FP80_TO_INT64_IN_MEM: {
15752     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15753     DebugLoc DL = MI->getDebugLoc();
15754
15755     // Change the floating point control register to use "round towards zero"
15756     // mode when truncating to an integer value.
15757     MachineFunction *F = BB->getParent();
15758     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15759     addFrameReference(BuildMI(*BB, MI, DL,
15760                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15761
15762     // Load the old value of the high byte of the control word...
15763     unsigned OldCW =
15764       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15765     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15766                       CWFrameIdx);
15767
15768     // Set the high part to be round to zero...
15769     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15770       .addImm(0xC7F);
15771
15772     // Reload the modified control word now...
15773     addFrameReference(BuildMI(*BB, MI, DL,
15774                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15775
15776     // Restore the memory image of control word to original value
15777     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15778       .addReg(OldCW);
15779
15780     // Get the X86 opcode to use.
15781     unsigned Opc;
15782     switch (MI->getOpcode()) {
15783     default: llvm_unreachable("illegal opcode!");
15784     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15785     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15786     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15787     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15788     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15789     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15790     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15791     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15792     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15793     }
15794
15795     X86AddressMode AM;
15796     MachineOperand &Op = MI->getOperand(0);
15797     if (Op.isReg()) {
15798       AM.BaseType = X86AddressMode::RegBase;
15799       AM.Base.Reg = Op.getReg();
15800     } else {
15801       AM.BaseType = X86AddressMode::FrameIndexBase;
15802       AM.Base.FrameIndex = Op.getIndex();
15803     }
15804     Op = MI->getOperand(1);
15805     if (Op.isImm())
15806       AM.Scale = Op.getImm();
15807     Op = MI->getOperand(2);
15808     if (Op.isImm())
15809       AM.IndexReg = Op.getImm();
15810     Op = MI->getOperand(3);
15811     if (Op.isGlobal()) {
15812       AM.GV = Op.getGlobal();
15813     } else {
15814       AM.Disp = Op.getImm();
15815     }
15816     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15817                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15818
15819     // Reload the original control word now.
15820     addFrameReference(BuildMI(*BB, MI, DL,
15821                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15822
15823     MI->eraseFromParent();   // The pseudo instruction is gone now.
15824     return BB;
15825   }
15826     // String/text processing lowering.
15827   case X86::PCMPISTRM128REG:
15828   case X86::VPCMPISTRM128REG:
15829   case X86::PCMPISTRM128MEM:
15830   case X86::VPCMPISTRM128MEM:
15831   case X86::PCMPESTRM128REG:
15832   case X86::VPCMPESTRM128REG:
15833   case X86::PCMPESTRM128MEM:
15834   case X86::VPCMPESTRM128MEM:
15835     assert(Subtarget->hasSSE42() &&
15836            "Target must have SSE4.2 or AVX features enabled");
15837     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15838
15839   // String/text processing lowering.
15840   case X86::PCMPISTRIREG:
15841   case X86::VPCMPISTRIREG:
15842   case X86::PCMPISTRIMEM:
15843   case X86::VPCMPISTRIMEM:
15844   case X86::PCMPESTRIREG:
15845   case X86::VPCMPESTRIREG:
15846   case X86::PCMPESTRIMEM:
15847   case X86::VPCMPESTRIMEM:
15848     assert(Subtarget->hasSSE42() &&
15849            "Target must have SSE4.2 or AVX features enabled");
15850     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15851
15852   // Thread synchronization.
15853   case X86::MONITOR:
15854     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15855
15856   // xbegin
15857   case X86::XBEGIN:
15858     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15859
15860   // Atomic Lowering.
15861   case X86::ATOMAND8:
15862   case X86::ATOMAND16:
15863   case X86::ATOMAND32:
15864   case X86::ATOMAND64:
15865     // Fall through
15866   case X86::ATOMOR8:
15867   case X86::ATOMOR16:
15868   case X86::ATOMOR32:
15869   case X86::ATOMOR64:
15870     // Fall through
15871   case X86::ATOMXOR16:
15872   case X86::ATOMXOR8:
15873   case X86::ATOMXOR32:
15874   case X86::ATOMXOR64:
15875     // Fall through
15876   case X86::ATOMNAND8:
15877   case X86::ATOMNAND16:
15878   case X86::ATOMNAND32:
15879   case X86::ATOMNAND64:
15880     // Fall through
15881   case X86::ATOMMAX8:
15882   case X86::ATOMMAX16:
15883   case X86::ATOMMAX32:
15884   case X86::ATOMMAX64:
15885     // Fall through
15886   case X86::ATOMMIN8:
15887   case X86::ATOMMIN16:
15888   case X86::ATOMMIN32:
15889   case X86::ATOMMIN64:
15890     // Fall through
15891   case X86::ATOMUMAX8:
15892   case X86::ATOMUMAX16:
15893   case X86::ATOMUMAX32:
15894   case X86::ATOMUMAX64:
15895     // Fall through
15896   case X86::ATOMUMIN8:
15897   case X86::ATOMUMIN16:
15898   case X86::ATOMUMIN32:
15899   case X86::ATOMUMIN64:
15900     return EmitAtomicLoadArith(MI, BB);
15901
15902   // This group does 64-bit operations on a 32-bit host.
15903   case X86::ATOMAND6432:
15904   case X86::ATOMOR6432:
15905   case X86::ATOMXOR6432:
15906   case X86::ATOMNAND6432:
15907   case X86::ATOMADD6432:
15908   case X86::ATOMSUB6432:
15909   case X86::ATOMMAX6432:
15910   case X86::ATOMMIN6432:
15911   case X86::ATOMUMAX6432:
15912   case X86::ATOMUMIN6432:
15913   case X86::ATOMSWAP6432:
15914     return EmitAtomicLoadArith6432(MI, BB);
15915
15916   case X86::VASTART_SAVE_XMM_REGS:
15917     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15918
15919   case X86::VAARG_64:
15920     return EmitVAARG64WithCustomInserter(MI, BB);
15921
15922   case X86::EH_SjLj_SetJmp32:
15923   case X86::EH_SjLj_SetJmp64:
15924     return emitEHSjLjSetJmp(MI, BB);
15925
15926   case X86::EH_SjLj_LongJmp32:
15927   case X86::EH_SjLj_LongJmp64:
15928     return emitEHSjLjLongJmp(MI, BB);
15929   }
15930 }
15931
15932 //===----------------------------------------------------------------------===//
15933 //                           X86 Optimization Hooks
15934 //===----------------------------------------------------------------------===//
15935
15936 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15937                                                        APInt &KnownZero,
15938                                                        APInt &KnownOne,
15939                                                        const SelectionDAG &DAG,
15940                                                        unsigned Depth) const {
15941   unsigned BitWidth = KnownZero.getBitWidth();
15942   unsigned Opc = Op.getOpcode();
15943   assert((Opc >= ISD::BUILTIN_OP_END ||
15944           Opc == ISD::INTRINSIC_WO_CHAIN ||
15945           Opc == ISD::INTRINSIC_W_CHAIN ||
15946           Opc == ISD::INTRINSIC_VOID) &&
15947          "Should use MaskedValueIsZero if you don't know whether Op"
15948          " is a target node!");
15949
15950   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15951   switch (Opc) {
15952   default: break;
15953   case X86ISD::ADD:
15954   case X86ISD::SUB:
15955   case X86ISD::ADC:
15956   case X86ISD::SBB:
15957   case X86ISD::SMUL:
15958   case X86ISD::UMUL:
15959   case X86ISD::INC:
15960   case X86ISD::DEC:
15961   case X86ISD::OR:
15962   case X86ISD::XOR:
15963   case X86ISD::AND:
15964     // These nodes' second result is a boolean.
15965     if (Op.getResNo() == 0)
15966       break;
15967     // Fallthrough
15968   case X86ISD::SETCC:
15969     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15970     break;
15971   case ISD::INTRINSIC_WO_CHAIN: {
15972     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15973     unsigned NumLoBits = 0;
15974     switch (IntId) {
15975     default: break;
15976     case Intrinsic::x86_sse_movmsk_ps:
15977     case Intrinsic::x86_avx_movmsk_ps_256:
15978     case Intrinsic::x86_sse2_movmsk_pd:
15979     case Intrinsic::x86_avx_movmsk_pd_256:
15980     case Intrinsic::x86_mmx_pmovmskb:
15981     case Intrinsic::x86_sse2_pmovmskb_128:
15982     case Intrinsic::x86_avx2_pmovmskb: {
15983       // High bits of movmskp{s|d}, pmovmskb are known zero.
15984       switch (IntId) {
15985         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15986         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
15987         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
15988         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
15989         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
15990         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
15991         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
15992         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
15993       }
15994       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
15995       break;
15996     }
15997     }
15998     break;
15999   }
16000   }
16001 }
16002
16003 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16004                                                          unsigned Depth) const {
16005   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16006   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16007     return Op.getValueType().getScalarType().getSizeInBits();
16008
16009   // Fallback case.
16010   return 1;
16011 }
16012
16013 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16014 /// node is a GlobalAddress + offset.
16015 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16016                                        const GlobalValue* &GA,
16017                                        int64_t &Offset) const {
16018   if (N->getOpcode() == X86ISD::Wrapper) {
16019     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16020       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16021       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16022       return true;
16023     }
16024   }
16025   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16026 }
16027
16028 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16029 /// same as extracting the high 128-bit part of 256-bit vector and then
16030 /// inserting the result into the low part of a new 256-bit vector
16031 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16032   EVT VT = SVOp->getValueType(0);
16033   unsigned NumElems = VT.getVectorNumElements();
16034
16035   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16036   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16037     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16038         SVOp->getMaskElt(j) >= 0)
16039       return false;
16040
16041   return true;
16042 }
16043
16044 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16045 /// same as extracting the low 128-bit part of 256-bit vector and then
16046 /// inserting the result into the high part of a new 256-bit vector
16047 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16048   EVT VT = SVOp->getValueType(0);
16049   unsigned NumElems = VT.getVectorNumElements();
16050
16051   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16052   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16053     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16054         SVOp->getMaskElt(j) >= 0)
16055       return false;
16056
16057   return true;
16058 }
16059
16060 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16061 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16062                                         TargetLowering::DAGCombinerInfo &DCI,
16063                                         const X86Subtarget* Subtarget) {
16064   SDLoc dl(N);
16065   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16066   SDValue V1 = SVOp->getOperand(0);
16067   SDValue V2 = SVOp->getOperand(1);
16068   EVT VT = SVOp->getValueType(0);
16069   unsigned NumElems = VT.getVectorNumElements();
16070
16071   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16072       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16073     //
16074     //                   0,0,0,...
16075     //                      |
16076     //    V      UNDEF    BUILD_VECTOR    UNDEF
16077     //     \      /           \           /
16078     //  CONCAT_VECTOR         CONCAT_VECTOR
16079     //         \                  /
16080     //          \                /
16081     //          RESULT: V + zero extended
16082     //
16083     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16084         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16085         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16086       return SDValue();
16087
16088     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16089       return SDValue();
16090
16091     // To match the shuffle mask, the first half of the mask should
16092     // be exactly the first vector, and all the rest a splat with the
16093     // first element of the second one.
16094     for (unsigned i = 0; i != NumElems/2; ++i)
16095       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16096           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16097         return SDValue();
16098
16099     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16100     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16101       if (Ld->hasNUsesOfValue(1, 0)) {
16102         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16103         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16104         SDValue ResNode =
16105           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16106                                   array_lengthof(Ops),
16107                                   Ld->getMemoryVT(),
16108                                   Ld->getPointerInfo(),
16109                                   Ld->getAlignment(),
16110                                   false/*isVolatile*/, true/*ReadMem*/,
16111                                   false/*WriteMem*/);
16112
16113         // Make sure the newly-created LOAD is in the same position as Ld in
16114         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16115         // and update uses of Ld's output chain to use the TokenFactor.
16116         if (Ld->hasAnyUseOfValue(1)) {
16117           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16118                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16119           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16120           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16121                                  SDValue(ResNode.getNode(), 1));
16122         }
16123
16124         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16125       }
16126     }
16127
16128     // Emit a zeroed vector and insert the desired subvector on its
16129     // first half.
16130     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16131     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16132     return DCI.CombineTo(N, InsV);
16133   }
16134
16135   //===--------------------------------------------------------------------===//
16136   // Combine some shuffles into subvector extracts and inserts:
16137   //
16138
16139   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16140   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16141     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16142     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16143     return DCI.CombineTo(N, InsV);
16144   }
16145
16146   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16147   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16148     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16149     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16150     return DCI.CombineTo(N, InsV);
16151   }
16152
16153   return SDValue();
16154 }
16155
16156 static SDValue PerformConcatCombine(SDNode *N, SelectionDAG &DAG,
16157                                     TargetLowering::DAGCombinerInfo &DCI,
16158                                     const X86Subtarget *Subtarget) {
16159   // Creating a v8i16 from a v4i16 argument and an undef runs into trouble in
16160   // type legalization and ends up spilling to the stack. Avoid that by
16161   // creating a vector first and bitcasting the result rather than
16162   // bitcasting the source then creating the vector. Similar problems with
16163   // v8i8.
16164
16165   // No point in doing this after legalize, so early exit for that.
16166   if (!DCI.isBeforeLegalize())
16167     return SDValue();
16168
16169   EVT VT = N->getValueType(0);
16170   SDValue Op0 = N->getOperand(0);
16171   SDValue Op1 = N->getOperand(1);
16172   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16173   if (VT.getSizeInBits() == 128 && N->getNumOperands() == 2 &&
16174       Op1->getOpcode() == ISD::UNDEF &&
16175       Op0->getOpcode() == ISD::BITCAST &&
16176       !TLI.isTypeLegal(Op0->getValueType(0)) &&
16177       TLI.isTypeLegal(Op0->getOperand(0)->getValueType(0))) {
16178     SDValue Scalar = Op0->getOperand(0);
16179     // Any legal type here will be a simple value type.
16180     MVT SVT = Scalar->getValueType(0).getSimpleVT();
16181     // As a special case, bail out on MMX values.
16182     if (SVT == MVT::x86mmx)
16183       return SDValue();
16184     EVT NVT = MVT::getVectorVT(SVT, 2);
16185     SDLoc dl = SDLoc(N);
16186     SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NVT, Scalar);
16187     Res = DAG.getNode(ISD::BITCAST, dl, VT, Res);
16188     return Res;
16189   }
16190
16191   return SDValue();
16192 }
16193
16194 /// PerformShuffleCombine - Performs several different shuffle combines.
16195 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16196                                      TargetLowering::DAGCombinerInfo &DCI,
16197                                      const X86Subtarget *Subtarget) {
16198   SDLoc dl(N);
16199   EVT VT = N->getValueType(0);
16200
16201   // Don't create instructions with illegal types after legalize types has run.
16202   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16203   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16204     return SDValue();
16205
16206   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16207   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16208       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16209     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16210
16211   // Only handle 128 wide vector from here on.
16212   if (!VT.is128BitVector())
16213     return SDValue();
16214
16215   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16216   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16217   // consecutive, non-overlapping, and in the right order.
16218   SmallVector<SDValue, 16> Elts;
16219   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16220     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16221
16222   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
16223 }
16224
16225 /// PerformTruncateCombine - Converts truncate operation to
16226 /// a sequence of vector shuffle operations.
16227 /// It is possible when we truncate 256-bit vector to 128-bit vector
16228 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16229                                       TargetLowering::DAGCombinerInfo &DCI,
16230                                       const X86Subtarget *Subtarget)  {
16231   return SDValue();
16232 }
16233
16234 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16235 /// specific shuffle of a load can be folded into a single element load.
16236 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16237 /// shuffles have been customed lowered so we need to handle those here.
16238 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16239                                          TargetLowering::DAGCombinerInfo &DCI) {
16240   if (DCI.isBeforeLegalizeOps())
16241     return SDValue();
16242
16243   SDValue InVec = N->getOperand(0);
16244   SDValue EltNo = N->getOperand(1);
16245
16246   if (!isa<ConstantSDNode>(EltNo))
16247     return SDValue();
16248
16249   EVT VT = InVec.getValueType();
16250
16251   bool HasShuffleIntoBitcast = false;
16252   if (InVec.getOpcode() == ISD::BITCAST) {
16253     // Don't duplicate a load with other uses.
16254     if (!InVec.hasOneUse())
16255       return SDValue();
16256     EVT BCVT = InVec.getOperand(0).getValueType();
16257     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16258       return SDValue();
16259     InVec = InVec.getOperand(0);
16260     HasShuffleIntoBitcast = true;
16261   }
16262
16263   if (!isTargetShuffle(InVec.getOpcode()))
16264     return SDValue();
16265
16266   // Don't duplicate a load with other uses.
16267   if (!InVec.hasOneUse())
16268     return SDValue();
16269
16270   SmallVector<int, 16> ShuffleMask;
16271   bool UnaryShuffle;
16272   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16273                             UnaryShuffle))
16274     return SDValue();
16275
16276   // Select the input vector, guarding against out of range extract vector.
16277   unsigned NumElems = VT.getVectorNumElements();
16278   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16279   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16280   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16281                                          : InVec.getOperand(1);
16282
16283   // If inputs to shuffle are the same for both ops, then allow 2 uses
16284   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16285
16286   if (LdNode.getOpcode() == ISD::BITCAST) {
16287     // Don't duplicate a load with other uses.
16288     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16289       return SDValue();
16290
16291     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16292     LdNode = LdNode.getOperand(0);
16293   }
16294
16295   if (!ISD::isNormalLoad(LdNode.getNode()))
16296     return SDValue();
16297
16298   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16299
16300   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16301     return SDValue();
16302
16303   if (HasShuffleIntoBitcast) {
16304     // If there's a bitcast before the shuffle, check if the load type and
16305     // alignment is valid.
16306     unsigned Align = LN0->getAlignment();
16307     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16308     unsigned NewAlign = TLI.getDataLayout()->
16309       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16310
16311     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16312       return SDValue();
16313   }
16314
16315   // All checks match so transform back to vector_shuffle so that DAG combiner
16316   // can finish the job
16317   SDLoc dl(N);
16318
16319   // Create shuffle node taking into account the case that its a unary shuffle
16320   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16321   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16322                                  InVec.getOperand(0), Shuffle,
16323                                  &ShuffleMask[0]);
16324   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16325   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16326                      EltNo);
16327 }
16328
16329 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16330 /// generation and convert it from being a bunch of shuffles and extracts
16331 /// to a simple store and scalar loads to extract the elements.
16332 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16333                                          TargetLowering::DAGCombinerInfo &DCI) {
16334   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16335   if (NewOp.getNode())
16336     return NewOp;
16337
16338   SDValue InputVector = N->getOperand(0);
16339   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16340   // from mmx to v2i32 has a single usage.
16341   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16342       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16343       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16344     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16345                        N->getValueType(0),
16346                        InputVector.getNode()->getOperand(0));
16347
16348   // Only operate on vectors of 4 elements, where the alternative shuffling
16349   // gets to be more expensive.
16350   if (InputVector.getValueType() != MVT::v4i32)
16351     return SDValue();
16352
16353   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16354   // single use which is a sign-extend or zero-extend, and all elements are
16355   // used.
16356   SmallVector<SDNode *, 4> Uses;
16357   unsigned ExtractedElements = 0;
16358   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16359        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16360     if (UI.getUse().getResNo() != InputVector.getResNo())
16361       return SDValue();
16362
16363     SDNode *Extract = *UI;
16364     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16365       return SDValue();
16366
16367     if (Extract->getValueType(0) != MVT::i32)
16368       return SDValue();
16369     if (!Extract->hasOneUse())
16370       return SDValue();
16371     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16372         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16373       return SDValue();
16374     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16375       return SDValue();
16376
16377     // Record which element was extracted.
16378     ExtractedElements |=
16379       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16380
16381     Uses.push_back(Extract);
16382   }
16383
16384   // If not all the elements were used, this may not be worthwhile.
16385   if (ExtractedElements != 15)
16386     return SDValue();
16387
16388   // Ok, we've now decided to do the transformation.
16389   SDLoc dl(InputVector);
16390
16391   // Store the value to a temporary stack slot.
16392   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16393   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16394                             MachinePointerInfo(), false, false, 0);
16395
16396   // Replace each use (extract) with a load of the appropriate element.
16397   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16398        UE = Uses.end(); UI != UE; ++UI) {
16399     SDNode *Extract = *UI;
16400
16401     // cOMpute the element's address.
16402     SDValue Idx = Extract->getOperand(1);
16403     unsigned EltSize =
16404         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16405     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16406     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16407     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16408
16409     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16410                                      StackPtr, OffsetVal);
16411
16412     // Load the scalar.
16413     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16414                                      ScalarAddr, MachinePointerInfo(),
16415                                      false, false, false, 0);
16416
16417     // Replace the exact with the load.
16418     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16419   }
16420
16421   // The replacement was made in place; don't return anything.
16422   return SDValue();
16423 }
16424
16425 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16426 static std::pair<unsigned, bool>
16427 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16428                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16429   if (!VT.isVector())
16430     return std::make_pair(0, false);
16431
16432   bool NeedSplit = false;
16433   switch (VT.getSimpleVT().SimpleTy) {
16434   default: return std::make_pair(0, false);
16435   case MVT::v32i8:
16436   case MVT::v16i16:
16437   case MVT::v8i32:
16438     if (!Subtarget->hasAVX2())
16439       NeedSplit = true;
16440     if (!Subtarget->hasAVX())
16441       return std::make_pair(0, false);
16442     break;
16443   case MVT::v16i8:
16444   case MVT::v8i16:
16445   case MVT::v4i32:
16446     if (!Subtarget->hasSSE2())
16447       return std::make_pair(0, false);
16448   }
16449
16450   // SSE2 has only a small subset of the operations.
16451   bool hasUnsigned = Subtarget->hasSSE41() ||
16452                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16453   bool hasSigned = Subtarget->hasSSE41() ||
16454                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16455
16456   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16457
16458   unsigned Opc = 0;
16459   // Check for x CC y ? x : y.
16460   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16461       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16462     switch (CC) {
16463     default: break;
16464     case ISD::SETULT:
16465     case ISD::SETULE:
16466       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16467     case ISD::SETUGT:
16468     case ISD::SETUGE:
16469       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16470     case ISD::SETLT:
16471     case ISD::SETLE:
16472       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16473     case ISD::SETGT:
16474     case ISD::SETGE:
16475       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16476     }
16477   // Check for x CC y ? y : x -- a min/max with reversed arms.
16478   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16479              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16480     switch (CC) {
16481     default: break;
16482     case ISD::SETULT:
16483     case ISD::SETULE:
16484       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16485     case ISD::SETUGT:
16486     case ISD::SETUGE:
16487       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16488     case ISD::SETLT:
16489     case ISD::SETLE:
16490       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16491     case ISD::SETGT:
16492     case ISD::SETGE:
16493       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16494     }
16495   }
16496
16497   return std::make_pair(Opc, NeedSplit);
16498 }
16499
16500 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16501 /// nodes.
16502 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16503                                     TargetLowering::DAGCombinerInfo &DCI,
16504                                     const X86Subtarget *Subtarget) {
16505   SDLoc DL(N);
16506   SDValue Cond = N->getOperand(0);
16507   // Get the LHS/RHS of the select.
16508   SDValue LHS = N->getOperand(1);
16509   SDValue RHS = N->getOperand(2);
16510   EVT VT = LHS.getValueType();
16511   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16512
16513   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16514   // instructions match the semantics of the common C idiom x<y?x:y but not
16515   // x<=y?x:y, because of how they handle negative zero (which can be
16516   // ignored in unsafe-math mode).
16517   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16518       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16519       (Subtarget->hasSSE2() ||
16520        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16521     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16522
16523     unsigned Opcode = 0;
16524     // Check for x CC y ? x : y.
16525     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16526         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16527       switch (CC) {
16528       default: break;
16529       case ISD::SETULT:
16530         // Converting this to a min would handle NaNs incorrectly, and swapping
16531         // the operands would cause it to handle comparisons between positive
16532         // and negative zero incorrectly.
16533         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16534           if (!DAG.getTarget().Options.UnsafeFPMath &&
16535               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16536             break;
16537           std::swap(LHS, RHS);
16538         }
16539         Opcode = X86ISD::FMIN;
16540         break;
16541       case ISD::SETOLE:
16542         // Converting this to a min would handle comparisons between positive
16543         // and negative zero incorrectly.
16544         if (!DAG.getTarget().Options.UnsafeFPMath &&
16545             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16546           break;
16547         Opcode = X86ISD::FMIN;
16548         break;
16549       case ISD::SETULE:
16550         // Converting this to a min would handle both negative zeros and NaNs
16551         // incorrectly, but we can swap the operands to fix both.
16552         std::swap(LHS, RHS);
16553       case ISD::SETOLT:
16554       case ISD::SETLT:
16555       case ISD::SETLE:
16556         Opcode = X86ISD::FMIN;
16557         break;
16558
16559       case ISD::SETOGE:
16560         // Converting this to a max would handle comparisons between positive
16561         // and negative zero incorrectly.
16562         if (!DAG.getTarget().Options.UnsafeFPMath &&
16563             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16564           break;
16565         Opcode = X86ISD::FMAX;
16566         break;
16567       case ISD::SETUGT:
16568         // Converting this to a max would handle NaNs incorrectly, and swapping
16569         // the operands would cause it to handle comparisons between positive
16570         // and negative zero incorrectly.
16571         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16572           if (!DAG.getTarget().Options.UnsafeFPMath &&
16573               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16574             break;
16575           std::swap(LHS, RHS);
16576         }
16577         Opcode = X86ISD::FMAX;
16578         break;
16579       case ISD::SETUGE:
16580         // Converting this to a max would handle both negative zeros and NaNs
16581         // incorrectly, but we can swap the operands to fix both.
16582         std::swap(LHS, RHS);
16583       case ISD::SETOGT:
16584       case ISD::SETGT:
16585       case ISD::SETGE:
16586         Opcode = X86ISD::FMAX;
16587         break;
16588       }
16589     // Check for x CC y ? y : x -- a min/max with reversed arms.
16590     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16591                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16592       switch (CC) {
16593       default: break;
16594       case ISD::SETOGE:
16595         // Converting this to a min would handle comparisons between positive
16596         // and negative zero incorrectly, and swapping the operands would
16597         // cause it to handle NaNs incorrectly.
16598         if (!DAG.getTarget().Options.UnsafeFPMath &&
16599             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16600           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16601             break;
16602           std::swap(LHS, RHS);
16603         }
16604         Opcode = X86ISD::FMIN;
16605         break;
16606       case ISD::SETUGT:
16607         // Converting this to a min would handle NaNs incorrectly.
16608         if (!DAG.getTarget().Options.UnsafeFPMath &&
16609             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16610           break;
16611         Opcode = X86ISD::FMIN;
16612         break;
16613       case ISD::SETUGE:
16614         // Converting this to a min would handle both negative zeros and NaNs
16615         // incorrectly, but we can swap the operands to fix both.
16616         std::swap(LHS, RHS);
16617       case ISD::SETOGT:
16618       case ISD::SETGT:
16619       case ISD::SETGE:
16620         Opcode = X86ISD::FMIN;
16621         break;
16622
16623       case ISD::SETULT:
16624         // Converting this to a max would handle NaNs incorrectly.
16625         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16626           break;
16627         Opcode = X86ISD::FMAX;
16628         break;
16629       case ISD::SETOLE:
16630         // Converting this to a max would handle comparisons between positive
16631         // and negative zero incorrectly, and swapping the operands would
16632         // cause it to handle NaNs incorrectly.
16633         if (!DAG.getTarget().Options.UnsafeFPMath &&
16634             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16635           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16636             break;
16637           std::swap(LHS, RHS);
16638         }
16639         Opcode = X86ISD::FMAX;
16640         break;
16641       case ISD::SETULE:
16642         // Converting this to a max would handle both negative zeros and NaNs
16643         // incorrectly, but we can swap the operands to fix both.
16644         std::swap(LHS, RHS);
16645       case ISD::SETOLT:
16646       case ISD::SETLT:
16647       case ISD::SETLE:
16648         Opcode = X86ISD::FMAX;
16649         break;
16650       }
16651     }
16652
16653     if (Opcode)
16654       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16655   }
16656
16657   if (Subtarget->hasAVX512() && VT.isVector() &&
16658       Cond.getValueType().getVectorElementType() == MVT::i1) {
16659     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16660     // lowering on AVX-512. In this case we convert it to
16661     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16662     // The same situation for all 128 and 256-bit vectors of i8 and i16
16663     EVT OpVT = LHS.getValueType();
16664     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16665         (OpVT.getVectorElementType() == MVT::i8 ||
16666          OpVT.getVectorElementType() == MVT::i16)) {
16667       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16668       DCI.AddToWorklist(Cond.getNode());
16669       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16670     }
16671   }
16672   // If this is a select between two integer constants, try to do some
16673   // optimizations.
16674   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16675     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16676       // Don't do this for crazy integer types.
16677       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16678         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16679         // so that TrueC (the true value) is larger than FalseC.
16680         bool NeedsCondInvert = false;
16681
16682         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16683             // Efficiently invertible.
16684             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16685              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16686               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16687           NeedsCondInvert = true;
16688           std::swap(TrueC, FalseC);
16689         }
16690
16691         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16692         if (FalseC->getAPIntValue() == 0 &&
16693             TrueC->getAPIntValue().isPowerOf2()) {
16694           if (NeedsCondInvert) // Invert the condition if needed.
16695             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16696                                DAG.getConstant(1, Cond.getValueType()));
16697
16698           // Zero extend the condition if needed.
16699           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16700
16701           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16702           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16703                              DAG.getConstant(ShAmt, MVT::i8));
16704         }
16705
16706         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16707         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16708           if (NeedsCondInvert) // Invert the condition if needed.
16709             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16710                                DAG.getConstant(1, Cond.getValueType()));
16711
16712           // Zero extend the condition if needed.
16713           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16714                              FalseC->getValueType(0), Cond);
16715           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16716                              SDValue(FalseC, 0));
16717         }
16718
16719         // Optimize cases that will turn into an LEA instruction.  This requires
16720         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16721         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16722           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16723           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16724
16725           bool isFastMultiplier = false;
16726           if (Diff < 10) {
16727             switch ((unsigned char)Diff) {
16728               default: break;
16729               case 1:  // result = add base, cond
16730               case 2:  // result = lea base(    , cond*2)
16731               case 3:  // result = lea base(cond, cond*2)
16732               case 4:  // result = lea base(    , cond*4)
16733               case 5:  // result = lea base(cond, cond*4)
16734               case 8:  // result = lea base(    , cond*8)
16735               case 9:  // result = lea base(cond, cond*8)
16736                 isFastMultiplier = true;
16737                 break;
16738             }
16739           }
16740
16741           if (isFastMultiplier) {
16742             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16743             if (NeedsCondInvert) // Invert the condition if needed.
16744               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16745                                  DAG.getConstant(1, Cond.getValueType()));
16746
16747             // Zero extend the condition if needed.
16748             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16749                                Cond);
16750             // Scale the condition by the difference.
16751             if (Diff != 1)
16752               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16753                                  DAG.getConstant(Diff, Cond.getValueType()));
16754
16755             // Add the base if non-zero.
16756             if (FalseC->getAPIntValue() != 0)
16757               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16758                                  SDValue(FalseC, 0));
16759             return Cond;
16760           }
16761         }
16762       }
16763   }
16764
16765   // Canonicalize max and min:
16766   // (x > y) ? x : y -> (x >= y) ? x : y
16767   // (x < y) ? x : y -> (x <= y) ? x : y
16768   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16769   // the need for an extra compare
16770   // against zero. e.g.
16771   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16772   // subl   %esi, %edi
16773   // testl  %edi, %edi
16774   // movl   $0, %eax
16775   // cmovgl %edi, %eax
16776   // =>
16777   // xorl   %eax, %eax
16778   // subl   %esi, $edi
16779   // cmovsl %eax, %edi
16780   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16781       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16782       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16783     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16784     switch (CC) {
16785     default: break;
16786     case ISD::SETLT:
16787     case ISD::SETGT: {
16788       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16789       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16790                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16791       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16792     }
16793     }
16794   }
16795
16796   // Early exit check
16797   if (!TLI.isTypeLegal(VT))
16798     return SDValue();
16799
16800   // Match VSELECTs into subs with unsigned saturation.
16801   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16802       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16803       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16804        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16805     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16806
16807     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16808     // left side invert the predicate to simplify logic below.
16809     SDValue Other;
16810     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16811       Other = RHS;
16812       CC = ISD::getSetCCInverse(CC, true);
16813     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16814       Other = LHS;
16815     }
16816
16817     if (Other.getNode() && Other->getNumOperands() == 2 &&
16818         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16819       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16820       SDValue CondRHS = Cond->getOperand(1);
16821
16822       // Look for a general sub with unsigned saturation first.
16823       // x >= y ? x-y : 0 --> subus x, y
16824       // x >  y ? x-y : 0 --> subus x, y
16825       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16826           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16827         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16828
16829       // If the RHS is a constant we have to reverse the const canonicalization.
16830       // x > C-1 ? x+-C : 0 --> subus x, C
16831       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16832           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16833         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16834         if (CondRHS.getConstantOperandVal(0) == -A-1)
16835           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16836                              DAG.getConstant(-A, VT));
16837       }
16838
16839       // Another special case: If C was a sign bit, the sub has been
16840       // canonicalized into a xor.
16841       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16842       //        it's safe to decanonicalize the xor?
16843       // x s< 0 ? x^C : 0 --> subus x, C
16844       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16845           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16846           isSplatVector(OpRHS.getNode())) {
16847         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16848         if (A.isSignBit())
16849           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16850       }
16851     }
16852   }
16853
16854   // Try to match a min/max vector operation.
16855   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
16856     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16857     unsigned Opc = ret.first;
16858     bool NeedSplit = ret.second;
16859
16860     if (Opc && NeedSplit) {
16861       unsigned NumElems = VT.getVectorNumElements();
16862       // Extract the LHS vectors
16863       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16864       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16865
16866       // Extract the RHS vectors
16867       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16868       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16869
16870       // Create min/max for each subvector
16871       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16872       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16873
16874       // Merge the result
16875       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16876     } else if (Opc)
16877       return DAG.getNode(Opc, DL, VT, LHS, RHS);
16878   }
16879
16880   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16881   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16882       // Check if SETCC has already been promoted
16883       TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
16884
16885     assert(Cond.getValueType().isVector() &&
16886            "vector select expects a vector selector!");
16887
16888     EVT IntVT = Cond.getValueType();
16889     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16890     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16891
16892     if (!TValIsAllOnes && !FValIsAllZeros) {
16893       // Try invert the condition if true value is not all 1s and false value
16894       // is not all 0s.
16895       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16896       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16897
16898       if (TValIsAllZeros || FValIsAllOnes) {
16899         SDValue CC = Cond.getOperand(2);
16900         ISD::CondCode NewCC =
16901           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16902                                Cond.getOperand(0).getValueType().isInteger());
16903         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16904         std::swap(LHS, RHS);
16905         TValIsAllOnes = FValIsAllOnes;
16906         FValIsAllZeros = TValIsAllZeros;
16907       }
16908     }
16909
16910     if (TValIsAllOnes || FValIsAllZeros) {
16911       SDValue Ret;
16912
16913       if (TValIsAllOnes && FValIsAllZeros)
16914         Ret = Cond;
16915       else if (TValIsAllOnes)
16916         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16917                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16918       else if (FValIsAllZeros)
16919         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16920                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16921
16922       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16923     }
16924   }
16925
16926   // If we know that this node is legal then we know that it is going to be
16927   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16928   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16929   // to simplify previous instructions.
16930   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16931       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16932     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16933
16934     // Don't optimize vector selects that map to mask-registers.
16935     if (BitWidth == 1)
16936       return SDValue();
16937
16938     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16939     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16940
16941     APInt KnownZero, KnownOne;
16942     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16943                                           DCI.isBeforeLegalizeOps());
16944     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16945         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16946       DCI.CommitTargetLoweringOpt(TLO);
16947   }
16948
16949   return SDValue();
16950 }
16951
16952 // Check whether a boolean test is testing a boolean value generated by
16953 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16954 // code.
16955 //
16956 // Simplify the following patterns:
16957 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16958 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16959 // to (Op EFLAGS Cond)
16960 //
16961 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16962 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16963 // to (Op EFLAGS !Cond)
16964 //
16965 // where Op could be BRCOND or CMOV.
16966 //
16967 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16968   // Quit if not CMP and SUB with its value result used.
16969   if (Cmp.getOpcode() != X86ISD::CMP &&
16970       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16971       return SDValue();
16972
16973   // Quit if not used as a boolean value.
16974   if (CC != X86::COND_E && CC != X86::COND_NE)
16975     return SDValue();
16976
16977   // Check CMP operands. One of them should be 0 or 1 and the other should be
16978   // an SetCC or extended from it.
16979   SDValue Op1 = Cmp.getOperand(0);
16980   SDValue Op2 = Cmp.getOperand(1);
16981
16982   SDValue SetCC;
16983   const ConstantSDNode* C = 0;
16984   bool needOppositeCond = (CC == X86::COND_E);
16985   bool checkAgainstTrue = false; // Is it a comparison against 1?
16986
16987   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16988     SetCC = Op2;
16989   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16990     SetCC = Op1;
16991   else // Quit if all operands are not constants.
16992     return SDValue();
16993
16994   if (C->getZExtValue() == 1) {
16995     needOppositeCond = !needOppositeCond;
16996     checkAgainstTrue = true;
16997   } else if (C->getZExtValue() != 0)
16998     // Quit if the constant is neither 0 or 1.
16999     return SDValue();
17000
17001   bool truncatedToBoolWithAnd = false;
17002   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17003   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17004          SetCC.getOpcode() == ISD::TRUNCATE ||
17005          SetCC.getOpcode() == ISD::AND) {
17006     if (SetCC.getOpcode() == ISD::AND) {
17007       int OpIdx = -1;
17008       ConstantSDNode *CS;
17009       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17010           CS->getZExtValue() == 1)
17011         OpIdx = 1;
17012       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17013           CS->getZExtValue() == 1)
17014         OpIdx = 0;
17015       if (OpIdx == -1)
17016         break;
17017       SetCC = SetCC.getOperand(OpIdx);
17018       truncatedToBoolWithAnd = true;
17019     } else
17020       SetCC = SetCC.getOperand(0);
17021   }
17022
17023   switch (SetCC.getOpcode()) {
17024   case X86ISD::SETCC_CARRY:
17025     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17026     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17027     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17028     // truncated to i1 using 'and'.
17029     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17030       break;
17031     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17032            "Invalid use of SETCC_CARRY!");
17033     // FALL THROUGH
17034   case X86ISD::SETCC:
17035     // Set the condition code or opposite one if necessary.
17036     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17037     if (needOppositeCond)
17038       CC = X86::GetOppositeBranchCondition(CC);
17039     return SetCC.getOperand(1);
17040   case X86ISD::CMOV: {
17041     // Check whether false/true value has canonical one, i.e. 0 or 1.
17042     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17043     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17044     // Quit if true value is not a constant.
17045     if (!TVal)
17046       return SDValue();
17047     // Quit if false value is not a constant.
17048     if (!FVal) {
17049       SDValue Op = SetCC.getOperand(0);
17050       // Skip 'zext' or 'trunc' node.
17051       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17052           Op.getOpcode() == ISD::TRUNCATE)
17053         Op = Op.getOperand(0);
17054       // A special case for rdrand/rdseed, where 0 is set if false cond is
17055       // found.
17056       if ((Op.getOpcode() != X86ISD::RDRAND &&
17057            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17058         return SDValue();
17059     }
17060     // Quit if false value is not the constant 0 or 1.
17061     bool FValIsFalse = true;
17062     if (FVal && FVal->getZExtValue() != 0) {
17063       if (FVal->getZExtValue() != 1)
17064         return SDValue();
17065       // If FVal is 1, opposite cond is needed.
17066       needOppositeCond = !needOppositeCond;
17067       FValIsFalse = false;
17068     }
17069     // Quit if TVal is not the constant opposite of FVal.
17070     if (FValIsFalse && TVal->getZExtValue() != 1)
17071       return SDValue();
17072     if (!FValIsFalse && TVal->getZExtValue() != 0)
17073       return SDValue();
17074     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17075     if (needOppositeCond)
17076       CC = X86::GetOppositeBranchCondition(CC);
17077     return SetCC.getOperand(3);
17078   }
17079   }
17080
17081   return SDValue();
17082 }
17083
17084 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17085 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17086                                   TargetLowering::DAGCombinerInfo &DCI,
17087                                   const X86Subtarget *Subtarget) {
17088   SDLoc DL(N);
17089
17090   // If the flag operand isn't dead, don't touch this CMOV.
17091   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17092     return SDValue();
17093
17094   SDValue FalseOp = N->getOperand(0);
17095   SDValue TrueOp = N->getOperand(1);
17096   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17097   SDValue Cond = N->getOperand(3);
17098
17099   if (CC == X86::COND_E || CC == X86::COND_NE) {
17100     switch (Cond.getOpcode()) {
17101     default: break;
17102     case X86ISD::BSR:
17103     case X86ISD::BSF:
17104       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17105       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17106         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17107     }
17108   }
17109
17110   SDValue Flags;
17111
17112   Flags = checkBoolTestSetCCCombine(Cond, CC);
17113   if (Flags.getNode() &&
17114       // Extra check as FCMOV only supports a subset of X86 cond.
17115       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17116     SDValue Ops[] = { FalseOp, TrueOp,
17117                       DAG.getConstant(CC, MVT::i8), Flags };
17118     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17119                        Ops, array_lengthof(Ops));
17120   }
17121
17122   // If this is a select between two integer constants, try to do some
17123   // optimizations.  Note that the operands are ordered the opposite of SELECT
17124   // operands.
17125   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17126     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17127       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17128       // larger than FalseC (the false value).
17129       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17130         CC = X86::GetOppositeBranchCondition(CC);
17131         std::swap(TrueC, FalseC);
17132         std::swap(TrueOp, FalseOp);
17133       }
17134
17135       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17136       // This is efficient for any integer data type (including i8/i16) and
17137       // shift amount.
17138       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17139         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17140                            DAG.getConstant(CC, MVT::i8), Cond);
17141
17142         // Zero extend the condition if needed.
17143         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17144
17145         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17146         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17147                            DAG.getConstant(ShAmt, MVT::i8));
17148         if (N->getNumValues() == 2)  // Dead flag value?
17149           return DCI.CombineTo(N, Cond, SDValue());
17150         return Cond;
17151       }
17152
17153       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17154       // for any integer data type, including i8/i16.
17155       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17156         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17157                            DAG.getConstant(CC, MVT::i8), Cond);
17158
17159         // Zero extend the condition if needed.
17160         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17161                            FalseC->getValueType(0), Cond);
17162         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17163                            SDValue(FalseC, 0));
17164
17165         if (N->getNumValues() == 2)  // Dead flag value?
17166           return DCI.CombineTo(N, Cond, SDValue());
17167         return Cond;
17168       }
17169
17170       // Optimize cases that will turn into an LEA instruction.  This requires
17171       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17172       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17173         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17174         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17175
17176         bool isFastMultiplier = false;
17177         if (Diff < 10) {
17178           switch ((unsigned char)Diff) {
17179           default: break;
17180           case 1:  // result = add base, cond
17181           case 2:  // result = lea base(    , cond*2)
17182           case 3:  // result = lea base(cond, cond*2)
17183           case 4:  // result = lea base(    , cond*4)
17184           case 5:  // result = lea base(cond, cond*4)
17185           case 8:  // result = lea base(    , cond*8)
17186           case 9:  // result = lea base(cond, cond*8)
17187             isFastMultiplier = true;
17188             break;
17189           }
17190         }
17191
17192         if (isFastMultiplier) {
17193           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17194           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17195                              DAG.getConstant(CC, MVT::i8), Cond);
17196           // Zero extend the condition if needed.
17197           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17198                              Cond);
17199           // Scale the condition by the difference.
17200           if (Diff != 1)
17201             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17202                                DAG.getConstant(Diff, Cond.getValueType()));
17203
17204           // Add the base if non-zero.
17205           if (FalseC->getAPIntValue() != 0)
17206             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17207                                SDValue(FalseC, 0));
17208           if (N->getNumValues() == 2)  // Dead flag value?
17209             return DCI.CombineTo(N, Cond, SDValue());
17210           return Cond;
17211         }
17212       }
17213     }
17214   }
17215
17216   // Handle these cases:
17217   //   (select (x != c), e, c) -> select (x != c), e, x),
17218   //   (select (x == c), c, e) -> select (x == c), x, e)
17219   // where the c is an integer constant, and the "select" is the combination
17220   // of CMOV and CMP.
17221   //
17222   // The rationale for this change is that the conditional-move from a constant
17223   // needs two instructions, however, conditional-move from a register needs
17224   // only one instruction.
17225   //
17226   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17227   //  some instruction-combining opportunities. This opt needs to be
17228   //  postponed as late as possible.
17229   //
17230   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17231     // the DCI.xxxx conditions are provided to postpone the optimization as
17232     // late as possible.
17233
17234     ConstantSDNode *CmpAgainst = 0;
17235     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17236         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17237         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17238
17239       if (CC == X86::COND_NE &&
17240           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17241         CC = X86::GetOppositeBranchCondition(CC);
17242         std::swap(TrueOp, FalseOp);
17243       }
17244
17245       if (CC == X86::COND_E &&
17246           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17247         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17248                           DAG.getConstant(CC, MVT::i8), Cond };
17249         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17250                            array_lengthof(Ops));
17251       }
17252     }
17253   }
17254
17255   return SDValue();
17256 }
17257
17258 /// PerformMulCombine - Optimize a single multiply with constant into two
17259 /// in order to implement it with two cheaper instructions, e.g.
17260 /// LEA + SHL, LEA + LEA.
17261 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17262                                  TargetLowering::DAGCombinerInfo &DCI) {
17263   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17264     return SDValue();
17265
17266   EVT VT = N->getValueType(0);
17267   if (VT != MVT::i64)
17268     return SDValue();
17269
17270   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17271   if (!C)
17272     return SDValue();
17273   uint64_t MulAmt = C->getZExtValue();
17274   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17275     return SDValue();
17276
17277   uint64_t MulAmt1 = 0;
17278   uint64_t MulAmt2 = 0;
17279   if ((MulAmt % 9) == 0) {
17280     MulAmt1 = 9;
17281     MulAmt2 = MulAmt / 9;
17282   } else if ((MulAmt % 5) == 0) {
17283     MulAmt1 = 5;
17284     MulAmt2 = MulAmt / 5;
17285   } else if ((MulAmt % 3) == 0) {
17286     MulAmt1 = 3;
17287     MulAmt2 = MulAmt / 3;
17288   }
17289   if (MulAmt2 &&
17290       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17291     SDLoc DL(N);
17292
17293     if (isPowerOf2_64(MulAmt2) &&
17294         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17295       // If second multiplifer is pow2, issue it first. We want the multiply by
17296       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17297       // is an add.
17298       std::swap(MulAmt1, MulAmt2);
17299
17300     SDValue NewMul;
17301     if (isPowerOf2_64(MulAmt1))
17302       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17303                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17304     else
17305       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17306                            DAG.getConstant(MulAmt1, VT));
17307
17308     if (isPowerOf2_64(MulAmt2))
17309       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17310                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17311     else
17312       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17313                            DAG.getConstant(MulAmt2, VT));
17314
17315     // Do not add new nodes to DAG combiner worklist.
17316     DCI.CombineTo(N, NewMul, false);
17317   }
17318   return SDValue();
17319 }
17320
17321 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17322   SDValue N0 = N->getOperand(0);
17323   SDValue N1 = N->getOperand(1);
17324   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17325   EVT VT = N0.getValueType();
17326
17327   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17328   // since the result of setcc_c is all zero's or all ones.
17329   if (VT.isInteger() && !VT.isVector() &&
17330       N1C && N0.getOpcode() == ISD::AND &&
17331       N0.getOperand(1).getOpcode() == ISD::Constant) {
17332     SDValue N00 = N0.getOperand(0);
17333     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17334         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17335           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17336          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17337       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17338       APInt ShAmt = N1C->getAPIntValue();
17339       Mask = Mask.shl(ShAmt);
17340       if (Mask != 0)
17341         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17342                            N00, DAG.getConstant(Mask, VT));
17343     }
17344   }
17345
17346   // Hardware support for vector shifts is sparse which makes us scalarize the
17347   // vector operations in many cases. Also, on sandybridge ADD is faster than
17348   // shl.
17349   // (shl V, 1) -> add V,V
17350   if (isSplatVector(N1.getNode())) {
17351     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17352     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17353     // We shift all of the values by one. In many cases we do not have
17354     // hardware support for this operation. This is better expressed as an ADD
17355     // of two values.
17356     if (N1C && (1 == N1C->getZExtValue())) {
17357       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17358     }
17359   }
17360
17361   return SDValue();
17362 }
17363
17364 /// \brief Returns a vector of 0s if the node in input is a vector logical
17365 /// shift by a constant amount which is known to be bigger than or equal 
17366 /// to the vector element size in bits.
17367 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17368                                       const X86Subtarget *Subtarget) {
17369   EVT VT = N->getValueType(0);
17370
17371   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17372       (!Subtarget->hasInt256() ||
17373        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17374     return SDValue();
17375
17376   SDValue Amt = N->getOperand(1);
17377   SDLoc DL(N);
17378   if (isSplatVector(Amt.getNode())) {
17379     SDValue SclrAmt = Amt->getOperand(0);
17380     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17381       APInt ShiftAmt = C->getAPIntValue();
17382       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17383
17384       // SSE2/AVX2 logical shifts always return a vector of 0s
17385       // if the shift amount is bigger than or equal to 
17386       // the element size. The constant shift amount will be
17387       // encoded as a 8-bit immediate.
17388       if (ShiftAmt.trunc(8).uge(MaxAmount))
17389         return getZeroVector(VT, Subtarget, DAG, DL);
17390     }
17391   }
17392
17393   return SDValue();
17394 }
17395
17396 /// PerformShiftCombine - Combine shifts.
17397 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17398                                    TargetLowering::DAGCombinerInfo &DCI,
17399                                    const X86Subtarget *Subtarget) {
17400   if (N->getOpcode() == ISD::SHL) {
17401     SDValue V = PerformSHLCombine(N, DAG);
17402     if (V.getNode()) return V;
17403   }
17404
17405   if (N->getOpcode() != ISD::SRA) {
17406     // Try to fold this logical shift into a zero vector.
17407     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17408     if (V.getNode()) return V;
17409   }
17410
17411   return SDValue();
17412 }
17413
17414 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17415 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17416 // and friends.  Likewise for OR -> CMPNEQSS.
17417 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17418                             TargetLowering::DAGCombinerInfo &DCI,
17419                             const X86Subtarget *Subtarget) {
17420   unsigned opcode;
17421
17422   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17423   // we're requiring SSE2 for both.
17424   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17425     SDValue N0 = N->getOperand(0);
17426     SDValue N1 = N->getOperand(1);
17427     SDValue CMP0 = N0->getOperand(1);
17428     SDValue CMP1 = N1->getOperand(1);
17429     SDLoc DL(N);
17430
17431     // The SETCCs should both refer to the same CMP.
17432     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17433       return SDValue();
17434
17435     SDValue CMP00 = CMP0->getOperand(0);
17436     SDValue CMP01 = CMP0->getOperand(1);
17437     EVT     VT    = CMP00.getValueType();
17438
17439     if (VT == MVT::f32 || VT == MVT::f64) {
17440       bool ExpectingFlags = false;
17441       // Check for any users that want flags:
17442       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17443            !ExpectingFlags && UI != UE; ++UI)
17444         switch (UI->getOpcode()) {
17445         default:
17446         case ISD::BR_CC:
17447         case ISD::BRCOND:
17448         case ISD::SELECT:
17449           ExpectingFlags = true;
17450           break;
17451         case ISD::CopyToReg:
17452         case ISD::SIGN_EXTEND:
17453         case ISD::ZERO_EXTEND:
17454         case ISD::ANY_EXTEND:
17455           break;
17456         }
17457
17458       if (!ExpectingFlags) {
17459         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17460         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17461
17462         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17463           X86::CondCode tmp = cc0;
17464           cc0 = cc1;
17465           cc1 = tmp;
17466         }
17467
17468         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17469             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17470           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17471           X86ISD::NodeType NTOperator = is64BitFP ?
17472             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17473           // FIXME: need symbolic constants for these magic numbers.
17474           // See X86ATTInstPrinter.cpp:printSSECC().
17475           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17476           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17477                                               DAG.getConstant(x86cc, MVT::i8));
17478           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17479                                               OnesOrZeroesF);
17480           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17481                                       DAG.getConstant(1, MVT::i32));
17482           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17483           return OneBitOfTruth;
17484         }
17485       }
17486     }
17487   }
17488   return SDValue();
17489 }
17490
17491 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17492 /// so it can be folded inside ANDNP.
17493 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17494   EVT VT = N->getValueType(0);
17495
17496   // Match direct AllOnes for 128 and 256-bit vectors
17497   if (ISD::isBuildVectorAllOnes(N))
17498     return true;
17499
17500   // Look through a bit convert.
17501   if (N->getOpcode() == ISD::BITCAST)
17502     N = N->getOperand(0).getNode();
17503
17504   // Sometimes the operand may come from a insert_subvector building a 256-bit
17505   // allones vector
17506   if (VT.is256BitVector() &&
17507       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17508     SDValue V1 = N->getOperand(0);
17509     SDValue V2 = N->getOperand(1);
17510
17511     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17512         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17513         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17514         ISD::isBuildVectorAllOnes(V2.getNode()))
17515       return true;
17516   }
17517
17518   return false;
17519 }
17520
17521 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17522 // register. In most cases we actually compare or select YMM-sized registers
17523 // and mixing the two types creates horrible code. This method optimizes
17524 // some of the transition sequences.
17525 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17526                                  TargetLowering::DAGCombinerInfo &DCI,
17527                                  const X86Subtarget *Subtarget) {
17528   EVT VT = N->getValueType(0);
17529   if (!VT.is256BitVector())
17530     return SDValue();
17531
17532   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17533           N->getOpcode() == ISD::ZERO_EXTEND ||
17534           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17535
17536   SDValue Narrow = N->getOperand(0);
17537   EVT NarrowVT = Narrow->getValueType(0);
17538   if (!NarrowVT.is128BitVector())
17539     return SDValue();
17540
17541   if (Narrow->getOpcode() != ISD::XOR &&
17542       Narrow->getOpcode() != ISD::AND &&
17543       Narrow->getOpcode() != ISD::OR)
17544     return SDValue();
17545
17546   SDValue N0  = Narrow->getOperand(0);
17547   SDValue N1  = Narrow->getOperand(1);
17548   SDLoc DL(Narrow);
17549
17550   // The Left side has to be a trunc.
17551   if (N0.getOpcode() != ISD::TRUNCATE)
17552     return SDValue();
17553
17554   // The type of the truncated inputs.
17555   EVT WideVT = N0->getOperand(0)->getValueType(0);
17556   if (WideVT != VT)
17557     return SDValue();
17558
17559   // The right side has to be a 'trunc' or a constant vector.
17560   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17561   bool RHSConst = (isSplatVector(N1.getNode()) &&
17562                    isa<ConstantSDNode>(N1->getOperand(0)));
17563   if (!RHSTrunc && !RHSConst)
17564     return SDValue();
17565
17566   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17567
17568   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17569     return SDValue();
17570
17571   // Set N0 and N1 to hold the inputs to the new wide operation.
17572   N0 = N0->getOperand(0);
17573   if (RHSConst) {
17574     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17575                      N1->getOperand(0));
17576     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17577     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17578   } else if (RHSTrunc) {
17579     N1 = N1->getOperand(0);
17580   }
17581
17582   // Generate the wide operation.
17583   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17584   unsigned Opcode = N->getOpcode();
17585   switch (Opcode) {
17586   case ISD::ANY_EXTEND:
17587     return Op;
17588   case ISD::ZERO_EXTEND: {
17589     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17590     APInt Mask = APInt::getAllOnesValue(InBits);
17591     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17592     return DAG.getNode(ISD::AND, DL, VT,
17593                        Op, DAG.getConstant(Mask, VT));
17594   }
17595   case ISD::SIGN_EXTEND:
17596     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17597                        Op, DAG.getValueType(NarrowVT));
17598   default:
17599     llvm_unreachable("Unexpected opcode");
17600   }
17601 }
17602
17603 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17604                                  TargetLowering::DAGCombinerInfo &DCI,
17605                                  const X86Subtarget *Subtarget) {
17606   EVT VT = N->getValueType(0);
17607   if (DCI.isBeforeLegalizeOps())
17608     return SDValue();
17609
17610   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17611   if (R.getNode())
17612     return R;
17613
17614   // Create BLSI, BLSR, and BZHI instructions
17615   // BLSI is X & (-X)
17616   // BLSR is X & (X-1)
17617   // BZHI is X & ((1 << Y) - 1)
17618   // BEXTR is ((X >> imm) & (2**size-1))
17619   if (VT == MVT::i32 || VT == MVT::i64) {
17620     SDValue N0 = N->getOperand(0);
17621     SDValue N1 = N->getOperand(1);
17622     SDLoc DL(N);
17623
17624     if (Subtarget->hasBMI()) {
17625       // Check LHS for neg
17626       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17627           isZero(N0.getOperand(0)))
17628         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17629
17630       // Check RHS for neg
17631       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17632           isZero(N1.getOperand(0)))
17633         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17634
17635       // Check LHS for X-1
17636       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17637           isAllOnes(N0.getOperand(1)))
17638         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17639
17640       // Check RHS for X-1
17641       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17642           isAllOnes(N1.getOperand(1)))
17643         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17644     }
17645
17646     if (Subtarget->hasBMI2()) {
17647       // Check for (and (add (shl 1, Y), -1), X)
17648       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17649         SDValue N00 = N0.getOperand(0);
17650         if (N00.getOpcode() == ISD::SHL) {
17651           SDValue N001 = N00.getOperand(1);
17652           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17653           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17654           if (C && C->getZExtValue() == 1)
17655             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17656         }
17657       }
17658
17659       // Check for (and X, (add (shl 1, Y), -1))
17660       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17661         SDValue N10 = N1.getOperand(0);
17662         if (N10.getOpcode() == ISD::SHL) {
17663           SDValue N101 = N10.getOperand(1);
17664           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17665           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17666           if (C && C->getZExtValue() == 1)
17667             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17668         }
17669       }
17670     }
17671
17672     // Check for BEXTR.
17673     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17674         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17675       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17676       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17677       if (MaskNode && ShiftNode) {
17678         uint64_t Mask = MaskNode->getZExtValue();
17679         uint64_t Shift = ShiftNode->getZExtValue();
17680         if (isMask_64(Mask)) {
17681           uint64_t MaskSize = CountPopulation_64(Mask);
17682           if (Shift + MaskSize <= VT.getSizeInBits())
17683             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17684                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17685         }
17686       }
17687     } // BEXTR
17688
17689     return SDValue();
17690   }
17691
17692   // Want to form ANDNP nodes:
17693   // 1) In the hopes of then easily combining them with OR and AND nodes
17694   //    to form PBLEND/PSIGN.
17695   // 2) To match ANDN packed intrinsics
17696   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17697     return SDValue();
17698
17699   SDValue N0 = N->getOperand(0);
17700   SDValue N1 = N->getOperand(1);
17701   SDLoc DL(N);
17702
17703   // Check LHS for vnot
17704   if (N0.getOpcode() == ISD::XOR &&
17705       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17706       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17707     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17708
17709   // Check RHS for vnot
17710   if (N1.getOpcode() == ISD::XOR &&
17711       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17712       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17713     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17714
17715   return SDValue();
17716 }
17717
17718 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17719                                 TargetLowering::DAGCombinerInfo &DCI,
17720                                 const X86Subtarget *Subtarget) {
17721   EVT VT = N->getValueType(0);
17722   if (DCI.isBeforeLegalizeOps())
17723     return SDValue();
17724
17725   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17726   if (R.getNode())
17727     return R;
17728
17729   SDValue N0 = N->getOperand(0);
17730   SDValue N1 = N->getOperand(1);
17731
17732   // look for psign/blend
17733   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17734     if (!Subtarget->hasSSSE3() ||
17735         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17736       return SDValue();
17737
17738     // Canonicalize pandn to RHS
17739     if (N0.getOpcode() == X86ISD::ANDNP)
17740       std::swap(N0, N1);
17741     // or (and (m, y), (pandn m, x))
17742     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17743       SDValue Mask = N1.getOperand(0);
17744       SDValue X    = N1.getOperand(1);
17745       SDValue Y;
17746       if (N0.getOperand(0) == Mask)
17747         Y = N0.getOperand(1);
17748       if (N0.getOperand(1) == Mask)
17749         Y = N0.getOperand(0);
17750
17751       // Check to see if the mask appeared in both the AND and ANDNP and
17752       if (!Y.getNode())
17753         return SDValue();
17754
17755       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17756       // Look through mask bitcast.
17757       if (Mask.getOpcode() == ISD::BITCAST)
17758         Mask = Mask.getOperand(0);
17759       if (X.getOpcode() == ISD::BITCAST)
17760         X = X.getOperand(0);
17761       if (Y.getOpcode() == ISD::BITCAST)
17762         Y = Y.getOperand(0);
17763
17764       EVT MaskVT = Mask.getValueType();
17765
17766       // Validate that the Mask operand is a vector sra node.
17767       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17768       // there is no psrai.b
17769       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17770       unsigned SraAmt = ~0;
17771       if (Mask.getOpcode() == ISD::SRA) {
17772         SDValue Amt = Mask.getOperand(1);
17773         if (isSplatVector(Amt.getNode())) {
17774           SDValue SclrAmt = Amt->getOperand(0);
17775           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17776             SraAmt = C->getZExtValue();
17777         }
17778       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17779         SDValue SraC = Mask.getOperand(1);
17780         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17781       }
17782       if ((SraAmt + 1) != EltBits)
17783         return SDValue();
17784
17785       SDLoc DL(N);
17786
17787       // Now we know we at least have a plendvb with the mask val.  See if
17788       // we can form a psignb/w/d.
17789       // psign = x.type == y.type == mask.type && y = sub(0, x);
17790       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17791           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17792           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17793         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17794                "Unsupported VT for PSIGN");
17795         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17796         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17797       }
17798       // PBLENDVB only available on SSE 4.1
17799       if (!Subtarget->hasSSE41())
17800         return SDValue();
17801
17802       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17803
17804       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17805       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17806       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17807       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17808       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17809     }
17810   }
17811
17812   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17813     return SDValue();
17814
17815   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17816   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17817     std::swap(N0, N1);
17818   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17819     return SDValue();
17820   if (!N0.hasOneUse() || !N1.hasOneUse())
17821     return SDValue();
17822
17823   SDValue ShAmt0 = N0.getOperand(1);
17824   if (ShAmt0.getValueType() != MVT::i8)
17825     return SDValue();
17826   SDValue ShAmt1 = N1.getOperand(1);
17827   if (ShAmt1.getValueType() != MVT::i8)
17828     return SDValue();
17829   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17830     ShAmt0 = ShAmt0.getOperand(0);
17831   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17832     ShAmt1 = ShAmt1.getOperand(0);
17833
17834   SDLoc DL(N);
17835   unsigned Opc = X86ISD::SHLD;
17836   SDValue Op0 = N0.getOperand(0);
17837   SDValue Op1 = N1.getOperand(0);
17838   if (ShAmt0.getOpcode() == ISD::SUB) {
17839     Opc = X86ISD::SHRD;
17840     std::swap(Op0, Op1);
17841     std::swap(ShAmt0, ShAmt1);
17842   }
17843
17844   unsigned Bits = VT.getSizeInBits();
17845   if (ShAmt1.getOpcode() == ISD::SUB) {
17846     SDValue Sum = ShAmt1.getOperand(0);
17847     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17848       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17849       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17850         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17851       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17852         return DAG.getNode(Opc, DL, VT,
17853                            Op0, Op1,
17854                            DAG.getNode(ISD::TRUNCATE, DL,
17855                                        MVT::i8, ShAmt0));
17856     }
17857   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17858     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17859     if (ShAmt0C &&
17860         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17861       return DAG.getNode(Opc, DL, VT,
17862                          N0.getOperand(0), N1.getOperand(0),
17863                          DAG.getNode(ISD::TRUNCATE, DL,
17864                                        MVT::i8, ShAmt0));
17865   }
17866
17867   return SDValue();
17868 }
17869
17870 // Generate NEG and CMOV for integer abs.
17871 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17872   EVT VT = N->getValueType(0);
17873
17874   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17875   // 8-bit integer abs to NEG and CMOV.
17876   if (VT.isInteger() && VT.getSizeInBits() == 8)
17877     return SDValue();
17878
17879   SDValue N0 = N->getOperand(0);
17880   SDValue N1 = N->getOperand(1);
17881   SDLoc DL(N);
17882
17883   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17884   // and change it to SUB and CMOV.
17885   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17886       N0.getOpcode() == ISD::ADD &&
17887       N0.getOperand(1) == N1 &&
17888       N1.getOpcode() == ISD::SRA &&
17889       N1.getOperand(0) == N0.getOperand(0))
17890     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17891       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17892         // Generate SUB & CMOV.
17893         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17894                                   DAG.getConstant(0, VT), N0.getOperand(0));
17895
17896         SDValue Ops[] = { N0.getOperand(0), Neg,
17897                           DAG.getConstant(X86::COND_GE, MVT::i8),
17898                           SDValue(Neg.getNode(), 1) };
17899         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17900                            Ops, array_lengthof(Ops));
17901       }
17902   return SDValue();
17903 }
17904
17905 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17906 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17907                                  TargetLowering::DAGCombinerInfo &DCI,
17908                                  const X86Subtarget *Subtarget) {
17909   EVT VT = N->getValueType(0);
17910   if (DCI.isBeforeLegalizeOps())
17911     return SDValue();
17912
17913   if (Subtarget->hasCMov()) {
17914     SDValue RV = performIntegerAbsCombine(N, DAG);
17915     if (RV.getNode())
17916       return RV;
17917   }
17918
17919   // Try forming BMI if it is available.
17920   if (!Subtarget->hasBMI())
17921     return SDValue();
17922
17923   if (VT != MVT::i32 && VT != MVT::i64)
17924     return SDValue();
17925
17926   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17927
17928   // Create BLSMSK instructions by finding X ^ (X-1)
17929   SDValue N0 = N->getOperand(0);
17930   SDValue N1 = N->getOperand(1);
17931   SDLoc DL(N);
17932
17933   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17934       isAllOnes(N0.getOperand(1)))
17935     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17936
17937   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17938       isAllOnes(N1.getOperand(1)))
17939     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17940
17941   return SDValue();
17942 }
17943
17944 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17945 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17946                                   TargetLowering::DAGCombinerInfo &DCI,
17947                                   const X86Subtarget *Subtarget) {
17948   LoadSDNode *Ld = cast<LoadSDNode>(N);
17949   EVT RegVT = Ld->getValueType(0);
17950   EVT MemVT = Ld->getMemoryVT();
17951   SDLoc dl(Ld);
17952   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17953   unsigned RegSz = RegVT.getSizeInBits();
17954
17955   // On Sandybridge unaligned 256bit loads are inefficient.
17956   ISD::LoadExtType Ext = Ld->getExtensionType();
17957   unsigned Alignment = Ld->getAlignment();
17958   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17959   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17960       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17961     unsigned NumElems = RegVT.getVectorNumElements();
17962     if (NumElems < 2)
17963       return SDValue();
17964
17965     SDValue Ptr = Ld->getBasePtr();
17966     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17967
17968     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17969                                   NumElems/2);
17970     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17971                                 Ld->getPointerInfo(), Ld->isVolatile(),
17972                                 Ld->isNonTemporal(), Ld->isInvariant(),
17973                                 Alignment);
17974     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17975     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17976                                 Ld->getPointerInfo(), Ld->isVolatile(),
17977                                 Ld->isNonTemporal(), Ld->isInvariant(),
17978                                 std::min(16U, Alignment));
17979     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17980                              Load1.getValue(1),
17981                              Load2.getValue(1));
17982
17983     SDValue NewVec = DAG.getUNDEF(RegVT);
17984     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17985     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17986     return DCI.CombineTo(N, NewVec, TF, true);
17987   }
17988
17989   // If this is a vector EXT Load then attempt to optimize it using a
17990   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17991   // expansion is still better than scalar code.
17992   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17993   // emit a shuffle and a arithmetic shift.
17994   // TODO: It is possible to support ZExt by zeroing the undef values
17995   // during the shuffle phase or after the shuffle.
17996   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17997       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17998     assert(MemVT != RegVT && "Cannot extend to the same type");
17999     assert(MemVT.isVector() && "Must load a vector from memory");
18000
18001     unsigned NumElems = RegVT.getVectorNumElements();
18002     unsigned MemSz = MemVT.getSizeInBits();
18003     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18004
18005     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18006       return SDValue();
18007
18008     // All sizes must be a power of two.
18009     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18010       return SDValue();
18011
18012     // Attempt to load the original value using scalar loads.
18013     // Find the largest scalar type that divides the total loaded size.
18014     MVT SclrLoadTy = MVT::i8;
18015     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18016          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18017       MVT Tp = (MVT::SimpleValueType)tp;
18018       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18019         SclrLoadTy = Tp;
18020       }
18021     }
18022
18023     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18024     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18025         (64 <= MemSz))
18026       SclrLoadTy = MVT::f64;
18027
18028     // Calculate the number of scalar loads that we need to perform
18029     // in order to load our vector from memory.
18030     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18031     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18032       return SDValue();
18033
18034     unsigned loadRegZize = RegSz;
18035     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18036       loadRegZize /= 2;
18037
18038     // Represent our vector as a sequence of elements which are the
18039     // largest scalar that we can load.
18040     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18041       loadRegZize/SclrLoadTy.getSizeInBits());
18042
18043     // Represent the data using the same element type that is stored in
18044     // memory. In practice, we ''widen'' MemVT.
18045     EVT WideVecVT =
18046           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18047                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18048
18049     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18050       "Invalid vector type");
18051
18052     // We can't shuffle using an illegal type.
18053     if (!TLI.isTypeLegal(WideVecVT))
18054       return SDValue();
18055
18056     SmallVector<SDValue, 8> Chains;
18057     SDValue Ptr = Ld->getBasePtr();
18058     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18059                                         TLI.getPointerTy());
18060     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18061
18062     for (unsigned i = 0; i < NumLoads; ++i) {
18063       // Perform a single load.
18064       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18065                                        Ptr, Ld->getPointerInfo(),
18066                                        Ld->isVolatile(), Ld->isNonTemporal(),
18067                                        Ld->isInvariant(), Ld->getAlignment());
18068       Chains.push_back(ScalarLoad.getValue(1));
18069       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18070       // another round of DAGCombining.
18071       if (i == 0)
18072         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18073       else
18074         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18075                           ScalarLoad, DAG.getIntPtrConstant(i));
18076
18077       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18078     }
18079
18080     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18081                                Chains.size());
18082
18083     // Bitcast the loaded value to a vector of the original element type, in
18084     // the size of the target vector type.
18085     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18086     unsigned SizeRatio = RegSz/MemSz;
18087
18088     if (Ext == ISD::SEXTLOAD) {
18089       // If we have SSE4.1 we can directly emit a VSEXT node.
18090       if (Subtarget->hasSSE41()) {
18091         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18092         return DCI.CombineTo(N, Sext, TF, true);
18093       }
18094
18095       // Otherwise we'll shuffle the small elements in the high bits of the
18096       // larger type and perform an arithmetic shift. If the shift is not legal
18097       // it's better to scalarize.
18098       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18099         return SDValue();
18100
18101       // Redistribute the loaded elements into the different locations.
18102       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18103       for (unsigned i = 0; i != NumElems; ++i)
18104         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18105
18106       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18107                                            DAG.getUNDEF(WideVecVT),
18108                                            &ShuffleVec[0]);
18109
18110       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18111
18112       // Build the arithmetic shift.
18113       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18114                      MemVT.getVectorElementType().getSizeInBits();
18115       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18116                           DAG.getConstant(Amt, RegVT));
18117
18118       return DCI.CombineTo(N, Shuff, TF, true);
18119     }
18120
18121     // Redistribute the loaded elements into the different locations.
18122     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18123     for (unsigned i = 0; i != NumElems; ++i)
18124       ShuffleVec[i*SizeRatio] = i;
18125
18126     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18127                                          DAG.getUNDEF(WideVecVT),
18128                                          &ShuffleVec[0]);
18129
18130     // Bitcast to the requested type.
18131     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18132     // Replace the original load with the new sequence
18133     // and return the new chain.
18134     return DCI.CombineTo(N, Shuff, TF, true);
18135   }
18136
18137   return SDValue();
18138 }
18139
18140 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18141 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18142                                    const X86Subtarget *Subtarget) {
18143   StoreSDNode *St = cast<StoreSDNode>(N);
18144   EVT VT = St->getValue().getValueType();
18145   EVT StVT = St->getMemoryVT();
18146   SDLoc dl(St);
18147   SDValue StoredVal = St->getOperand(1);
18148   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18149
18150   // If we are saving a concatenation of two XMM registers, perform two stores.
18151   // On Sandy Bridge, 256-bit memory operations are executed by two
18152   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18153   // memory  operation.
18154   unsigned Alignment = St->getAlignment();
18155   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18156   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18157       StVT == VT && !IsAligned) {
18158     unsigned NumElems = VT.getVectorNumElements();
18159     if (NumElems < 2)
18160       return SDValue();
18161
18162     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18163     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18164
18165     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18166     SDValue Ptr0 = St->getBasePtr();
18167     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18168
18169     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18170                                 St->getPointerInfo(), St->isVolatile(),
18171                                 St->isNonTemporal(), Alignment);
18172     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18173                                 St->getPointerInfo(), St->isVolatile(),
18174                                 St->isNonTemporal(),
18175                                 std::min(16U, Alignment));
18176     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18177   }
18178
18179   // Optimize trunc store (of multiple scalars) to shuffle and store.
18180   // First, pack all of the elements in one place. Next, store to memory
18181   // in fewer chunks.
18182   if (St->isTruncatingStore() && VT.isVector()) {
18183     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18184     unsigned NumElems = VT.getVectorNumElements();
18185     assert(StVT != VT && "Cannot truncate to the same type");
18186     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18187     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18188
18189     // From, To sizes and ElemCount must be pow of two
18190     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18191     // We are going to use the original vector elt for storing.
18192     // Accumulated smaller vector elements must be a multiple of the store size.
18193     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18194
18195     unsigned SizeRatio  = FromSz / ToSz;
18196
18197     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18198
18199     // Create a type on which we perform the shuffle
18200     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18201             StVT.getScalarType(), NumElems*SizeRatio);
18202
18203     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18204
18205     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18206     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18207     for (unsigned i = 0; i != NumElems; ++i)
18208       ShuffleVec[i] = i * SizeRatio;
18209
18210     // Can't shuffle using an illegal type.
18211     if (!TLI.isTypeLegal(WideVecVT))
18212       return SDValue();
18213
18214     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18215                                          DAG.getUNDEF(WideVecVT),
18216                                          &ShuffleVec[0]);
18217     // At this point all of the data is stored at the bottom of the
18218     // register. We now need to save it to mem.
18219
18220     // Find the largest store unit
18221     MVT StoreType = MVT::i8;
18222     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18223          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18224       MVT Tp = (MVT::SimpleValueType)tp;
18225       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18226         StoreType = Tp;
18227     }
18228
18229     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18230     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18231         (64 <= NumElems * ToSz))
18232       StoreType = MVT::f64;
18233
18234     // Bitcast the original vector into a vector of store-size units
18235     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18236             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18237     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18238     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18239     SmallVector<SDValue, 8> Chains;
18240     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18241                                         TLI.getPointerTy());
18242     SDValue Ptr = St->getBasePtr();
18243
18244     // Perform one or more big stores into memory.
18245     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18246       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18247                                    StoreType, ShuffWide,
18248                                    DAG.getIntPtrConstant(i));
18249       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18250                                 St->getPointerInfo(), St->isVolatile(),
18251                                 St->isNonTemporal(), St->getAlignment());
18252       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18253       Chains.push_back(Ch);
18254     }
18255
18256     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18257                                Chains.size());
18258   }
18259
18260   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18261   // the FP state in cases where an emms may be missing.
18262   // A preferable solution to the general problem is to figure out the right
18263   // places to insert EMMS.  This qualifies as a quick hack.
18264
18265   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18266   if (VT.getSizeInBits() != 64)
18267     return SDValue();
18268
18269   const Function *F = DAG.getMachineFunction().getFunction();
18270   bool NoImplicitFloatOps = F->getAttributes().
18271     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18272   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18273                      && Subtarget->hasSSE2();
18274   if ((VT.isVector() ||
18275        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18276       isa<LoadSDNode>(St->getValue()) &&
18277       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18278       St->getChain().hasOneUse() && !St->isVolatile()) {
18279     SDNode* LdVal = St->getValue().getNode();
18280     LoadSDNode *Ld = 0;
18281     int TokenFactorIndex = -1;
18282     SmallVector<SDValue, 8> Ops;
18283     SDNode* ChainVal = St->getChain().getNode();
18284     // Must be a store of a load.  We currently handle two cases:  the load
18285     // is a direct child, and it's under an intervening TokenFactor.  It is
18286     // possible to dig deeper under nested TokenFactors.
18287     if (ChainVal == LdVal)
18288       Ld = cast<LoadSDNode>(St->getChain());
18289     else if (St->getValue().hasOneUse() &&
18290              ChainVal->getOpcode() == ISD::TokenFactor) {
18291       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18292         if (ChainVal->getOperand(i).getNode() == LdVal) {
18293           TokenFactorIndex = i;
18294           Ld = cast<LoadSDNode>(St->getValue());
18295         } else
18296           Ops.push_back(ChainVal->getOperand(i));
18297       }
18298     }
18299
18300     if (!Ld || !ISD::isNormalLoad(Ld))
18301       return SDValue();
18302
18303     // If this is not the MMX case, i.e. we are just turning i64 load/store
18304     // into f64 load/store, avoid the transformation if there are multiple
18305     // uses of the loaded value.
18306     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18307       return SDValue();
18308
18309     SDLoc LdDL(Ld);
18310     SDLoc StDL(N);
18311     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18312     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18313     // pair instead.
18314     if (Subtarget->is64Bit() || F64IsLegal) {
18315       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18316       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18317                                   Ld->getPointerInfo(), Ld->isVolatile(),
18318                                   Ld->isNonTemporal(), Ld->isInvariant(),
18319                                   Ld->getAlignment());
18320       SDValue NewChain = NewLd.getValue(1);
18321       if (TokenFactorIndex != -1) {
18322         Ops.push_back(NewChain);
18323         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18324                                Ops.size());
18325       }
18326       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18327                           St->getPointerInfo(),
18328                           St->isVolatile(), St->isNonTemporal(),
18329                           St->getAlignment());
18330     }
18331
18332     // Otherwise, lower to two pairs of 32-bit loads / stores.
18333     SDValue LoAddr = Ld->getBasePtr();
18334     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18335                                  DAG.getConstant(4, MVT::i32));
18336
18337     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18338                                Ld->getPointerInfo(),
18339                                Ld->isVolatile(), Ld->isNonTemporal(),
18340                                Ld->isInvariant(), Ld->getAlignment());
18341     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18342                                Ld->getPointerInfo().getWithOffset(4),
18343                                Ld->isVolatile(), Ld->isNonTemporal(),
18344                                Ld->isInvariant(),
18345                                MinAlign(Ld->getAlignment(), 4));
18346
18347     SDValue NewChain = LoLd.getValue(1);
18348     if (TokenFactorIndex != -1) {
18349       Ops.push_back(LoLd);
18350       Ops.push_back(HiLd);
18351       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18352                              Ops.size());
18353     }
18354
18355     LoAddr = St->getBasePtr();
18356     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18357                          DAG.getConstant(4, MVT::i32));
18358
18359     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18360                                 St->getPointerInfo(),
18361                                 St->isVolatile(), St->isNonTemporal(),
18362                                 St->getAlignment());
18363     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18364                                 St->getPointerInfo().getWithOffset(4),
18365                                 St->isVolatile(),
18366                                 St->isNonTemporal(),
18367                                 MinAlign(St->getAlignment(), 4));
18368     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18369   }
18370   return SDValue();
18371 }
18372
18373 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18374 /// and return the operands for the horizontal operation in LHS and RHS.  A
18375 /// horizontal operation performs the binary operation on successive elements
18376 /// of its first operand, then on successive elements of its second operand,
18377 /// returning the resulting values in a vector.  For example, if
18378 ///   A = < float a0, float a1, float a2, float a3 >
18379 /// and
18380 ///   B = < float b0, float b1, float b2, float b3 >
18381 /// then the result of doing a horizontal operation on A and B is
18382 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18383 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18384 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18385 /// set to A, RHS to B, and the routine returns 'true'.
18386 /// Note that the binary operation should have the property that if one of the
18387 /// operands is UNDEF then the result is UNDEF.
18388 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18389   // Look for the following pattern: if
18390   //   A = < float a0, float a1, float a2, float a3 >
18391   //   B = < float b0, float b1, float b2, float b3 >
18392   // and
18393   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18394   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18395   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18396   // which is A horizontal-op B.
18397
18398   // At least one of the operands should be a vector shuffle.
18399   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18400       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18401     return false;
18402
18403   MVT VT = LHS.getSimpleValueType();
18404
18405   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18406          "Unsupported vector type for horizontal add/sub");
18407
18408   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18409   // operate independently on 128-bit lanes.
18410   unsigned NumElts = VT.getVectorNumElements();
18411   unsigned NumLanes = VT.getSizeInBits()/128;
18412   unsigned NumLaneElts = NumElts / NumLanes;
18413   assert((NumLaneElts % 2 == 0) &&
18414          "Vector type should have an even number of elements in each lane");
18415   unsigned HalfLaneElts = NumLaneElts/2;
18416
18417   // View LHS in the form
18418   //   LHS = VECTOR_SHUFFLE A, B, LMask
18419   // If LHS is not a shuffle then pretend it is the shuffle
18420   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18421   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18422   // type VT.
18423   SDValue A, B;
18424   SmallVector<int, 16> LMask(NumElts);
18425   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18426     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18427       A = LHS.getOperand(0);
18428     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18429       B = LHS.getOperand(1);
18430     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18431     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18432   } else {
18433     if (LHS.getOpcode() != ISD::UNDEF)
18434       A = LHS;
18435     for (unsigned i = 0; i != NumElts; ++i)
18436       LMask[i] = i;
18437   }
18438
18439   // Likewise, view RHS in the form
18440   //   RHS = VECTOR_SHUFFLE C, D, RMask
18441   SDValue C, D;
18442   SmallVector<int, 16> RMask(NumElts);
18443   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18444     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18445       C = RHS.getOperand(0);
18446     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18447       D = RHS.getOperand(1);
18448     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18449     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18450   } else {
18451     if (RHS.getOpcode() != ISD::UNDEF)
18452       C = RHS;
18453     for (unsigned i = 0; i != NumElts; ++i)
18454       RMask[i] = i;
18455   }
18456
18457   // Check that the shuffles are both shuffling the same vectors.
18458   if (!(A == C && B == D) && !(A == D && B == C))
18459     return false;
18460
18461   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18462   if (!A.getNode() && !B.getNode())
18463     return false;
18464
18465   // If A and B occur in reverse order in RHS, then "swap" them (which means
18466   // rewriting the mask).
18467   if (A != C)
18468     CommuteVectorShuffleMask(RMask, NumElts);
18469
18470   // At this point LHS and RHS are equivalent to
18471   //   LHS = VECTOR_SHUFFLE A, B, LMask
18472   //   RHS = VECTOR_SHUFFLE A, B, RMask
18473   // Check that the masks correspond to performing a horizontal operation.
18474   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18475     for (unsigned i = 0; i != NumLaneElts; ++i) {
18476       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18477
18478       // Ignore any UNDEF components.
18479       if (LIdx < 0 || RIdx < 0 ||
18480           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18481           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18482         continue;
18483
18484       // Check that successive elements are being operated on.  If not, this is
18485       // not a horizontal operation.
18486       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18487       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18488       if (!(LIdx == Index && RIdx == Index + 1) &&
18489           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18490         return false;
18491     }
18492   }
18493
18494   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18495   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18496   return true;
18497 }
18498
18499 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18500 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18501                                   const X86Subtarget *Subtarget) {
18502   EVT VT = N->getValueType(0);
18503   SDValue LHS = N->getOperand(0);
18504   SDValue RHS = N->getOperand(1);
18505
18506   // Try to synthesize horizontal adds from adds of shuffles.
18507   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18508        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18509       isHorizontalBinOp(LHS, RHS, true))
18510     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18511   return SDValue();
18512 }
18513
18514 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18515 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18516                                   const X86Subtarget *Subtarget) {
18517   EVT VT = N->getValueType(0);
18518   SDValue LHS = N->getOperand(0);
18519   SDValue RHS = N->getOperand(1);
18520
18521   // Try to synthesize horizontal subs from subs of shuffles.
18522   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18523        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18524       isHorizontalBinOp(LHS, RHS, false))
18525     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18526   return SDValue();
18527 }
18528
18529 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18530 /// X86ISD::FXOR nodes.
18531 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18532   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18533   // F[X]OR(0.0, x) -> x
18534   // F[X]OR(x, 0.0) -> x
18535   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18536     if (C->getValueAPF().isPosZero())
18537       return N->getOperand(1);
18538   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18539     if (C->getValueAPF().isPosZero())
18540       return N->getOperand(0);
18541   return SDValue();
18542 }
18543
18544 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18545 /// X86ISD::FMAX nodes.
18546 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18547   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18548
18549   // Only perform optimizations if UnsafeMath is used.
18550   if (!DAG.getTarget().Options.UnsafeFPMath)
18551     return SDValue();
18552
18553   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18554   // into FMINC and FMAXC, which are Commutative operations.
18555   unsigned NewOp = 0;
18556   switch (N->getOpcode()) {
18557     default: llvm_unreachable("unknown opcode");
18558     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18559     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18560   }
18561
18562   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18563                      N->getOperand(0), N->getOperand(1));
18564 }
18565
18566 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18567 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18568   // FAND(0.0, x) -> 0.0
18569   // FAND(x, 0.0) -> 0.0
18570   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18571     if (C->getValueAPF().isPosZero())
18572       return N->getOperand(0);
18573   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18574     if (C->getValueAPF().isPosZero())
18575       return N->getOperand(1);
18576   return SDValue();
18577 }
18578
18579 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18580 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18581   // FANDN(x, 0.0) -> 0.0
18582   // FANDN(0.0, x) -> x
18583   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18584     if (C->getValueAPF().isPosZero())
18585       return N->getOperand(1);
18586   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18587     if (C->getValueAPF().isPosZero())
18588       return N->getOperand(1);
18589   return SDValue();
18590 }
18591
18592 static SDValue PerformBTCombine(SDNode *N,
18593                                 SelectionDAG &DAG,
18594                                 TargetLowering::DAGCombinerInfo &DCI) {
18595   // BT ignores high bits in the bit index operand.
18596   SDValue Op1 = N->getOperand(1);
18597   if (Op1.hasOneUse()) {
18598     unsigned BitWidth = Op1.getValueSizeInBits();
18599     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18600     APInt KnownZero, KnownOne;
18601     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18602                                           !DCI.isBeforeLegalizeOps());
18603     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18604     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18605         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18606       DCI.CommitTargetLoweringOpt(TLO);
18607   }
18608   return SDValue();
18609 }
18610
18611 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18612   SDValue Op = N->getOperand(0);
18613   if (Op.getOpcode() == ISD::BITCAST)
18614     Op = Op.getOperand(0);
18615   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18616   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18617       VT.getVectorElementType().getSizeInBits() ==
18618       OpVT.getVectorElementType().getSizeInBits()) {
18619     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18620   }
18621   return SDValue();
18622 }
18623
18624 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18625                                                const X86Subtarget *Subtarget) {
18626   EVT VT = N->getValueType(0);
18627   if (!VT.isVector())
18628     return SDValue();
18629
18630   SDValue N0 = N->getOperand(0);
18631   SDValue N1 = N->getOperand(1);
18632   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18633   SDLoc dl(N);
18634
18635   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18636   // both SSE and AVX2 since there is no sign-extended shift right
18637   // operation on a vector with 64-bit elements.
18638   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18639   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18640   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18641       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18642     SDValue N00 = N0.getOperand(0);
18643
18644     // EXTLOAD has a better solution on AVX2,
18645     // it may be replaced with X86ISD::VSEXT node.
18646     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18647       if (!ISD::isNormalLoad(N00.getNode()))
18648         return SDValue();
18649
18650     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18651         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18652                                   N00, N1);
18653       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18654     }
18655   }
18656   return SDValue();
18657 }
18658
18659 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18660                                   TargetLowering::DAGCombinerInfo &DCI,
18661                                   const X86Subtarget *Subtarget) {
18662   if (!DCI.isBeforeLegalizeOps())
18663     return SDValue();
18664
18665   if (!Subtarget->hasFp256())
18666     return SDValue();
18667
18668   EVT VT = N->getValueType(0);
18669   if (VT.isVector() && VT.getSizeInBits() == 256) {
18670     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18671     if (R.getNode())
18672       return R;
18673   }
18674
18675   return SDValue();
18676 }
18677
18678 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18679                                  const X86Subtarget* Subtarget) {
18680   SDLoc dl(N);
18681   EVT VT = N->getValueType(0);
18682
18683   // Let legalize expand this if it isn't a legal type yet.
18684   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18685     return SDValue();
18686
18687   EVT ScalarVT = VT.getScalarType();
18688   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18689       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18690     return SDValue();
18691
18692   SDValue A = N->getOperand(0);
18693   SDValue B = N->getOperand(1);
18694   SDValue C = N->getOperand(2);
18695
18696   bool NegA = (A.getOpcode() == ISD::FNEG);
18697   bool NegB = (B.getOpcode() == ISD::FNEG);
18698   bool NegC = (C.getOpcode() == ISD::FNEG);
18699
18700   // Negative multiplication when NegA xor NegB
18701   bool NegMul = (NegA != NegB);
18702   if (NegA)
18703     A = A.getOperand(0);
18704   if (NegB)
18705     B = B.getOperand(0);
18706   if (NegC)
18707     C = C.getOperand(0);
18708
18709   unsigned Opcode;
18710   if (!NegMul)
18711     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18712   else
18713     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18714
18715   return DAG.getNode(Opcode, dl, VT, A, B, C);
18716 }
18717
18718 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18719                                   TargetLowering::DAGCombinerInfo &DCI,
18720                                   const X86Subtarget *Subtarget) {
18721   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18722   //           (and (i32 x86isd::setcc_carry), 1)
18723   // This eliminates the zext. This transformation is necessary because
18724   // ISD::SETCC is always legalized to i8.
18725   SDLoc dl(N);
18726   SDValue N0 = N->getOperand(0);
18727   EVT VT = N->getValueType(0);
18728
18729   if (N0.getOpcode() == ISD::AND &&
18730       N0.hasOneUse() &&
18731       N0.getOperand(0).hasOneUse()) {
18732     SDValue N00 = N0.getOperand(0);
18733     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18734       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18735       if (!C || C->getZExtValue() != 1)
18736         return SDValue();
18737       return DAG.getNode(ISD::AND, dl, VT,
18738                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18739                                      N00.getOperand(0), N00.getOperand(1)),
18740                          DAG.getConstant(1, VT));
18741     }
18742   }
18743
18744   if (VT.is256BitVector()) {
18745     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18746     if (R.getNode())
18747       return R;
18748   }
18749
18750   return SDValue();
18751 }
18752
18753 // Optimize x == -y --> x+y == 0
18754 //          x != -y --> x+y != 0
18755 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18756   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18757   SDValue LHS = N->getOperand(0);
18758   SDValue RHS = N->getOperand(1);
18759
18760   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18761     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18762       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18763         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18764                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18765         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18766                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18767       }
18768   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18769     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18770       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18771         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18772                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18773         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18774                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18775       }
18776   return SDValue();
18777 }
18778
18779 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18780 // as "sbb reg,reg", since it can be extended without zext and produces
18781 // an all-ones bit which is more useful than 0/1 in some cases.
18782 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18783   return DAG.getNode(ISD::AND, DL, MVT::i8,
18784                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18785                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18786                      DAG.getConstant(1, MVT::i8));
18787 }
18788
18789 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18790 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18791                                    TargetLowering::DAGCombinerInfo &DCI,
18792                                    const X86Subtarget *Subtarget) {
18793   SDLoc DL(N);
18794   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18795   SDValue EFLAGS = N->getOperand(1);
18796
18797   if (CC == X86::COND_A) {
18798     // Try to convert COND_A into COND_B in an attempt to facilitate
18799     // materializing "setb reg".
18800     //
18801     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18802     // cannot take an immediate as its first operand.
18803     //
18804     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18805         EFLAGS.getValueType().isInteger() &&
18806         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18807       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18808                                    EFLAGS.getNode()->getVTList(),
18809                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18810       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18811       return MaterializeSETB(DL, NewEFLAGS, DAG);
18812     }
18813   }
18814
18815   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18816   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18817   // cases.
18818   if (CC == X86::COND_B)
18819     return MaterializeSETB(DL, EFLAGS, DAG);
18820
18821   SDValue Flags;
18822
18823   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18824   if (Flags.getNode()) {
18825     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18826     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18827   }
18828
18829   return SDValue();
18830 }
18831
18832 // Optimize branch condition evaluation.
18833 //
18834 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18835                                     TargetLowering::DAGCombinerInfo &DCI,
18836                                     const X86Subtarget *Subtarget) {
18837   SDLoc DL(N);
18838   SDValue Chain = N->getOperand(0);
18839   SDValue Dest = N->getOperand(1);
18840   SDValue EFLAGS = N->getOperand(3);
18841   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18842
18843   SDValue Flags;
18844
18845   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18846   if (Flags.getNode()) {
18847     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18848     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18849                        Flags);
18850   }
18851
18852   return SDValue();
18853 }
18854
18855 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18856                                         const X86TargetLowering *XTLI) {
18857   SDValue Op0 = N->getOperand(0);
18858   EVT InVT = Op0->getValueType(0);
18859
18860   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18861   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18862     SDLoc dl(N);
18863     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18864     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18865     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18866   }
18867
18868   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18869   // a 32-bit target where SSE doesn't support i64->FP operations.
18870   if (Op0.getOpcode() == ISD::LOAD) {
18871     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18872     EVT VT = Ld->getValueType(0);
18873     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18874         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18875         !XTLI->getSubtarget()->is64Bit() &&
18876         VT == MVT::i64) {
18877       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18878                                           Ld->getChain(), Op0, DAG);
18879       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18880       return FILDChain;
18881     }
18882   }
18883   return SDValue();
18884 }
18885
18886 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18887 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18888                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18889   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18890   // the result is either zero or one (depending on the input carry bit).
18891   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18892   if (X86::isZeroNode(N->getOperand(0)) &&
18893       X86::isZeroNode(N->getOperand(1)) &&
18894       // We don't have a good way to replace an EFLAGS use, so only do this when
18895       // dead right now.
18896       SDValue(N, 1).use_empty()) {
18897     SDLoc DL(N);
18898     EVT VT = N->getValueType(0);
18899     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18900     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18901                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18902                                            DAG.getConstant(X86::COND_B,MVT::i8),
18903                                            N->getOperand(2)),
18904                                DAG.getConstant(1, VT));
18905     return DCI.CombineTo(N, Res1, CarryOut);
18906   }
18907
18908   return SDValue();
18909 }
18910
18911 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18912 //      (add Y, (setne X, 0)) -> sbb -1, Y
18913 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18914 //      (sub (setne X, 0), Y) -> adc -1, Y
18915 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18916   SDLoc DL(N);
18917
18918   // Look through ZExts.
18919   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18920   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18921     return SDValue();
18922
18923   SDValue SetCC = Ext.getOperand(0);
18924   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18925     return SDValue();
18926
18927   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18928   if (CC != X86::COND_E && CC != X86::COND_NE)
18929     return SDValue();
18930
18931   SDValue Cmp = SetCC.getOperand(1);
18932   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18933       !X86::isZeroNode(Cmp.getOperand(1)) ||
18934       !Cmp.getOperand(0).getValueType().isInteger())
18935     return SDValue();
18936
18937   SDValue CmpOp0 = Cmp.getOperand(0);
18938   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18939                                DAG.getConstant(1, CmpOp0.getValueType()));
18940
18941   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18942   if (CC == X86::COND_NE)
18943     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18944                        DL, OtherVal.getValueType(), OtherVal,
18945                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18946   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18947                      DL, OtherVal.getValueType(), OtherVal,
18948                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18949 }
18950
18951 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18952 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18953                                  const X86Subtarget *Subtarget) {
18954   EVT VT = N->getValueType(0);
18955   SDValue Op0 = N->getOperand(0);
18956   SDValue Op1 = N->getOperand(1);
18957
18958   // Try to synthesize horizontal adds from adds of shuffles.
18959   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18960        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18961       isHorizontalBinOp(Op0, Op1, true))
18962     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18963
18964   return OptimizeConditionalInDecrement(N, DAG);
18965 }
18966
18967 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18968                                  const X86Subtarget *Subtarget) {
18969   SDValue Op0 = N->getOperand(0);
18970   SDValue Op1 = N->getOperand(1);
18971
18972   // X86 can't encode an immediate LHS of a sub. See if we can push the
18973   // negation into a preceding instruction.
18974   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18975     // If the RHS of the sub is a XOR with one use and a constant, invert the
18976     // immediate. Then add one to the LHS of the sub so we can turn
18977     // X-Y -> X+~Y+1, saving one register.
18978     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18979         isa<ConstantSDNode>(Op1.getOperand(1))) {
18980       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18981       EVT VT = Op0.getValueType();
18982       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18983                                    Op1.getOperand(0),
18984                                    DAG.getConstant(~XorC, VT));
18985       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18986                          DAG.getConstant(C->getAPIntValue()+1, VT));
18987     }
18988   }
18989
18990   // Try to synthesize horizontal adds from adds of shuffles.
18991   EVT VT = N->getValueType(0);
18992   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18993        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18994       isHorizontalBinOp(Op0, Op1, true))
18995     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18996
18997   return OptimizeConditionalInDecrement(N, DAG);
18998 }
18999
19000 /// performVZEXTCombine - Performs build vector combines
19001 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19002                                         TargetLowering::DAGCombinerInfo &DCI,
19003                                         const X86Subtarget *Subtarget) {
19004   // (vzext (bitcast (vzext (x)) -> (vzext x)
19005   SDValue In = N->getOperand(0);
19006   while (In.getOpcode() == ISD::BITCAST)
19007     In = In.getOperand(0);
19008
19009   if (In.getOpcode() != X86ISD::VZEXT)
19010     return SDValue();
19011
19012   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19013                      In.getOperand(0));
19014 }
19015
19016 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19017                                              DAGCombinerInfo &DCI) const {
19018   SelectionDAG &DAG = DCI.DAG;
19019   switch (N->getOpcode()) {
19020   default: break;
19021   case ISD::EXTRACT_VECTOR_ELT:
19022     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19023   case ISD::VSELECT:
19024   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19025   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19026   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19027   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19028   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19029   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19030   case ISD::SHL:
19031   case ISD::SRA:
19032   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19033   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19034   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19035   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19036   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19037   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19038   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19039   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19040   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19041   case X86ISD::FXOR:
19042   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19043   case X86ISD::FMIN:
19044   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19045   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19046   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19047   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19048   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19049   case ISD::ANY_EXTEND:
19050   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19051   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19052   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19053   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19054   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19055   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19056   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19057   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19058   case X86ISD::SHUFP:       // Handle all target specific shuffles
19059   case X86ISD::PALIGNR:
19060   case X86ISD::UNPCKH:
19061   case X86ISD::UNPCKL:
19062   case X86ISD::MOVHLPS:
19063   case X86ISD::MOVLHPS:
19064   case X86ISD::PSHUFD:
19065   case X86ISD::PSHUFHW:
19066   case X86ISD::PSHUFLW:
19067   case X86ISD::MOVSS:
19068   case X86ISD::MOVSD:
19069   case X86ISD::VPERMILP:
19070   case X86ISD::VPERM2X128:
19071   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19072   case ISD::CONCAT_VECTORS: return PerformConcatCombine(N, DAG, DCI, Subtarget);
19073   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19074   }
19075
19076   return SDValue();
19077 }
19078
19079 /// isTypeDesirableForOp - Return true if the target has native support for
19080 /// the specified value type and it is 'desirable' to use the type for the
19081 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19082 /// instruction encodings are longer and some i16 instructions are slow.
19083 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19084   if (!isTypeLegal(VT))
19085     return false;
19086   if (VT != MVT::i16)
19087     return true;
19088
19089   switch (Opc) {
19090   default:
19091     return true;
19092   case ISD::LOAD:
19093   case ISD::SIGN_EXTEND:
19094   case ISD::ZERO_EXTEND:
19095   case ISD::ANY_EXTEND:
19096   case ISD::SHL:
19097   case ISD::SRL:
19098   case ISD::SUB:
19099   case ISD::ADD:
19100   case ISD::MUL:
19101   case ISD::AND:
19102   case ISD::OR:
19103   case ISD::XOR:
19104     return false;
19105   }
19106 }
19107
19108 /// IsDesirableToPromoteOp - This method query the target whether it is
19109 /// beneficial for dag combiner to promote the specified node. If true, it
19110 /// should return the desired promotion type by reference.
19111 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19112   EVT VT = Op.getValueType();
19113   if (VT != MVT::i16)
19114     return false;
19115
19116   bool Promote = false;
19117   bool Commute = false;
19118   switch (Op.getOpcode()) {
19119   default: break;
19120   case ISD::LOAD: {
19121     LoadSDNode *LD = cast<LoadSDNode>(Op);
19122     // If the non-extending load has a single use and it's not live out, then it
19123     // might be folded.
19124     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19125                                                      Op.hasOneUse()*/) {
19126       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19127              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19128         // The only case where we'd want to promote LOAD (rather then it being
19129         // promoted as an operand is when it's only use is liveout.
19130         if (UI->getOpcode() != ISD::CopyToReg)
19131           return false;
19132       }
19133     }
19134     Promote = true;
19135     break;
19136   }
19137   case ISD::SIGN_EXTEND:
19138   case ISD::ZERO_EXTEND:
19139   case ISD::ANY_EXTEND:
19140     Promote = true;
19141     break;
19142   case ISD::SHL:
19143   case ISD::SRL: {
19144     SDValue N0 = Op.getOperand(0);
19145     // Look out for (store (shl (load), x)).
19146     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19147       return false;
19148     Promote = true;
19149     break;
19150   }
19151   case ISD::ADD:
19152   case ISD::MUL:
19153   case ISD::AND:
19154   case ISD::OR:
19155   case ISD::XOR:
19156     Commute = true;
19157     // fallthrough
19158   case ISD::SUB: {
19159     SDValue N0 = Op.getOperand(0);
19160     SDValue N1 = Op.getOperand(1);
19161     if (!Commute && MayFoldLoad(N1))
19162       return false;
19163     // Avoid disabling potential load folding opportunities.
19164     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19165       return false;
19166     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19167       return false;
19168     Promote = true;
19169   }
19170   }
19171
19172   PVT = MVT::i32;
19173   return Promote;
19174 }
19175
19176 //===----------------------------------------------------------------------===//
19177 //                           X86 Inline Assembly Support
19178 //===----------------------------------------------------------------------===//
19179
19180 namespace {
19181   // Helper to match a string separated by whitespace.
19182   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19183     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19184
19185     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19186       StringRef piece(*args[i]);
19187       if (!s.startswith(piece)) // Check if the piece matches.
19188         return false;
19189
19190       s = s.substr(piece.size());
19191       StringRef::size_type pos = s.find_first_not_of(" \t");
19192       if (pos == 0) // We matched a prefix.
19193         return false;
19194
19195       s = s.substr(pos);
19196     }
19197
19198     return s.empty();
19199   }
19200   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19201 }
19202
19203 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19204   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19205
19206   std::string AsmStr = IA->getAsmString();
19207
19208   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19209   if (!Ty || Ty->getBitWidth() % 16 != 0)
19210     return false;
19211
19212   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19213   SmallVector<StringRef, 4> AsmPieces;
19214   SplitString(AsmStr, AsmPieces, ";\n");
19215
19216   switch (AsmPieces.size()) {
19217   default: return false;
19218   case 1:
19219     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19220     // we will turn this bswap into something that will be lowered to logical
19221     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19222     // lower so don't worry about this.
19223     // bswap $0
19224     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19225         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19226         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19227         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19228         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19229         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19230       // No need to check constraints, nothing other than the equivalent of
19231       // "=r,0" would be valid here.
19232       return IntrinsicLowering::LowerToByteSwap(CI);
19233     }
19234
19235     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19236     if (CI->getType()->isIntegerTy(16) &&
19237         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19238         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19239          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19240       AsmPieces.clear();
19241       const std::string &ConstraintsStr = IA->getConstraintString();
19242       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19243       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19244       if (AsmPieces.size() == 4 &&
19245           AsmPieces[0] == "~{cc}" &&
19246           AsmPieces[1] == "~{dirflag}" &&
19247           AsmPieces[2] == "~{flags}" &&
19248           AsmPieces[3] == "~{fpsr}")
19249       return IntrinsicLowering::LowerToByteSwap(CI);
19250     }
19251     break;
19252   case 3:
19253     if (CI->getType()->isIntegerTy(32) &&
19254         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19255         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19256         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19257         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19258       AsmPieces.clear();
19259       const std::string &ConstraintsStr = IA->getConstraintString();
19260       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19261       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19262       if (AsmPieces.size() == 4 &&
19263           AsmPieces[0] == "~{cc}" &&
19264           AsmPieces[1] == "~{dirflag}" &&
19265           AsmPieces[2] == "~{flags}" &&
19266           AsmPieces[3] == "~{fpsr}")
19267         return IntrinsicLowering::LowerToByteSwap(CI);
19268     }
19269
19270     if (CI->getType()->isIntegerTy(64)) {
19271       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19272       if (Constraints.size() >= 2 &&
19273           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19274           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19275         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19276         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19277             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19278             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19279           return IntrinsicLowering::LowerToByteSwap(CI);
19280       }
19281     }
19282     break;
19283   }
19284   return false;
19285 }
19286
19287 /// getConstraintType - Given a constraint letter, return the type of
19288 /// constraint it is for this target.
19289 X86TargetLowering::ConstraintType
19290 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19291   if (Constraint.size() == 1) {
19292     switch (Constraint[0]) {
19293     case 'R':
19294     case 'q':
19295     case 'Q':
19296     case 'f':
19297     case 't':
19298     case 'u':
19299     case 'y':
19300     case 'x':
19301     case 'Y':
19302     case 'l':
19303       return C_RegisterClass;
19304     case 'a':
19305     case 'b':
19306     case 'c':
19307     case 'd':
19308     case 'S':
19309     case 'D':
19310     case 'A':
19311       return C_Register;
19312     case 'I':
19313     case 'J':
19314     case 'K':
19315     case 'L':
19316     case 'M':
19317     case 'N':
19318     case 'G':
19319     case 'C':
19320     case 'e':
19321     case 'Z':
19322       return C_Other;
19323     default:
19324       break;
19325     }
19326   }
19327   return TargetLowering::getConstraintType(Constraint);
19328 }
19329
19330 /// Examine constraint type and operand type and determine a weight value.
19331 /// This object must already have been set up with the operand type
19332 /// and the current alternative constraint selected.
19333 TargetLowering::ConstraintWeight
19334   X86TargetLowering::getSingleConstraintMatchWeight(
19335     AsmOperandInfo &info, const char *constraint) const {
19336   ConstraintWeight weight = CW_Invalid;
19337   Value *CallOperandVal = info.CallOperandVal;
19338     // If we don't have a value, we can't do a match,
19339     // but allow it at the lowest weight.
19340   if (CallOperandVal == NULL)
19341     return CW_Default;
19342   Type *type = CallOperandVal->getType();
19343   // Look at the constraint type.
19344   switch (*constraint) {
19345   default:
19346     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19347   case 'R':
19348   case 'q':
19349   case 'Q':
19350   case 'a':
19351   case 'b':
19352   case 'c':
19353   case 'd':
19354   case 'S':
19355   case 'D':
19356   case 'A':
19357     if (CallOperandVal->getType()->isIntegerTy())
19358       weight = CW_SpecificReg;
19359     break;
19360   case 'f':
19361   case 't':
19362   case 'u':
19363     if (type->isFloatingPointTy())
19364       weight = CW_SpecificReg;
19365     break;
19366   case 'y':
19367     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19368       weight = CW_SpecificReg;
19369     break;
19370   case 'x':
19371   case 'Y':
19372     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19373         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19374       weight = CW_Register;
19375     break;
19376   case 'I':
19377     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19378       if (C->getZExtValue() <= 31)
19379         weight = CW_Constant;
19380     }
19381     break;
19382   case 'J':
19383     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19384       if (C->getZExtValue() <= 63)
19385         weight = CW_Constant;
19386     }
19387     break;
19388   case 'K':
19389     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19390       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19391         weight = CW_Constant;
19392     }
19393     break;
19394   case 'L':
19395     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19396       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19397         weight = CW_Constant;
19398     }
19399     break;
19400   case 'M':
19401     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19402       if (C->getZExtValue() <= 3)
19403         weight = CW_Constant;
19404     }
19405     break;
19406   case 'N':
19407     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19408       if (C->getZExtValue() <= 0xff)
19409         weight = CW_Constant;
19410     }
19411     break;
19412   case 'G':
19413   case 'C':
19414     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19415       weight = CW_Constant;
19416     }
19417     break;
19418   case 'e':
19419     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19420       if ((C->getSExtValue() >= -0x80000000LL) &&
19421           (C->getSExtValue() <= 0x7fffffffLL))
19422         weight = CW_Constant;
19423     }
19424     break;
19425   case 'Z':
19426     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19427       if (C->getZExtValue() <= 0xffffffff)
19428         weight = CW_Constant;
19429     }
19430     break;
19431   }
19432   return weight;
19433 }
19434
19435 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19436 /// with another that has more specific requirements based on the type of the
19437 /// corresponding operand.
19438 const char *X86TargetLowering::
19439 LowerXConstraint(EVT ConstraintVT) const {
19440   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19441   // 'f' like normal targets.
19442   if (ConstraintVT.isFloatingPoint()) {
19443     if (Subtarget->hasSSE2())
19444       return "Y";
19445     if (Subtarget->hasSSE1())
19446       return "x";
19447   }
19448
19449   return TargetLowering::LowerXConstraint(ConstraintVT);
19450 }
19451
19452 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19453 /// vector.  If it is invalid, don't add anything to Ops.
19454 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19455                                                      std::string &Constraint,
19456                                                      std::vector<SDValue>&Ops,
19457                                                      SelectionDAG &DAG) const {
19458   SDValue Result(0, 0);
19459
19460   // Only support length 1 constraints for now.
19461   if (Constraint.length() > 1) return;
19462
19463   char ConstraintLetter = Constraint[0];
19464   switch (ConstraintLetter) {
19465   default: break;
19466   case 'I':
19467     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19468       if (C->getZExtValue() <= 31) {
19469         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19470         break;
19471       }
19472     }
19473     return;
19474   case 'J':
19475     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19476       if (C->getZExtValue() <= 63) {
19477         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19478         break;
19479       }
19480     }
19481     return;
19482   case 'K':
19483     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19484       if (isInt<8>(C->getSExtValue())) {
19485         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19486         break;
19487       }
19488     }
19489     return;
19490   case 'N':
19491     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19492       if (C->getZExtValue() <= 255) {
19493         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19494         break;
19495       }
19496     }
19497     return;
19498   case 'e': {
19499     // 32-bit signed value
19500     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19501       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19502                                            C->getSExtValue())) {
19503         // Widen to 64 bits here to get it sign extended.
19504         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19505         break;
19506       }
19507     // FIXME gcc accepts some relocatable values here too, but only in certain
19508     // memory models; it's complicated.
19509     }
19510     return;
19511   }
19512   case 'Z': {
19513     // 32-bit unsigned value
19514     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19515       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19516                                            C->getZExtValue())) {
19517         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19518         break;
19519       }
19520     }
19521     // FIXME gcc accepts some relocatable values here too, but only in certain
19522     // memory models; it's complicated.
19523     return;
19524   }
19525   case 'i': {
19526     // Literal immediates are always ok.
19527     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19528       // Widen to 64 bits here to get it sign extended.
19529       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19530       break;
19531     }
19532
19533     // In any sort of PIC mode addresses need to be computed at runtime by
19534     // adding in a register or some sort of table lookup.  These can't
19535     // be used as immediates.
19536     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19537       return;
19538
19539     // If we are in non-pic codegen mode, we allow the address of a global (with
19540     // an optional displacement) to be used with 'i'.
19541     GlobalAddressSDNode *GA = 0;
19542     int64_t Offset = 0;
19543
19544     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19545     while (1) {
19546       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19547         Offset += GA->getOffset();
19548         break;
19549       } else if (Op.getOpcode() == ISD::ADD) {
19550         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19551           Offset += C->getZExtValue();
19552           Op = Op.getOperand(0);
19553           continue;
19554         }
19555       } else if (Op.getOpcode() == ISD::SUB) {
19556         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19557           Offset += -C->getZExtValue();
19558           Op = Op.getOperand(0);
19559           continue;
19560         }
19561       }
19562
19563       // Otherwise, this isn't something we can handle, reject it.
19564       return;
19565     }
19566
19567     const GlobalValue *GV = GA->getGlobal();
19568     // If we require an extra load to get this address, as in PIC mode, we
19569     // can't accept it.
19570     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19571                                                         getTargetMachine())))
19572       return;
19573
19574     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19575                                         GA->getValueType(0), Offset);
19576     break;
19577   }
19578   }
19579
19580   if (Result.getNode()) {
19581     Ops.push_back(Result);
19582     return;
19583   }
19584   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19585 }
19586
19587 std::pair<unsigned, const TargetRegisterClass*>
19588 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19589                                                 MVT VT) const {
19590   // First, see if this is a constraint that directly corresponds to an LLVM
19591   // register class.
19592   if (Constraint.size() == 1) {
19593     // GCC Constraint Letters
19594     switch (Constraint[0]) {
19595     default: break;
19596       // TODO: Slight differences here in allocation order and leaving
19597       // RIP in the class. Do they matter any more here than they do
19598       // in the normal allocation?
19599     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19600       if (Subtarget->is64Bit()) {
19601         if (VT == MVT::i32 || VT == MVT::f32)
19602           return std::make_pair(0U, &X86::GR32RegClass);
19603         if (VT == MVT::i16)
19604           return std::make_pair(0U, &X86::GR16RegClass);
19605         if (VT == MVT::i8 || VT == MVT::i1)
19606           return std::make_pair(0U, &X86::GR8RegClass);
19607         if (VT == MVT::i64 || VT == MVT::f64)
19608           return std::make_pair(0U, &X86::GR64RegClass);
19609         break;
19610       }
19611       // 32-bit fallthrough
19612     case 'Q':   // Q_REGS
19613       if (VT == MVT::i32 || VT == MVT::f32)
19614         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19615       if (VT == MVT::i16)
19616         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19617       if (VT == MVT::i8 || VT == MVT::i1)
19618         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19619       if (VT == MVT::i64)
19620         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19621       break;
19622     case 'r':   // GENERAL_REGS
19623     case 'l':   // INDEX_REGS
19624       if (VT == MVT::i8 || VT == MVT::i1)
19625         return std::make_pair(0U, &X86::GR8RegClass);
19626       if (VT == MVT::i16)
19627         return std::make_pair(0U, &X86::GR16RegClass);
19628       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19629         return std::make_pair(0U, &X86::GR32RegClass);
19630       return std::make_pair(0U, &X86::GR64RegClass);
19631     case 'R':   // LEGACY_REGS
19632       if (VT == MVT::i8 || VT == MVT::i1)
19633         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19634       if (VT == MVT::i16)
19635         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19636       if (VT == MVT::i32 || !Subtarget->is64Bit())
19637         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19638       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19639     case 'f':  // FP Stack registers.
19640       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19641       // value to the correct fpstack register class.
19642       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19643         return std::make_pair(0U, &X86::RFP32RegClass);
19644       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19645         return std::make_pair(0U, &X86::RFP64RegClass);
19646       return std::make_pair(0U, &X86::RFP80RegClass);
19647     case 'y':   // MMX_REGS if MMX allowed.
19648       if (!Subtarget->hasMMX()) break;
19649       return std::make_pair(0U, &X86::VR64RegClass);
19650     case 'Y':   // SSE_REGS if SSE2 allowed
19651       if (!Subtarget->hasSSE2()) break;
19652       // FALL THROUGH.
19653     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19654       if (!Subtarget->hasSSE1()) break;
19655
19656       switch (VT.SimpleTy) {
19657       default: break;
19658       // Scalar SSE types.
19659       case MVT::f32:
19660       case MVT::i32:
19661         return std::make_pair(0U, &X86::FR32RegClass);
19662       case MVT::f64:
19663       case MVT::i64:
19664         return std::make_pair(0U, &X86::FR64RegClass);
19665       // Vector types.
19666       case MVT::v16i8:
19667       case MVT::v8i16:
19668       case MVT::v4i32:
19669       case MVT::v2i64:
19670       case MVT::v4f32:
19671       case MVT::v2f64:
19672         return std::make_pair(0U, &X86::VR128RegClass);
19673       // AVX types.
19674       case MVT::v32i8:
19675       case MVT::v16i16:
19676       case MVT::v8i32:
19677       case MVT::v4i64:
19678       case MVT::v8f32:
19679       case MVT::v4f64:
19680         return std::make_pair(0U, &X86::VR256RegClass);
19681       case MVT::v8f64:
19682       case MVT::v16f32:
19683       case MVT::v16i32:
19684       case MVT::v8i64:
19685         return std::make_pair(0U, &X86::VR512RegClass);
19686       }
19687       break;
19688     }
19689   }
19690
19691   // Use the default implementation in TargetLowering to convert the register
19692   // constraint into a member of a register class.
19693   std::pair<unsigned, const TargetRegisterClass*> Res;
19694   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19695
19696   // Not found as a standard register?
19697   if (Res.second == 0) {
19698     // Map st(0) -> st(7) -> ST0
19699     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19700         tolower(Constraint[1]) == 's' &&
19701         tolower(Constraint[2]) == 't' &&
19702         Constraint[3] == '(' &&
19703         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19704         Constraint[5] == ')' &&
19705         Constraint[6] == '}') {
19706
19707       Res.first = X86::ST0+Constraint[4]-'0';
19708       Res.second = &X86::RFP80RegClass;
19709       return Res;
19710     }
19711
19712     // GCC allows "st(0)" to be called just plain "st".
19713     if (StringRef("{st}").equals_lower(Constraint)) {
19714       Res.first = X86::ST0;
19715       Res.second = &X86::RFP80RegClass;
19716       return Res;
19717     }
19718
19719     // flags -> EFLAGS
19720     if (StringRef("{flags}").equals_lower(Constraint)) {
19721       Res.first = X86::EFLAGS;
19722       Res.second = &X86::CCRRegClass;
19723       return Res;
19724     }
19725
19726     // 'A' means EAX + EDX.
19727     if (Constraint == "A") {
19728       Res.first = X86::EAX;
19729       Res.second = &X86::GR32_ADRegClass;
19730       return Res;
19731     }
19732     return Res;
19733   }
19734
19735   // Otherwise, check to see if this is a register class of the wrong value
19736   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19737   // turn into {ax},{dx}.
19738   if (Res.second->hasType(VT))
19739     return Res;   // Correct type already, nothing to do.
19740
19741   // All of the single-register GCC register classes map their values onto
19742   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19743   // really want an 8-bit or 32-bit register, map to the appropriate register
19744   // class and return the appropriate register.
19745   if (Res.second == &X86::GR16RegClass) {
19746     if (VT == MVT::i8 || VT == MVT::i1) {
19747       unsigned DestReg = 0;
19748       switch (Res.first) {
19749       default: break;
19750       case X86::AX: DestReg = X86::AL; break;
19751       case X86::DX: DestReg = X86::DL; break;
19752       case X86::CX: DestReg = X86::CL; break;
19753       case X86::BX: DestReg = X86::BL; break;
19754       }
19755       if (DestReg) {
19756         Res.first = DestReg;
19757         Res.second = &X86::GR8RegClass;
19758       }
19759     } else if (VT == MVT::i32 || VT == MVT::f32) {
19760       unsigned DestReg = 0;
19761       switch (Res.first) {
19762       default: break;
19763       case X86::AX: DestReg = X86::EAX; break;
19764       case X86::DX: DestReg = X86::EDX; break;
19765       case X86::CX: DestReg = X86::ECX; break;
19766       case X86::BX: DestReg = X86::EBX; break;
19767       case X86::SI: DestReg = X86::ESI; break;
19768       case X86::DI: DestReg = X86::EDI; break;
19769       case X86::BP: DestReg = X86::EBP; break;
19770       case X86::SP: DestReg = X86::ESP; break;
19771       }
19772       if (DestReg) {
19773         Res.first = DestReg;
19774         Res.second = &X86::GR32RegClass;
19775       }
19776     } else if (VT == MVT::i64 || VT == MVT::f64) {
19777       unsigned DestReg = 0;
19778       switch (Res.first) {
19779       default: break;
19780       case X86::AX: DestReg = X86::RAX; break;
19781       case X86::DX: DestReg = X86::RDX; break;
19782       case X86::CX: DestReg = X86::RCX; break;
19783       case X86::BX: DestReg = X86::RBX; break;
19784       case X86::SI: DestReg = X86::RSI; break;
19785       case X86::DI: DestReg = X86::RDI; break;
19786       case X86::BP: DestReg = X86::RBP; break;
19787       case X86::SP: DestReg = X86::RSP; break;
19788       }
19789       if (DestReg) {
19790         Res.first = DestReg;
19791         Res.second = &X86::GR64RegClass;
19792       }
19793     }
19794   } else if (Res.second == &X86::FR32RegClass ||
19795              Res.second == &X86::FR64RegClass ||
19796              Res.second == &X86::VR128RegClass ||
19797              Res.second == &X86::VR256RegClass ||
19798              Res.second == &X86::FR32XRegClass ||
19799              Res.second == &X86::FR64XRegClass ||
19800              Res.second == &X86::VR128XRegClass ||
19801              Res.second == &X86::VR256XRegClass ||
19802              Res.second == &X86::VR512RegClass) {
19803     // Handle references to XMM physical registers that got mapped into the
19804     // wrong class.  This can happen with constraints like {xmm0} where the
19805     // target independent register mapper will just pick the first match it can
19806     // find, ignoring the required type.
19807
19808     if (VT == MVT::f32 || VT == MVT::i32)
19809       Res.second = &X86::FR32RegClass;
19810     else if (VT == MVT::f64 || VT == MVT::i64)
19811       Res.second = &X86::FR64RegClass;
19812     else if (X86::VR128RegClass.hasType(VT))
19813       Res.second = &X86::VR128RegClass;
19814     else if (X86::VR256RegClass.hasType(VT))
19815       Res.second = &X86::VR256RegClass;
19816     else if (X86::VR512RegClass.hasType(VT))
19817       Res.second = &X86::VR512RegClass;
19818   }
19819
19820   return Res;
19821 }