SelectionDAG: Teach the legalizer to split SETCC if VSELECT needs splitting too.
[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
1334     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1335     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1336     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1337     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1338     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1339     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1340     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1341     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1342
1343     setOperationAction(ISD::TRUNCATE,           MVT::i1, Legal);
1344     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1345     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1346     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1347     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1348     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1349     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1350     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1351     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1352     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1353     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1354     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1355
1356     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1357     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1358     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1359     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1360     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1361
1362     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1363     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1364
1365     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1366
1367     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1368     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1369     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1370     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1371     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1372
1373     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1374     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1375
1376     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1377     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1378
1379     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1380
1381     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1382     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1383
1384     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1385     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1386
1387     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1388     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1389
1390     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1391     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1392     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1393     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1394     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1395     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1396
1397     // Custom lower several nodes.
1398     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1399              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1400       MVT VT = (MVT::SimpleValueType)i;
1401
1402       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1403       // Extract subvector is special because the value type
1404       // (result) is 256/128-bit but the source is 512-bit wide.
1405       if (VT.is128BitVector() || VT.is256BitVector())
1406         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1407
1408       if (VT.getVectorElementType() == MVT::i1)
1409         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1410
1411       // Do not attempt to custom lower other non-512-bit vectors
1412       if (!VT.is512BitVector())
1413         continue;
1414
1415       if ( EltSize >= 32) {
1416         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1417         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1418         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1419         setOperationAction(ISD::VSELECT,             VT, Legal);
1420         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1421         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1422         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1423       }
1424     }
1425     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1426       MVT VT = (MVT::SimpleValueType)i;
1427
1428       // Do not attempt to promote non-256-bit vectors
1429       if (!VT.is512BitVector())
1430         continue;
1431
1432       setOperationAction(ISD::SELECT, VT, Promote);
1433       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1434     }
1435   }// has  AVX-512
1436
1437   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1438   // of this type with custom code.
1439   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1440            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1441     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1442                        Custom);
1443   }
1444
1445   // We want to custom lower some of our intrinsics.
1446   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1447   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1448   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1449
1450   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1451   // handle type legalization for these operations here.
1452   //
1453   // FIXME: We really should do custom legalization for addition and
1454   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1455   // than generic legalization for 64-bit multiplication-with-overflow, though.
1456   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1457     // Add/Sub/Mul with overflow operations are custom lowered.
1458     MVT VT = IntVTs[i];
1459     setOperationAction(ISD::SADDO, VT, Custom);
1460     setOperationAction(ISD::UADDO, VT, Custom);
1461     setOperationAction(ISD::SSUBO, VT, Custom);
1462     setOperationAction(ISD::USUBO, VT, Custom);
1463     setOperationAction(ISD::SMULO, VT, Custom);
1464     setOperationAction(ISD::UMULO, VT, Custom);
1465   }
1466
1467   // There are no 8-bit 3-address imul/mul instructions
1468   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1469   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1470
1471   if (!Subtarget->is64Bit()) {
1472     // These libcalls are not available in 32-bit.
1473     setLibcallName(RTLIB::SHL_I128, 0);
1474     setLibcallName(RTLIB::SRL_I128, 0);
1475     setLibcallName(RTLIB::SRA_I128, 0);
1476   }
1477
1478   // Combine sin / cos into one node or libcall if possible.
1479   if (Subtarget->hasSinCos()) {
1480     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1481     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1482     if (Subtarget->isTargetDarwin()) {
1483       // For MacOSX, we don't want to the normal expansion of a libcall to
1484       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1485       // traffic.
1486       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1487       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1488     }
1489   }
1490
1491   // We have target-specific dag combine patterns for the following nodes:
1492   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1493   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1494   setTargetDAGCombine(ISD::VSELECT);
1495   setTargetDAGCombine(ISD::SELECT);
1496   setTargetDAGCombine(ISD::SHL);
1497   setTargetDAGCombine(ISD::SRA);
1498   setTargetDAGCombine(ISD::SRL);
1499   setTargetDAGCombine(ISD::OR);
1500   setTargetDAGCombine(ISD::AND);
1501   setTargetDAGCombine(ISD::ADD);
1502   setTargetDAGCombine(ISD::FADD);
1503   setTargetDAGCombine(ISD::FSUB);
1504   setTargetDAGCombine(ISD::FMA);
1505   setTargetDAGCombine(ISD::SUB);
1506   setTargetDAGCombine(ISD::LOAD);
1507   setTargetDAGCombine(ISD::STORE);
1508   setTargetDAGCombine(ISD::ZERO_EXTEND);
1509   setTargetDAGCombine(ISD::ANY_EXTEND);
1510   setTargetDAGCombine(ISD::SIGN_EXTEND);
1511   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1512   setTargetDAGCombine(ISD::TRUNCATE);
1513   setTargetDAGCombine(ISD::SINT_TO_FP);
1514   setTargetDAGCombine(ISD::SETCC);
1515   if (Subtarget->is64Bit())
1516     setTargetDAGCombine(ISD::MUL);
1517   setTargetDAGCombine(ISD::XOR);
1518
1519   computeRegisterProperties();
1520
1521   // On Darwin, -Os means optimize for size without hurting performance,
1522   // do not reduce the limit.
1523   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1524   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1525   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1526   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1527   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1528   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1529   setPrefLoopAlignment(4); // 2^4 bytes.
1530
1531   // Predictable cmov don't hurt on atom because it's in-order.
1532   PredictableSelectIsExpensive = !Subtarget->isAtom();
1533
1534   setPrefFunctionAlignment(4); // 2^4 bytes.
1535 }
1536
1537 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1538   if (!VT.isVector())
1539     return MVT::i8;
1540
1541   const TargetMachine &TM = getTargetMachine();
1542   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512())
1543     switch(VT.getVectorNumElements()) {
1544     case  8: return MVT::v8i1;
1545     case 16: return MVT::v16i1;
1546     }
1547
1548   return VT.changeVectorElementTypeToInteger();
1549 }
1550
1551 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1552 /// the desired ByVal argument alignment.
1553 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1554   if (MaxAlign == 16)
1555     return;
1556   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1557     if (VTy->getBitWidth() == 128)
1558       MaxAlign = 16;
1559   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1560     unsigned EltAlign = 0;
1561     getMaxByValAlign(ATy->getElementType(), EltAlign);
1562     if (EltAlign > MaxAlign)
1563       MaxAlign = EltAlign;
1564   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1565     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1566       unsigned EltAlign = 0;
1567       getMaxByValAlign(STy->getElementType(i), EltAlign);
1568       if (EltAlign > MaxAlign)
1569         MaxAlign = EltAlign;
1570       if (MaxAlign == 16)
1571         break;
1572     }
1573   }
1574 }
1575
1576 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1577 /// function arguments in the caller parameter area. For X86, aggregates
1578 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1579 /// are at 4-byte boundaries.
1580 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1581   if (Subtarget->is64Bit()) {
1582     // Max of 8 and alignment of type.
1583     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1584     if (TyAlign > 8)
1585       return TyAlign;
1586     return 8;
1587   }
1588
1589   unsigned Align = 4;
1590   if (Subtarget->hasSSE1())
1591     getMaxByValAlign(Ty, Align);
1592   return Align;
1593 }
1594
1595 /// getOptimalMemOpType - Returns the target specific optimal type for load
1596 /// and store operations as a result of memset, memcpy, and memmove
1597 /// lowering. If DstAlign is zero that means it's safe to destination
1598 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1599 /// means there isn't a need to check it against alignment requirement,
1600 /// probably because the source does not need to be loaded. If 'IsMemset' is
1601 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1602 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1603 /// source is constant so it does not need to be loaded.
1604 /// It returns EVT::Other if the type should be determined using generic
1605 /// target-independent logic.
1606 EVT
1607 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1608                                        unsigned DstAlign, unsigned SrcAlign,
1609                                        bool IsMemset, bool ZeroMemset,
1610                                        bool MemcpyStrSrc,
1611                                        MachineFunction &MF) const {
1612   const Function *F = MF.getFunction();
1613   if ((!IsMemset || ZeroMemset) &&
1614       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1615                                        Attribute::NoImplicitFloat)) {
1616     if (Size >= 16 &&
1617         (Subtarget->isUnalignedMemAccessFast() ||
1618          ((DstAlign == 0 || DstAlign >= 16) &&
1619           (SrcAlign == 0 || SrcAlign >= 16)))) {
1620       if (Size >= 32) {
1621         if (Subtarget->hasInt256())
1622           return MVT::v8i32;
1623         if (Subtarget->hasFp256())
1624           return MVT::v8f32;
1625       }
1626       if (Subtarget->hasSSE2())
1627         return MVT::v4i32;
1628       if (Subtarget->hasSSE1())
1629         return MVT::v4f32;
1630     } else if (!MemcpyStrSrc && Size >= 8 &&
1631                !Subtarget->is64Bit() &&
1632                Subtarget->hasSSE2()) {
1633       // Do not use f64 to lower memcpy if source is string constant. It's
1634       // better to use i32 to avoid the loads.
1635       return MVT::f64;
1636     }
1637   }
1638   if (Subtarget->is64Bit() && Size >= 8)
1639     return MVT::i64;
1640   return MVT::i32;
1641 }
1642
1643 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1644   if (VT == MVT::f32)
1645     return X86ScalarSSEf32;
1646   else if (VT == MVT::f64)
1647     return X86ScalarSSEf64;
1648   return true;
1649 }
1650
1651 bool
1652 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1653   if (Fast)
1654     *Fast = Subtarget->isUnalignedMemAccessFast();
1655   return true;
1656 }
1657
1658 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1659 /// current function.  The returned value is a member of the
1660 /// MachineJumpTableInfo::JTEntryKind enum.
1661 unsigned X86TargetLowering::getJumpTableEncoding() const {
1662   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1663   // symbol.
1664   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1665       Subtarget->isPICStyleGOT())
1666     return MachineJumpTableInfo::EK_Custom32;
1667
1668   // Otherwise, use the normal jump table encoding heuristics.
1669   return TargetLowering::getJumpTableEncoding();
1670 }
1671
1672 const MCExpr *
1673 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1674                                              const MachineBasicBlock *MBB,
1675                                              unsigned uid,MCContext &Ctx) const{
1676   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1677          Subtarget->isPICStyleGOT());
1678   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1679   // entries.
1680   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1681                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1682 }
1683
1684 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1685 /// jumptable.
1686 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1687                                                     SelectionDAG &DAG) const {
1688   if (!Subtarget->is64Bit())
1689     // This doesn't have SDLoc associated with it, but is not really the
1690     // same as a Register.
1691     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1692   return Table;
1693 }
1694
1695 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1696 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1697 /// MCExpr.
1698 const MCExpr *X86TargetLowering::
1699 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1700                              MCContext &Ctx) const {
1701   // X86-64 uses RIP relative addressing based on the jump table label.
1702   if (Subtarget->isPICStyleRIPRel())
1703     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1704
1705   // Otherwise, the reference is relative to the PIC base.
1706   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1707 }
1708
1709 // FIXME: Why this routine is here? Move to RegInfo!
1710 std::pair<const TargetRegisterClass*, uint8_t>
1711 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1712   const TargetRegisterClass *RRC = 0;
1713   uint8_t Cost = 1;
1714   switch (VT.SimpleTy) {
1715   default:
1716     return TargetLowering::findRepresentativeClass(VT);
1717   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1718     RRC = Subtarget->is64Bit() ?
1719       (const TargetRegisterClass*)&X86::GR64RegClass :
1720       (const TargetRegisterClass*)&X86::GR32RegClass;
1721     break;
1722   case MVT::x86mmx:
1723     RRC = &X86::VR64RegClass;
1724     break;
1725   case MVT::f32: case MVT::f64:
1726   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1727   case MVT::v4f32: case MVT::v2f64:
1728   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1729   case MVT::v4f64:
1730     RRC = &X86::VR128RegClass;
1731     break;
1732   }
1733   return std::make_pair(RRC, Cost);
1734 }
1735
1736 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1737                                                unsigned &Offset) const {
1738   if (!Subtarget->isTargetLinux())
1739     return false;
1740
1741   if (Subtarget->is64Bit()) {
1742     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1743     Offset = 0x28;
1744     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1745       AddressSpace = 256;
1746     else
1747       AddressSpace = 257;
1748   } else {
1749     // %gs:0x14 on i386
1750     Offset = 0x14;
1751     AddressSpace = 256;
1752   }
1753   return true;
1754 }
1755
1756 //===----------------------------------------------------------------------===//
1757 //               Return Value Calling Convention Implementation
1758 //===----------------------------------------------------------------------===//
1759
1760 #include "X86GenCallingConv.inc"
1761
1762 bool
1763 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1764                                   MachineFunction &MF, bool isVarArg,
1765                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1766                         LLVMContext &Context) const {
1767   SmallVector<CCValAssign, 16> RVLocs;
1768   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1769                  RVLocs, Context);
1770   return CCInfo.CheckReturn(Outs, RetCC_X86);
1771 }
1772
1773 SDValue
1774 X86TargetLowering::LowerReturn(SDValue Chain,
1775                                CallingConv::ID CallConv, bool isVarArg,
1776                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1777                                const SmallVectorImpl<SDValue> &OutVals,
1778                                SDLoc dl, SelectionDAG &DAG) const {
1779   MachineFunction &MF = DAG.getMachineFunction();
1780   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1781
1782   SmallVector<CCValAssign, 16> RVLocs;
1783   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1784                  RVLocs, *DAG.getContext());
1785   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1786
1787   SDValue Flag;
1788   SmallVector<SDValue, 6> RetOps;
1789   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1790   // Operand #1 = Bytes To Pop
1791   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1792                    MVT::i16));
1793
1794   // Copy the result values into the output registers.
1795   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1796     CCValAssign &VA = RVLocs[i];
1797     assert(VA.isRegLoc() && "Can only return in registers!");
1798     SDValue ValToCopy = OutVals[i];
1799     EVT ValVT = ValToCopy.getValueType();
1800
1801     // Promote values to the appropriate types
1802     if (VA.getLocInfo() == CCValAssign::SExt)
1803       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1804     else if (VA.getLocInfo() == CCValAssign::ZExt)
1805       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1806     else if (VA.getLocInfo() == CCValAssign::AExt)
1807       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1808     else if (VA.getLocInfo() == CCValAssign::BCvt)
1809       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1810
1811     // If this is x86-64, and we disabled SSE, we can't return FP values,
1812     // or SSE or MMX vectors.
1813     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1814          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1815           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1816       report_fatal_error("SSE register return with SSE disabled");
1817     }
1818     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1819     // llvm-gcc has never done it right and no one has noticed, so this
1820     // should be OK for now.
1821     if (ValVT == MVT::f64 &&
1822         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1823       report_fatal_error("SSE2 register return with SSE2 disabled");
1824
1825     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1826     // the RET instruction and handled by the FP Stackifier.
1827     if (VA.getLocReg() == X86::ST0 ||
1828         VA.getLocReg() == X86::ST1) {
1829       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1830       // change the value to the FP stack register class.
1831       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1832         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1833       RetOps.push_back(ValToCopy);
1834       // Don't emit a copytoreg.
1835       continue;
1836     }
1837
1838     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1839     // which is returned in RAX / RDX.
1840     if (Subtarget->is64Bit()) {
1841       if (ValVT == MVT::x86mmx) {
1842         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1843           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1844           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1845                                   ValToCopy);
1846           // If we don't have SSE2 available, convert to v4f32 so the generated
1847           // register is legal.
1848           if (!Subtarget->hasSSE2())
1849             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1850         }
1851       }
1852     }
1853
1854     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1855     Flag = Chain.getValue(1);
1856     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1857   }
1858
1859   // The x86-64 ABIs require that for returning structs by value we copy
1860   // the sret argument into %rax/%eax (depending on ABI) for the return.
1861   // Win32 requires us to put the sret argument to %eax as well.
1862   // We saved the argument into a virtual register in the entry block,
1863   // so now we copy the value out and into %rax/%eax.
1864   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1865       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1866     MachineFunction &MF = DAG.getMachineFunction();
1867     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1868     unsigned Reg = FuncInfo->getSRetReturnReg();
1869     assert(Reg &&
1870            "SRetReturnReg should have been set in LowerFormalArguments().");
1871     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1872
1873     unsigned RetValReg
1874         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1875           X86::RAX : X86::EAX;
1876     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1877     Flag = Chain.getValue(1);
1878
1879     // RAX/EAX now acts like a return value.
1880     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1881   }
1882
1883   RetOps[0] = Chain;  // Update chain.
1884
1885   // Add the flag if we have it.
1886   if (Flag.getNode())
1887     RetOps.push_back(Flag);
1888
1889   return DAG.getNode(X86ISD::RET_FLAG, dl,
1890                      MVT::Other, &RetOps[0], RetOps.size());
1891 }
1892
1893 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1894   if (N->getNumValues() != 1)
1895     return false;
1896   if (!N->hasNUsesOfValue(1, 0))
1897     return false;
1898
1899   SDValue TCChain = Chain;
1900   SDNode *Copy = *N->use_begin();
1901   if (Copy->getOpcode() == ISD::CopyToReg) {
1902     // If the copy has a glue operand, we conservatively assume it isn't safe to
1903     // perform a tail call.
1904     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1905       return false;
1906     TCChain = Copy->getOperand(0);
1907   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1908     return false;
1909
1910   bool HasRet = false;
1911   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1912        UI != UE; ++UI) {
1913     if (UI->getOpcode() != X86ISD::RET_FLAG)
1914       return false;
1915     HasRet = true;
1916   }
1917
1918   if (!HasRet)
1919     return false;
1920
1921   Chain = TCChain;
1922   return true;
1923 }
1924
1925 MVT
1926 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1927                                             ISD::NodeType ExtendKind) const {
1928   MVT ReturnMVT;
1929   // TODO: Is this also valid on 32-bit?
1930   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1931     ReturnMVT = MVT::i8;
1932   else
1933     ReturnMVT = MVT::i32;
1934
1935   MVT MinVT = getRegisterType(ReturnMVT);
1936   return VT.bitsLT(MinVT) ? MinVT : VT;
1937 }
1938
1939 /// LowerCallResult - Lower the result values of a call into the
1940 /// appropriate copies out of appropriate physical registers.
1941 ///
1942 SDValue
1943 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1944                                    CallingConv::ID CallConv, bool isVarArg,
1945                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1946                                    SDLoc dl, SelectionDAG &DAG,
1947                                    SmallVectorImpl<SDValue> &InVals) const {
1948
1949   // Assign locations to each value returned by this call.
1950   SmallVector<CCValAssign, 16> RVLocs;
1951   bool Is64Bit = Subtarget->is64Bit();
1952   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1953                  getTargetMachine(), RVLocs, *DAG.getContext());
1954   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1955
1956   // Copy all of the result registers out of their specified physreg.
1957   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1958     CCValAssign &VA = RVLocs[i];
1959     EVT CopyVT = VA.getValVT();
1960
1961     // If this is x86-64, and we disabled SSE, we can't return FP values
1962     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1963         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1964       report_fatal_error("SSE register return with SSE disabled");
1965     }
1966
1967     SDValue Val;
1968
1969     // If this is a call to a function that returns an fp value on the floating
1970     // point stack, we must guarantee the value is popped from the stack, so
1971     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1972     // if the return value is not used. We use the FpPOP_RETVAL instruction
1973     // instead.
1974     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1975       // If we prefer to use the value in xmm registers, copy it out as f80 and
1976       // use a truncate to move it from fp stack reg to xmm reg.
1977       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1978       SDValue Ops[] = { Chain, InFlag };
1979       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1980                                          MVT::Other, MVT::Glue, Ops), 1);
1981       Val = Chain.getValue(0);
1982
1983       // Round the f80 to the right size, which also moves it to the appropriate
1984       // xmm register.
1985       if (CopyVT != VA.getValVT())
1986         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1987                           // This truncation won't change the value.
1988                           DAG.getIntPtrConstant(1));
1989     } else {
1990       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1991                                  CopyVT, InFlag).getValue(1);
1992       Val = Chain.getValue(0);
1993     }
1994     InFlag = Chain.getValue(2);
1995     InVals.push_back(Val);
1996   }
1997
1998   return Chain;
1999 }
2000
2001 //===----------------------------------------------------------------------===//
2002 //                C & StdCall & Fast Calling Convention implementation
2003 //===----------------------------------------------------------------------===//
2004 //  StdCall calling convention seems to be standard for many Windows' API
2005 //  routines and around. It differs from C calling convention just a little:
2006 //  callee should clean up the stack, not caller. Symbols should be also
2007 //  decorated in some fancy way :) It doesn't support any vector arguments.
2008 //  For info on fast calling convention see Fast Calling Convention (tail call)
2009 //  implementation LowerX86_32FastCCCallTo.
2010
2011 /// CallIsStructReturn - Determines whether a call uses struct return
2012 /// semantics.
2013 enum StructReturnType {
2014   NotStructReturn,
2015   RegStructReturn,
2016   StackStructReturn
2017 };
2018 static StructReturnType
2019 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2020   if (Outs.empty())
2021     return NotStructReturn;
2022
2023   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2024   if (!Flags.isSRet())
2025     return NotStructReturn;
2026   if (Flags.isInReg())
2027     return RegStructReturn;
2028   return StackStructReturn;
2029 }
2030
2031 /// ArgsAreStructReturn - Determines whether a function uses struct
2032 /// return semantics.
2033 static StructReturnType
2034 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2035   if (Ins.empty())
2036     return NotStructReturn;
2037
2038   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2039   if (!Flags.isSRet())
2040     return NotStructReturn;
2041   if (Flags.isInReg())
2042     return RegStructReturn;
2043   return StackStructReturn;
2044 }
2045
2046 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2047 /// by "Src" to address "Dst" with size and alignment information specified by
2048 /// the specific parameter attribute. The copy will be passed as a byval
2049 /// function parameter.
2050 static SDValue
2051 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2052                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2053                           SDLoc dl) {
2054   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2055
2056   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2057                        /*isVolatile*/false, /*AlwaysInline=*/true,
2058                        MachinePointerInfo(), MachinePointerInfo());
2059 }
2060
2061 /// IsTailCallConvention - Return true if the calling convention is one that
2062 /// supports tail call optimization.
2063 static bool IsTailCallConvention(CallingConv::ID CC) {
2064   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2065           CC == CallingConv::HiPE);
2066 }
2067
2068 /// \brief Return true if the calling convention is a C calling convention.
2069 static bool IsCCallConvention(CallingConv::ID CC) {
2070   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2071           CC == CallingConv::X86_64_SysV);
2072 }
2073
2074 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2075   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2076     return false;
2077
2078   CallSite CS(CI);
2079   CallingConv::ID CalleeCC = CS.getCallingConv();
2080   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2081     return false;
2082
2083   return true;
2084 }
2085
2086 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2087 /// a tailcall target by changing its ABI.
2088 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2089                                    bool GuaranteedTailCallOpt) {
2090   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2091 }
2092
2093 SDValue
2094 X86TargetLowering::LowerMemArgument(SDValue Chain,
2095                                     CallingConv::ID CallConv,
2096                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2097                                     SDLoc dl, SelectionDAG &DAG,
2098                                     const CCValAssign &VA,
2099                                     MachineFrameInfo *MFI,
2100                                     unsigned i) const {
2101   // Create the nodes corresponding to a load from this parameter slot.
2102   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2103   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2104                               getTargetMachine().Options.GuaranteedTailCallOpt);
2105   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2106   EVT ValVT;
2107
2108   // If value is passed by pointer we have address passed instead of the value
2109   // itself.
2110   if (VA.getLocInfo() == CCValAssign::Indirect)
2111     ValVT = VA.getLocVT();
2112   else
2113     ValVT = VA.getValVT();
2114
2115   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2116   // changed with more analysis.
2117   // In case of tail call optimization mark all arguments mutable. Since they
2118   // could be overwritten by lowering of arguments in case of a tail call.
2119   if (Flags.isByVal()) {
2120     unsigned Bytes = Flags.getByValSize();
2121     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2122     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2123     return DAG.getFrameIndex(FI, getPointerTy());
2124   } else {
2125     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2126                                     VA.getLocMemOffset(), isImmutable);
2127     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2128     return DAG.getLoad(ValVT, dl, Chain, FIN,
2129                        MachinePointerInfo::getFixedStack(FI),
2130                        false, false, false, 0);
2131   }
2132 }
2133
2134 SDValue
2135 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2136                                         CallingConv::ID CallConv,
2137                                         bool isVarArg,
2138                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2139                                         SDLoc dl,
2140                                         SelectionDAG &DAG,
2141                                         SmallVectorImpl<SDValue> &InVals)
2142                                           const {
2143   MachineFunction &MF = DAG.getMachineFunction();
2144   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2145
2146   const Function* Fn = MF.getFunction();
2147   if (Fn->hasExternalLinkage() &&
2148       Subtarget->isTargetCygMing() &&
2149       Fn->getName() == "main")
2150     FuncInfo->setForceFramePointer(true);
2151
2152   MachineFrameInfo *MFI = MF.getFrameInfo();
2153   bool Is64Bit = Subtarget->is64Bit();
2154   bool IsWindows = Subtarget->isTargetWindows();
2155   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2156
2157   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2158          "Var args not supported with calling convention fastcc, ghc or hipe");
2159
2160   // Assign locations to all of the incoming arguments.
2161   SmallVector<CCValAssign, 16> ArgLocs;
2162   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2163                  ArgLocs, *DAG.getContext());
2164
2165   // Allocate shadow area for Win64
2166   if (IsWin64)
2167     CCInfo.AllocateStack(32, 8);
2168
2169   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2170
2171   unsigned LastVal = ~0U;
2172   SDValue ArgValue;
2173   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2174     CCValAssign &VA = ArgLocs[i];
2175     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2176     // places.
2177     assert(VA.getValNo() != LastVal &&
2178            "Don't support value assigned to multiple locs yet");
2179     (void)LastVal;
2180     LastVal = VA.getValNo();
2181
2182     if (VA.isRegLoc()) {
2183       EVT RegVT = VA.getLocVT();
2184       const TargetRegisterClass *RC;
2185       if (RegVT == MVT::i32)
2186         RC = &X86::GR32RegClass;
2187       else if (Is64Bit && RegVT == MVT::i64)
2188         RC = &X86::GR64RegClass;
2189       else if (RegVT == MVT::f32)
2190         RC = &X86::FR32RegClass;
2191       else if (RegVT == MVT::f64)
2192         RC = &X86::FR64RegClass;
2193       else if (RegVT.is512BitVector())
2194         RC = &X86::VR512RegClass;
2195       else if (RegVT.is256BitVector())
2196         RC = &X86::VR256RegClass;
2197       else if (RegVT.is128BitVector())
2198         RC = &X86::VR128RegClass;
2199       else if (RegVT == MVT::x86mmx)
2200         RC = &X86::VR64RegClass;
2201       else if (RegVT == MVT::v8i1)
2202         RC = &X86::VK8RegClass;
2203       else if (RegVT == MVT::v16i1)
2204         RC = &X86::VK16RegClass;
2205       else
2206         llvm_unreachable("Unknown argument type!");
2207
2208       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2209       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2210
2211       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2212       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2213       // right size.
2214       if (VA.getLocInfo() == CCValAssign::SExt)
2215         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2216                                DAG.getValueType(VA.getValVT()));
2217       else if (VA.getLocInfo() == CCValAssign::ZExt)
2218         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2219                                DAG.getValueType(VA.getValVT()));
2220       else if (VA.getLocInfo() == CCValAssign::BCvt)
2221         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2222
2223       if (VA.isExtInLoc()) {
2224         // Handle MMX values passed in XMM regs.
2225         if (RegVT.isVector())
2226           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2227         else
2228           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2229       }
2230     } else {
2231       assert(VA.isMemLoc());
2232       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2233     }
2234
2235     // If value is passed via pointer - do a load.
2236     if (VA.getLocInfo() == CCValAssign::Indirect)
2237       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2238                              MachinePointerInfo(), false, false, false, 0);
2239
2240     InVals.push_back(ArgValue);
2241   }
2242
2243   // The x86-64 ABIs require that for returning structs by value we copy
2244   // the sret argument into %rax/%eax (depending on ABI) for the return.
2245   // Win32 requires us to put the sret argument to %eax as well.
2246   // Save the argument into a virtual register so that we can access it
2247   // from the return points.
2248   if (MF.getFunction()->hasStructRetAttr() &&
2249       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2250     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2251     unsigned Reg = FuncInfo->getSRetReturnReg();
2252     if (!Reg) {
2253       MVT PtrTy = getPointerTy();
2254       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2255       FuncInfo->setSRetReturnReg(Reg);
2256     }
2257     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2258     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2259   }
2260
2261   unsigned StackSize = CCInfo.getNextStackOffset();
2262   // Align stack specially for tail calls.
2263   if (FuncIsMadeTailCallSafe(CallConv,
2264                              MF.getTarget().Options.GuaranteedTailCallOpt))
2265     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2266
2267   // If the function takes variable number of arguments, make a frame index for
2268   // the start of the first vararg value... for expansion of llvm.va_start.
2269   if (isVarArg) {
2270     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2271                     CallConv != CallingConv::X86_ThisCall)) {
2272       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2273     }
2274     if (Is64Bit) {
2275       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2276
2277       // FIXME: We should really autogenerate these arrays
2278       static const uint16_t GPR64ArgRegsWin64[] = {
2279         X86::RCX, X86::RDX, X86::R8,  X86::R9
2280       };
2281       static const uint16_t GPR64ArgRegs64Bit[] = {
2282         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2283       };
2284       static const uint16_t XMMArgRegs64Bit[] = {
2285         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2286         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2287       };
2288       const uint16_t *GPR64ArgRegs;
2289       unsigned NumXMMRegs = 0;
2290
2291       if (IsWin64) {
2292         // The XMM registers which might contain var arg parameters are shadowed
2293         // in their paired GPR.  So we only need to save the GPR to their home
2294         // slots.
2295         TotalNumIntRegs = 4;
2296         GPR64ArgRegs = GPR64ArgRegsWin64;
2297       } else {
2298         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2299         GPR64ArgRegs = GPR64ArgRegs64Bit;
2300
2301         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2302                                                 TotalNumXMMRegs);
2303       }
2304       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2305                                                        TotalNumIntRegs);
2306
2307       bool NoImplicitFloatOps = Fn->getAttributes().
2308         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2309       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2310              "SSE register cannot be used when SSE is disabled!");
2311       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2312                NoImplicitFloatOps) &&
2313              "SSE register cannot be used when SSE is disabled!");
2314       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2315           !Subtarget->hasSSE1())
2316         // Kernel mode asks for SSE to be disabled, so don't push them
2317         // on the stack.
2318         TotalNumXMMRegs = 0;
2319
2320       if (IsWin64) {
2321         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2322         // Get to the caller-allocated home save location.  Add 8 to account
2323         // for the return address.
2324         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2325         FuncInfo->setRegSaveFrameIndex(
2326           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2327         // Fixup to set vararg frame on shadow area (4 x i64).
2328         if (NumIntRegs < 4)
2329           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2330       } else {
2331         // For X86-64, if there are vararg parameters that are passed via
2332         // registers, then we must store them to their spots on the stack so
2333         // they may be loaded by deferencing the result of va_next.
2334         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2335         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2336         FuncInfo->setRegSaveFrameIndex(
2337           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2338                                false));
2339       }
2340
2341       // Store the integer parameter registers.
2342       SmallVector<SDValue, 8> MemOps;
2343       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2344                                         getPointerTy());
2345       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2346       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2347         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2348                                   DAG.getIntPtrConstant(Offset));
2349         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2350                                      &X86::GR64RegClass);
2351         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2352         SDValue Store =
2353           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2354                        MachinePointerInfo::getFixedStack(
2355                          FuncInfo->getRegSaveFrameIndex(), Offset),
2356                        false, false, 0);
2357         MemOps.push_back(Store);
2358         Offset += 8;
2359       }
2360
2361       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2362         // Now store the XMM (fp + vector) parameter registers.
2363         SmallVector<SDValue, 11> SaveXMMOps;
2364         SaveXMMOps.push_back(Chain);
2365
2366         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2367         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2368         SaveXMMOps.push_back(ALVal);
2369
2370         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2371                                FuncInfo->getRegSaveFrameIndex()));
2372         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2373                                FuncInfo->getVarArgsFPOffset()));
2374
2375         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2376           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2377                                        &X86::VR128RegClass);
2378           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2379           SaveXMMOps.push_back(Val);
2380         }
2381         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2382                                      MVT::Other,
2383                                      &SaveXMMOps[0], SaveXMMOps.size()));
2384       }
2385
2386       if (!MemOps.empty())
2387         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2388                             &MemOps[0], MemOps.size());
2389     }
2390   }
2391
2392   // Some CCs need callee pop.
2393   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2394                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2395     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2396   } else {
2397     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2398     // If this is an sret function, the return should pop the hidden pointer.
2399     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2400         argsAreStructReturn(Ins) == StackStructReturn)
2401       FuncInfo->setBytesToPopOnReturn(4);
2402   }
2403
2404   if (!Is64Bit) {
2405     // RegSaveFrameIndex is X86-64 only.
2406     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2407     if (CallConv == CallingConv::X86_FastCall ||
2408         CallConv == CallingConv::X86_ThisCall)
2409       // fastcc functions can't have varargs.
2410       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2411   }
2412
2413   FuncInfo->setArgumentStackSize(StackSize);
2414
2415   return Chain;
2416 }
2417
2418 SDValue
2419 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2420                                     SDValue StackPtr, SDValue Arg,
2421                                     SDLoc dl, SelectionDAG &DAG,
2422                                     const CCValAssign &VA,
2423                                     ISD::ArgFlagsTy Flags) const {
2424   unsigned LocMemOffset = VA.getLocMemOffset();
2425   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2426   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2427   if (Flags.isByVal())
2428     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2429
2430   return DAG.getStore(Chain, dl, Arg, PtrOff,
2431                       MachinePointerInfo::getStack(LocMemOffset),
2432                       false, false, 0);
2433 }
2434
2435 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2436 /// optimization is performed and it is required.
2437 SDValue
2438 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2439                                            SDValue &OutRetAddr, SDValue Chain,
2440                                            bool IsTailCall, bool Is64Bit,
2441                                            int FPDiff, SDLoc dl) const {
2442   // Adjust the Return address stack slot.
2443   EVT VT = getPointerTy();
2444   OutRetAddr = getReturnAddressFrameIndex(DAG);
2445
2446   // Load the "old" Return address.
2447   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2448                            false, false, false, 0);
2449   return SDValue(OutRetAddr.getNode(), 1);
2450 }
2451
2452 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2453 /// optimization is performed and it is required (FPDiff!=0).
2454 static SDValue
2455 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2456                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2457                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2458   // Store the return address to the appropriate stack slot.
2459   if (!FPDiff) return Chain;
2460   // Calculate the new stack slot for the return address.
2461   int NewReturnAddrFI =
2462     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2463                                          false);
2464   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2465   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2466                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2467                        false, false, 0);
2468   return Chain;
2469 }
2470
2471 SDValue
2472 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2473                              SmallVectorImpl<SDValue> &InVals) const {
2474   SelectionDAG &DAG                     = CLI.DAG;
2475   SDLoc &dl                             = CLI.DL;
2476   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2477   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2478   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2479   SDValue Chain                         = CLI.Chain;
2480   SDValue Callee                        = CLI.Callee;
2481   CallingConv::ID CallConv              = CLI.CallConv;
2482   bool &isTailCall                      = CLI.IsTailCall;
2483   bool isVarArg                         = CLI.IsVarArg;
2484
2485   MachineFunction &MF = DAG.getMachineFunction();
2486   bool Is64Bit        = Subtarget->is64Bit();
2487   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2488   bool IsWindows      = Subtarget->isTargetWindows();
2489   StructReturnType SR = callIsStructReturn(Outs);
2490   bool IsSibcall      = false;
2491
2492   if (MF.getTarget().Options.DisableTailCalls)
2493     isTailCall = false;
2494
2495   if (isTailCall) {
2496     // Check if it's really possible to do a tail call.
2497     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2498                     isVarArg, SR != NotStructReturn,
2499                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2500                     Outs, OutVals, Ins, DAG);
2501
2502     // Sibcalls are automatically detected tailcalls which do not require
2503     // ABI changes.
2504     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2505       IsSibcall = true;
2506
2507     if (isTailCall)
2508       ++NumTailCalls;
2509   }
2510
2511   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2512          "Var args not supported with calling convention fastcc, ghc or hipe");
2513
2514   // Analyze operands of the call, assigning locations to each operand.
2515   SmallVector<CCValAssign, 16> ArgLocs;
2516   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2517                  ArgLocs, *DAG.getContext());
2518
2519   // Allocate shadow area for Win64
2520   if (IsWin64)
2521     CCInfo.AllocateStack(32, 8);
2522
2523   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2524
2525   // Get a count of how many bytes are to be pushed on the stack.
2526   unsigned NumBytes = CCInfo.getNextStackOffset();
2527   if (IsSibcall)
2528     // This is a sibcall. The memory operands are available in caller's
2529     // own caller's stack.
2530     NumBytes = 0;
2531   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2532            IsTailCallConvention(CallConv))
2533     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2534
2535   int FPDiff = 0;
2536   if (isTailCall && !IsSibcall) {
2537     // Lower arguments at fp - stackoffset + fpdiff.
2538     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2539     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2540
2541     FPDiff = NumBytesCallerPushed - NumBytes;
2542
2543     // Set the delta of movement of the returnaddr stackslot.
2544     // But only set if delta is greater than previous delta.
2545     if (FPDiff < X86Info->getTCReturnAddrDelta())
2546       X86Info->setTCReturnAddrDelta(FPDiff);
2547   }
2548
2549   if (!IsSibcall)
2550     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2551                                  dl);
2552
2553   SDValue RetAddrFrIdx;
2554   // Load return address for tail calls.
2555   if (isTailCall && FPDiff)
2556     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2557                                     Is64Bit, FPDiff, dl);
2558
2559   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2560   SmallVector<SDValue, 8> MemOpChains;
2561   SDValue StackPtr;
2562
2563   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2564   // of tail call optimization arguments are handle later.
2565   const X86RegisterInfo *RegInfo =
2566     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2567   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2568     CCValAssign &VA = ArgLocs[i];
2569     EVT RegVT = VA.getLocVT();
2570     SDValue Arg = OutVals[i];
2571     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2572     bool isByVal = Flags.isByVal();
2573
2574     // Promote the value if needed.
2575     switch (VA.getLocInfo()) {
2576     default: llvm_unreachable("Unknown loc info!");
2577     case CCValAssign::Full: break;
2578     case CCValAssign::SExt:
2579       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2580       break;
2581     case CCValAssign::ZExt:
2582       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2583       break;
2584     case CCValAssign::AExt:
2585       if (RegVT.is128BitVector()) {
2586         // Special case: passing MMX values in XMM registers.
2587         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2588         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2589         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2590       } else
2591         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2592       break;
2593     case CCValAssign::BCvt:
2594       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2595       break;
2596     case CCValAssign::Indirect: {
2597       // Store the argument.
2598       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2599       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2600       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2601                            MachinePointerInfo::getFixedStack(FI),
2602                            false, false, 0);
2603       Arg = SpillSlot;
2604       break;
2605     }
2606     }
2607
2608     if (VA.isRegLoc()) {
2609       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2610       if (isVarArg && IsWin64) {
2611         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2612         // shadow reg if callee is a varargs function.
2613         unsigned ShadowReg = 0;
2614         switch (VA.getLocReg()) {
2615         case X86::XMM0: ShadowReg = X86::RCX; break;
2616         case X86::XMM1: ShadowReg = X86::RDX; break;
2617         case X86::XMM2: ShadowReg = X86::R8; break;
2618         case X86::XMM3: ShadowReg = X86::R9; break;
2619         }
2620         if (ShadowReg)
2621           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2622       }
2623     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2624       assert(VA.isMemLoc());
2625       if (StackPtr.getNode() == 0)
2626         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2627                                       getPointerTy());
2628       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2629                                              dl, DAG, VA, Flags));
2630     }
2631   }
2632
2633   if (!MemOpChains.empty())
2634     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2635                         &MemOpChains[0], MemOpChains.size());
2636
2637   if (Subtarget->isPICStyleGOT()) {
2638     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2639     // GOT pointer.
2640     if (!isTailCall) {
2641       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2642                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2643     } else {
2644       // If we are tail calling and generating PIC/GOT style code load the
2645       // address of the callee into ECX. The value in ecx is used as target of
2646       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2647       // for tail calls on PIC/GOT architectures. Normally we would just put the
2648       // address of GOT into ebx and then call target@PLT. But for tail calls
2649       // ebx would be restored (since ebx is callee saved) before jumping to the
2650       // target@PLT.
2651
2652       // Note: The actual moving to ECX is done further down.
2653       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2654       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2655           !G->getGlobal()->hasProtectedVisibility())
2656         Callee = LowerGlobalAddress(Callee, DAG);
2657       else if (isa<ExternalSymbolSDNode>(Callee))
2658         Callee = LowerExternalSymbol(Callee, DAG);
2659     }
2660   }
2661
2662   if (Is64Bit && isVarArg && !IsWin64) {
2663     // From AMD64 ABI document:
2664     // For calls that may call functions that use varargs or stdargs
2665     // (prototype-less calls or calls to functions containing ellipsis (...) in
2666     // the declaration) %al is used as hidden argument to specify the number
2667     // of SSE registers used. The contents of %al do not need to match exactly
2668     // the number of registers, but must be an ubound on the number of SSE
2669     // registers used and is in the range 0 - 8 inclusive.
2670
2671     // Count the number of XMM registers allocated.
2672     static const uint16_t XMMArgRegs[] = {
2673       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2674       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2675     };
2676     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2677     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2678            && "SSE registers cannot be used when SSE is disabled");
2679
2680     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2681                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2682   }
2683
2684   // For tail calls lower the arguments to the 'real' stack slot.
2685   if (isTailCall) {
2686     // Force all the incoming stack arguments to be loaded from the stack
2687     // before any new outgoing arguments are stored to the stack, because the
2688     // outgoing stack slots may alias the incoming argument stack slots, and
2689     // the alias isn't otherwise explicit. This is slightly more conservative
2690     // than necessary, because it means that each store effectively depends
2691     // on every argument instead of just those arguments it would clobber.
2692     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2693
2694     SmallVector<SDValue, 8> MemOpChains2;
2695     SDValue FIN;
2696     int FI = 0;
2697     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2698       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2699         CCValAssign &VA = ArgLocs[i];
2700         if (VA.isRegLoc())
2701           continue;
2702         assert(VA.isMemLoc());
2703         SDValue Arg = OutVals[i];
2704         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2705         // Create frame index.
2706         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2707         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2708         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2709         FIN = DAG.getFrameIndex(FI, getPointerTy());
2710
2711         if (Flags.isByVal()) {
2712           // Copy relative to framepointer.
2713           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2714           if (StackPtr.getNode() == 0)
2715             StackPtr = DAG.getCopyFromReg(Chain, dl,
2716                                           RegInfo->getStackRegister(),
2717                                           getPointerTy());
2718           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2719
2720           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2721                                                            ArgChain,
2722                                                            Flags, DAG, dl));
2723         } else {
2724           // Store relative to framepointer.
2725           MemOpChains2.push_back(
2726             DAG.getStore(ArgChain, dl, Arg, FIN,
2727                          MachinePointerInfo::getFixedStack(FI),
2728                          false, false, 0));
2729         }
2730       }
2731     }
2732
2733     if (!MemOpChains2.empty())
2734       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2735                           &MemOpChains2[0], MemOpChains2.size());
2736
2737     // Store the return address to the appropriate stack slot.
2738     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2739                                      getPointerTy(), RegInfo->getSlotSize(),
2740                                      FPDiff, dl);
2741   }
2742
2743   // Build a sequence of copy-to-reg nodes chained together with token chain
2744   // and flag operands which copy the outgoing args into registers.
2745   SDValue InFlag;
2746   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2747     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2748                              RegsToPass[i].second, InFlag);
2749     InFlag = Chain.getValue(1);
2750   }
2751
2752   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2753     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2754     // In the 64-bit large code model, we have to make all calls
2755     // through a register, since the call instruction's 32-bit
2756     // pc-relative offset may not be large enough to hold the whole
2757     // address.
2758   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2759     // If the callee is a GlobalAddress node (quite common, every direct call
2760     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2761     // it.
2762
2763     // We should use extra load for direct calls to dllimported functions in
2764     // non-JIT mode.
2765     const GlobalValue *GV = G->getGlobal();
2766     if (!GV->hasDLLImportLinkage()) {
2767       unsigned char OpFlags = 0;
2768       bool ExtraLoad = false;
2769       unsigned WrapperKind = ISD::DELETED_NODE;
2770
2771       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2772       // external symbols most go through the PLT in PIC mode.  If the symbol
2773       // has hidden or protected visibility, or if it is static or local, then
2774       // we don't need to use the PLT - we can directly call it.
2775       if (Subtarget->isTargetELF() &&
2776           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2777           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2778         OpFlags = X86II::MO_PLT;
2779       } else if (Subtarget->isPICStyleStubAny() &&
2780                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2781                  (!Subtarget->getTargetTriple().isMacOSX() ||
2782                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2783         // PC-relative references to external symbols should go through $stub,
2784         // unless we're building with the leopard linker or later, which
2785         // automatically synthesizes these stubs.
2786         OpFlags = X86II::MO_DARWIN_STUB;
2787       } else if (Subtarget->isPICStyleRIPRel() &&
2788                  isa<Function>(GV) &&
2789                  cast<Function>(GV)->getAttributes().
2790                    hasAttribute(AttributeSet::FunctionIndex,
2791                                 Attribute::NonLazyBind)) {
2792         // If the function is marked as non-lazy, generate an indirect call
2793         // which loads from the GOT directly. This avoids runtime overhead
2794         // at the cost of eager binding (and one extra byte of encoding).
2795         OpFlags = X86II::MO_GOTPCREL;
2796         WrapperKind = X86ISD::WrapperRIP;
2797         ExtraLoad = true;
2798       }
2799
2800       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2801                                           G->getOffset(), OpFlags);
2802
2803       // Add a wrapper if needed.
2804       if (WrapperKind != ISD::DELETED_NODE)
2805         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2806       // Add extra indirection if needed.
2807       if (ExtraLoad)
2808         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2809                              MachinePointerInfo::getGOT(),
2810                              false, false, false, 0);
2811     }
2812   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2813     unsigned char OpFlags = 0;
2814
2815     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2816     // external symbols should go through the PLT.
2817     if (Subtarget->isTargetELF() &&
2818         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2819       OpFlags = X86II::MO_PLT;
2820     } else if (Subtarget->isPICStyleStubAny() &&
2821                (!Subtarget->getTargetTriple().isMacOSX() ||
2822                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2823       // PC-relative references to external symbols should go through $stub,
2824       // unless we're building with the leopard linker or later, which
2825       // automatically synthesizes these stubs.
2826       OpFlags = X86II::MO_DARWIN_STUB;
2827     }
2828
2829     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2830                                          OpFlags);
2831   }
2832
2833   // Returns a chain & a flag for retval copy to use.
2834   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2835   SmallVector<SDValue, 8> Ops;
2836
2837   if (!IsSibcall && isTailCall) {
2838     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2839                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2840     InFlag = Chain.getValue(1);
2841   }
2842
2843   Ops.push_back(Chain);
2844   Ops.push_back(Callee);
2845
2846   if (isTailCall)
2847     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2848
2849   // Add argument registers to the end of the list so that they are known live
2850   // into the call.
2851   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2852     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2853                                   RegsToPass[i].second.getValueType()));
2854
2855   // Add a register mask operand representing the call-preserved registers.
2856   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2857   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2858   assert(Mask && "Missing call preserved mask for calling convention");
2859   Ops.push_back(DAG.getRegisterMask(Mask));
2860
2861   if (InFlag.getNode())
2862     Ops.push_back(InFlag);
2863
2864   if (isTailCall) {
2865     // We used to do:
2866     //// If this is the first return lowered for this function, add the regs
2867     //// to the liveout set for the function.
2868     // This isn't right, although it's probably harmless on x86; liveouts
2869     // should be computed from returns not tail calls.  Consider a void
2870     // function making a tail call to a function returning int.
2871     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2872   }
2873
2874   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2875   InFlag = Chain.getValue(1);
2876
2877   // Create the CALLSEQ_END node.
2878   unsigned NumBytesForCalleeToPush;
2879   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2880                        getTargetMachine().Options.GuaranteedTailCallOpt))
2881     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2882   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2883            SR == StackStructReturn)
2884     // If this is a call to a struct-return function, the callee
2885     // pops the hidden struct pointer, so we have to push it back.
2886     // This is common for Darwin/X86, Linux & Mingw32 targets.
2887     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2888     NumBytesForCalleeToPush = 4;
2889   else
2890     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2891
2892   // Returns a flag for retval copy to use.
2893   if (!IsSibcall) {
2894     Chain = DAG.getCALLSEQ_END(Chain,
2895                                DAG.getIntPtrConstant(NumBytes, true),
2896                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2897                                                      true),
2898                                InFlag, dl);
2899     InFlag = Chain.getValue(1);
2900   }
2901
2902   // Handle result values, copying them out of physregs into vregs that we
2903   // return.
2904   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2905                          Ins, dl, DAG, InVals);
2906 }
2907
2908 //===----------------------------------------------------------------------===//
2909 //                Fast Calling Convention (tail call) implementation
2910 //===----------------------------------------------------------------------===//
2911
2912 //  Like std call, callee cleans arguments, convention except that ECX is
2913 //  reserved for storing the tail called function address. Only 2 registers are
2914 //  free for argument passing (inreg). Tail call optimization is performed
2915 //  provided:
2916 //                * tailcallopt is enabled
2917 //                * caller/callee are fastcc
2918 //  On X86_64 architecture with GOT-style position independent code only local
2919 //  (within module) calls are supported at the moment.
2920 //  To keep the stack aligned according to platform abi the function
2921 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2922 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2923 //  If a tail called function callee has more arguments than the caller the
2924 //  caller needs to make sure that there is room to move the RETADDR to. This is
2925 //  achieved by reserving an area the size of the argument delta right after the
2926 //  original REtADDR, but before the saved framepointer or the spilled registers
2927 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2928 //  stack layout:
2929 //    arg1
2930 //    arg2
2931 //    RETADDR
2932 //    [ new RETADDR
2933 //      move area ]
2934 //    (possible EBP)
2935 //    ESI
2936 //    EDI
2937 //    local1 ..
2938
2939 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2940 /// for a 16 byte align requirement.
2941 unsigned
2942 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2943                                                SelectionDAG& DAG) const {
2944   MachineFunction &MF = DAG.getMachineFunction();
2945   const TargetMachine &TM = MF.getTarget();
2946   const X86RegisterInfo *RegInfo =
2947     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2948   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2949   unsigned StackAlignment = TFI.getStackAlignment();
2950   uint64_t AlignMask = StackAlignment - 1;
2951   int64_t Offset = StackSize;
2952   unsigned SlotSize = RegInfo->getSlotSize();
2953   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2954     // Number smaller than 12 so just add the difference.
2955     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2956   } else {
2957     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2958     Offset = ((~AlignMask) & Offset) + StackAlignment +
2959       (StackAlignment-SlotSize);
2960   }
2961   return Offset;
2962 }
2963
2964 /// MatchingStackOffset - Return true if the given stack call argument is
2965 /// already available in the same position (relatively) of the caller's
2966 /// incoming argument stack.
2967 static
2968 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2969                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2970                          const X86InstrInfo *TII) {
2971   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2972   int FI = INT_MAX;
2973   if (Arg.getOpcode() == ISD::CopyFromReg) {
2974     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2975     if (!TargetRegisterInfo::isVirtualRegister(VR))
2976       return false;
2977     MachineInstr *Def = MRI->getVRegDef(VR);
2978     if (!Def)
2979       return false;
2980     if (!Flags.isByVal()) {
2981       if (!TII->isLoadFromStackSlot(Def, FI))
2982         return false;
2983     } else {
2984       unsigned Opcode = Def->getOpcode();
2985       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2986           Def->getOperand(1).isFI()) {
2987         FI = Def->getOperand(1).getIndex();
2988         Bytes = Flags.getByValSize();
2989       } else
2990         return false;
2991     }
2992   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2993     if (Flags.isByVal())
2994       // ByVal argument is passed in as a pointer but it's now being
2995       // dereferenced. e.g.
2996       // define @foo(%struct.X* %A) {
2997       //   tail call @bar(%struct.X* byval %A)
2998       // }
2999       return false;
3000     SDValue Ptr = Ld->getBasePtr();
3001     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3002     if (!FINode)
3003       return false;
3004     FI = FINode->getIndex();
3005   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3006     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3007     FI = FINode->getIndex();
3008     Bytes = Flags.getByValSize();
3009   } else
3010     return false;
3011
3012   assert(FI != INT_MAX);
3013   if (!MFI->isFixedObjectIndex(FI))
3014     return false;
3015   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3016 }
3017
3018 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3019 /// for tail call optimization. Targets which want to do tail call
3020 /// optimization should implement this function.
3021 bool
3022 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3023                                                      CallingConv::ID CalleeCC,
3024                                                      bool isVarArg,
3025                                                      bool isCalleeStructRet,
3026                                                      bool isCallerStructRet,
3027                                                      Type *RetTy,
3028                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3029                                     const SmallVectorImpl<SDValue> &OutVals,
3030                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3031                                                      SelectionDAG &DAG) const {
3032   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3033     return false;
3034
3035   // If -tailcallopt is specified, make fastcc functions tail-callable.
3036   const MachineFunction &MF = DAG.getMachineFunction();
3037   const Function *CallerF = MF.getFunction();
3038
3039   // If the function return type is x86_fp80 and the callee return type is not,
3040   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3041   // perform a tailcall optimization here.
3042   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3043     return false;
3044
3045   CallingConv::ID CallerCC = CallerF->getCallingConv();
3046   bool CCMatch = CallerCC == CalleeCC;
3047   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3048   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3049
3050   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3051     if (IsTailCallConvention(CalleeCC) && CCMatch)
3052       return true;
3053     return false;
3054   }
3055
3056   // Look for obvious safe cases to perform tail call optimization that do not
3057   // require ABI changes. This is what gcc calls sibcall.
3058
3059   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3060   // emit a special epilogue.
3061   const X86RegisterInfo *RegInfo =
3062     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3063   if (RegInfo->needsStackRealignment(MF))
3064     return false;
3065
3066   // Also avoid sibcall optimization if either caller or callee uses struct
3067   // return semantics.
3068   if (isCalleeStructRet || isCallerStructRet)
3069     return false;
3070
3071   // An stdcall caller is expected to clean up its arguments; the callee
3072   // isn't going to do that.
3073   if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
3074     return false;
3075
3076   // Do not sibcall optimize vararg calls unless all arguments are passed via
3077   // registers.
3078   if (isVarArg && !Outs.empty()) {
3079
3080     // Optimizing for varargs on Win64 is unlikely to be safe without
3081     // additional testing.
3082     if (IsCalleeWin64 || IsCallerWin64)
3083       return false;
3084
3085     SmallVector<CCValAssign, 16> ArgLocs;
3086     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3087                    getTargetMachine(), ArgLocs, *DAG.getContext());
3088
3089     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3090     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3091       if (!ArgLocs[i].isRegLoc())
3092         return false;
3093   }
3094
3095   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3096   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3097   // this into a sibcall.
3098   bool Unused = false;
3099   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3100     if (!Ins[i].Used) {
3101       Unused = true;
3102       break;
3103     }
3104   }
3105   if (Unused) {
3106     SmallVector<CCValAssign, 16> RVLocs;
3107     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3108                    getTargetMachine(), RVLocs, *DAG.getContext());
3109     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3110     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3111       CCValAssign &VA = RVLocs[i];
3112       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3113         return false;
3114     }
3115   }
3116
3117   // If the calling conventions do not match, then we'd better make sure the
3118   // results are returned in the same way as what the caller expects.
3119   if (!CCMatch) {
3120     SmallVector<CCValAssign, 16> RVLocs1;
3121     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3122                     getTargetMachine(), RVLocs1, *DAG.getContext());
3123     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3124
3125     SmallVector<CCValAssign, 16> RVLocs2;
3126     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3127                     getTargetMachine(), RVLocs2, *DAG.getContext());
3128     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3129
3130     if (RVLocs1.size() != RVLocs2.size())
3131       return false;
3132     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3133       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3134         return false;
3135       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3136         return false;
3137       if (RVLocs1[i].isRegLoc()) {
3138         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3139           return false;
3140       } else {
3141         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3142           return false;
3143       }
3144     }
3145   }
3146
3147   // If the callee takes no arguments then go on to check the results of the
3148   // call.
3149   if (!Outs.empty()) {
3150     // Check if stack adjustment is needed. For now, do not do this if any
3151     // argument is passed on the stack.
3152     SmallVector<CCValAssign, 16> ArgLocs;
3153     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3154                    getTargetMachine(), ArgLocs, *DAG.getContext());
3155
3156     // Allocate shadow area for Win64
3157     if (IsCalleeWin64)
3158       CCInfo.AllocateStack(32, 8);
3159
3160     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3161     if (CCInfo.getNextStackOffset()) {
3162       MachineFunction &MF = DAG.getMachineFunction();
3163       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3164         return false;
3165
3166       // Check if the arguments are already laid out in the right way as
3167       // the caller's fixed stack objects.
3168       MachineFrameInfo *MFI = MF.getFrameInfo();
3169       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3170       const X86InstrInfo *TII =
3171         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3172       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3173         CCValAssign &VA = ArgLocs[i];
3174         SDValue Arg = OutVals[i];
3175         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3176         if (VA.getLocInfo() == CCValAssign::Indirect)
3177           return false;
3178         if (!VA.isRegLoc()) {
3179           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3180                                    MFI, MRI, TII))
3181             return false;
3182         }
3183       }
3184     }
3185
3186     // If the tailcall address may be in a register, then make sure it's
3187     // possible to register allocate for it. In 32-bit, the call address can
3188     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3189     // callee-saved registers are restored. These happen to be the same
3190     // registers used to pass 'inreg' arguments so watch out for those.
3191     if (!Subtarget->is64Bit() &&
3192         ((!isa<GlobalAddressSDNode>(Callee) &&
3193           !isa<ExternalSymbolSDNode>(Callee)) ||
3194          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3195       unsigned NumInRegs = 0;
3196       // In PIC we need an extra register to formulate the address computation
3197       // for the callee.
3198       unsigned MaxInRegs =
3199           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3200
3201       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3202         CCValAssign &VA = ArgLocs[i];
3203         if (!VA.isRegLoc())
3204           continue;
3205         unsigned Reg = VA.getLocReg();
3206         switch (Reg) {
3207         default: break;
3208         case X86::EAX: case X86::EDX: case X86::ECX:
3209           if (++NumInRegs == MaxInRegs)
3210             return false;
3211           break;
3212         }
3213       }
3214     }
3215   }
3216
3217   return true;
3218 }
3219
3220 FastISel *
3221 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3222                                   const TargetLibraryInfo *libInfo) const {
3223   return X86::createFastISel(funcInfo, libInfo);
3224 }
3225
3226 //===----------------------------------------------------------------------===//
3227 //                           Other Lowering Hooks
3228 //===----------------------------------------------------------------------===//
3229
3230 static bool MayFoldLoad(SDValue Op) {
3231   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3232 }
3233
3234 static bool MayFoldIntoStore(SDValue Op) {
3235   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3236 }
3237
3238 static bool isTargetShuffle(unsigned Opcode) {
3239   switch(Opcode) {
3240   default: return false;
3241   case X86ISD::PSHUFD:
3242   case X86ISD::PSHUFHW:
3243   case X86ISD::PSHUFLW:
3244   case X86ISD::SHUFP:
3245   case X86ISD::PALIGNR:
3246   case X86ISD::MOVLHPS:
3247   case X86ISD::MOVLHPD:
3248   case X86ISD::MOVHLPS:
3249   case X86ISD::MOVLPS:
3250   case X86ISD::MOVLPD:
3251   case X86ISD::MOVSHDUP:
3252   case X86ISD::MOVSLDUP:
3253   case X86ISD::MOVDDUP:
3254   case X86ISD::MOVSS:
3255   case X86ISD::MOVSD:
3256   case X86ISD::UNPCKL:
3257   case X86ISD::UNPCKH:
3258   case X86ISD::VPERMILP:
3259   case X86ISD::VPERM2X128:
3260   case X86ISD::VPERMI:
3261     return true;
3262   }
3263 }
3264
3265 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3266                                     SDValue V1, SelectionDAG &DAG) {
3267   switch(Opc) {
3268   default: llvm_unreachable("Unknown x86 shuffle node");
3269   case X86ISD::MOVSHDUP:
3270   case X86ISD::MOVSLDUP:
3271   case X86ISD::MOVDDUP:
3272     return DAG.getNode(Opc, dl, VT, V1);
3273   }
3274 }
3275
3276 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3277                                     SDValue V1, unsigned TargetMask,
3278                                     SelectionDAG &DAG) {
3279   switch(Opc) {
3280   default: llvm_unreachable("Unknown x86 shuffle node");
3281   case X86ISD::PSHUFD:
3282   case X86ISD::PSHUFHW:
3283   case X86ISD::PSHUFLW:
3284   case X86ISD::VPERMILP:
3285   case X86ISD::VPERMI:
3286     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3287   }
3288 }
3289
3290 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3291                                     SDValue V1, SDValue V2, unsigned TargetMask,
3292                                     SelectionDAG &DAG) {
3293   switch(Opc) {
3294   default: llvm_unreachable("Unknown x86 shuffle node");
3295   case X86ISD::PALIGNR:
3296   case X86ISD::SHUFP:
3297   case X86ISD::VPERM2X128:
3298     return DAG.getNode(Opc, dl, VT, V1, V2,
3299                        DAG.getConstant(TargetMask, MVT::i8));
3300   }
3301 }
3302
3303 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3304                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3305   switch(Opc) {
3306   default: llvm_unreachable("Unknown x86 shuffle node");
3307   case X86ISD::MOVLHPS:
3308   case X86ISD::MOVLHPD:
3309   case X86ISD::MOVHLPS:
3310   case X86ISD::MOVLPS:
3311   case X86ISD::MOVLPD:
3312   case X86ISD::MOVSS:
3313   case X86ISD::MOVSD:
3314   case X86ISD::UNPCKL:
3315   case X86ISD::UNPCKH:
3316     return DAG.getNode(Opc, dl, VT, V1, V2);
3317   }
3318 }
3319
3320 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3321   MachineFunction &MF = DAG.getMachineFunction();
3322   const X86RegisterInfo *RegInfo =
3323     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3324   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3325   int ReturnAddrIndex = FuncInfo->getRAIndex();
3326
3327   if (ReturnAddrIndex == 0) {
3328     // Set up a frame object for the return address.
3329     unsigned SlotSize = RegInfo->getSlotSize();
3330     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3331                                                            -(int64_t)SlotSize,
3332                                                            false);
3333     FuncInfo->setRAIndex(ReturnAddrIndex);
3334   }
3335
3336   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3337 }
3338
3339 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3340                                        bool hasSymbolicDisplacement) {
3341   // Offset should fit into 32 bit immediate field.
3342   if (!isInt<32>(Offset))
3343     return false;
3344
3345   // If we don't have a symbolic displacement - we don't have any extra
3346   // restrictions.
3347   if (!hasSymbolicDisplacement)
3348     return true;
3349
3350   // FIXME: Some tweaks might be needed for medium code model.
3351   if (M != CodeModel::Small && M != CodeModel::Kernel)
3352     return false;
3353
3354   // For small code model we assume that latest object is 16MB before end of 31
3355   // bits boundary. We may also accept pretty large negative constants knowing
3356   // that all objects are in the positive half of address space.
3357   if (M == CodeModel::Small && Offset < 16*1024*1024)
3358     return true;
3359
3360   // For kernel code model we know that all object resist in the negative half
3361   // of 32bits address space. We may not accept negative offsets, since they may
3362   // be just off and we may accept pretty large positive ones.
3363   if (M == CodeModel::Kernel && Offset > 0)
3364     return true;
3365
3366   return false;
3367 }
3368
3369 /// isCalleePop - Determines whether the callee is required to pop its
3370 /// own arguments. Callee pop is necessary to support tail calls.
3371 bool X86::isCalleePop(CallingConv::ID CallingConv,
3372                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3373   if (IsVarArg)
3374     return false;
3375
3376   switch (CallingConv) {
3377   default:
3378     return false;
3379   case CallingConv::X86_StdCall:
3380     return !is64Bit;
3381   case CallingConv::X86_FastCall:
3382     return !is64Bit;
3383   case CallingConv::X86_ThisCall:
3384     return !is64Bit;
3385   case CallingConv::Fast:
3386     return TailCallOpt;
3387   case CallingConv::GHC:
3388     return TailCallOpt;
3389   case CallingConv::HiPE:
3390     return TailCallOpt;
3391   }
3392 }
3393
3394 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3395 /// specific condition code, returning the condition code and the LHS/RHS of the
3396 /// comparison to make.
3397 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3398                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3399   if (!isFP) {
3400     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3401       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3402         // X > -1   -> X == 0, jump !sign.
3403         RHS = DAG.getConstant(0, RHS.getValueType());
3404         return X86::COND_NS;
3405       }
3406       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3407         // X < 0   -> X == 0, jump on sign.
3408         return X86::COND_S;
3409       }
3410       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3411         // X < 1   -> X <= 0
3412         RHS = DAG.getConstant(0, RHS.getValueType());
3413         return X86::COND_LE;
3414       }
3415     }
3416
3417     switch (SetCCOpcode) {
3418     default: llvm_unreachable("Invalid integer condition!");
3419     case ISD::SETEQ:  return X86::COND_E;
3420     case ISD::SETGT:  return X86::COND_G;
3421     case ISD::SETGE:  return X86::COND_GE;
3422     case ISD::SETLT:  return X86::COND_L;
3423     case ISD::SETLE:  return X86::COND_LE;
3424     case ISD::SETNE:  return X86::COND_NE;
3425     case ISD::SETULT: return X86::COND_B;
3426     case ISD::SETUGT: return X86::COND_A;
3427     case ISD::SETULE: return X86::COND_BE;
3428     case ISD::SETUGE: return X86::COND_AE;
3429     }
3430   }
3431
3432   // First determine if it is required or is profitable to flip the operands.
3433
3434   // If LHS is a foldable load, but RHS is not, flip the condition.
3435   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3436       !ISD::isNON_EXTLoad(RHS.getNode())) {
3437     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3438     std::swap(LHS, RHS);
3439   }
3440
3441   switch (SetCCOpcode) {
3442   default: break;
3443   case ISD::SETOLT:
3444   case ISD::SETOLE:
3445   case ISD::SETUGT:
3446   case ISD::SETUGE:
3447     std::swap(LHS, RHS);
3448     break;
3449   }
3450
3451   // On a floating point condition, the flags are set as follows:
3452   // ZF  PF  CF   op
3453   //  0 | 0 | 0 | X > Y
3454   //  0 | 0 | 1 | X < Y
3455   //  1 | 0 | 0 | X == Y
3456   //  1 | 1 | 1 | unordered
3457   switch (SetCCOpcode) {
3458   default: llvm_unreachable("Condcode should be pre-legalized away");
3459   case ISD::SETUEQ:
3460   case ISD::SETEQ:   return X86::COND_E;
3461   case ISD::SETOLT:              // flipped
3462   case ISD::SETOGT:
3463   case ISD::SETGT:   return X86::COND_A;
3464   case ISD::SETOLE:              // flipped
3465   case ISD::SETOGE:
3466   case ISD::SETGE:   return X86::COND_AE;
3467   case ISD::SETUGT:              // flipped
3468   case ISD::SETULT:
3469   case ISD::SETLT:   return X86::COND_B;
3470   case ISD::SETUGE:              // flipped
3471   case ISD::SETULE:
3472   case ISD::SETLE:   return X86::COND_BE;
3473   case ISD::SETONE:
3474   case ISD::SETNE:   return X86::COND_NE;
3475   case ISD::SETUO:   return X86::COND_P;
3476   case ISD::SETO:    return X86::COND_NP;
3477   case ISD::SETOEQ:
3478   case ISD::SETUNE:  return X86::COND_INVALID;
3479   }
3480 }
3481
3482 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3483 /// code. Current x86 isa includes the following FP cmov instructions:
3484 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3485 static bool hasFPCMov(unsigned X86CC) {
3486   switch (X86CC) {
3487   default:
3488     return false;
3489   case X86::COND_B:
3490   case X86::COND_BE:
3491   case X86::COND_E:
3492   case X86::COND_P:
3493   case X86::COND_A:
3494   case X86::COND_AE:
3495   case X86::COND_NE:
3496   case X86::COND_NP:
3497     return true;
3498   }
3499 }
3500
3501 /// isFPImmLegal - Returns true if the target can instruction select the
3502 /// specified FP immediate natively. If false, the legalizer will
3503 /// materialize the FP immediate as a load from a constant pool.
3504 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3505   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3506     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3507       return true;
3508   }
3509   return false;
3510 }
3511
3512 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3513 /// the specified range (L, H].
3514 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3515   return (Val < 0) || (Val >= Low && Val < Hi);
3516 }
3517
3518 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3519 /// specified value.
3520 static bool isUndefOrEqual(int Val, int CmpVal) {
3521   return (Val < 0 || Val == CmpVal);
3522 }
3523
3524 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3525 /// from position Pos and ending in Pos+Size, falls within the specified
3526 /// sequential range (L, L+Pos]. or is undef.
3527 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3528                                        unsigned Pos, unsigned Size, int Low) {
3529   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3530     if (!isUndefOrEqual(Mask[i], Low))
3531       return false;
3532   return true;
3533 }
3534
3535 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3536 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3537 /// the second operand.
3538 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3539   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3540     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3541   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3542     return (Mask[0] < 2 && Mask[1] < 2);
3543   return false;
3544 }
3545
3546 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3547 /// is suitable for input to PSHUFHW.
3548 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3549   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3550     return false;
3551
3552   // Lower quadword copied in order or undef.
3553   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3554     return false;
3555
3556   // Upper quadword shuffled.
3557   for (unsigned i = 4; i != 8; ++i)
3558     if (!isUndefOrInRange(Mask[i], 4, 8))
3559       return false;
3560
3561   if (VT == MVT::v16i16) {
3562     // Lower quadword copied in order or undef.
3563     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3564       return false;
3565
3566     // Upper quadword shuffled.
3567     for (unsigned i = 12; i != 16; ++i)
3568       if (!isUndefOrInRange(Mask[i], 12, 16))
3569         return false;
3570   }
3571
3572   return true;
3573 }
3574
3575 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3576 /// is suitable for input to PSHUFLW.
3577 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3578   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3579     return false;
3580
3581   // Upper quadword copied in order.
3582   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3583     return false;
3584
3585   // Lower quadword shuffled.
3586   for (unsigned i = 0; i != 4; ++i)
3587     if (!isUndefOrInRange(Mask[i], 0, 4))
3588       return false;
3589
3590   if (VT == MVT::v16i16) {
3591     // Upper quadword copied in order.
3592     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3593       return false;
3594
3595     // Lower quadword shuffled.
3596     for (unsigned i = 8; i != 12; ++i)
3597       if (!isUndefOrInRange(Mask[i], 8, 12))
3598         return false;
3599   }
3600
3601   return true;
3602 }
3603
3604 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3605 /// is suitable for input to PALIGNR.
3606 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3607                           const X86Subtarget *Subtarget) {
3608   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3609       (VT.is256BitVector() && !Subtarget->hasInt256()))
3610     return false;
3611
3612   unsigned NumElts = VT.getVectorNumElements();
3613   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3614   unsigned NumLaneElts = NumElts/NumLanes;
3615
3616   // Do not handle 64-bit element shuffles with palignr.
3617   if (NumLaneElts == 2)
3618     return false;
3619
3620   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3621     unsigned i;
3622     for (i = 0; i != NumLaneElts; ++i) {
3623       if (Mask[i+l] >= 0)
3624         break;
3625     }
3626
3627     // Lane is all undef, go to next lane
3628     if (i == NumLaneElts)
3629       continue;
3630
3631     int Start = Mask[i+l];
3632
3633     // Make sure its in this lane in one of the sources
3634     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3635         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3636       return false;
3637
3638     // If not lane 0, then we must match lane 0
3639     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3640       return false;
3641
3642     // Correct second source to be contiguous with first source
3643     if (Start >= (int)NumElts)
3644       Start -= NumElts - NumLaneElts;
3645
3646     // Make sure we're shifting in the right direction.
3647     if (Start <= (int)(i+l))
3648       return false;
3649
3650     Start -= i;
3651
3652     // Check the rest of the elements to see if they are consecutive.
3653     for (++i; i != NumLaneElts; ++i) {
3654       int Idx = Mask[i+l];
3655
3656       // Make sure its in this lane
3657       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3658           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3659         return false;
3660
3661       // If not lane 0, then we must match lane 0
3662       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3663         return false;
3664
3665       if (Idx >= (int)NumElts)
3666         Idx -= NumElts - NumLaneElts;
3667
3668       if (!isUndefOrEqual(Idx, Start+i))
3669         return false;
3670
3671     }
3672   }
3673
3674   return true;
3675 }
3676
3677 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3678 /// the two vector operands have swapped position.
3679 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3680                                      unsigned NumElems) {
3681   for (unsigned i = 0; i != NumElems; ++i) {
3682     int idx = Mask[i];
3683     if (idx < 0)
3684       continue;
3685     else if (idx < (int)NumElems)
3686       Mask[i] = idx + NumElems;
3687     else
3688       Mask[i] = idx - NumElems;
3689   }
3690 }
3691
3692 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3693 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3694 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3695 /// reverse of what x86 shuffles want.
3696 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3697
3698   unsigned NumElems = VT.getVectorNumElements();
3699   unsigned NumLanes = VT.getSizeInBits()/128;
3700   unsigned NumLaneElems = NumElems/NumLanes;
3701
3702   if (NumLaneElems != 2 && NumLaneElems != 4)
3703     return false;
3704
3705   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3706   bool symetricMaskRequired =
3707     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3708
3709   // VSHUFPSY divides the resulting vector into 4 chunks.
3710   // The sources are also splitted into 4 chunks, and each destination
3711   // chunk must come from a different source chunk.
3712   //
3713   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3714   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3715   //
3716   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3717   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3718   //
3719   // VSHUFPDY divides the resulting vector into 4 chunks.
3720   // The sources are also splitted into 4 chunks, and each destination
3721   // chunk must come from a different source chunk.
3722   //
3723   //  SRC1 =>      X3       X2       X1       X0
3724   //  SRC2 =>      Y3       Y2       Y1       Y0
3725   //
3726   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3727   //
3728   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3729   unsigned HalfLaneElems = NumLaneElems/2;
3730   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3731     for (unsigned i = 0; i != NumLaneElems; ++i) {
3732       int Idx = Mask[i+l];
3733       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3734       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3735         return false;
3736       // For VSHUFPSY, the mask of the second half must be the same as the
3737       // first but with the appropriate offsets. This works in the same way as
3738       // VPERMILPS works with masks.
3739       if (!symetricMaskRequired || Idx < 0)
3740         continue;
3741       if (MaskVal[i] < 0) {
3742         MaskVal[i] = Idx - l;
3743         continue;
3744       }
3745       if ((signed)(Idx - l) != MaskVal[i])
3746         return false;
3747     }
3748   }
3749
3750   return true;
3751 }
3752
3753 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3754 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3755 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3756   if (!VT.is128BitVector())
3757     return false;
3758
3759   unsigned NumElems = VT.getVectorNumElements();
3760
3761   if (NumElems != 4)
3762     return false;
3763
3764   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3765   return isUndefOrEqual(Mask[0], 6) &&
3766          isUndefOrEqual(Mask[1], 7) &&
3767          isUndefOrEqual(Mask[2], 2) &&
3768          isUndefOrEqual(Mask[3], 3);
3769 }
3770
3771 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3772 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3773 /// <2, 3, 2, 3>
3774 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3775   if (!VT.is128BitVector())
3776     return false;
3777
3778   unsigned NumElems = VT.getVectorNumElements();
3779
3780   if (NumElems != 4)
3781     return false;
3782
3783   return isUndefOrEqual(Mask[0], 2) &&
3784          isUndefOrEqual(Mask[1], 3) &&
3785          isUndefOrEqual(Mask[2], 2) &&
3786          isUndefOrEqual(Mask[3], 3);
3787 }
3788
3789 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3790 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3791 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3792   if (!VT.is128BitVector())
3793     return false;
3794
3795   unsigned NumElems = VT.getVectorNumElements();
3796
3797   if (NumElems != 2 && NumElems != 4)
3798     return false;
3799
3800   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3801     if (!isUndefOrEqual(Mask[i], i + NumElems))
3802       return false;
3803
3804   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3805     if (!isUndefOrEqual(Mask[i], i))
3806       return false;
3807
3808   return true;
3809 }
3810
3811 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3812 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3813 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3814   if (!VT.is128BitVector())
3815     return false;
3816
3817   unsigned NumElems = VT.getVectorNumElements();
3818
3819   if (NumElems != 2 && NumElems != 4)
3820     return false;
3821
3822   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3823     if (!isUndefOrEqual(Mask[i], i))
3824       return false;
3825
3826   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3827     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3828       return false;
3829
3830   return true;
3831 }
3832
3833 //
3834 // Some special combinations that can be optimized.
3835 //
3836 static
3837 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3838                                SelectionDAG &DAG) {
3839   MVT VT = SVOp->getSimpleValueType(0);
3840   SDLoc dl(SVOp);
3841
3842   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3843     return SDValue();
3844
3845   ArrayRef<int> Mask = SVOp->getMask();
3846
3847   // These are the special masks that may be optimized.
3848   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3849   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3850   bool MatchEvenMask = true;
3851   bool MatchOddMask  = true;
3852   for (int i=0; i<8; ++i) {
3853     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3854       MatchEvenMask = false;
3855     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3856       MatchOddMask = false;
3857   }
3858
3859   if (!MatchEvenMask && !MatchOddMask)
3860     return SDValue();
3861
3862   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3863
3864   SDValue Op0 = SVOp->getOperand(0);
3865   SDValue Op1 = SVOp->getOperand(1);
3866
3867   if (MatchEvenMask) {
3868     // Shift the second operand right to 32 bits.
3869     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3870     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3871   } else {
3872     // Shift the first operand left to 32 bits.
3873     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3874     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3875   }
3876   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3877   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3878 }
3879
3880 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3881 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3882 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3883                          bool HasInt256, bool V2IsSplat = false) {
3884
3885   assert(VT.getSizeInBits() >= 128 &&
3886          "Unsupported vector type for unpckl");
3887
3888   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3889   unsigned NumLanes;
3890   unsigned NumOf256BitLanes;
3891   unsigned NumElts = VT.getVectorNumElements();
3892   if (VT.is256BitVector()) {
3893     if (NumElts != 4 && NumElts != 8 &&
3894         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3895     return false;
3896     NumLanes = 2;
3897     NumOf256BitLanes = 1;
3898   } else if (VT.is512BitVector()) {
3899     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3900            "Unsupported vector type for unpckh");
3901     NumLanes = 2;
3902     NumOf256BitLanes = 2;
3903   } else {
3904     NumLanes = 1;
3905     NumOf256BitLanes = 1;
3906   }
3907
3908   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3909   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3910
3911   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3912     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3913       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3914         int BitI  = Mask[l256*NumEltsInStride+l+i];
3915         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3916         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3917           return false;
3918         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3919           return false;
3920         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3921           return false;
3922       }
3923     }
3924   }
3925   return true;
3926 }
3927
3928 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3929 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3930 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3931                          bool HasInt256, bool V2IsSplat = false) {
3932   assert(VT.getSizeInBits() >= 128 &&
3933          "Unsupported vector type for unpckh");
3934
3935   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3936   unsigned NumLanes;
3937   unsigned NumOf256BitLanes;
3938   unsigned NumElts = VT.getVectorNumElements();
3939   if (VT.is256BitVector()) {
3940     if (NumElts != 4 && NumElts != 8 &&
3941         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3942     return false;
3943     NumLanes = 2;
3944     NumOf256BitLanes = 1;
3945   } else if (VT.is512BitVector()) {
3946     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3947            "Unsupported vector type for unpckh");
3948     NumLanes = 2;
3949     NumOf256BitLanes = 2;
3950   } else {
3951     NumLanes = 1;
3952     NumOf256BitLanes = 1;
3953   }
3954
3955   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3956   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3957
3958   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3959     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3960       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3961         int BitI  = Mask[l256*NumEltsInStride+l+i];
3962         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3963         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3964           return false;
3965         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3966           return false;
3967         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3968           return false;
3969       }
3970     }
3971   }
3972   return true;
3973 }
3974
3975 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3976 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3977 /// <0, 0, 1, 1>
3978 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3979   unsigned NumElts = VT.getVectorNumElements();
3980   bool Is256BitVec = VT.is256BitVector();
3981
3982   if (VT.is512BitVector())
3983     return false;
3984   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3985          "Unsupported vector type for unpckh");
3986
3987   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
3988       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3989     return false;
3990
3991   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3992   // FIXME: Need a better way to get rid of this, there's no latency difference
3993   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3994   // the former later. We should also remove the "_undef" special mask.
3995   if (NumElts == 4 && Is256BitVec)
3996     return false;
3997
3998   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3999   // independently on 128-bit lanes.
4000   unsigned NumLanes = VT.getSizeInBits()/128;
4001   unsigned NumLaneElts = NumElts/NumLanes;
4002
4003   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4004     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4005       int BitI  = Mask[l+i];
4006       int BitI1 = Mask[l+i+1];
4007
4008       if (!isUndefOrEqual(BitI, j))
4009         return false;
4010       if (!isUndefOrEqual(BitI1, j))
4011         return false;
4012     }
4013   }
4014
4015   return true;
4016 }
4017
4018 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4019 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4020 /// <2, 2, 3, 3>
4021 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4022   unsigned NumElts = VT.getVectorNumElements();
4023
4024   if (VT.is512BitVector())
4025     return false;
4026
4027   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4028          "Unsupported vector type for unpckh");
4029
4030   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4031       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4032     return false;
4033
4034   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4035   // independently on 128-bit lanes.
4036   unsigned NumLanes = VT.getSizeInBits()/128;
4037   unsigned NumLaneElts = NumElts/NumLanes;
4038
4039   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4040     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4041       int BitI  = Mask[l+i];
4042       int BitI1 = Mask[l+i+1];
4043       if (!isUndefOrEqual(BitI, j))
4044         return false;
4045       if (!isUndefOrEqual(BitI1, j))
4046         return false;
4047     }
4048   }
4049   return true;
4050 }
4051
4052 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4053 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4054 /// MOVSD, and MOVD, i.e. setting the lowest element.
4055 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4056   if (VT.getVectorElementType().getSizeInBits() < 32)
4057     return false;
4058   if (!VT.is128BitVector())
4059     return false;
4060
4061   unsigned NumElts = VT.getVectorNumElements();
4062
4063   if (!isUndefOrEqual(Mask[0], NumElts))
4064     return false;
4065
4066   for (unsigned i = 1; i != NumElts; ++i)
4067     if (!isUndefOrEqual(Mask[i], i))
4068       return false;
4069
4070   return true;
4071 }
4072
4073 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4074 /// as permutations between 128-bit chunks or halves. As an example: this
4075 /// shuffle bellow:
4076 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4077 /// The first half comes from the second half of V1 and the second half from the
4078 /// the second half of V2.
4079 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4080   if (!HasFp256 || !VT.is256BitVector())
4081     return false;
4082
4083   // The shuffle result is divided into half A and half B. In total the two
4084   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4085   // B must come from C, D, E or F.
4086   unsigned HalfSize = VT.getVectorNumElements()/2;
4087   bool MatchA = false, MatchB = false;
4088
4089   // Check if A comes from one of C, D, E, F.
4090   for (unsigned Half = 0; Half != 4; ++Half) {
4091     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4092       MatchA = true;
4093       break;
4094     }
4095   }
4096
4097   // Check if B comes from one of C, D, E, F.
4098   for (unsigned Half = 0; Half != 4; ++Half) {
4099     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4100       MatchB = true;
4101       break;
4102     }
4103   }
4104
4105   return MatchA && MatchB;
4106 }
4107
4108 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4109 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4110 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4111   MVT VT = SVOp->getSimpleValueType(0);
4112
4113   unsigned HalfSize = VT.getVectorNumElements()/2;
4114
4115   unsigned FstHalf = 0, SndHalf = 0;
4116   for (unsigned i = 0; i < HalfSize; ++i) {
4117     if (SVOp->getMaskElt(i) > 0) {
4118       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4119       break;
4120     }
4121   }
4122   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4123     if (SVOp->getMaskElt(i) > 0) {
4124       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4125       break;
4126     }
4127   }
4128
4129   return (FstHalf | (SndHalf << 4));
4130 }
4131
4132 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4133 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4134   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4135   if (EltSize < 32)
4136     return false;
4137
4138   unsigned NumElts = VT.getVectorNumElements();
4139   Imm8 = 0;
4140   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4141     for (unsigned i = 0; i != NumElts; ++i) {
4142       if (Mask[i] < 0)
4143         continue;
4144       Imm8 |= Mask[i] << (i*2);
4145     }
4146     return true;
4147   }
4148
4149   unsigned LaneSize = 4;
4150   SmallVector<int, 4> MaskVal(LaneSize, -1);
4151
4152   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4153     for (unsigned i = 0; i != LaneSize; ++i) {
4154       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4155         return false;
4156       if (Mask[i+l] < 0)
4157         continue;
4158       if (MaskVal[i] < 0) {
4159         MaskVal[i] = Mask[i+l] - l;
4160         Imm8 |= MaskVal[i] << (i*2);
4161         continue;
4162       }
4163       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4164         return false;
4165     }
4166   }
4167   return true;
4168 }
4169
4170 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4171 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4172 /// Note that VPERMIL mask matching is different depending whether theunderlying
4173 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4174 /// to the same elements of the low, but to the higher half of the source.
4175 /// In VPERMILPD the two lanes could be shuffled independently of each other
4176 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4177 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4178   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4179   if (VT.getSizeInBits() < 256 || EltSize < 32)
4180     return false;
4181   bool symetricMaskRequired = (EltSize == 32);
4182   unsigned NumElts = VT.getVectorNumElements();
4183
4184   unsigned NumLanes = VT.getSizeInBits()/128;
4185   unsigned LaneSize = NumElts/NumLanes;
4186   // 2 or 4 elements in one lane
4187   
4188   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4189   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4190     for (unsigned i = 0; i != LaneSize; ++i) {
4191       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4192         return false;
4193       if (symetricMaskRequired) {
4194         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4195           ExpectedMaskVal[i] = Mask[i+l] - l;
4196           continue;
4197         }
4198         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4199           return false;
4200       }
4201     }
4202   }
4203   return true;
4204 }
4205
4206 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4207 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4208 /// element of vector 2 and the other elements to come from vector 1 in order.
4209 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4210                                bool V2IsSplat = false, bool V2IsUndef = false) {
4211   if (!VT.is128BitVector())
4212     return false;
4213
4214   unsigned NumOps = VT.getVectorNumElements();
4215   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4216     return false;
4217
4218   if (!isUndefOrEqual(Mask[0], 0))
4219     return false;
4220
4221   for (unsigned i = 1; i != NumOps; ++i)
4222     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4223           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4224           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4225       return false;
4226
4227   return true;
4228 }
4229
4230 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4231 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4232 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4233 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4234                            const X86Subtarget *Subtarget) {
4235   if (!Subtarget->hasSSE3())
4236     return false;
4237
4238   unsigned NumElems = VT.getVectorNumElements();
4239
4240   if ((VT.is128BitVector() && NumElems != 4) ||
4241       (VT.is256BitVector() && NumElems != 8) ||
4242       (VT.is512BitVector() && NumElems != 16))
4243     return false;
4244
4245   // "i+1" is the value the indexed mask element must have
4246   for (unsigned i = 0; i != NumElems; i += 2)
4247     if (!isUndefOrEqual(Mask[i], i+1) ||
4248         !isUndefOrEqual(Mask[i+1], i+1))
4249       return false;
4250
4251   return true;
4252 }
4253
4254 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4255 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4256 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4257 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4258                            const X86Subtarget *Subtarget) {
4259   if (!Subtarget->hasSSE3())
4260     return false;
4261
4262   unsigned NumElems = VT.getVectorNumElements();
4263
4264   if ((VT.is128BitVector() && NumElems != 4) ||
4265       (VT.is256BitVector() && NumElems != 8) ||
4266       (VT.is512BitVector() && NumElems != 16))
4267     return false;
4268
4269   // "i" is the value the indexed mask element must have
4270   for (unsigned i = 0; i != NumElems; i += 2)
4271     if (!isUndefOrEqual(Mask[i], i) ||
4272         !isUndefOrEqual(Mask[i+1], i))
4273       return false;
4274
4275   return true;
4276 }
4277
4278 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4279 /// specifies a shuffle of elements that is suitable for input to 256-bit
4280 /// version of MOVDDUP.
4281 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4282   if (!HasFp256 || !VT.is256BitVector())
4283     return false;
4284
4285   unsigned NumElts = VT.getVectorNumElements();
4286   if (NumElts != 4)
4287     return false;
4288
4289   for (unsigned i = 0; i != NumElts/2; ++i)
4290     if (!isUndefOrEqual(Mask[i], 0))
4291       return false;
4292   for (unsigned i = NumElts/2; i != NumElts; ++i)
4293     if (!isUndefOrEqual(Mask[i], NumElts/2))
4294       return false;
4295   return true;
4296 }
4297
4298 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4299 /// specifies a shuffle of elements that is suitable for input to 128-bit
4300 /// version of MOVDDUP.
4301 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4302   if (!VT.is128BitVector())
4303     return false;
4304
4305   unsigned e = VT.getVectorNumElements() / 2;
4306   for (unsigned i = 0; i != e; ++i)
4307     if (!isUndefOrEqual(Mask[i], i))
4308       return false;
4309   for (unsigned i = 0; i != e; ++i)
4310     if (!isUndefOrEqual(Mask[e+i], i))
4311       return false;
4312   return true;
4313 }
4314
4315 /// isVEXTRACTIndex - Return true if the specified
4316 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4317 /// suitable for instruction that extract 128 or 256 bit vectors
4318 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4319   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4320   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4321     return false;
4322
4323   // The index should be aligned on a vecWidth-bit boundary.
4324   uint64_t Index =
4325     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4326
4327   MVT VT = N->getSimpleValueType(0);
4328   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4329   bool Result = (Index * ElSize) % vecWidth == 0;
4330
4331   return Result;
4332 }
4333
4334 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4335 /// operand specifies a subvector insert that is suitable for input to
4336 /// insertion of 128 or 256-bit subvectors
4337 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4338   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4339   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4340     return false;
4341   // The index should be aligned on a vecWidth-bit boundary.
4342   uint64_t Index =
4343     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4344
4345   MVT VT = N->getSimpleValueType(0);
4346   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4347   bool Result = (Index * ElSize) % vecWidth == 0;
4348
4349   return Result;
4350 }
4351
4352 bool X86::isVINSERT128Index(SDNode *N) {
4353   return isVINSERTIndex(N, 128);
4354 }
4355
4356 bool X86::isVINSERT256Index(SDNode *N) {
4357   return isVINSERTIndex(N, 256);
4358 }
4359
4360 bool X86::isVEXTRACT128Index(SDNode *N) {
4361   return isVEXTRACTIndex(N, 128);
4362 }
4363
4364 bool X86::isVEXTRACT256Index(SDNode *N) {
4365   return isVEXTRACTIndex(N, 256);
4366 }
4367
4368 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4369 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4370 /// Handles 128-bit and 256-bit.
4371 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4372   MVT VT = N->getSimpleValueType(0);
4373
4374   assert((VT.getSizeInBits() >= 128) &&
4375          "Unsupported vector type for PSHUF/SHUFP");
4376
4377   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4378   // independently on 128-bit lanes.
4379   unsigned NumElts = VT.getVectorNumElements();
4380   unsigned NumLanes = VT.getSizeInBits()/128;
4381   unsigned NumLaneElts = NumElts/NumLanes;
4382
4383   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4384          "Only supports 2, 4 or 8 elements per lane");
4385
4386   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4387   unsigned Mask = 0;
4388   for (unsigned i = 0; i != NumElts; ++i) {
4389     int Elt = N->getMaskElt(i);
4390     if (Elt < 0) continue;
4391     Elt &= NumLaneElts - 1;
4392     unsigned ShAmt = (i << Shift) % 8;
4393     Mask |= Elt << ShAmt;
4394   }
4395
4396   return Mask;
4397 }
4398
4399 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4400 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4401 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4402   MVT VT = N->getSimpleValueType(0);
4403
4404   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4405          "Unsupported vector type for PSHUFHW");
4406
4407   unsigned NumElts = VT.getVectorNumElements();
4408
4409   unsigned Mask = 0;
4410   for (unsigned l = 0; l != NumElts; l += 8) {
4411     // 8 nodes per lane, but we only care about the last 4.
4412     for (unsigned i = 0; i < 4; ++i) {
4413       int Elt = N->getMaskElt(l+i+4);
4414       if (Elt < 0) continue;
4415       Elt &= 0x3; // only 2-bits.
4416       Mask |= Elt << (i * 2);
4417     }
4418   }
4419
4420   return Mask;
4421 }
4422
4423 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4424 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4425 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4426   MVT VT = N->getSimpleValueType(0);
4427
4428   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4429          "Unsupported vector type for PSHUFHW");
4430
4431   unsigned NumElts = VT.getVectorNumElements();
4432
4433   unsigned Mask = 0;
4434   for (unsigned l = 0; l != NumElts; l += 8) {
4435     // 8 nodes per lane, but we only care about the first 4.
4436     for (unsigned i = 0; i < 4; ++i) {
4437       int Elt = N->getMaskElt(l+i);
4438       if (Elt < 0) continue;
4439       Elt &= 0x3; // only 2-bits
4440       Mask |= Elt << (i * 2);
4441     }
4442   }
4443
4444   return Mask;
4445 }
4446
4447 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4448 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4449 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4450   MVT VT = SVOp->getSimpleValueType(0);
4451   unsigned EltSize = VT.is512BitVector() ? 1 :
4452     VT.getVectorElementType().getSizeInBits() >> 3;
4453
4454   unsigned NumElts = VT.getVectorNumElements();
4455   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4456   unsigned NumLaneElts = NumElts/NumLanes;
4457
4458   int Val = 0;
4459   unsigned i;
4460   for (i = 0; i != NumElts; ++i) {
4461     Val = SVOp->getMaskElt(i);
4462     if (Val >= 0)
4463       break;
4464   }
4465   if (Val >= (int)NumElts)
4466     Val -= NumElts - NumLaneElts;
4467
4468   assert(Val - i > 0 && "PALIGNR imm should be positive");
4469   return (Val - i) * EltSize;
4470 }
4471
4472 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4473   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4474   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4475     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4476
4477   uint64_t Index =
4478     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4479
4480   MVT VecVT = N->getOperand(0).getSimpleValueType();
4481   MVT ElVT = VecVT.getVectorElementType();
4482
4483   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4484   return Index / NumElemsPerChunk;
4485 }
4486
4487 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4488   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4489   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4490     llvm_unreachable("Illegal insert subvector for VINSERT");
4491
4492   uint64_t Index =
4493     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4494
4495   MVT VecVT = N->getSimpleValueType(0);
4496   MVT ElVT = VecVT.getVectorElementType();
4497
4498   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4499   return Index / NumElemsPerChunk;
4500 }
4501
4502 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4503 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4504 /// and VINSERTI128 instructions.
4505 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4506   return getExtractVEXTRACTImmediate(N, 128);
4507 }
4508
4509 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4510 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4511 /// and VINSERTI64x4 instructions.
4512 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4513   return getExtractVEXTRACTImmediate(N, 256);
4514 }
4515
4516 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4517 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4518 /// and VINSERTI128 instructions.
4519 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4520   return getInsertVINSERTImmediate(N, 128);
4521 }
4522
4523 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4524 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4525 /// and VINSERTI64x4 instructions.
4526 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4527   return getInsertVINSERTImmediate(N, 256);
4528 }
4529
4530 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4531 /// constant +0.0.
4532 bool X86::isZeroNode(SDValue Elt) {
4533   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4534     return CN->isNullValue();
4535   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4536     return CFP->getValueAPF().isPosZero();
4537   return false;
4538 }
4539
4540 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4541 /// their permute mask.
4542 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4543                                     SelectionDAG &DAG) {
4544   MVT VT = SVOp->getSimpleValueType(0);
4545   unsigned NumElems = VT.getVectorNumElements();
4546   SmallVector<int, 8> MaskVec;
4547
4548   for (unsigned i = 0; i != NumElems; ++i) {
4549     int Idx = SVOp->getMaskElt(i);
4550     if (Idx >= 0) {
4551       if (Idx < (int)NumElems)
4552         Idx += NumElems;
4553       else
4554         Idx -= NumElems;
4555     }
4556     MaskVec.push_back(Idx);
4557   }
4558   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4559                               SVOp->getOperand(0), &MaskVec[0]);
4560 }
4561
4562 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4563 /// match movhlps. The lower half elements should come from upper half of
4564 /// V1 (and in order), and the upper half elements should come from the upper
4565 /// half of V2 (and in order).
4566 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4567   if (!VT.is128BitVector())
4568     return false;
4569   if (VT.getVectorNumElements() != 4)
4570     return false;
4571   for (unsigned i = 0, e = 2; i != e; ++i)
4572     if (!isUndefOrEqual(Mask[i], i+2))
4573       return false;
4574   for (unsigned i = 2; i != 4; ++i)
4575     if (!isUndefOrEqual(Mask[i], i+4))
4576       return false;
4577   return true;
4578 }
4579
4580 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4581 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4582 /// required.
4583 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4584   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4585     return false;
4586   N = N->getOperand(0).getNode();
4587   if (!ISD::isNON_EXTLoad(N))
4588     return false;
4589   if (LD)
4590     *LD = cast<LoadSDNode>(N);
4591   return true;
4592 }
4593
4594 // Test whether the given value is a vector value which will be legalized
4595 // into a load.
4596 static bool WillBeConstantPoolLoad(SDNode *N) {
4597   if (N->getOpcode() != ISD::BUILD_VECTOR)
4598     return false;
4599
4600   // Check for any non-constant elements.
4601   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4602     switch (N->getOperand(i).getNode()->getOpcode()) {
4603     case ISD::UNDEF:
4604     case ISD::ConstantFP:
4605     case ISD::Constant:
4606       break;
4607     default:
4608       return false;
4609     }
4610
4611   // Vectors of all-zeros and all-ones are materialized with special
4612   // instructions rather than being loaded.
4613   return !ISD::isBuildVectorAllZeros(N) &&
4614          !ISD::isBuildVectorAllOnes(N);
4615 }
4616
4617 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4618 /// match movlp{s|d}. The lower half elements should come from lower half of
4619 /// V1 (and in order), and the upper half elements should come from the upper
4620 /// half of V2 (and in order). And since V1 will become the source of the
4621 /// MOVLP, it must be either a vector load or a scalar load to vector.
4622 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4623                                ArrayRef<int> Mask, MVT VT) {
4624   if (!VT.is128BitVector())
4625     return false;
4626
4627   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4628     return false;
4629   // Is V2 is a vector load, don't do this transformation. We will try to use
4630   // load folding shufps op.
4631   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4632     return false;
4633
4634   unsigned NumElems = VT.getVectorNumElements();
4635
4636   if (NumElems != 2 && NumElems != 4)
4637     return false;
4638   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4639     if (!isUndefOrEqual(Mask[i], i))
4640       return false;
4641   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4642     if (!isUndefOrEqual(Mask[i], i+NumElems))
4643       return false;
4644   return true;
4645 }
4646
4647 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4648 /// all the same.
4649 static bool isSplatVector(SDNode *N) {
4650   if (N->getOpcode() != ISD::BUILD_VECTOR)
4651     return false;
4652
4653   SDValue SplatValue = N->getOperand(0);
4654   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4655     if (N->getOperand(i) != SplatValue)
4656       return false;
4657   return true;
4658 }
4659
4660 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4661 /// to an zero vector.
4662 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4663 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4664   SDValue V1 = N->getOperand(0);
4665   SDValue V2 = N->getOperand(1);
4666   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4667   for (unsigned i = 0; i != NumElems; ++i) {
4668     int Idx = N->getMaskElt(i);
4669     if (Idx >= (int)NumElems) {
4670       unsigned Opc = V2.getOpcode();
4671       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4672         continue;
4673       if (Opc != ISD::BUILD_VECTOR ||
4674           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4675         return false;
4676     } else if (Idx >= 0) {
4677       unsigned Opc = V1.getOpcode();
4678       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4679         continue;
4680       if (Opc != ISD::BUILD_VECTOR ||
4681           !X86::isZeroNode(V1.getOperand(Idx)))
4682         return false;
4683     }
4684   }
4685   return true;
4686 }
4687
4688 /// getZeroVector - Returns a vector of specified type with all zero elements.
4689 ///
4690 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4691                              SelectionDAG &DAG, SDLoc dl) {
4692   assert(VT.isVector() && "Expected a vector type");
4693
4694   // Always build SSE zero vectors as <4 x i32> bitcasted
4695   // to their dest type. This ensures they get CSE'd.
4696   SDValue Vec;
4697   if (VT.is128BitVector()) {  // SSE
4698     if (Subtarget->hasSSE2()) {  // SSE2
4699       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4700       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4701     } else { // SSE1
4702       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4703       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4704     }
4705   } else if (VT.is256BitVector()) { // AVX
4706     if (Subtarget->hasInt256()) { // AVX2
4707       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4708       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4709       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4710                         array_lengthof(Ops));
4711     } else {
4712       // 256-bit logic and arithmetic instructions in AVX are all
4713       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4714       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4715       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4716       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4717                         array_lengthof(Ops));
4718     }
4719   } else if (VT.is512BitVector()) { // AVX-512
4720       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4721       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4722                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4723       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4724   } else
4725     llvm_unreachable("Unexpected vector type");
4726
4727   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4728 }
4729
4730 /// getOnesVector - Returns a vector of specified type with all bits set.
4731 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4732 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4733 /// Then bitcast to their original type, ensuring they get CSE'd.
4734 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4735                              SDLoc dl) {
4736   assert(VT.isVector() && "Expected a vector type");
4737
4738   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4739   SDValue Vec;
4740   if (VT.is256BitVector()) {
4741     if (HasInt256) { // AVX2
4742       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4743       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4744                         array_lengthof(Ops));
4745     } else { // AVX
4746       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4747       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4748     }
4749   } else if (VT.is128BitVector()) {
4750     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4751   } else
4752     llvm_unreachable("Unexpected vector type");
4753
4754   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4755 }
4756
4757 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4758 /// that point to V2 points to its first element.
4759 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4760   for (unsigned i = 0; i != NumElems; ++i) {
4761     if (Mask[i] > (int)NumElems) {
4762       Mask[i] = NumElems;
4763     }
4764   }
4765 }
4766
4767 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4768 /// operation of specified width.
4769 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4770                        SDValue V2) {
4771   unsigned NumElems = VT.getVectorNumElements();
4772   SmallVector<int, 8> Mask;
4773   Mask.push_back(NumElems);
4774   for (unsigned i = 1; i != NumElems; ++i)
4775     Mask.push_back(i);
4776   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4777 }
4778
4779 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4780 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4781                           SDValue V2) {
4782   unsigned NumElems = VT.getVectorNumElements();
4783   SmallVector<int, 8> Mask;
4784   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4785     Mask.push_back(i);
4786     Mask.push_back(i + NumElems);
4787   }
4788   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4789 }
4790
4791 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4792 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4793                           SDValue V2) {
4794   unsigned NumElems = VT.getVectorNumElements();
4795   SmallVector<int, 8> Mask;
4796   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4797     Mask.push_back(i + Half);
4798     Mask.push_back(i + NumElems + Half);
4799   }
4800   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4801 }
4802
4803 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4804 // a generic shuffle instruction because the target has no such instructions.
4805 // Generate shuffles which repeat i16 and i8 several times until they can be
4806 // represented by v4f32 and then be manipulated by target suported shuffles.
4807 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4808   MVT VT = V.getSimpleValueType();
4809   int NumElems = VT.getVectorNumElements();
4810   SDLoc dl(V);
4811
4812   while (NumElems > 4) {
4813     if (EltNo < NumElems/2) {
4814       V = getUnpackl(DAG, dl, VT, V, V);
4815     } else {
4816       V = getUnpackh(DAG, dl, VT, V, V);
4817       EltNo -= NumElems/2;
4818     }
4819     NumElems >>= 1;
4820   }
4821   return V;
4822 }
4823
4824 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4825 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4826   MVT VT = V.getSimpleValueType();
4827   SDLoc dl(V);
4828
4829   if (VT.is128BitVector()) {
4830     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4831     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4832     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4833                              &SplatMask[0]);
4834   } else if (VT.is256BitVector()) {
4835     // To use VPERMILPS to splat scalars, the second half of indicies must
4836     // refer to the higher part, which is a duplication of the lower one,
4837     // because VPERMILPS can only handle in-lane permutations.
4838     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4839                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4840
4841     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4842     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4843                              &SplatMask[0]);
4844   } else
4845     llvm_unreachable("Vector size not supported");
4846
4847   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4848 }
4849
4850 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4851 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4852   MVT SrcVT = SV->getSimpleValueType(0);
4853   SDValue V1 = SV->getOperand(0);
4854   SDLoc dl(SV);
4855
4856   int EltNo = SV->getSplatIndex();
4857   int NumElems = SrcVT.getVectorNumElements();
4858   bool Is256BitVec = SrcVT.is256BitVector();
4859
4860   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4861          "Unknown how to promote splat for type");
4862
4863   // Extract the 128-bit part containing the splat element and update
4864   // the splat element index when it refers to the higher register.
4865   if (Is256BitVec) {
4866     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4867     if (EltNo >= NumElems/2)
4868       EltNo -= NumElems/2;
4869   }
4870
4871   // All i16 and i8 vector types can't be used directly by a generic shuffle
4872   // instruction because the target has no such instruction. Generate shuffles
4873   // which repeat i16 and i8 several times until they fit in i32, and then can
4874   // be manipulated by target suported shuffles.
4875   MVT EltVT = SrcVT.getVectorElementType();
4876   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4877     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4878
4879   // Recreate the 256-bit vector and place the same 128-bit vector
4880   // into the low and high part. This is necessary because we want
4881   // to use VPERM* to shuffle the vectors
4882   if (Is256BitVec) {
4883     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4884   }
4885
4886   return getLegalSplat(DAG, V1, EltNo);
4887 }
4888
4889 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4890 /// vector of zero or undef vector.  This produces a shuffle where the low
4891 /// element of V2 is swizzled into the zero/undef vector, landing at element
4892 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4893 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4894                                            bool IsZero,
4895                                            const X86Subtarget *Subtarget,
4896                                            SelectionDAG &DAG) {
4897   MVT VT = V2.getSimpleValueType();
4898   SDValue V1 = IsZero
4899     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4900   unsigned NumElems = VT.getVectorNumElements();
4901   SmallVector<int, 16> MaskVec;
4902   for (unsigned i = 0; i != NumElems; ++i)
4903     // If this is the insertion idx, put the low elt of V2 here.
4904     MaskVec.push_back(i == Idx ? NumElems : i);
4905   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4906 }
4907
4908 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4909 /// target specific opcode. Returns true if the Mask could be calculated.
4910 /// Sets IsUnary to true if only uses one source.
4911 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4912                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4913   unsigned NumElems = VT.getVectorNumElements();
4914   SDValue ImmN;
4915
4916   IsUnary = false;
4917   switch(N->getOpcode()) {
4918   case X86ISD::SHUFP:
4919     ImmN = N->getOperand(N->getNumOperands()-1);
4920     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4921     break;
4922   case X86ISD::UNPCKH:
4923     DecodeUNPCKHMask(VT, Mask);
4924     break;
4925   case X86ISD::UNPCKL:
4926     DecodeUNPCKLMask(VT, Mask);
4927     break;
4928   case X86ISD::MOVHLPS:
4929     DecodeMOVHLPSMask(NumElems, Mask);
4930     break;
4931   case X86ISD::MOVLHPS:
4932     DecodeMOVLHPSMask(NumElems, Mask);
4933     break;
4934   case X86ISD::PALIGNR:
4935     ImmN = N->getOperand(N->getNumOperands()-1);
4936     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4937     break;
4938   case X86ISD::PSHUFD:
4939   case X86ISD::VPERMILP:
4940     ImmN = N->getOperand(N->getNumOperands()-1);
4941     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4942     IsUnary = true;
4943     break;
4944   case X86ISD::PSHUFHW:
4945     ImmN = N->getOperand(N->getNumOperands()-1);
4946     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4947     IsUnary = true;
4948     break;
4949   case X86ISD::PSHUFLW:
4950     ImmN = N->getOperand(N->getNumOperands()-1);
4951     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4952     IsUnary = true;
4953     break;
4954   case X86ISD::VPERMI:
4955     ImmN = N->getOperand(N->getNumOperands()-1);
4956     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4957     IsUnary = true;
4958     break;
4959   case X86ISD::MOVSS:
4960   case X86ISD::MOVSD: {
4961     // The index 0 always comes from the first element of the second source,
4962     // this is why MOVSS and MOVSD are used in the first place. The other
4963     // elements come from the other positions of the first source vector
4964     Mask.push_back(NumElems);
4965     for (unsigned i = 1; i != NumElems; ++i) {
4966       Mask.push_back(i);
4967     }
4968     break;
4969   }
4970   case X86ISD::VPERM2X128:
4971     ImmN = N->getOperand(N->getNumOperands()-1);
4972     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4973     if (Mask.empty()) return false;
4974     break;
4975   case X86ISD::MOVDDUP:
4976   case X86ISD::MOVLHPD:
4977   case X86ISD::MOVLPD:
4978   case X86ISD::MOVLPS:
4979   case X86ISD::MOVSHDUP:
4980   case X86ISD::MOVSLDUP:
4981     // Not yet implemented
4982     return false;
4983   default: llvm_unreachable("unknown target shuffle node");
4984   }
4985
4986   return true;
4987 }
4988
4989 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4990 /// element of the result of the vector shuffle.
4991 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4992                                    unsigned Depth) {
4993   if (Depth == 6)
4994     return SDValue();  // Limit search depth.
4995
4996   SDValue V = SDValue(N, 0);
4997   EVT VT = V.getValueType();
4998   unsigned Opcode = V.getOpcode();
4999
5000   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5001   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5002     int Elt = SV->getMaskElt(Index);
5003
5004     if (Elt < 0)
5005       return DAG.getUNDEF(VT.getVectorElementType());
5006
5007     unsigned NumElems = VT.getVectorNumElements();
5008     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5009                                          : SV->getOperand(1);
5010     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5011   }
5012
5013   // Recurse into target specific vector shuffles to find scalars.
5014   if (isTargetShuffle(Opcode)) {
5015     MVT ShufVT = V.getSimpleValueType();
5016     unsigned NumElems = ShufVT.getVectorNumElements();
5017     SmallVector<int, 16> ShuffleMask;
5018     bool IsUnary;
5019
5020     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5021       return SDValue();
5022
5023     int Elt = ShuffleMask[Index];
5024     if (Elt < 0)
5025       return DAG.getUNDEF(ShufVT.getVectorElementType());
5026
5027     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5028                                          : N->getOperand(1);
5029     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5030                                Depth+1);
5031   }
5032
5033   // Actual nodes that may contain scalar elements
5034   if (Opcode == ISD::BITCAST) {
5035     V = V.getOperand(0);
5036     EVT SrcVT = V.getValueType();
5037     unsigned NumElems = VT.getVectorNumElements();
5038
5039     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5040       return SDValue();
5041   }
5042
5043   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5044     return (Index == 0) ? V.getOperand(0)
5045                         : DAG.getUNDEF(VT.getVectorElementType());
5046
5047   if (V.getOpcode() == ISD::BUILD_VECTOR)
5048     return V.getOperand(Index);
5049
5050   return SDValue();
5051 }
5052
5053 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5054 /// shuffle operation which come from a consecutively from a zero. The
5055 /// search can start in two different directions, from left or right.
5056 /// We count undefs as zeros until PreferredNum is reached.
5057 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5058                                          unsigned NumElems, bool ZerosFromLeft,
5059                                          SelectionDAG &DAG,
5060                                          unsigned PreferredNum = -1U) {
5061   unsigned NumZeros = 0;
5062   for (unsigned i = 0; i != NumElems; ++i) {
5063     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5064     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5065     if (!Elt.getNode())
5066       break;
5067
5068     if (X86::isZeroNode(Elt))
5069       ++NumZeros;
5070     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5071       NumZeros = std::min(NumZeros + 1, PreferredNum);
5072     else
5073       break;
5074   }
5075
5076   return NumZeros;
5077 }
5078
5079 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5080 /// correspond consecutively to elements from one of the vector operands,
5081 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5082 static
5083 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5084                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5085                               unsigned NumElems, unsigned &OpNum) {
5086   bool SeenV1 = false;
5087   bool SeenV2 = false;
5088
5089   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5090     int Idx = SVOp->getMaskElt(i);
5091     // Ignore undef indicies
5092     if (Idx < 0)
5093       continue;
5094
5095     if (Idx < (int)NumElems)
5096       SeenV1 = true;
5097     else
5098       SeenV2 = true;
5099
5100     // Only accept consecutive elements from the same vector
5101     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5102       return false;
5103   }
5104
5105   OpNum = SeenV1 ? 0 : 1;
5106   return true;
5107 }
5108
5109 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5110 /// logical left shift of a vector.
5111 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5112                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5113   unsigned NumElems =
5114     SVOp->getSimpleValueType(0).getVectorNumElements();
5115   unsigned NumZeros = getNumOfConsecutiveZeros(
5116       SVOp, NumElems, false /* check zeros from right */, DAG,
5117       SVOp->getMaskElt(0));
5118   unsigned OpSrc;
5119
5120   if (!NumZeros)
5121     return false;
5122
5123   // Considering the elements in the mask that are not consecutive zeros,
5124   // check if they consecutively come from only one of the source vectors.
5125   //
5126   //               V1 = {X, A, B, C}     0
5127   //                         \  \  \    /
5128   //   vector_shuffle V1, V2 <1, 2, 3, X>
5129   //
5130   if (!isShuffleMaskConsecutive(SVOp,
5131             0,                   // Mask Start Index
5132             NumElems-NumZeros,   // Mask End Index(exclusive)
5133             NumZeros,            // Where to start looking in the src vector
5134             NumElems,            // Number of elements in vector
5135             OpSrc))              // Which source operand ?
5136     return false;
5137
5138   isLeft = false;
5139   ShAmt = NumZeros;
5140   ShVal = SVOp->getOperand(OpSrc);
5141   return true;
5142 }
5143
5144 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5145 /// logical left shift of a vector.
5146 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5147                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5148   unsigned NumElems =
5149     SVOp->getSimpleValueType(0).getVectorNumElements();
5150   unsigned NumZeros = getNumOfConsecutiveZeros(
5151       SVOp, NumElems, true /* check zeros from left */, DAG,
5152       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5153   unsigned OpSrc;
5154
5155   if (!NumZeros)
5156     return false;
5157
5158   // Considering the elements in the mask that are not consecutive zeros,
5159   // check if they consecutively come from only one of the source vectors.
5160   //
5161   //                           0    { A, B, X, X } = V2
5162   //                          / \    /  /
5163   //   vector_shuffle V1, V2 <X, X, 4, 5>
5164   //
5165   if (!isShuffleMaskConsecutive(SVOp,
5166             NumZeros,     // Mask Start Index
5167             NumElems,     // Mask End Index(exclusive)
5168             0,            // Where to start looking in the src vector
5169             NumElems,     // Number of elements in vector
5170             OpSrc))       // Which source operand ?
5171     return false;
5172
5173   isLeft = true;
5174   ShAmt = NumZeros;
5175   ShVal = SVOp->getOperand(OpSrc);
5176   return true;
5177 }
5178
5179 /// isVectorShift - Returns true if the shuffle can be implemented as a
5180 /// logical left or right shift of a vector.
5181 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5182                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5183   // Although the logic below support any bitwidth size, there are no
5184   // shift instructions which handle more than 128-bit vectors.
5185   if (!SVOp->getSimpleValueType(0).is128BitVector())
5186     return false;
5187
5188   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5189       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5190     return true;
5191
5192   return false;
5193 }
5194
5195 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5196 ///
5197 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5198                                        unsigned NumNonZero, unsigned NumZero,
5199                                        SelectionDAG &DAG,
5200                                        const X86Subtarget* Subtarget,
5201                                        const TargetLowering &TLI) {
5202   if (NumNonZero > 8)
5203     return SDValue();
5204
5205   SDLoc dl(Op);
5206   SDValue V(0, 0);
5207   bool First = true;
5208   for (unsigned i = 0; i < 16; ++i) {
5209     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5210     if (ThisIsNonZero && First) {
5211       if (NumZero)
5212         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5213       else
5214         V = DAG.getUNDEF(MVT::v8i16);
5215       First = false;
5216     }
5217
5218     if ((i & 1) != 0) {
5219       SDValue ThisElt(0, 0), LastElt(0, 0);
5220       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5221       if (LastIsNonZero) {
5222         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5223                               MVT::i16, Op.getOperand(i-1));
5224       }
5225       if (ThisIsNonZero) {
5226         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5227         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5228                               ThisElt, DAG.getConstant(8, MVT::i8));
5229         if (LastIsNonZero)
5230           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5231       } else
5232         ThisElt = LastElt;
5233
5234       if (ThisElt.getNode())
5235         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5236                         DAG.getIntPtrConstant(i/2));
5237     }
5238   }
5239
5240   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5241 }
5242
5243 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5244 ///
5245 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5246                                      unsigned NumNonZero, unsigned NumZero,
5247                                      SelectionDAG &DAG,
5248                                      const X86Subtarget* Subtarget,
5249                                      const TargetLowering &TLI) {
5250   if (NumNonZero > 4)
5251     return SDValue();
5252
5253   SDLoc dl(Op);
5254   SDValue V(0, 0);
5255   bool First = true;
5256   for (unsigned i = 0; i < 8; ++i) {
5257     bool isNonZero = (NonZeros & (1 << i)) != 0;
5258     if (isNonZero) {
5259       if (First) {
5260         if (NumZero)
5261           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5262         else
5263           V = DAG.getUNDEF(MVT::v8i16);
5264         First = false;
5265       }
5266       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5267                       MVT::v8i16, V, Op.getOperand(i),
5268                       DAG.getIntPtrConstant(i));
5269     }
5270   }
5271
5272   return V;
5273 }
5274
5275 /// getVShift - Return a vector logical shift node.
5276 ///
5277 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5278                          unsigned NumBits, SelectionDAG &DAG,
5279                          const TargetLowering &TLI, SDLoc dl) {
5280   assert(VT.is128BitVector() && "Unknown type for VShift");
5281   EVT ShVT = MVT::v2i64;
5282   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5283   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5284   return DAG.getNode(ISD::BITCAST, dl, VT,
5285                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5286                              DAG.getConstant(NumBits,
5287                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5288 }
5289
5290 static SDValue
5291 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5292
5293   // Check if the scalar load can be widened into a vector load. And if
5294   // the address is "base + cst" see if the cst can be "absorbed" into
5295   // the shuffle mask.
5296   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5297     SDValue Ptr = LD->getBasePtr();
5298     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5299       return SDValue();
5300     EVT PVT = LD->getValueType(0);
5301     if (PVT != MVT::i32 && PVT != MVT::f32)
5302       return SDValue();
5303
5304     int FI = -1;
5305     int64_t Offset = 0;
5306     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5307       FI = FINode->getIndex();
5308       Offset = 0;
5309     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5310                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5311       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5312       Offset = Ptr.getConstantOperandVal(1);
5313       Ptr = Ptr.getOperand(0);
5314     } else {
5315       return SDValue();
5316     }
5317
5318     // FIXME: 256-bit vector instructions don't require a strict alignment,
5319     // improve this code to support it better.
5320     unsigned RequiredAlign = VT.getSizeInBits()/8;
5321     SDValue Chain = LD->getChain();
5322     // Make sure the stack object alignment is at least 16 or 32.
5323     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5324     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5325       if (MFI->isFixedObjectIndex(FI)) {
5326         // Can't change the alignment. FIXME: It's possible to compute
5327         // the exact stack offset and reference FI + adjust offset instead.
5328         // If someone *really* cares about this. That's the way to implement it.
5329         return SDValue();
5330       } else {
5331         MFI->setObjectAlignment(FI, RequiredAlign);
5332       }
5333     }
5334
5335     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5336     // Ptr + (Offset & ~15).
5337     if (Offset < 0)
5338       return SDValue();
5339     if ((Offset % RequiredAlign) & 3)
5340       return SDValue();
5341     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5342     if (StartOffset)
5343       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5344                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5345
5346     int EltNo = (Offset - StartOffset) >> 2;
5347     unsigned NumElems = VT.getVectorNumElements();
5348
5349     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5350     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5351                              LD->getPointerInfo().getWithOffset(StartOffset),
5352                              false, false, false, 0);
5353
5354     SmallVector<int, 8> Mask;
5355     for (unsigned i = 0; i != NumElems; ++i)
5356       Mask.push_back(EltNo);
5357
5358     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5359   }
5360
5361   return SDValue();
5362 }
5363
5364 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5365 /// vector of type 'VT', see if the elements can be replaced by a single large
5366 /// load which has the same value as a build_vector whose operands are 'elts'.
5367 ///
5368 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5369 ///
5370 /// FIXME: we'd also like to handle the case where the last elements are zero
5371 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5372 /// There's even a handy isZeroNode for that purpose.
5373 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5374                                         SDLoc &DL, SelectionDAG &DAG) {
5375   EVT EltVT = VT.getVectorElementType();
5376   unsigned NumElems = Elts.size();
5377
5378   LoadSDNode *LDBase = NULL;
5379   unsigned LastLoadedElt = -1U;
5380
5381   // For each element in the initializer, see if we've found a load or an undef.
5382   // If we don't find an initial load element, or later load elements are
5383   // non-consecutive, bail out.
5384   for (unsigned i = 0; i < NumElems; ++i) {
5385     SDValue Elt = Elts[i];
5386
5387     if (!Elt.getNode() ||
5388         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5389       return SDValue();
5390     if (!LDBase) {
5391       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5392         return SDValue();
5393       LDBase = cast<LoadSDNode>(Elt.getNode());
5394       LastLoadedElt = i;
5395       continue;
5396     }
5397     if (Elt.getOpcode() == ISD::UNDEF)
5398       continue;
5399
5400     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5401     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5402       return SDValue();
5403     LastLoadedElt = i;
5404   }
5405
5406   // If we have found an entire vector of loads and undefs, then return a large
5407   // load of the entire vector width starting at the base pointer.  If we found
5408   // consecutive loads for the low half, generate a vzext_load node.
5409   if (LastLoadedElt == NumElems - 1) {
5410     SDValue NewLd = SDValue();
5411     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5412       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5413                           LDBase->getPointerInfo(),
5414                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5415                           LDBase->isInvariant(), 0);
5416     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5417                         LDBase->getPointerInfo(),
5418                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5419                         LDBase->isInvariant(), LDBase->getAlignment());
5420
5421     if (LDBase->hasAnyUseOfValue(1)) {
5422       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5423                                      SDValue(LDBase, 1),
5424                                      SDValue(NewLd.getNode(), 1));
5425       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5426       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5427                              SDValue(NewLd.getNode(), 1));
5428     }
5429
5430     return NewLd;
5431   }
5432   if (NumElems == 4 && LastLoadedElt == 1 &&
5433       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5434     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5435     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5436     SDValue ResNode =
5437         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5438                                 array_lengthof(Ops), MVT::i64,
5439                                 LDBase->getPointerInfo(),
5440                                 LDBase->getAlignment(),
5441                                 false/*isVolatile*/, true/*ReadMem*/,
5442                                 false/*WriteMem*/);
5443
5444     // Make sure the newly-created LOAD is in the same position as LDBase in
5445     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5446     // update uses of LDBase's output chain to use the TokenFactor.
5447     if (LDBase->hasAnyUseOfValue(1)) {
5448       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5449                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5450       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5451       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5452                              SDValue(ResNode.getNode(), 1));
5453     }
5454
5455     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5456   }
5457   return SDValue();
5458 }
5459
5460 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5461 /// to generate a splat value for the following cases:
5462 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5463 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5464 /// a scalar load, or a constant.
5465 /// The VBROADCAST node is returned when a pattern is found,
5466 /// or SDValue() otherwise.
5467 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5468                                     SelectionDAG &DAG) {
5469   if (!Subtarget->hasFp256())
5470     return SDValue();
5471
5472   MVT VT = Op.getSimpleValueType();
5473   SDLoc dl(Op);
5474
5475   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5476          "Unsupported vector type for broadcast.");
5477
5478   SDValue Ld;
5479   bool ConstSplatVal;
5480
5481   switch (Op.getOpcode()) {
5482     default:
5483       // Unknown pattern found.
5484       return SDValue();
5485
5486     case ISD::BUILD_VECTOR: {
5487       // The BUILD_VECTOR node must be a splat.
5488       if (!isSplatVector(Op.getNode()))
5489         return SDValue();
5490
5491       Ld = Op.getOperand(0);
5492       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5493                      Ld.getOpcode() == ISD::ConstantFP);
5494
5495       // The suspected load node has several users. Make sure that all
5496       // of its users are from the BUILD_VECTOR node.
5497       // Constants may have multiple users.
5498       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5499         return SDValue();
5500       break;
5501     }
5502
5503     case ISD::VECTOR_SHUFFLE: {
5504       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5505
5506       // Shuffles must have a splat mask where the first element is
5507       // broadcasted.
5508       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5509         return SDValue();
5510
5511       SDValue Sc = Op.getOperand(0);
5512       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5513           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5514
5515         if (!Subtarget->hasInt256())
5516           return SDValue();
5517
5518         // Use the register form of the broadcast instruction available on AVX2.
5519         if (VT.getSizeInBits() >= 256)
5520           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5521         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5522       }
5523
5524       Ld = Sc.getOperand(0);
5525       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5526                        Ld.getOpcode() == ISD::ConstantFP);
5527
5528       // The scalar_to_vector node and the suspected
5529       // load node must have exactly one user.
5530       // Constants may have multiple users.
5531
5532       // AVX-512 has register version of the broadcast
5533       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5534         Ld.getValueType().getSizeInBits() >= 32;
5535       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5536           !hasRegVer))
5537         return SDValue();
5538       break;
5539     }
5540   }
5541
5542   bool IsGE256 = (VT.getSizeInBits() >= 256);
5543
5544   // Handle the broadcasting a single constant scalar from the constant pool
5545   // into a vector. On Sandybridge it is still better to load a constant vector
5546   // from the constant pool and not to broadcast it from a scalar.
5547   if (ConstSplatVal && Subtarget->hasInt256()) {
5548     EVT CVT = Ld.getValueType();
5549     assert(!CVT.isVector() && "Must not broadcast a vector type");
5550     unsigned ScalarSize = CVT.getSizeInBits();
5551
5552     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5553       const Constant *C = 0;
5554       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5555         C = CI->getConstantIntValue();
5556       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5557         C = CF->getConstantFPValue();
5558
5559       assert(C && "Invalid constant type");
5560
5561       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5562       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5563       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5564       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5565                        MachinePointerInfo::getConstantPool(),
5566                        false, false, false, Alignment);
5567
5568       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5569     }
5570   }
5571
5572   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5573   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5574
5575   // Handle AVX2 in-register broadcasts.
5576   if (!IsLoad && Subtarget->hasInt256() &&
5577       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5578     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5579
5580   // The scalar source must be a normal load.
5581   if (!IsLoad)
5582     return SDValue();
5583
5584   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5585     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5586
5587   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5588   // double since there is no vbroadcastsd xmm
5589   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5590     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5591       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5592   }
5593
5594   // Unsupported broadcast.
5595   return SDValue();
5596 }
5597
5598 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5599   MVT VT = Op.getSimpleValueType();
5600
5601   // Skip if insert_vec_elt is not supported.
5602   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5603   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5604     return SDValue();
5605
5606   SDLoc DL(Op);
5607   unsigned NumElems = Op.getNumOperands();
5608
5609   SDValue VecIn1;
5610   SDValue VecIn2;
5611   SmallVector<unsigned, 4> InsertIndices;
5612   SmallVector<int, 8> Mask(NumElems, -1);
5613
5614   for (unsigned i = 0; i != NumElems; ++i) {
5615     unsigned Opc = Op.getOperand(i).getOpcode();
5616
5617     if (Opc == ISD::UNDEF)
5618       continue;
5619
5620     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5621       // Quit if more than 1 elements need inserting.
5622       if (InsertIndices.size() > 1)
5623         return SDValue();
5624
5625       InsertIndices.push_back(i);
5626       continue;
5627     }
5628
5629     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5630     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5631
5632     // Quit if extracted from vector of different type.
5633     if (ExtractedFromVec.getValueType() != VT)
5634       return SDValue();
5635
5636     // Quit if non-constant index.
5637     if (!isa<ConstantSDNode>(ExtIdx))
5638       return SDValue();
5639
5640     if (VecIn1.getNode() == 0)
5641       VecIn1 = ExtractedFromVec;
5642     else if (VecIn1 != ExtractedFromVec) {
5643       if (VecIn2.getNode() == 0)
5644         VecIn2 = ExtractedFromVec;
5645       else if (VecIn2 != ExtractedFromVec)
5646         // Quit if more than 2 vectors to shuffle
5647         return SDValue();
5648     }
5649
5650     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5651
5652     if (ExtractedFromVec == VecIn1)
5653       Mask[i] = Idx;
5654     else if (ExtractedFromVec == VecIn2)
5655       Mask[i] = Idx + NumElems;
5656   }
5657
5658   if (VecIn1.getNode() == 0)
5659     return SDValue();
5660
5661   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5662   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5663   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5664     unsigned Idx = InsertIndices[i];
5665     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5666                      DAG.getIntPtrConstant(Idx));
5667   }
5668
5669   return NV;
5670 }
5671
5672 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5673 SDValue
5674 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5675
5676   MVT VT = Op.getSimpleValueType();
5677   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5678          "Unexpected type in LowerBUILD_VECTORvXi1!");
5679
5680   SDLoc dl(Op);
5681   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5682     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5683     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5684                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5685     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5686                        Ops, VT.getVectorNumElements());
5687   }
5688
5689   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5690     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5691     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5692                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5693     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5694                        Ops, VT.getVectorNumElements());
5695   }
5696
5697   bool AllContants = true;
5698   uint64_t Immediate = 0;
5699   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5700     SDValue In = Op.getOperand(idx);
5701     if (In.getOpcode() == ISD::UNDEF)
5702       continue;
5703     if (!isa<ConstantSDNode>(In)) {
5704       AllContants = false;
5705       break;
5706     }
5707     if (cast<ConstantSDNode>(In)->getZExtValue())
5708       Immediate |= (1ULL << idx);
5709   }
5710
5711   if (AllContants) {
5712     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5713       DAG.getConstant(Immediate, MVT::i16));
5714     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5715                        DAG.getIntPtrConstant(0));
5716   }
5717
5718   // Splat vector (with undefs)
5719   SDValue In = Op.getOperand(0);
5720   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5721     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5722       llvm_unreachable("Unsupported predicate operation");
5723   }
5724
5725   SDValue EFLAGS, X86CC;
5726   if (In.getOpcode() == ISD::SETCC) {
5727     SDValue Op0 = In.getOperand(0);
5728     SDValue Op1 = In.getOperand(1);
5729     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5730     bool isFP = Op1.getValueType().isFloatingPoint();
5731     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5732
5733     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5734
5735     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5736     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5737     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5738   } else if (In.getOpcode() == X86ISD::SETCC) {
5739     X86CC = In.getOperand(0);
5740     EFLAGS = In.getOperand(1);
5741   } else {
5742     // The algorithm:
5743     //   Bit1 = In & 0x1
5744     //   if (Bit1 != 0)
5745     //     ZF = 0
5746     //   else
5747     //     ZF = 1
5748     //   if (ZF == 0)
5749     //     res = allOnes ### CMOVNE -1, %res
5750     //   else
5751     //     res = allZero
5752     MVT InVT = In.getSimpleValueType();
5753     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5754     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5755     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5756   }
5757
5758   if (VT == MVT::v16i1) {
5759     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5760     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5761     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5762           Cst0, Cst1, X86CC, EFLAGS);
5763     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5764   }
5765
5766   if (VT == MVT::v8i1) {
5767     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5768     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5769     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5770           Cst0, Cst1, X86CC, EFLAGS);
5771     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5772     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5773   }
5774   llvm_unreachable("Unsupported predicate operation");
5775 }
5776
5777 SDValue
5778 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5779   SDLoc dl(Op);
5780
5781   MVT VT = Op.getSimpleValueType();
5782   MVT ExtVT = VT.getVectorElementType();
5783   unsigned NumElems = Op.getNumOperands();
5784
5785   // Generate vectors for predicate vectors.
5786   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5787     return LowerBUILD_VECTORvXi1(Op, DAG);
5788
5789   // Vectors containing all zeros can be matched by pxor and xorps later
5790   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5791     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5792     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5793     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5794       return Op;
5795
5796     return getZeroVector(VT, Subtarget, DAG, dl);
5797   }
5798
5799   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5800   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5801   // vpcmpeqd on 256-bit vectors.
5802   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5803     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5804       return Op;
5805
5806     if (!VT.is512BitVector())
5807       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5808   }
5809
5810   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5811   if (Broadcast.getNode())
5812     return Broadcast;
5813
5814   unsigned EVTBits = ExtVT.getSizeInBits();
5815
5816   unsigned NumZero  = 0;
5817   unsigned NumNonZero = 0;
5818   unsigned NonZeros = 0;
5819   bool IsAllConstants = true;
5820   SmallSet<SDValue, 8> Values;
5821   for (unsigned i = 0; i < NumElems; ++i) {
5822     SDValue Elt = Op.getOperand(i);
5823     if (Elt.getOpcode() == ISD::UNDEF)
5824       continue;
5825     Values.insert(Elt);
5826     if (Elt.getOpcode() != ISD::Constant &&
5827         Elt.getOpcode() != ISD::ConstantFP)
5828       IsAllConstants = false;
5829     if (X86::isZeroNode(Elt))
5830       NumZero++;
5831     else {
5832       NonZeros |= (1 << i);
5833       NumNonZero++;
5834     }
5835   }
5836
5837   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5838   if (NumNonZero == 0)
5839     return DAG.getUNDEF(VT);
5840
5841   // Special case for single non-zero, non-undef, element.
5842   if (NumNonZero == 1) {
5843     unsigned Idx = countTrailingZeros(NonZeros);
5844     SDValue Item = Op.getOperand(Idx);
5845
5846     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5847     // the value are obviously zero, truncate the value to i32 and do the
5848     // insertion that way.  Only do this if the value is non-constant or if the
5849     // value is a constant being inserted into element 0.  It is cheaper to do
5850     // a constant pool load than it is to do a movd + shuffle.
5851     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5852         (!IsAllConstants || Idx == 0)) {
5853       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5854         // Handle SSE only.
5855         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5856         EVT VecVT = MVT::v4i32;
5857         unsigned VecElts = 4;
5858
5859         // Truncate the value (which may itself be a constant) to i32, and
5860         // convert it to a vector with movd (S2V+shuffle to zero extend).
5861         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5862         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5863         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5864
5865         // Now we have our 32-bit value zero extended in the low element of
5866         // a vector.  If Idx != 0, swizzle it into place.
5867         if (Idx != 0) {
5868           SmallVector<int, 4> Mask;
5869           Mask.push_back(Idx);
5870           for (unsigned i = 1; i != VecElts; ++i)
5871             Mask.push_back(i);
5872           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5873                                       &Mask[0]);
5874         }
5875         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5876       }
5877     }
5878
5879     // If we have a constant or non-constant insertion into the low element of
5880     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5881     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5882     // depending on what the source datatype is.
5883     if (Idx == 0) {
5884       if (NumZero == 0)
5885         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5886
5887       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5888           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5889         if (VT.is256BitVector() || VT.is512BitVector()) {
5890           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5891           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5892                              Item, DAG.getIntPtrConstant(0));
5893         }
5894         assert(VT.is128BitVector() && "Expected an SSE value type!");
5895         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5896         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5897         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5898       }
5899
5900       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5901         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5902         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5903         if (VT.is256BitVector()) {
5904           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5905           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5906         } else {
5907           assert(VT.is128BitVector() && "Expected an SSE value type!");
5908           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5909         }
5910         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5911       }
5912     }
5913
5914     // Is it a vector logical left shift?
5915     if (NumElems == 2 && Idx == 1 &&
5916         X86::isZeroNode(Op.getOperand(0)) &&
5917         !X86::isZeroNode(Op.getOperand(1))) {
5918       unsigned NumBits = VT.getSizeInBits();
5919       return getVShift(true, VT,
5920                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5921                                    VT, Op.getOperand(1)),
5922                        NumBits/2, DAG, *this, dl);
5923     }
5924
5925     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5926       return SDValue();
5927
5928     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5929     // is a non-constant being inserted into an element other than the low one,
5930     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5931     // movd/movss) to move this into the low element, then shuffle it into
5932     // place.
5933     if (EVTBits == 32) {
5934       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5935
5936       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5937       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5938       SmallVector<int, 8> MaskVec;
5939       for (unsigned i = 0; i != NumElems; ++i)
5940         MaskVec.push_back(i == Idx ? 0 : 1);
5941       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5942     }
5943   }
5944
5945   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5946   if (Values.size() == 1) {
5947     if (EVTBits == 32) {
5948       // Instead of a shuffle like this:
5949       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5950       // Check if it's possible to issue this instead.
5951       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5952       unsigned Idx = countTrailingZeros(NonZeros);
5953       SDValue Item = Op.getOperand(Idx);
5954       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5955         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5956     }
5957     return SDValue();
5958   }
5959
5960   // A vector full of immediates; various special cases are already
5961   // handled, so this is best done with a single constant-pool load.
5962   if (IsAllConstants)
5963     return SDValue();
5964
5965   // For AVX-length vectors, build the individual 128-bit pieces and use
5966   // shuffles to put them in place.
5967   if (VT.is256BitVector()) {
5968     SmallVector<SDValue, 32> V;
5969     for (unsigned i = 0; i != NumElems; ++i)
5970       V.push_back(Op.getOperand(i));
5971
5972     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5973
5974     // Build both the lower and upper subvector.
5975     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5976     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5977                                 NumElems/2);
5978
5979     // Recreate the wider vector with the lower and upper part.
5980     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5981   }
5982
5983   // Let legalizer expand 2-wide build_vectors.
5984   if (EVTBits == 64) {
5985     if (NumNonZero == 1) {
5986       // One half is zero or undef.
5987       unsigned Idx = countTrailingZeros(NonZeros);
5988       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5989                                  Op.getOperand(Idx));
5990       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5991     }
5992     return SDValue();
5993   }
5994
5995   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5996   if (EVTBits == 8 && NumElems == 16) {
5997     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5998                                         Subtarget, *this);
5999     if (V.getNode()) return V;
6000   }
6001
6002   if (EVTBits == 16 && NumElems == 8) {
6003     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6004                                       Subtarget, *this);
6005     if (V.getNode()) return V;
6006   }
6007
6008   // If element VT is == 32 bits, turn it into a number of shuffles.
6009   SmallVector<SDValue, 8> V(NumElems);
6010   if (NumElems == 4 && NumZero > 0) {
6011     for (unsigned i = 0; i < 4; ++i) {
6012       bool isZero = !(NonZeros & (1 << i));
6013       if (isZero)
6014         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6015       else
6016         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6017     }
6018
6019     for (unsigned i = 0; i < 2; ++i) {
6020       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6021         default: break;
6022         case 0:
6023           V[i] = V[i*2];  // Must be a zero vector.
6024           break;
6025         case 1:
6026           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6027           break;
6028         case 2:
6029           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6030           break;
6031         case 3:
6032           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6033           break;
6034       }
6035     }
6036
6037     bool Reverse1 = (NonZeros & 0x3) == 2;
6038     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6039     int MaskVec[] = {
6040       Reverse1 ? 1 : 0,
6041       Reverse1 ? 0 : 1,
6042       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6043       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6044     };
6045     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6046   }
6047
6048   if (Values.size() > 1 && VT.is128BitVector()) {
6049     // Check for a build vector of consecutive loads.
6050     for (unsigned i = 0; i < NumElems; ++i)
6051       V[i] = Op.getOperand(i);
6052
6053     // Check for elements which are consecutive loads.
6054     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6055     if (LD.getNode())
6056       return LD;
6057
6058     // Check for a build vector from mostly shuffle plus few inserting.
6059     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6060     if (Sh.getNode())
6061       return Sh;
6062
6063     // For SSE 4.1, use insertps to put the high elements into the low element.
6064     if (getSubtarget()->hasSSE41()) {
6065       SDValue Result;
6066       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6067         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6068       else
6069         Result = DAG.getUNDEF(VT);
6070
6071       for (unsigned i = 1; i < NumElems; ++i) {
6072         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6073         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6074                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6075       }
6076       return Result;
6077     }
6078
6079     // Otherwise, expand into a number of unpckl*, start by extending each of
6080     // our (non-undef) elements to the full vector width with the element in the
6081     // bottom slot of the vector (which generates no code for SSE).
6082     for (unsigned i = 0; i < NumElems; ++i) {
6083       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6084         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6085       else
6086         V[i] = DAG.getUNDEF(VT);
6087     }
6088
6089     // Next, we iteratively mix elements, e.g. for v4f32:
6090     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6091     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6092     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6093     unsigned EltStride = NumElems >> 1;
6094     while (EltStride != 0) {
6095       for (unsigned i = 0; i < EltStride; ++i) {
6096         // If V[i+EltStride] is undef and this is the first round of mixing,
6097         // then it is safe to just drop this shuffle: V[i] is already in the
6098         // right place, the one element (since it's the first round) being
6099         // inserted as undef can be dropped.  This isn't safe for successive
6100         // rounds because they will permute elements within both vectors.
6101         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6102             EltStride == NumElems/2)
6103           continue;
6104
6105         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6106       }
6107       EltStride >>= 1;
6108     }
6109     return V[0];
6110   }
6111   return SDValue();
6112 }
6113
6114 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6115 // to create 256-bit vectors from two other 128-bit ones.
6116 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6117   SDLoc dl(Op);
6118   MVT ResVT = Op.getSimpleValueType();
6119
6120   assert((ResVT.is256BitVector() ||
6121           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6122
6123   SDValue V1 = Op.getOperand(0);
6124   SDValue V2 = Op.getOperand(1);
6125   unsigned NumElems = ResVT.getVectorNumElements();
6126   if(ResVT.is256BitVector())
6127     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6128
6129   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6130 }
6131
6132 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6133   assert(Op.getNumOperands() == 2);
6134
6135   // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
6136   // from two other 128-bit ones.
6137   return LowerAVXCONCAT_VECTORS(Op, DAG);
6138 }
6139
6140 // Try to lower a shuffle node into a simple blend instruction.
6141 static SDValue
6142 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6143                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6144   SDValue V1 = SVOp->getOperand(0);
6145   SDValue V2 = SVOp->getOperand(1);
6146   SDLoc dl(SVOp);
6147   MVT VT = SVOp->getSimpleValueType(0);
6148   MVT EltVT = VT.getVectorElementType();
6149   unsigned NumElems = VT.getVectorNumElements();
6150
6151   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6152     return SDValue();
6153   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6154     return SDValue();
6155
6156   // Check the mask for BLEND and build the value.
6157   unsigned MaskValue = 0;
6158   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6159   unsigned NumLanes = (NumElems-1)/8 + 1;
6160   unsigned NumElemsInLane = NumElems / NumLanes;
6161
6162   // Blend for v16i16 should be symetric for the both lanes.
6163   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6164
6165     int SndLaneEltIdx = (NumLanes == 2) ?
6166       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6167     int EltIdx = SVOp->getMaskElt(i);
6168
6169     if ((EltIdx < 0 || EltIdx == (int)i) &&
6170         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6171       continue;
6172
6173     if (((unsigned)EltIdx == (i + NumElems)) &&
6174         (SndLaneEltIdx < 0 ||
6175          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6176       MaskValue |= (1<<i);
6177     else
6178       return SDValue();
6179   }
6180
6181   // Convert i32 vectors to floating point if it is not AVX2.
6182   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6183   MVT BlendVT = VT;
6184   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6185     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6186                                NumElems);
6187     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6188     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6189   }
6190
6191   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6192                             DAG.getConstant(MaskValue, MVT::i32));
6193   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6194 }
6195
6196 // v8i16 shuffles - Prefer shuffles in the following order:
6197 // 1. [all]   pshuflw, pshufhw, optional move
6198 // 2. [ssse3] 1 x pshufb
6199 // 3. [ssse3] 2 x pshufb + 1 x por
6200 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6201 static SDValue
6202 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6203                          SelectionDAG &DAG) {
6204   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6205   SDValue V1 = SVOp->getOperand(0);
6206   SDValue V2 = SVOp->getOperand(1);
6207   SDLoc dl(SVOp);
6208   SmallVector<int, 8> MaskVals;
6209
6210   // Determine if more than 1 of the words in each of the low and high quadwords
6211   // of the result come from the same quadword of one of the two inputs.  Undef
6212   // mask values count as coming from any quadword, for better codegen.
6213   unsigned LoQuad[] = { 0, 0, 0, 0 };
6214   unsigned HiQuad[] = { 0, 0, 0, 0 };
6215   std::bitset<4> InputQuads;
6216   for (unsigned i = 0; i < 8; ++i) {
6217     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6218     int EltIdx = SVOp->getMaskElt(i);
6219     MaskVals.push_back(EltIdx);
6220     if (EltIdx < 0) {
6221       ++Quad[0];
6222       ++Quad[1];
6223       ++Quad[2];
6224       ++Quad[3];
6225       continue;
6226     }
6227     ++Quad[EltIdx / 4];
6228     InputQuads.set(EltIdx / 4);
6229   }
6230
6231   int BestLoQuad = -1;
6232   unsigned MaxQuad = 1;
6233   for (unsigned i = 0; i < 4; ++i) {
6234     if (LoQuad[i] > MaxQuad) {
6235       BestLoQuad = i;
6236       MaxQuad = LoQuad[i];
6237     }
6238   }
6239
6240   int BestHiQuad = -1;
6241   MaxQuad = 1;
6242   for (unsigned i = 0; i < 4; ++i) {
6243     if (HiQuad[i] > MaxQuad) {
6244       BestHiQuad = i;
6245       MaxQuad = HiQuad[i];
6246     }
6247   }
6248
6249   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6250   // of the two input vectors, shuffle them into one input vector so only a
6251   // single pshufb instruction is necessary. If There are more than 2 input
6252   // quads, disable the next transformation since it does not help SSSE3.
6253   bool V1Used = InputQuads[0] || InputQuads[1];
6254   bool V2Used = InputQuads[2] || InputQuads[3];
6255   if (Subtarget->hasSSSE3()) {
6256     if (InputQuads.count() == 2 && V1Used && V2Used) {
6257       BestLoQuad = InputQuads[0] ? 0 : 1;
6258       BestHiQuad = InputQuads[2] ? 2 : 3;
6259     }
6260     if (InputQuads.count() > 2) {
6261       BestLoQuad = -1;
6262       BestHiQuad = -1;
6263     }
6264   }
6265
6266   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6267   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6268   // words from all 4 input quadwords.
6269   SDValue NewV;
6270   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6271     int MaskV[] = {
6272       BestLoQuad < 0 ? 0 : BestLoQuad,
6273       BestHiQuad < 0 ? 1 : BestHiQuad
6274     };
6275     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6276                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6277                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6278     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6279
6280     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6281     // source words for the shuffle, to aid later transformations.
6282     bool AllWordsInNewV = true;
6283     bool InOrder[2] = { true, true };
6284     for (unsigned i = 0; i != 8; ++i) {
6285       int idx = MaskVals[i];
6286       if (idx != (int)i)
6287         InOrder[i/4] = false;
6288       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6289         continue;
6290       AllWordsInNewV = false;
6291       break;
6292     }
6293
6294     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6295     if (AllWordsInNewV) {
6296       for (int i = 0; i != 8; ++i) {
6297         int idx = MaskVals[i];
6298         if (idx < 0)
6299           continue;
6300         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6301         if ((idx != i) && idx < 4)
6302           pshufhw = false;
6303         if ((idx != i) && idx > 3)
6304           pshuflw = false;
6305       }
6306       V1 = NewV;
6307       V2Used = false;
6308       BestLoQuad = 0;
6309       BestHiQuad = 1;
6310     }
6311
6312     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6313     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6314     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6315       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6316       unsigned TargetMask = 0;
6317       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6318                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6319       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6320       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6321                              getShufflePSHUFLWImmediate(SVOp);
6322       V1 = NewV.getOperand(0);
6323       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6324     }
6325   }
6326
6327   // Promote splats to a larger type which usually leads to more efficient code.
6328   // FIXME: Is this true if pshufb is available?
6329   if (SVOp->isSplat())
6330     return PromoteSplat(SVOp, DAG);
6331
6332   // If we have SSSE3, and all words of the result are from 1 input vector,
6333   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6334   // is present, fall back to case 4.
6335   if (Subtarget->hasSSSE3()) {
6336     SmallVector<SDValue,16> pshufbMask;
6337
6338     // If we have elements from both input vectors, set the high bit of the
6339     // shuffle mask element to zero out elements that come from V2 in the V1
6340     // mask, and elements that come from V1 in the V2 mask, so that the two
6341     // results can be OR'd together.
6342     bool TwoInputs = V1Used && V2Used;
6343     for (unsigned i = 0; i != 8; ++i) {
6344       int EltIdx = MaskVals[i] * 2;
6345       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6346       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6347       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6348       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6349     }
6350     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6351     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6352                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6353                                  MVT::v16i8, &pshufbMask[0], 16));
6354     if (!TwoInputs)
6355       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6356
6357     // Calculate the shuffle mask for the second input, shuffle it, and
6358     // OR it with the first shuffled input.
6359     pshufbMask.clear();
6360     for (unsigned i = 0; i != 8; ++i) {
6361       int EltIdx = MaskVals[i] * 2;
6362       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6363       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6364       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6365       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6366     }
6367     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6368     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6369                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6370                                  MVT::v16i8, &pshufbMask[0], 16));
6371     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6372     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6373   }
6374
6375   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6376   // and update MaskVals with new element order.
6377   std::bitset<8> InOrder;
6378   if (BestLoQuad >= 0) {
6379     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6380     for (int i = 0; i != 4; ++i) {
6381       int idx = MaskVals[i];
6382       if (idx < 0) {
6383         InOrder.set(i);
6384       } else if ((idx / 4) == BestLoQuad) {
6385         MaskV[i] = idx & 3;
6386         InOrder.set(i);
6387       }
6388     }
6389     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6390                                 &MaskV[0]);
6391
6392     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6393       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6394       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6395                                   NewV.getOperand(0),
6396                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6397     }
6398   }
6399
6400   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6401   // and update MaskVals with the new element order.
6402   if (BestHiQuad >= 0) {
6403     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6404     for (unsigned i = 4; i != 8; ++i) {
6405       int idx = MaskVals[i];
6406       if (idx < 0) {
6407         InOrder.set(i);
6408       } else if ((idx / 4) == BestHiQuad) {
6409         MaskV[i] = (idx & 3) + 4;
6410         InOrder.set(i);
6411       }
6412     }
6413     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6414                                 &MaskV[0]);
6415
6416     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6417       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6418       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6419                                   NewV.getOperand(0),
6420                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6421     }
6422   }
6423
6424   // In case BestHi & BestLo were both -1, which means each quadword has a word
6425   // from each of the four input quadwords, calculate the InOrder bitvector now
6426   // before falling through to the insert/extract cleanup.
6427   if (BestLoQuad == -1 && BestHiQuad == -1) {
6428     NewV = V1;
6429     for (int i = 0; i != 8; ++i)
6430       if (MaskVals[i] < 0 || MaskVals[i] == i)
6431         InOrder.set(i);
6432   }
6433
6434   // The other elements are put in the right place using pextrw and pinsrw.
6435   for (unsigned i = 0; i != 8; ++i) {
6436     if (InOrder[i])
6437       continue;
6438     int EltIdx = MaskVals[i];
6439     if (EltIdx < 0)
6440       continue;
6441     SDValue ExtOp = (EltIdx < 8) ?
6442       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6443                   DAG.getIntPtrConstant(EltIdx)) :
6444       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6445                   DAG.getIntPtrConstant(EltIdx - 8));
6446     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6447                        DAG.getIntPtrConstant(i));
6448   }
6449   return NewV;
6450 }
6451
6452 // v16i8 shuffles - Prefer shuffles in the following order:
6453 // 1. [ssse3] 1 x pshufb
6454 // 2. [ssse3] 2 x pshufb + 1 x por
6455 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6456 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6457                                         const X86Subtarget* Subtarget,
6458                                         SelectionDAG &DAG) {
6459   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6460   SDValue V1 = SVOp->getOperand(0);
6461   SDValue V2 = SVOp->getOperand(1);
6462   SDLoc dl(SVOp);
6463   ArrayRef<int> MaskVals = SVOp->getMask();
6464
6465   // Promote splats to a larger type which usually leads to more efficient code.
6466   // FIXME: Is this true if pshufb is available?
6467   if (SVOp->isSplat())
6468     return PromoteSplat(SVOp, DAG);
6469
6470   // If we have SSSE3, case 1 is generated when all result bytes come from
6471   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6472   // present, fall back to case 3.
6473
6474   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6475   if (Subtarget->hasSSSE3()) {
6476     SmallVector<SDValue,16> pshufbMask;
6477
6478     // If all result elements are from one input vector, then only translate
6479     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6480     //
6481     // Otherwise, we have elements from both input vectors, and must zero out
6482     // elements that come from V2 in the first mask, and V1 in the second mask
6483     // so that we can OR them together.
6484     for (unsigned i = 0; i != 16; ++i) {
6485       int EltIdx = MaskVals[i];
6486       if (EltIdx < 0 || EltIdx >= 16)
6487         EltIdx = 0x80;
6488       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6489     }
6490     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6491                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6492                                  MVT::v16i8, &pshufbMask[0], 16));
6493
6494     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6495     // the 2nd operand if it's undefined or zero.
6496     if (V2.getOpcode() == ISD::UNDEF ||
6497         ISD::isBuildVectorAllZeros(V2.getNode()))
6498       return V1;
6499
6500     // Calculate the shuffle mask for the second input, shuffle it, and
6501     // OR it with the first shuffled input.
6502     pshufbMask.clear();
6503     for (unsigned i = 0; i != 16; ++i) {
6504       int EltIdx = MaskVals[i];
6505       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6506       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6507     }
6508     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6509                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6510                                  MVT::v16i8, &pshufbMask[0], 16));
6511     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6512   }
6513
6514   // No SSSE3 - Calculate in place words and then fix all out of place words
6515   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6516   // the 16 different words that comprise the two doublequadword input vectors.
6517   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6518   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6519   SDValue NewV = V1;
6520   for (int i = 0; i != 8; ++i) {
6521     int Elt0 = MaskVals[i*2];
6522     int Elt1 = MaskVals[i*2+1];
6523
6524     // This word of the result is all undef, skip it.
6525     if (Elt0 < 0 && Elt1 < 0)
6526       continue;
6527
6528     // This word of the result is already in the correct place, skip it.
6529     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6530       continue;
6531
6532     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6533     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6534     SDValue InsElt;
6535
6536     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6537     // using a single extract together, load it and store it.
6538     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6539       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6540                            DAG.getIntPtrConstant(Elt1 / 2));
6541       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6542                         DAG.getIntPtrConstant(i));
6543       continue;
6544     }
6545
6546     // If Elt1 is defined, extract it from the appropriate source.  If the
6547     // source byte is not also odd, shift the extracted word left 8 bits
6548     // otherwise clear the bottom 8 bits if we need to do an or.
6549     if (Elt1 >= 0) {
6550       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6551                            DAG.getIntPtrConstant(Elt1 / 2));
6552       if ((Elt1 & 1) == 0)
6553         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6554                              DAG.getConstant(8,
6555                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6556       else if (Elt0 >= 0)
6557         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6558                              DAG.getConstant(0xFF00, MVT::i16));
6559     }
6560     // If Elt0 is defined, extract it from the appropriate source.  If the
6561     // source byte is not also even, shift the extracted word right 8 bits. If
6562     // Elt1 was also defined, OR the extracted values together before
6563     // inserting them in the result.
6564     if (Elt0 >= 0) {
6565       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6566                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6567       if ((Elt0 & 1) != 0)
6568         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6569                               DAG.getConstant(8,
6570                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6571       else if (Elt1 >= 0)
6572         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6573                              DAG.getConstant(0x00FF, MVT::i16));
6574       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6575                          : InsElt0;
6576     }
6577     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6578                        DAG.getIntPtrConstant(i));
6579   }
6580   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6581 }
6582
6583 // v32i8 shuffles - Translate to VPSHUFB if possible.
6584 static
6585 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6586                                  const X86Subtarget *Subtarget,
6587                                  SelectionDAG &DAG) {
6588   MVT VT = SVOp->getSimpleValueType(0);
6589   SDValue V1 = SVOp->getOperand(0);
6590   SDValue V2 = SVOp->getOperand(1);
6591   SDLoc dl(SVOp);
6592   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6593
6594   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6595   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6596   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6597
6598   // VPSHUFB may be generated if
6599   // (1) one of input vector is undefined or zeroinitializer.
6600   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6601   // And (2) the mask indexes don't cross the 128-bit lane.
6602   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6603       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6604     return SDValue();
6605
6606   if (V1IsAllZero && !V2IsAllZero) {
6607     CommuteVectorShuffleMask(MaskVals, 32);
6608     V1 = V2;
6609   }
6610   SmallVector<SDValue, 32> pshufbMask;
6611   for (unsigned i = 0; i != 32; i++) {
6612     int EltIdx = MaskVals[i];
6613     if (EltIdx < 0 || EltIdx >= 32)
6614       EltIdx = 0x80;
6615     else {
6616       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6617         // Cross lane is not allowed.
6618         return SDValue();
6619       EltIdx &= 0xf;
6620     }
6621     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6622   }
6623   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6624                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6625                                   MVT::v32i8, &pshufbMask[0], 32));
6626 }
6627
6628 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6629 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6630 /// done when every pair / quad of shuffle mask elements point to elements in
6631 /// the right sequence. e.g.
6632 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6633 static
6634 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6635                                  SelectionDAG &DAG) {
6636   MVT VT = SVOp->getSimpleValueType(0);
6637   SDLoc dl(SVOp);
6638   unsigned NumElems = VT.getVectorNumElements();
6639   MVT NewVT;
6640   unsigned Scale;
6641   switch (VT.SimpleTy) {
6642   default: llvm_unreachable("Unexpected!");
6643   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6644   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6645   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6646   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6647   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6648   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6649   }
6650
6651   SmallVector<int, 8> MaskVec;
6652   for (unsigned i = 0; i != NumElems; i += Scale) {
6653     int StartIdx = -1;
6654     for (unsigned j = 0; j != Scale; ++j) {
6655       int EltIdx = SVOp->getMaskElt(i+j);
6656       if (EltIdx < 0)
6657         continue;
6658       if (StartIdx < 0)
6659         StartIdx = (EltIdx / Scale);
6660       if (EltIdx != (int)(StartIdx*Scale + j))
6661         return SDValue();
6662     }
6663     MaskVec.push_back(StartIdx);
6664   }
6665
6666   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6667   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6668   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6669 }
6670
6671 /// getVZextMovL - Return a zero-extending vector move low node.
6672 ///
6673 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6674                             SDValue SrcOp, SelectionDAG &DAG,
6675                             const X86Subtarget *Subtarget, SDLoc dl) {
6676   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6677     LoadSDNode *LD = NULL;
6678     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6679       LD = dyn_cast<LoadSDNode>(SrcOp);
6680     if (!LD) {
6681       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6682       // instead.
6683       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6684       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6685           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6686           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6687           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6688         // PR2108
6689         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6690         return DAG.getNode(ISD::BITCAST, dl, VT,
6691                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6692                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6693                                                    OpVT,
6694                                                    SrcOp.getOperand(0)
6695                                                           .getOperand(0))));
6696       }
6697     }
6698   }
6699
6700   return DAG.getNode(ISD::BITCAST, dl, VT,
6701                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6702                                  DAG.getNode(ISD::BITCAST, dl,
6703                                              OpVT, SrcOp)));
6704 }
6705
6706 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6707 /// which could not be matched by any known target speficic shuffle
6708 static SDValue
6709 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6710
6711   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6712   if (NewOp.getNode())
6713     return NewOp;
6714
6715   MVT VT = SVOp->getSimpleValueType(0);
6716
6717   unsigned NumElems = VT.getVectorNumElements();
6718   unsigned NumLaneElems = NumElems / 2;
6719
6720   SDLoc dl(SVOp);
6721   MVT EltVT = VT.getVectorElementType();
6722   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6723   SDValue Output[2];
6724
6725   SmallVector<int, 16> Mask;
6726   for (unsigned l = 0; l < 2; ++l) {
6727     // Build a shuffle mask for the output, discovering on the fly which
6728     // input vectors to use as shuffle operands (recorded in InputUsed).
6729     // If building a suitable shuffle vector proves too hard, then bail
6730     // out with UseBuildVector set.
6731     bool UseBuildVector = false;
6732     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6733     unsigned LaneStart = l * NumLaneElems;
6734     for (unsigned i = 0; i != NumLaneElems; ++i) {
6735       // The mask element.  This indexes into the input.
6736       int Idx = SVOp->getMaskElt(i+LaneStart);
6737       if (Idx < 0) {
6738         // the mask element does not index into any input vector.
6739         Mask.push_back(-1);
6740         continue;
6741       }
6742
6743       // The input vector this mask element indexes into.
6744       int Input = Idx / NumLaneElems;
6745
6746       // Turn the index into an offset from the start of the input vector.
6747       Idx -= Input * NumLaneElems;
6748
6749       // Find or create a shuffle vector operand to hold this input.
6750       unsigned OpNo;
6751       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6752         if (InputUsed[OpNo] == Input)
6753           // This input vector is already an operand.
6754           break;
6755         if (InputUsed[OpNo] < 0) {
6756           // Create a new operand for this input vector.
6757           InputUsed[OpNo] = Input;
6758           break;
6759         }
6760       }
6761
6762       if (OpNo >= array_lengthof(InputUsed)) {
6763         // More than two input vectors used!  Give up on trying to create a
6764         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6765         UseBuildVector = true;
6766         break;
6767       }
6768
6769       // Add the mask index for the new shuffle vector.
6770       Mask.push_back(Idx + OpNo * NumLaneElems);
6771     }
6772
6773     if (UseBuildVector) {
6774       SmallVector<SDValue, 16> SVOps;
6775       for (unsigned i = 0; i != NumLaneElems; ++i) {
6776         // The mask element.  This indexes into the input.
6777         int Idx = SVOp->getMaskElt(i+LaneStart);
6778         if (Idx < 0) {
6779           SVOps.push_back(DAG.getUNDEF(EltVT));
6780           continue;
6781         }
6782
6783         // The input vector this mask element indexes into.
6784         int Input = Idx / NumElems;
6785
6786         // Turn the index into an offset from the start of the input vector.
6787         Idx -= Input * NumElems;
6788
6789         // Extract the vector element by hand.
6790         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6791                                     SVOp->getOperand(Input),
6792                                     DAG.getIntPtrConstant(Idx)));
6793       }
6794
6795       // Construct the output using a BUILD_VECTOR.
6796       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6797                               SVOps.size());
6798     } else if (InputUsed[0] < 0) {
6799       // No input vectors were used! The result is undefined.
6800       Output[l] = DAG.getUNDEF(NVT);
6801     } else {
6802       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6803                                         (InputUsed[0] % 2) * NumLaneElems,
6804                                         DAG, dl);
6805       // If only one input was used, use an undefined vector for the other.
6806       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6807         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6808                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6809       // At least one input vector was used. Create a new shuffle vector.
6810       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6811     }
6812
6813     Mask.clear();
6814   }
6815
6816   // Concatenate the result back
6817   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6818 }
6819
6820 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6821 /// 4 elements, and match them with several different shuffle types.
6822 static SDValue
6823 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6824   SDValue V1 = SVOp->getOperand(0);
6825   SDValue V2 = SVOp->getOperand(1);
6826   SDLoc dl(SVOp);
6827   MVT VT = SVOp->getSimpleValueType(0);
6828
6829   assert(VT.is128BitVector() && "Unsupported vector size");
6830
6831   std::pair<int, int> Locs[4];
6832   int Mask1[] = { -1, -1, -1, -1 };
6833   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6834
6835   unsigned NumHi = 0;
6836   unsigned NumLo = 0;
6837   for (unsigned i = 0; i != 4; ++i) {
6838     int Idx = PermMask[i];
6839     if (Idx < 0) {
6840       Locs[i] = std::make_pair(-1, -1);
6841     } else {
6842       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6843       if (Idx < 4) {
6844         Locs[i] = std::make_pair(0, NumLo);
6845         Mask1[NumLo] = Idx;
6846         NumLo++;
6847       } else {
6848         Locs[i] = std::make_pair(1, NumHi);
6849         if (2+NumHi < 4)
6850           Mask1[2+NumHi] = Idx;
6851         NumHi++;
6852       }
6853     }
6854   }
6855
6856   if (NumLo <= 2 && NumHi <= 2) {
6857     // If no more than two elements come from either vector. This can be
6858     // implemented with two shuffles. First shuffle gather the elements.
6859     // The second shuffle, which takes the first shuffle as both of its
6860     // vector operands, put the elements into the right order.
6861     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6862
6863     int Mask2[] = { -1, -1, -1, -1 };
6864
6865     for (unsigned i = 0; i != 4; ++i)
6866       if (Locs[i].first != -1) {
6867         unsigned Idx = (i < 2) ? 0 : 4;
6868         Idx += Locs[i].first * 2 + Locs[i].second;
6869         Mask2[i] = Idx;
6870       }
6871
6872     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6873   }
6874
6875   if (NumLo == 3 || NumHi == 3) {
6876     // Otherwise, we must have three elements from one vector, call it X, and
6877     // one element from the other, call it Y.  First, use a shufps to build an
6878     // intermediate vector with the one element from Y and the element from X
6879     // that will be in the same half in the final destination (the indexes don't
6880     // matter). Then, use a shufps to build the final vector, taking the half
6881     // containing the element from Y from the intermediate, and the other half
6882     // from X.
6883     if (NumHi == 3) {
6884       // Normalize it so the 3 elements come from V1.
6885       CommuteVectorShuffleMask(PermMask, 4);
6886       std::swap(V1, V2);
6887     }
6888
6889     // Find the element from V2.
6890     unsigned HiIndex;
6891     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6892       int Val = PermMask[HiIndex];
6893       if (Val < 0)
6894         continue;
6895       if (Val >= 4)
6896         break;
6897     }
6898
6899     Mask1[0] = PermMask[HiIndex];
6900     Mask1[1] = -1;
6901     Mask1[2] = PermMask[HiIndex^1];
6902     Mask1[3] = -1;
6903     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6904
6905     if (HiIndex >= 2) {
6906       Mask1[0] = PermMask[0];
6907       Mask1[1] = PermMask[1];
6908       Mask1[2] = HiIndex & 1 ? 6 : 4;
6909       Mask1[3] = HiIndex & 1 ? 4 : 6;
6910       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6911     }
6912
6913     Mask1[0] = HiIndex & 1 ? 2 : 0;
6914     Mask1[1] = HiIndex & 1 ? 0 : 2;
6915     Mask1[2] = PermMask[2];
6916     Mask1[3] = PermMask[3];
6917     if (Mask1[2] >= 0)
6918       Mask1[2] += 4;
6919     if (Mask1[3] >= 0)
6920       Mask1[3] += 4;
6921     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6922   }
6923
6924   // Break it into (shuffle shuffle_hi, shuffle_lo).
6925   int LoMask[] = { -1, -1, -1, -1 };
6926   int HiMask[] = { -1, -1, -1, -1 };
6927
6928   int *MaskPtr = LoMask;
6929   unsigned MaskIdx = 0;
6930   unsigned LoIdx = 0;
6931   unsigned HiIdx = 2;
6932   for (unsigned i = 0; i != 4; ++i) {
6933     if (i == 2) {
6934       MaskPtr = HiMask;
6935       MaskIdx = 1;
6936       LoIdx = 0;
6937       HiIdx = 2;
6938     }
6939     int Idx = PermMask[i];
6940     if (Idx < 0) {
6941       Locs[i] = std::make_pair(-1, -1);
6942     } else if (Idx < 4) {
6943       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6944       MaskPtr[LoIdx] = Idx;
6945       LoIdx++;
6946     } else {
6947       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6948       MaskPtr[HiIdx] = Idx;
6949       HiIdx++;
6950     }
6951   }
6952
6953   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6954   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6955   int MaskOps[] = { -1, -1, -1, -1 };
6956   for (unsigned i = 0; i != 4; ++i)
6957     if (Locs[i].first != -1)
6958       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6959   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6960 }
6961
6962 static bool MayFoldVectorLoad(SDValue V) {
6963   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6964     V = V.getOperand(0);
6965
6966   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6967     V = V.getOperand(0);
6968   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6969       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6970     // BUILD_VECTOR (load), undef
6971     V = V.getOperand(0);
6972
6973   return MayFoldLoad(V);
6974 }
6975
6976 static
6977 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6978   MVT VT = Op.getSimpleValueType();
6979
6980   // Canonizalize to v2f64.
6981   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6982   return DAG.getNode(ISD::BITCAST, dl, VT,
6983                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6984                                           V1, DAG));
6985 }
6986
6987 static
6988 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6989                         bool HasSSE2) {
6990   SDValue V1 = Op.getOperand(0);
6991   SDValue V2 = Op.getOperand(1);
6992   MVT VT = Op.getSimpleValueType();
6993
6994   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6995
6996   if (HasSSE2 && VT == MVT::v2f64)
6997     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6998
6999   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7000   return DAG.getNode(ISD::BITCAST, dl, VT,
7001                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7002                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7003                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7004 }
7005
7006 static
7007 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7008   SDValue V1 = Op.getOperand(0);
7009   SDValue V2 = Op.getOperand(1);
7010   MVT VT = Op.getSimpleValueType();
7011
7012   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7013          "unsupported shuffle type");
7014
7015   if (V2.getOpcode() == ISD::UNDEF)
7016     V2 = V1;
7017
7018   // v4i32 or v4f32
7019   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7020 }
7021
7022 static
7023 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7024   SDValue V1 = Op.getOperand(0);
7025   SDValue V2 = Op.getOperand(1);
7026   MVT VT = Op.getSimpleValueType();
7027   unsigned NumElems = VT.getVectorNumElements();
7028
7029   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7030   // operand of these instructions is only memory, so check if there's a
7031   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7032   // same masks.
7033   bool CanFoldLoad = false;
7034
7035   // Trivial case, when V2 comes from a load.
7036   if (MayFoldVectorLoad(V2))
7037     CanFoldLoad = true;
7038
7039   // When V1 is a load, it can be folded later into a store in isel, example:
7040   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7041   //    turns into:
7042   //  (MOVLPSmr addr:$src1, VR128:$src2)
7043   // So, recognize this potential and also use MOVLPS or MOVLPD
7044   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7045     CanFoldLoad = true;
7046
7047   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7048   if (CanFoldLoad) {
7049     if (HasSSE2 && NumElems == 2)
7050       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7051
7052     if (NumElems == 4)
7053       // If we don't care about the second element, proceed to use movss.
7054       if (SVOp->getMaskElt(1) != -1)
7055         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7056   }
7057
7058   // movl and movlp will both match v2i64, but v2i64 is never matched by
7059   // movl earlier because we make it strict to avoid messing with the movlp load
7060   // folding logic (see the code above getMOVLP call). Match it here then,
7061   // this is horrible, but will stay like this until we move all shuffle
7062   // matching to x86 specific nodes. Note that for the 1st condition all
7063   // types are matched with movsd.
7064   if (HasSSE2) {
7065     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7066     // as to remove this logic from here, as much as possible
7067     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7068       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7069     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7070   }
7071
7072   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7073
7074   // Invert the operand order and use SHUFPS to match it.
7075   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7076                               getShuffleSHUFImmediate(SVOp), DAG);
7077 }
7078
7079 // Reduce a vector shuffle to zext.
7080 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7081                                     SelectionDAG &DAG) {
7082   // PMOVZX is only available from SSE41.
7083   if (!Subtarget->hasSSE41())
7084     return SDValue();
7085
7086   MVT VT = Op.getSimpleValueType();
7087
7088   // Only AVX2 support 256-bit vector integer extending.
7089   if (!Subtarget->hasInt256() && VT.is256BitVector())
7090     return SDValue();
7091
7092   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7093   SDLoc DL(Op);
7094   SDValue V1 = Op.getOperand(0);
7095   SDValue V2 = Op.getOperand(1);
7096   unsigned NumElems = VT.getVectorNumElements();
7097
7098   // Extending is an unary operation and the element type of the source vector
7099   // won't be equal to or larger than i64.
7100   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7101       VT.getVectorElementType() == MVT::i64)
7102     return SDValue();
7103
7104   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7105   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7106   while ((1U << Shift) < NumElems) {
7107     if (SVOp->getMaskElt(1U << Shift) == 1)
7108       break;
7109     Shift += 1;
7110     // The maximal ratio is 8, i.e. from i8 to i64.
7111     if (Shift > 3)
7112       return SDValue();
7113   }
7114
7115   // Check the shuffle mask.
7116   unsigned Mask = (1U << Shift) - 1;
7117   for (unsigned i = 0; i != NumElems; ++i) {
7118     int EltIdx = SVOp->getMaskElt(i);
7119     if ((i & Mask) != 0 && EltIdx != -1)
7120       return SDValue();
7121     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7122       return SDValue();
7123   }
7124
7125   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7126   MVT NeVT = MVT::getIntegerVT(NBits);
7127   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7128
7129   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7130     return SDValue();
7131
7132   // Simplify the operand as it's prepared to be fed into shuffle.
7133   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7134   if (V1.getOpcode() == ISD::BITCAST &&
7135       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7136       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7137       V1.getOperand(0).getOperand(0)
7138         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7139     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7140     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7141     ConstantSDNode *CIdx =
7142       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7143     // If it's foldable, i.e. normal load with single use, we will let code
7144     // selection to fold it. Otherwise, we will short the conversion sequence.
7145     if (CIdx && CIdx->getZExtValue() == 0 &&
7146         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7147       MVT FullVT = V.getSimpleValueType();
7148       MVT V1VT = V1.getSimpleValueType();
7149       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7150         // The "ext_vec_elt" node is wider than the result node.
7151         // In this case we should extract subvector from V.
7152         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7153         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7154         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7155                                         FullVT.getVectorNumElements()/Ratio);
7156         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7157                         DAG.getIntPtrConstant(0));
7158       }
7159       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7160     }
7161   }
7162
7163   return DAG.getNode(ISD::BITCAST, DL, VT,
7164                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7165 }
7166
7167 static SDValue
7168 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7169                        SelectionDAG &DAG) {
7170   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7171   MVT VT = Op.getSimpleValueType();
7172   SDLoc dl(Op);
7173   SDValue V1 = Op.getOperand(0);
7174   SDValue V2 = Op.getOperand(1);
7175
7176   if (isZeroShuffle(SVOp))
7177     return getZeroVector(VT, Subtarget, DAG, dl);
7178
7179   // Handle splat operations
7180   if (SVOp->isSplat()) {
7181     // Use vbroadcast whenever the splat comes from a foldable load
7182     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7183     if (Broadcast.getNode())
7184       return Broadcast;
7185   }
7186
7187   // Check integer expanding shuffles.
7188   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7189   if (NewOp.getNode())
7190     return NewOp;
7191
7192   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7193   // do it!
7194   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7195       VT == MVT::v16i16 || VT == MVT::v32i8) {
7196     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7197     if (NewOp.getNode())
7198       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7199   } else if ((VT == MVT::v4i32 ||
7200              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7201     // FIXME: Figure out a cleaner way to do this.
7202     // Try to make use of movq to zero out the top part.
7203     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7204       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7205       if (NewOp.getNode()) {
7206         MVT NewVT = NewOp.getSimpleValueType();
7207         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7208                                NewVT, true, false))
7209           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7210                               DAG, Subtarget, dl);
7211       }
7212     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7213       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7214       if (NewOp.getNode()) {
7215         MVT NewVT = NewOp.getSimpleValueType();
7216         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7217           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7218                               DAG, Subtarget, dl);
7219       }
7220     }
7221   }
7222   return SDValue();
7223 }
7224
7225 SDValue
7226 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7227   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7228   SDValue V1 = Op.getOperand(0);
7229   SDValue V2 = Op.getOperand(1);
7230   MVT VT = Op.getSimpleValueType();
7231   SDLoc dl(Op);
7232   unsigned NumElems = VT.getVectorNumElements();
7233   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7234   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7235   bool V1IsSplat = false;
7236   bool V2IsSplat = false;
7237   bool HasSSE2 = Subtarget->hasSSE2();
7238   bool HasFp256    = Subtarget->hasFp256();
7239   bool HasInt256   = Subtarget->hasInt256();
7240   MachineFunction &MF = DAG.getMachineFunction();
7241   bool OptForSize = MF.getFunction()->getAttributes().
7242     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7243
7244   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7245
7246   if (V1IsUndef && V2IsUndef)
7247     return DAG.getUNDEF(VT);
7248
7249   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7250
7251   // Vector shuffle lowering takes 3 steps:
7252   //
7253   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7254   //    narrowing and commutation of operands should be handled.
7255   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7256   //    shuffle nodes.
7257   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7258   //    so the shuffle can be broken into other shuffles and the legalizer can
7259   //    try the lowering again.
7260   //
7261   // The general idea is that no vector_shuffle operation should be left to
7262   // be matched during isel, all of them must be converted to a target specific
7263   // node here.
7264
7265   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7266   // narrowing and commutation of operands should be handled. The actual code
7267   // doesn't include all of those, work in progress...
7268   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7269   if (NewOp.getNode())
7270     return NewOp;
7271
7272   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7273
7274   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7275   // unpckh_undef). Only use pshufd if speed is more important than size.
7276   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7277     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7278   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7279     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7280
7281   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7282       V2IsUndef && MayFoldVectorLoad(V1))
7283     return getMOVDDup(Op, dl, V1, DAG);
7284
7285   if (isMOVHLPS_v_undef_Mask(M, VT))
7286     return getMOVHighToLow(Op, dl, DAG);
7287
7288   // Use to match splats
7289   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7290       (VT == MVT::v2f64 || VT == MVT::v2i64))
7291     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7292
7293   if (isPSHUFDMask(M, VT)) {
7294     // The actual implementation will match the mask in the if above and then
7295     // during isel it can match several different instructions, not only pshufd
7296     // as its name says, sad but true, emulate the behavior for now...
7297     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7298       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7299
7300     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7301
7302     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7303       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7304
7305     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7306       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7307                                   DAG);
7308
7309     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7310                                 TargetMask, DAG);
7311   }
7312
7313   if (isPALIGNRMask(M, VT, Subtarget))
7314     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7315                                 getShufflePALIGNRImmediate(SVOp),
7316                                 DAG);
7317
7318   // Check if this can be converted into a logical shift.
7319   bool isLeft = false;
7320   unsigned ShAmt = 0;
7321   SDValue ShVal;
7322   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7323   if (isShift && ShVal.hasOneUse()) {
7324     // If the shifted value has multiple uses, it may be cheaper to use
7325     // v_set0 + movlhps or movhlps, etc.
7326     MVT EltVT = VT.getVectorElementType();
7327     ShAmt *= EltVT.getSizeInBits();
7328     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7329   }
7330
7331   if (isMOVLMask(M, VT)) {
7332     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7333       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7334     if (!isMOVLPMask(M, VT)) {
7335       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7336         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7337
7338       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7339         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7340     }
7341   }
7342
7343   // FIXME: fold these into legal mask.
7344   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7345     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7346
7347   if (isMOVHLPSMask(M, VT))
7348     return getMOVHighToLow(Op, dl, DAG);
7349
7350   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7351     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7352
7353   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7354     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7355
7356   if (isMOVLPMask(M, VT))
7357     return getMOVLP(Op, dl, DAG, HasSSE2);
7358
7359   if (ShouldXformToMOVHLPS(M, VT) ||
7360       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7361     return CommuteVectorShuffle(SVOp, DAG);
7362
7363   if (isShift) {
7364     // No better options. Use a vshldq / vsrldq.
7365     MVT EltVT = VT.getVectorElementType();
7366     ShAmt *= EltVT.getSizeInBits();
7367     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7368   }
7369
7370   bool Commuted = false;
7371   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7372   // 1,1,1,1 -> v8i16 though.
7373   V1IsSplat = isSplatVector(V1.getNode());
7374   V2IsSplat = isSplatVector(V2.getNode());
7375
7376   // Canonicalize the splat or undef, if present, to be on the RHS.
7377   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7378     CommuteVectorShuffleMask(M, NumElems);
7379     std::swap(V1, V2);
7380     std::swap(V1IsSplat, V2IsSplat);
7381     Commuted = true;
7382   }
7383
7384   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7385     // Shuffling low element of v1 into undef, just return v1.
7386     if (V2IsUndef)
7387       return V1;
7388     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7389     // the instruction selector will not match, so get a canonical MOVL with
7390     // swapped operands to undo the commute.
7391     return getMOVL(DAG, dl, VT, V2, V1);
7392   }
7393
7394   if (isUNPCKLMask(M, VT, HasInt256))
7395     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7396
7397   if (isUNPCKHMask(M, VT, HasInt256))
7398     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7399
7400   if (V2IsSplat) {
7401     // Normalize mask so all entries that point to V2 points to its first
7402     // element then try to match unpck{h|l} again. If match, return a
7403     // new vector_shuffle with the corrected mask.p
7404     SmallVector<int, 8> NewMask(M.begin(), M.end());
7405     NormalizeMask(NewMask, NumElems);
7406     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7407       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7408     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7409       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7410   }
7411
7412   if (Commuted) {
7413     // Commute is back and try unpck* again.
7414     // FIXME: this seems wrong.
7415     CommuteVectorShuffleMask(M, NumElems);
7416     std::swap(V1, V2);
7417     std::swap(V1IsSplat, V2IsSplat);
7418     Commuted = false;
7419
7420     if (isUNPCKLMask(M, VT, HasInt256))
7421       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7422
7423     if (isUNPCKHMask(M, VT, HasInt256))
7424       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7425   }
7426
7427   // Normalize the node to match x86 shuffle ops if needed
7428   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7429     return CommuteVectorShuffle(SVOp, DAG);
7430
7431   // The checks below are all present in isShuffleMaskLegal, but they are
7432   // inlined here right now to enable us to directly emit target specific
7433   // nodes, and remove one by one until they don't return Op anymore.
7434
7435   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7436       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7437     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7438       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7439   }
7440
7441   if (isPSHUFHWMask(M, VT, HasInt256))
7442     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7443                                 getShufflePSHUFHWImmediate(SVOp),
7444                                 DAG);
7445
7446   if (isPSHUFLWMask(M, VT, HasInt256))
7447     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7448                                 getShufflePSHUFLWImmediate(SVOp),
7449                                 DAG);
7450
7451   if (isSHUFPMask(M, VT))
7452     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7453                                 getShuffleSHUFImmediate(SVOp), DAG);
7454
7455   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7456     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7457   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7458     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7459
7460   //===--------------------------------------------------------------------===//
7461   // Generate target specific nodes for 128 or 256-bit shuffles only
7462   // supported in the AVX instruction set.
7463   //
7464
7465   // Handle VMOVDDUPY permutations
7466   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7467     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7468
7469   // Handle VPERMILPS/D* permutations
7470   if (isVPERMILPMask(M, VT)) {
7471     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7472       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7473                                   getShuffleSHUFImmediate(SVOp), DAG);
7474     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7475                                 getShuffleSHUFImmediate(SVOp), DAG);
7476   }
7477
7478   // Handle VPERM2F128/VPERM2I128 permutations
7479   if (isVPERM2X128Mask(M, VT, HasFp256))
7480     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7481                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7482
7483   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7484   if (BlendOp.getNode())
7485     return BlendOp;
7486
7487   unsigned Imm8;
7488   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7489     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7490
7491   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7492       VT.is512BitVector()) {
7493     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7494     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7495     SmallVector<SDValue, 16> permclMask;
7496     for (unsigned i = 0; i != NumElems; ++i) {
7497       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7498     }
7499
7500     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7501                                 &permclMask[0], NumElems);
7502     if (V2IsUndef)
7503       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7504       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7505                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7506     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7507                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7508   }
7509
7510   //===--------------------------------------------------------------------===//
7511   // Since no target specific shuffle was selected for this generic one,
7512   // lower it into other known shuffles. FIXME: this isn't true yet, but
7513   // this is the plan.
7514   //
7515
7516   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7517   if (VT == MVT::v8i16) {
7518     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7519     if (NewOp.getNode())
7520       return NewOp;
7521   }
7522
7523   if (VT == MVT::v16i8) {
7524     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7525     if (NewOp.getNode())
7526       return NewOp;
7527   }
7528
7529   if (VT == MVT::v32i8) {
7530     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7531     if (NewOp.getNode())
7532       return NewOp;
7533   }
7534
7535   // Handle all 128-bit wide vectors with 4 elements, and match them with
7536   // several different shuffle types.
7537   if (NumElems == 4 && VT.is128BitVector())
7538     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7539
7540   // Handle general 256-bit shuffles
7541   if (VT.is256BitVector())
7542     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7543
7544   return SDValue();
7545 }
7546
7547 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7548   MVT VT = Op.getSimpleValueType();
7549   SDLoc dl(Op);
7550
7551   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7552     return SDValue();
7553
7554   if (VT.getSizeInBits() == 8) {
7555     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7556                                   Op.getOperand(0), Op.getOperand(1));
7557     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7558                                   DAG.getValueType(VT));
7559     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7560   }
7561
7562   if (VT.getSizeInBits() == 16) {
7563     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7564     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7565     if (Idx == 0)
7566       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7567                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7568                                      DAG.getNode(ISD::BITCAST, dl,
7569                                                  MVT::v4i32,
7570                                                  Op.getOperand(0)),
7571                                      Op.getOperand(1)));
7572     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7573                                   Op.getOperand(0), Op.getOperand(1));
7574     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7575                                   DAG.getValueType(VT));
7576     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7577   }
7578
7579   if (VT == MVT::f32) {
7580     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7581     // the result back to FR32 register. It's only worth matching if the
7582     // result has a single use which is a store or a bitcast to i32.  And in
7583     // the case of a store, it's not worth it if the index is a constant 0,
7584     // because a MOVSSmr can be used instead, which is smaller and faster.
7585     if (!Op.hasOneUse())
7586       return SDValue();
7587     SDNode *User = *Op.getNode()->use_begin();
7588     if ((User->getOpcode() != ISD::STORE ||
7589          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7590           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7591         (User->getOpcode() != ISD::BITCAST ||
7592          User->getValueType(0) != MVT::i32))
7593       return SDValue();
7594     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7595                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7596                                               Op.getOperand(0)),
7597                                               Op.getOperand(1));
7598     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7599   }
7600
7601   if (VT == MVT::i32 || VT == MVT::i64) {
7602     // ExtractPS/pextrq works with constant index.
7603     if (isa<ConstantSDNode>(Op.getOperand(1)))
7604       return Op;
7605   }
7606   return SDValue();
7607 }
7608
7609 SDValue
7610 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7611                                            SelectionDAG &DAG) const {
7612   SDLoc dl(Op);
7613   SDValue Vec = Op.getOperand(0);
7614   MVT VecVT = Vec.getSimpleValueType();
7615   SDValue Idx = Op.getOperand(1);
7616   if (!isa<ConstantSDNode>(Idx)) {
7617     if (VecVT.is512BitVector() ||
7618         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7619          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7620
7621       MVT MaskEltVT =
7622         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7623       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7624                                     MaskEltVT.getSizeInBits());
7625       
7626       if (Idx.getSimpleValueType() != MaskEltVT)
7627         if (Idx.getOpcode() == ISD::ZERO_EXTEND ||
7628             Idx.getOpcode() == ISD::SIGN_EXTEND)
7629           Idx = Idx.getOperand(0);
7630       assert(Idx.getSimpleValueType() == MaskEltVT &&
7631              "Unexpected index in insertelement");
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 = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
8210                                       DAG.getIntPtrConstant(0),
8211                                       MachinePointerInfo(Ptr),
8212                                       false, false, false, 0);
8213
8214   unsigned char OperandFlags = 0;
8215   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8216   // initialexec.
8217   unsigned WrapperKind = X86ISD::Wrapper;
8218   if (model == TLSModel::LocalExec) {
8219     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8220   } else if (model == TLSModel::InitialExec) {
8221     if (is64Bit) {
8222       OperandFlags = X86II::MO_GOTTPOFF;
8223       WrapperKind = X86ISD::WrapperRIP;
8224     } else {
8225       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8226     }
8227   } else {
8228     llvm_unreachable("Unexpected model");
8229   }
8230
8231   // emit "addl x@ntpoff,%eax" (local exec)
8232   // or "addl x@indntpoff,%eax" (initial exec)
8233   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8234   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8235                                            GA->getValueType(0),
8236                                            GA->getOffset(), OperandFlags);
8237   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8238
8239   if (model == TLSModel::InitialExec) {
8240     if (isPIC && !is64Bit) {
8241       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8242                           DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8243                            Offset);
8244     }
8245
8246     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8247                          MachinePointerInfo::getGOT(), false, false, false,
8248                          0);
8249   }
8250
8251   // The address of the thread local variable is the add of the thread
8252   // pointer with the offset of the variable.
8253   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8254 }
8255
8256 SDValue
8257 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8258
8259   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8260   const GlobalValue *GV = GA->getGlobal();
8261
8262   if (Subtarget->isTargetELF()) {
8263     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8264
8265     switch (model) {
8266       case TLSModel::GeneralDynamic:
8267         if (Subtarget->is64Bit())
8268           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8269         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8270       case TLSModel::LocalDynamic:
8271         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8272                                            Subtarget->is64Bit());
8273       case TLSModel::InitialExec:
8274       case TLSModel::LocalExec:
8275         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8276                                    Subtarget->is64Bit(),
8277                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8278     }
8279     llvm_unreachable("Unknown TLS model.");
8280   }
8281
8282   if (Subtarget->isTargetDarwin()) {
8283     // Darwin only has one model of TLS.  Lower to that.
8284     unsigned char OpFlag = 0;
8285     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8286                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8287
8288     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8289     // global base reg.
8290     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8291                   !Subtarget->is64Bit();
8292     if (PIC32)
8293       OpFlag = X86II::MO_TLVP_PIC_BASE;
8294     else
8295       OpFlag = X86II::MO_TLVP;
8296     SDLoc DL(Op);
8297     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8298                                                 GA->getValueType(0),
8299                                                 GA->getOffset(), OpFlag);
8300     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8301
8302     // With PIC32, the address is actually $g + Offset.
8303     if (PIC32)
8304       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8305                            DAG.getNode(X86ISD::GlobalBaseReg,
8306                                        SDLoc(), getPointerTy()),
8307                            Offset);
8308
8309     // Lowering the machine isd will make sure everything is in the right
8310     // location.
8311     SDValue Chain = DAG.getEntryNode();
8312     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8313     SDValue Args[] = { Chain, Offset };
8314     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8315
8316     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8317     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8318     MFI->setAdjustsStack(true);
8319
8320     // And our return value (tls address) is in the standard call return value
8321     // location.
8322     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8323     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8324                               Chain.getValue(1));
8325   }
8326
8327   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8328     // Just use the implicit TLS architecture
8329     // Need to generate someting similar to:
8330     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8331     //                                  ; from TEB
8332     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8333     //   mov     rcx, qword [rdx+rcx*8]
8334     //   mov     eax, .tls$:tlsvar
8335     //   [rax+rcx] contains the address
8336     // Windows 64bit: gs:0x58
8337     // Windows 32bit: fs:__tls_array
8338
8339     // If GV is an alias then use the aliasee for determining
8340     // thread-localness.
8341     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8342       GV = GA->resolveAliasedGlobal(false);
8343     SDLoc dl(GA);
8344     SDValue Chain = DAG.getEntryNode();
8345
8346     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8347     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8348     // use its literal value of 0x2C.
8349     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8350                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8351                                                              256)
8352                                         : Type::getInt32PtrTy(*DAG.getContext(),
8353                                                               257));
8354
8355     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8356       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8357         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8358
8359     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8360                                         MachinePointerInfo(Ptr),
8361                                         false, false, false, 0);
8362
8363     // Load the _tls_index variable
8364     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8365     if (Subtarget->is64Bit())
8366       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8367                            IDX, MachinePointerInfo(), MVT::i32,
8368                            false, false, 0);
8369     else
8370       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8371                         false, false, false, 0);
8372
8373     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8374                                     getPointerTy());
8375     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8376
8377     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8378     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8379                       false, false, false, 0);
8380
8381     // Get the offset of start of .tls section
8382     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8383                                              GA->getValueType(0),
8384                                              GA->getOffset(), X86II::MO_SECREL);
8385     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8386
8387     // The address of the thread local variable is the add of the thread
8388     // pointer with the offset of the variable.
8389     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8390   }
8391
8392   llvm_unreachable("TLS not implemented for this target.");
8393 }
8394
8395 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8396 /// and take a 2 x i32 value to shift plus a shift amount.
8397 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8398   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8399   EVT VT = Op.getValueType();
8400   unsigned VTBits = VT.getSizeInBits();
8401   SDLoc dl(Op);
8402   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8403   SDValue ShOpLo = Op.getOperand(0);
8404   SDValue ShOpHi = Op.getOperand(1);
8405   SDValue ShAmt  = Op.getOperand(2);
8406   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8407                                      DAG.getConstant(VTBits - 1, MVT::i8))
8408                        : DAG.getConstant(0, VT);
8409
8410   SDValue Tmp2, Tmp3;
8411   if (Op.getOpcode() == ISD::SHL_PARTS) {
8412     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8413     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8414   } else {
8415     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8416     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8417   }
8418
8419   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8420                                 DAG.getConstant(VTBits, MVT::i8));
8421   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8422                              AndNode, DAG.getConstant(0, MVT::i8));
8423
8424   SDValue Hi, Lo;
8425   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8426   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8427   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8428
8429   if (Op.getOpcode() == ISD::SHL_PARTS) {
8430     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8431     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8432   } else {
8433     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8434     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8435   }
8436
8437   SDValue Ops[2] = { Lo, Hi };
8438   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8439 }
8440
8441 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8442                                            SelectionDAG &DAG) const {
8443   EVT SrcVT = Op.getOperand(0).getValueType();
8444
8445   if (SrcVT.isVector())
8446     return SDValue();
8447
8448   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8449          "Unknown SINT_TO_FP to lower!");
8450
8451   // These are really Legal; return the operand so the caller accepts it as
8452   // Legal.
8453   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8454     return Op;
8455   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8456       Subtarget->is64Bit()) {
8457     return Op;
8458   }
8459
8460   SDLoc dl(Op);
8461   unsigned Size = SrcVT.getSizeInBits()/8;
8462   MachineFunction &MF = DAG.getMachineFunction();
8463   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8464   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8465   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8466                                StackSlot,
8467                                MachinePointerInfo::getFixedStack(SSFI),
8468                                false, false, 0);
8469   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8470 }
8471
8472 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8473                                      SDValue StackSlot,
8474                                      SelectionDAG &DAG) const {
8475   // Build the FILD
8476   SDLoc DL(Op);
8477   SDVTList Tys;
8478   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8479   if (useSSE)
8480     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8481   else
8482     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8483
8484   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8485
8486   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8487   MachineMemOperand *MMO;
8488   if (FI) {
8489     int SSFI = FI->getIndex();
8490     MMO =
8491       DAG.getMachineFunction()
8492       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8493                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8494   } else {
8495     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8496     StackSlot = StackSlot.getOperand(1);
8497   }
8498   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8499   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8500                                            X86ISD::FILD, DL,
8501                                            Tys, Ops, array_lengthof(Ops),
8502                                            SrcVT, MMO);
8503
8504   if (useSSE) {
8505     Chain = Result.getValue(1);
8506     SDValue InFlag = Result.getValue(2);
8507
8508     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8509     // shouldn't be necessary except that RFP cannot be live across
8510     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8511     MachineFunction &MF = DAG.getMachineFunction();
8512     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8513     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8514     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8515     Tys = DAG.getVTList(MVT::Other);
8516     SDValue Ops[] = {
8517       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8518     };
8519     MachineMemOperand *MMO =
8520       DAG.getMachineFunction()
8521       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8522                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8523
8524     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8525                                     Ops, array_lengthof(Ops),
8526                                     Op.getValueType(), MMO);
8527     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8528                          MachinePointerInfo::getFixedStack(SSFI),
8529                          false, false, false, 0);
8530   }
8531
8532   return Result;
8533 }
8534
8535 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8536 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8537                                                SelectionDAG &DAG) const {
8538   // This algorithm is not obvious. Here it is what we're trying to output:
8539   /*
8540      movq       %rax,  %xmm0
8541      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8542      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8543      #ifdef __SSE3__
8544        haddpd   %xmm0, %xmm0
8545      #else
8546        pshufd   $0x4e, %xmm0, %xmm1
8547        addpd    %xmm1, %xmm0
8548      #endif
8549   */
8550
8551   SDLoc dl(Op);
8552   LLVMContext *Context = DAG.getContext();
8553
8554   // Build some magic constants.
8555   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8556   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8557   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8558
8559   SmallVector<Constant*,2> CV1;
8560   CV1.push_back(
8561     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8562                                       APInt(64, 0x4330000000000000ULL))));
8563   CV1.push_back(
8564     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8565                                       APInt(64, 0x4530000000000000ULL))));
8566   Constant *C1 = ConstantVector::get(CV1);
8567   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8568
8569   // Load the 64-bit value into an XMM register.
8570   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8571                             Op.getOperand(0));
8572   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8573                               MachinePointerInfo::getConstantPool(),
8574                               false, false, false, 16);
8575   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8576                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8577                               CLod0);
8578
8579   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8580                               MachinePointerInfo::getConstantPool(),
8581                               false, false, false, 16);
8582   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8583   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8584   SDValue Result;
8585
8586   if (Subtarget->hasSSE3()) {
8587     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8588     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8589   } else {
8590     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8591     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8592                                            S2F, 0x4E, DAG);
8593     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8594                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8595                          Sub);
8596   }
8597
8598   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8599                      DAG.getIntPtrConstant(0));
8600 }
8601
8602 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8603 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8604                                                SelectionDAG &DAG) const {
8605   SDLoc dl(Op);
8606   // FP constant to bias correct the final result.
8607   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8608                                    MVT::f64);
8609
8610   // Load the 32-bit value into an XMM register.
8611   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8612                              Op.getOperand(0));
8613
8614   // Zero out the upper parts of the register.
8615   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8616
8617   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8618                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8619                      DAG.getIntPtrConstant(0));
8620
8621   // Or the load with the bias.
8622   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8623                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8624                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8625                                                    MVT::v2f64, Load)),
8626                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8627                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8628                                                    MVT::v2f64, Bias)));
8629   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8630                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8631                    DAG.getIntPtrConstant(0));
8632
8633   // Subtract the bias.
8634   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8635
8636   // Handle final rounding.
8637   EVT DestVT = Op.getValueType();
8638
8639   if (DestVT.bitsLT(MVT::f64))
8640     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8641                        DAG.getIntPtrConstant(0));
8642   if (DestVT.bitsGT(MVT::f64))
8643     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8644
8645   // Handle final rounding.
8646   return Sub;
8647 }
8648
8649 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8650                                                SelectionDAG &DAG) const {
8651   SDValue N0 = Op.getOperand(0);
8652   EVT SVT = N0.getValueType();
8653   SDLoc dl(Op);
8654
8655   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8656           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8657          "Custom UINT_TO_FP is not supported!");
8658
8659   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8660                              SVT.getVectorNumElements());
8661   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8662                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8663 }
8664
8665 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8666                                            SelectionDAG &DAG) const {
8667   SDValue N0 = Op.getOperand(0);
8668   SDLoc dl(Op);
8669
8670   if (Op.getValueType().isVector())
8671     return lowerUINT_TO_FP_vec(Op, DAG);
8672
8673   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8674   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8675   // the optimization here.
8676   if (DAG.SignBitIsZero(N0))
8677     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8678
8679   EVT SrcVT = N0.getValueType();
8680   EVT DstVT = Op.getValueType();
8681   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8682     return LowerUINT_TO_FP_i64(Op, DAG);
8683   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8684     return LowerUINT_TO_FP_i32(Op, DAG);
8685   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8686     return SDValue();
8687
8688   // Make a 64-bit buffer, and use it to build an FILD.
8689   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8690   if (SrcVT == MVT::i32) {
8691     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8692     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8693                                      getPointerTy(), StackSlot, WordOff);
8694     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8695                                   StackSlot, MachinePointerInfo(),
8696                                   false, false, 0);
8697     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8698                                   OffsetSlot, MachinePointerInfo(),
8699                                   false, false, 0);
8700     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8701     return Fild;
8702   }
8703
8704   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8705   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8706                                StackSlot, MachinePointerInfo(),
8707                                false, false, 0);
8708   // For i64 source, we need to add the appropriate power of 2 if the input
8709   // was negative.  This is the same as the optimization in
8710   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8711   // we must be careful to do the computation in x87 extended precision, not
8712   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8713   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8714   MachineMemOperand *MMO =
8715     DAG.getMachineFunction()
8716     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8717                           MachineMemOperand::MOLoad, 8, 8);
8718
8719   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8720   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8721   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8722                                          array_lengthof(Ops), MVT::i64, MMO);
8723
8724   APInt FF(32, 0x5F800000ULL);
8725
8726   // Check whether the sign bit is set.
8727   SDValue SignSet = DAG.getSetCC(dl,
8728                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8729                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8730                                  ISD::SETLT);
8731
8732   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8733   SDValue FudgePtr = DAG.getConstantPool(
8734                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8735                                          getPointerTy());
8736
8737   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8738   SDValue Zero = DAG.getIntPtrConstant(0);
8739   SDValue Four = DAG.getIntPtrConstant(4);
8740   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8741                                Zero, Four);
8742   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8743
8744   // Load the value out, extending it from f32 to f80.
8745   // FIXME: Avoid the extend by constructing the right constant pool?
8746   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8747                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8748                                  MVT::f32, false, false, 4);
8749   // Extend everything to 80 bits to force it to be done on x87.
8750   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8751   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8752 }
8753
8754 std::pair<SDValue,SDValue>
8755 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8756                                     bool IsSigned, bool IsReplace) const {
8757   SDLoc DL(Op);
8758
8759   EVT DstTy = Op.getValueType();
8760
8761   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8762     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8763     DstTy = MVT::i64;
8764   }
8765
8766   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8767          DstTy.getSimpleVT() >= MVT::i16 &&
8768          "Unknown FP_TO_INT to lower!");
8769
8770   // These are really Legal.
8771   if (DstTy == MVT::i32 &&
8772       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8773     return std::make_pair(SDValue(), SDValue());
8774   if (Subtarget->is64Bit() &&
8775       DstTy == MVT::i64 &&
8776       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8777     return std::make_pair(SDValue(), SDValue());
8778
8779   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8780   // stack slot, or into the FTOL runtime function.
8781   MachineFunction &MF = DAG.getMachineFunction();
8782   unsigned MemSize = DstTy.getSizeInBits()/8;
8783   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8784   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8785
8786   unsigned Opc;
8787   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8788     Opc = X86ISD::WIN_FTOL;
8789   else
8790     switch (DstTy.getSimpleVT().SimpleTy) {
8791     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8792     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8793     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8794     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8795     }
8796
8797   SDValue Chain = DAG.getEntryNode();
8798   SDValue Value = Op.getOperand(0);
8799   EVT TheVT = Op.getOperand(0).getValueType();
8800   // FIXME This causes a redundant load/store if the SSE-class value is already
8801   // in memory, such as if it is on the callstack.
8802   if (isScalarFPTypeInSSEReg(TheVT)) {
8803     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8804     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8805                          MachinePointerInfo::getFixedStack(SSFI),
8806                          false, false, 0);
8807     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8808     SDValue Ops[] = {
8809       Chain, StackSlot, DAG.getValueType(TheVT)
8810     };
8811
8812     MachineMemOperand *MMO =
8813       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8814                               MachineMemOperand::MOLoad, MemSize, MemSize);
8815     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8816                                     array_lengthof(Ops), DstTy, MMO);
8817     Chain = Value.getValue(1);
8818     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8819     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8820   }
8821
8822   MachineMemOperand *MMO =
8823     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8824                             MachineMemOperand::MOStore, MemSize, MemSize);
8825
8826   if (Opc != X86ISD::WIN_FTOL) {
8827     // Build the FP_TO_INT*_IN_MEM
8828     SDValue Ops[] = { Chain, Value, StackSlot };
8829     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8830                                            Ops, array_lengthof(Ops), DstTy,
8831                                            MMO);
8832     return std::make_pair(FIST, StackSlot);
8833   } else {
8834     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8835       DAG.getVTList(MVT::Other, MVT::Glue),
8836       Chain, Value);
8837     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8838       MVT::i32, ftol.getValue(1));
8839     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8840       MVT::i32, eax.getValue(2));
8841     SDValue Ops[] = { eax, edx };
8842     SDValue pair = IsReplace
8843       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8844       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8845     return std::make_pair(pair, SDValue());
8846   }
8847 }
8848
8849 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8850                               const X86Subtarget *Subtarget) {
8851   MVT VT = Op->getSimpleValueType(0);
8852   SDValue In = Op->getOperand(0);
8853   MVT InVT = In.getSimpleValueType();
8854   SDLoc dl(Op);
8855
8856   // Optimize vectors in AVX mode:
8857   //
8858   //   v8i16 -> v8i32
8859   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8860   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8861   //   Concat upper and lower parts.
8862   //
8863   //   v4i32 -> v4i64
8864   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8865   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8866   //   Concat upper and lower parts.
8867   //
8868
8869   if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8870       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8871     return SDValue();
8872
8873   if (Subtarget->hasInt256())
8874     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8875
8876   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8877   SDValue Undef = DAG.getUNDEF(InVT);
8878   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8879   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8880   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8881
8882   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8883                              VT.getVectorNumElements()/2);
8884
8885   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8886   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8887
8888   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8889 }
8890
8891 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8892                                         SelectionDAG &DAG) {
8893   MVT VT = Op->getValueType(0).getSimpleVT();
8894   SDValue In = Op->getOperand(0);
8895   MVT InVT = In.getValueType().getSimpleVT();
8896   SDLoc DL(Op);
8897   unsigned int NumElts = VT.getVectorNumElements();
8898   if (NumElts != 8 && NumElts != 16)
8899     return SDValue();
8900
8901   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8902     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8903
8904   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8905   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8906   // Now we have only mask extension
8907   assert(InVT.getVectorElementType() == MVT::i1);
8908   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8909   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8910   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8911   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8912   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8913                            MachinePointerInfo::getConstantPool(),
8914                            false, false, false, Alignment);
8915
8916   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8917   if (VT.is512BitVector())
8918     return Brcst;
8919   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8920 }
8921
8922 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8923                                SelectionDAG &DAG) {
8924   if (Subtarget->hasFp256()) {
8925     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8926     if (Res.getNode())
8927       return Res;
8928   }
8929
8930   return SDValue();
8931 }
8932
8933 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8934                                 SelectionDAG &DAG) {
8935   SDLoc DL(Op);
8936   MVT VT = Op.getSimpleValueType();
8937   SDValue In = Op.getOperand(0);
8938   MVT SVT = In.getSimpleValueType();
8939
8940   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8941     return LowerZERO_EXTEND_AVX512(Op, DAG);
8942
8943   if (Subtarget->hasFp256()) {
8944     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8945     if (Res.getNode())
8946       return Res;
8947   }
8948
8949   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8950       VT.getVectorNumElements() != SVT.getVectorNumElements())
8951     return SDValue();
8952
8953   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8954
8955   // AVX2 has better support of integer extending.
8956   if (Subtarget->hasInt256())
8957     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8958
8959   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8960   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8961   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8962                            DAG.getVectorShuffle(MVT::v8i16, DL, In,
8963                                                 DAG.getUNDEF(MVT::v8i16),
8964                                                 &Mask[0]));
8965
8966   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8967 }
8968
8969 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8970   SDLoc DL(Op);
8971   MVT VT = Op.getSimpleValueType();  
8972   SDValue In = Op.getOperand(0);
8973   MVT InVT = In.getSimpleValueType();
8974   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8975          "Invalid TRUNCATE operation");
8976
8977   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8978     if (VT.getVectorElementType().getSizeInBits() >=8)
8979       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8980
8981     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8982     unsigned NumElts = InVT.getVectorNumElements();
8983     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8984     if (InVT.getSizeInBits() < 512) {
8985       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8986       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8987       InVT = ExtVT;
8988     }
8989     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8990     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8991     SDValue CP = DAG.getConstantPool(C, getPointerTy());
8992     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8993     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8994                            MachinePointerInfo::getConstantPool(),
8995                            false, false, false, Alignment);
8996     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8997     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8998     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8999   }
9000
9001   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9002     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9003     if (Subtarget->hasInt256()) {
9004       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9005       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9006       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9007                                 ShufMask);
9008       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9009                          DAG.getIntPtrConstant(0));
9010     }
9011
9012     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9013     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9014                                DAG.getIntPtrConstant(0));
9015     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9016                                DAG.getIntPtrConstant(2));
9017
9018     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9019     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9020
9021     // The PSHUFD mask:
9022     static const int ShufMask1[] = {0, 2, 0, 0};
9023     SDValue Undef = DAG.getUNDEF(VT);
9024     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9025     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9026
9027     // The MOVLHPS mask:
9028     static const int ShufMask2[] = {0, 1, 4, 5};
9029     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9030   }
9031
9032   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9033     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9034     if (Subtarget->hasInt256()) {
9035       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9036
9037       SmallVector<SDValue,32> pshufbMask;
9038       for (unsigned i = 0; i < 2; ++i) {
9039         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9040         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9041         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9042         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9043         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9044         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9045         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9046         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9047         for (unsigned j = 0; j < 8; ++j)
9048           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9049       }
9050       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9051                                &pshufbMask[0], 32);
9052       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9053       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9054
9055       static const int ShufMask[] = {0,  2,  -1,  -1};
9056       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9057                                 &ShufMask[0]);
9058       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9059                        DAG.getIntPtrConstant(0));
9060       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9061     }
9062
9063     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9064                                DAG.getIntPtrConstant(0));
9065
9066     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9067                                DAG.getIntPtrConstant(4));
9068
9069     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9070     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9071
9072     // The PSHUFB mask:
9073     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9074                                    -1, -1, -1, -1, -1, -1, -1, -1};
9075
9076     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9077     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9078     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9079
9080     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9081     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9082
9083     // The MOVLHPS Mask:
9084     static const int ShufMask2[] = {0, 1, 4, 5};
9085     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9086     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9087   }
9088
9089   // Handle truncation of V256 to V128 using shuffles.
9090   if (!VT.is128BitVector() || !InVT.is256BitVector())
9091     return SDValue();
9092
9093   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9094
9095   unsigned NumElems = VT.getVectorNumElements();
9096   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9097                              NumElems * 2);
9098
9099   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9100   // Prepare truncation shuffle mask
9101   for (unsigned i = 0; i != NumElems; ++i)
9102     MaskVec[i] = i * 2;
9103   SDValue V = DAG.getVectorShuffle(NVT, DL,
9104                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9105                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9106   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9107                      DAG.getIntPtrConstant(0));
9108 }
9109
9110 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9111                                            SelectionDAG &DAG) const {
9112   MVT VT = Op.getSimpleValueType();
9113   if (VT.isVector()) {
9114     if (VT == MVT::v8i16)
9115       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9116                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9117                                      MVT::v8i32, Op.getOperand(0)));
9118     return SDValue();
9119   }
9120
9121   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9122     /*IsSigned=*/ true, /*IsReplace=*/ false);
9123   SDValue FIST = Vals.first, StackSlot = Vals.second;
9124   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9125   if (FIST.getNode() == 0) return Op;
9126
9127   if (StackSlot.getNode())
9128     // Load the result.
9129     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9130                        FIST, StackSlot, MachinePointerInfo(),
9131                        false, false, false, 0);
9132
9133   // The node is the result.
9134   return FIST;
9135 }
9136
9137 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9138                                            SelectionDAG &DAG) const {
9139   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9140     /*IsSigned=*/ false, /*IsReplace=*/ false);
9141   SDValue FIST = Vals.first, StackSlot = Vals.second;
9142   assert(FIST.getNode() && "Unexpected failure");
9143
9144   if (StackSlot.getNode())
9145     // Load the result.
9146     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9147                        FIST, StackSlot, MachinePointerInfo(),
9148                        false, false, false, 0);
9149
9150   // The node is the result.
9151   return FIST;
9152 }
9153
9154 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9155   SDLoc DL(Op);
9156   MVT VT = Op.getSimpleValueType();
9157   SDValue In = Op.getOperand(0);
9158   MVT SVT = In.getSimpleValueType();
9159
9160   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9161
9162   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9163                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9164                                  In, DAG.getUNDEF(SVT)));
9165 }
9166
9167 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9168   LLVMContext *Context = DAG.getContext();
9169   SDLoc dl(Op);
9170   MVT VT = Op.getSimpleValueType();
9171   MVT EltVT = VT;
9172   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9173   if (VT.isVector()) {
9174     EltVT = VT.getVectorElementType();
9175     NumElts = VT.getVectorNumElements();
9176   }
9177   Constant *C;
9178   if (EltVT == MVT::f64)
9179     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9180                                           APInt(64, ~(1ULL << 63))));
9181   else
9182     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9183                                           APInt(32, ~(1U << 31))));
9184   C = ConstantVector::getSplat(NumElts, C);
9185   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9186   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9187   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9188                              MachinePointerInfo::getConstantPool(),
9189                              false, false, false, Alignment);
9190   if (VT.isVector()) {
9191     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9192     return DAG.getNode(ISD::BITCAST, dl, VT,
9193                        DAG.getNode(ISD::AND, dl, ANDVT,
9194                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9195                                                Op.getOperand(0)),
9196                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9197   }
9198   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9199 }
9200
9201 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9202   LLVMContext *Context = DAG.getContext();
9203   SDLoc dl(Op);
9204   MVT VT = Op.getSimpleValueType();
9205   MVT EltVT = VT;
9206   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9207   if (VT.isVector()) {
9208     EltVT = VT.getVectorElementType();
9209     NumElts = VT.getVectorNumElements();
9210   }
9211   Constant *C;
9212   if (EltVT == MVT::f64)
9213     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9214                                           APInt(64, 1ULL << 63)));
9215   else
9216     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9217                                           APInt(32, 1U << 31)));
9218   C = ConstantVector::getSplat(NumElts, C);
9219   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9220   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9221   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9222                              MachinePointerInfo::getConstantPool(),
9223                              false, false, false, Alignment);
9224   if (VT.isVector()) {
9225     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9226     return DAG.getNode(ISD::BITCAST, dl, VT,
9227                        DAG.getNode(ISD::XOR, dl, XORVT,
9228                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9229                                                Op.getOperand(0)),
9230                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9231   }
9232
9233   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9234 }
9235
9236 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9237   LLVMContext *Context = DAG.getContext();
9238   SDValue Op0 = Op.getOperand(0);
9239   SDValue Op1 = Op.getOperand(1);
9240   SDLoc dl(Op);
9241   MVT VT = Op.getSimpleValueType();
9242   MVT SrcVT = Op1.getSimpleValueType();
9243
9244   // If second operand is smaller, extend it first.
9245   if (SrcVT.bitsLT(VT)) {
9246     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9247     SrcVT = VT;
9248   }
9249   // And if it is bigger, shrink it first.
9250   if (SrcVT.bitsGT(VT)) {
9251     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9252     SrcVT = VT;
9253   }
9254
9255   // At this point the operands and the result should have the same
9256   // type, and that won't be f80 since that is not custom lowered.
9257
9258   // First get the sign bit of second operand.
9259   SmallVector<Constant*,4> CV;
9260   if (SrcVT == MVT::f64) {
9261     const fltSemantics &Sem = APFloat::IEEEdouble;
9262     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9263     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9264   } else {
9265     const fltSemantics &Sem = APFloat::IEEEsingle;
9266     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9267     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9268     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9269     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9270   }
9271   Constant *C = ConstantVector::get(CV);
9272   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9273   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9274                               MachinePointerInfo::getConstantPool(),
9275                               false, false, false, 16);
9276   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9277
9278   // Shift sign bit right or left if the two operands have different types.
9279   if (SrcVT.bitsGT(VT)) {
9280     // Op0 is MVT::f32, Op1 is MVT::f64.
9281     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9282     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9283                           DAG.getConstant(32, MVT::i32));
9284     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9285     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9286                           DAG.getIntPtrConstant(0));
9287   }
9288
9289   // Clear first operand sign bit.
9290   CV.clear();
9291   if (VT == MVT::f64) {
9292     const fltSemantics &Sem = APFloat::IEEEdouble;
9293     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9294                                                    APInt(64, ~(1ULL << 63)))));
9295     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9296   } else {
9297     const fltSemantics &Sem = APFloat::IEEEsingle;
9298     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9299                                                    APInt(32, ~(1U << 31)))));
9300     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9301     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9302     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9303   }
9304   C = ConstantVector::get(CV);
9305   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9306   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9307                               MachinePointerInfo::getConstantPool(),
9308                               false, false, false, 16);
9309   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9310
9311   // Or the value with the sign bit.
9312   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9313 }
9314
9315 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9316   SDValue N0 = Op.getOperand(0);
9317   SDLoc dl(Op);
9318   MVT VT = Op.getSimpleValueType();
9319
9320   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9321   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9322                                   DAG.getConstant(1, VT));
9323   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9324 }
9325
9326 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9327 //
9328 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9329                                       SelectionDAG &DAG) {
9330   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9331
9332   if (!Subtarget->hasSSE41())
9333     return SDValue();
9334
9335   if (!Op->hasOneUse())
9336     return SDValue();
9337
9338   SDNode *N = Op.getNode();
9339   SDLoc DL(N);
9340
9341   SmallVector<SDValue, 8> Opnds;
9342   DenseMap<SDValue, unsigned> VecInMap;
9343   EVT VT = MVT::Other;
9344
9345   // Recognize a special case where a vector is casted into wide integer to
9346   // test all 0s.
9347   Opnds.push_back(N->getOperand(0));
9348   Opnds.push_back(N->getOperand(1));
9349
9350   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9351     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9352     // BFS traverse all OR'd operands.
9353     if (I->getOpcode() == ISD::OR) {
9354       Opnds.push_back(I->getOperand(0));
9355       Opnds.push_back(I->getOperand(1));
9356       // Re-evaluate the number of nodes to be traversed.
9357       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9358       continue;
9359     }
9360
9361     // Quit if a non-EXTRACT_VECTOR_ELT
9362     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9363       return SDValue();
9364
9365     // Quit if without a constant index.
9366     SDValue Idx = I->getOperand(1);
9367     if (!isa<ConstantSDNode>(Idx))
9368       return SDValue();
9369
9370     SDValue ExtractedFromVec = I->getOperand(0);
9371     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9372     if (M == VecInMap.end()) {
9373       VT = ExtractedFromVec.getValueType();
9374       // Quit if not 128/256-bit vector.
9375       if (!VT.is128BitVector() && !VT.is256BitVector())
9376         return SDValue();
9377       // Quit if not the same type.
9378       if (VecInMap.begin() != VecInMap.end() &&
9379           VT != VecInMap.begin()->first.getValueType())
9380         return SDValue();
9381       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9382     }
9383     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9384   }
9385
9386   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9387          "Not extracted from 128-/256-bit vector.");
9388
9389   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9390   SmallVector<SDValue, 8> VecIns;
9391
9392   for (DenseMap<SDValue, unsigned>::const_iterator
9393         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9394     // Quit if not all elements are used.
9395     if (I->second != FullMask)
9396       return SDValue();
9397     VecIns.push_back(I->first);
9398   }
9399
9400   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9401
9402   // Cast all vectors into TestVT for PTEST.
9403   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9404     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9405
9406   // If more than one full vectors are evaluated, OR them first before PTEST.
9407   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9408     // Each iteration will OR 2 nodes and append the result until there is only
9409     // 1 node left, i.e. the final OR'd value of all vectors.
9410     SDValue LHS = VecIns[Slot];
9411     SDValue RHS = VecIns[Slot + 1];
9412     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9413   }
9414
9415   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9416                      VecIns.back(), VecIns.back());
9417 }
9418
9419 /// Emit nodes that will be selected as "test Op0,Op0", or something
9420 /// equivalent.
9421 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9422                                     SelectionDAG &DAG) const {
9423   SDLoc dl(Op);
9424
9425   // CF and OF aren't always set the way we want. Determine which
9426   // of these we need.
9427   bool NeedCF = false;
9428   bool NeedOF = false;
9429   switch (X86CC) {
9430   default: break;
9431   case X86::COND_A: case X86::COND_AE:
9432   case X86::COND_B: case X86::COND_BE:
9433     NeedCF = true;
9434     break;
9435   case X86::COND_G: case X86::COND_GE:
9436   case X86::COND_L: case X86::COND_LE:
9437   case X86::COND_O: case X86::COND_NO:
9438     NeedOF = true;
9439     break;
9440   }
9441
9442   // See if we can use the EFLAGS value from the operand instead of
9443   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9444   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9445   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9446     // Emit a CMP with 0, which is the TEST pattern.
9447     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9448                        DAG.getConstant(0, Op.getValueType()));
9449
9450   unsigned Opcode = 0;
9451   unsigned NumOperands = 0;
9452
9453   // Truncate operations may prevent the merge of the SETCC instruction
9454   // and the arithmetic intruction before it. Attempt to truncate the operands
9455   // of the arithmetic instruction and use a reduced bit-width instruction.
9456   bool NeedTruncation = false;
9457   SDValue ArithOp = Op;
9458   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9459     SDValue Arith = Op->getOperand(0);
9460     // Both the trunc and the arithmetic op need to have one user each.
9461     if (Arith->hasOneUse())
9462       switch (Arith.getOpcode()) {
9463         default: break;
9464         case ISD::ADD:
9465         case ISD::SUB:
9466         case ISD::AND:
9467         case ISD::OR:
9468         case ISD::XOR: {
9469           NeedTruncation = true;
9470           ArithOp = Arith;
9471         }
9472       }
9473   }
9474
9475   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9476   // which may be the result of a CAST.  We use the variable 'Op', which is the
9477   // non-casted variable when we check for possible users.
9478   switch (ArithOp.getOpcode()) {
9479   case ISD::ADD:
9480     // Due to an isel shortcoming, be conservative if this add is likely to be
9481     // selected as part of a load-modify-store instruction. When the root node
9482     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9483     // uses of other nodes in the match, such as the ADD in this case. This
9484     // leads to the ADD being left around and reselected, with the result being
9485     // two adds in the output.  Alas, even if none our users are stores, that
9486     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9487     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9488     // climbing the DAG back to the root, and it doesn't seem to be worth the
9489     // effort.
9490     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9491          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9492       if (UI->getOpcode() != ISD::CopyToReg &&
9493           UI->getOpcode() != ISD::SETCC &&
9494           UI->getOpcode() != ISD::STORE)
9495         goto default_case;
9496
9497     if (ConstantSDNode *C =
9498         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9499       // An add of one will be selected as an INC.
9500       if (C->getAPIntValue() == 1) {
9501         Opcode = X86ISD::INC;
9502         NumOperands = 1;
9503         break;
9504       }
9505
9506       // An add of negative one (subtract of one) will be selected as a DEC.
9507       if (C->getAPIntValue().isAllOnesValue()) {
9508         Opcode = X86ISD::DEC;
9509         NumOperands = 1;
9510         break;
9511       }
9512     }
9513
9514     // Otherwise use a regular EFLAGS-setting add.
9515     Opcode = X86ISD::ADD;
9516     NumOperands = 2;
9517     break;
9518   case ISD::AND: {
9519     // If the primary and result isn't used, don't bother using X86ISD::AND,
9520     // because a TEST instruction will be better.
9521     bool NonFlagUse = false;
9522     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9523            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9524       SDNode *User = *UI;
9525       unsigned UOpNo = UI.getOperandNo();
9526       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9527         // Look pass truncate.
9528         UOpNo = User->use_begin().getOperandNo();
9529         User = *User->use_begin();
9530       }
9531
9532       if (User->getOpcode() != ISD::BRCOND &&
9533           User->getOpcode() != ISD::SETCC &&
9534           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9535         NonFlagUse = true;
9536         break;
9537       }
9538     }
9539
9540     if (!NonFlagUse)
9541       break;
9542   }
9543     // FALL THROUGH
9544   case ISD::SUB:
9545   case ISD::OR:
9546   case ISD::XOR:
9547     // Due to the ISEL shortcoming noted above, be conservative if this op is
9548     // likely to be selected as part of a load-modify-store instruction.
9549     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9550            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9551       if (UI->getOpcode() == ISD::STORE)
9552         goto default_case;
9553
9554     // Otherwise use a regular EFLAGS-setting instruction.
9555     switch (ArithOp.getOpcode()) {
9556     default: llvm_unreachable("unexpected operator!");
9557     case ISD::SUB: Opcode = X86ISD::SUB; break;
9558     case ISD::XOR: Opcode = X86ISD::XOR; break;
9559     case ISD::AND: Opcode = X86ISD::AND; break;
9560     case ISD::OR: {
9561       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9562         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9563         if (EFLAGS.getNode())
9564           return EFLAGS;
9565       }
9566       Opcode = X86ISD::OR;
9567       break;
9568     }
9569     }
9570
9571     NumOperands = 2;
9572     break;
9573   case X86ISD::ADD:
9574   case X86ISD::SUB:
9575   case X86ISD::INC:
9576   case X86ISD::DEC:
9577   case X86ISD::OR:
9578   case X86ISD::XOR:
9579   case X86ISD::AND:
9580     return SDValue(Op.getNode(), 1);
9581   default:
9582   default_case:
9583     break;
9584   }
9585
9586   // If we found that truncation is beneficial, perform the truncation and
9587   // update 'Op'.
9588   if (NeedTruncation) {
9589     EVT VT = Op.getValueType();
9590     SDValue WideVal = Op->getOperand(0);
9591     EVT WideVT = WideVal.getValueType();
9592     unsigned ConvertedOp = 0;
9593     // Use a target machine opcode to prevent further DAGCombine
9594     // optimizations that may separate the arithmetic operations
9595     // from the setcc node.
9596     switch (WideVal.getOpcode()) {
9597       default: break;
9598       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9599       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9600       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9601       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9602       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9603     }
9604
9605     if (ConvertedOp) {
9606       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9607       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9608         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9609         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9610         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9611       }
9612     }
9613   }
9614
9615   if (Opcode == 0)
9616     // Emit a CMP with 0, which is the TEST pattern.
9617     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9618                        DAG.getConstant(0, Op.getValueType()));
9619
9620   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9621   SmallVector<SDValue, 4> Ops;
9622   for (unsigned i = 0; i != NumOperands; ++i)
9623     Ops.push_back(Op.getOperand(i));
9624
9625   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9626   DAG.ReplaceAllUsesWith(Op, New);
9627   return SDValue(New.getNode(), 1);
9628 }
9629
9630 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9631 /// equivalent.
9632 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9633                                    SelectionDAG &DAG) const {
9634   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9635     if (C->getAPIntValue() == 0)
9636       return EmitTest(Op0, X86CC, DAG);
9637
9638   SDLoc dl(Op0);
9639   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9640        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9641     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9642     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9643     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9644                               Op0, Op1);
9645     return SDValue(Sub.getNode(), 1);
9646   }
9647   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9648 }
9649
9650 /// Convert a comparison if required by the subtarget.
9651 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9652                                                  SelectionDAG &DAG) const {
9653   // If the subtarget does not support the FUCOMI instruction, floating-point
9654   // comparisons have to be converted.
9655   if (Subtarget->hasCMov() ||
9656       Cmp.getOpcode() != X86ISD::CMP ||
9657       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9658       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9659     return Cmp;
9660
9661   // The instruction selector will select an FUCOM instruction instead of
9662   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9663   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9664   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9665   SDLoc dl(Cmp);
9666   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9667   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9668   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9669                             DAG.getConstant(8, MVT::i8));
9670   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9671   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9672 }
9673
9674 static bool isAllOnes(SDValue V) {
9675   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9676   return C && C->isAllOnesValue();
9677 }
9678
9679 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9680 /// if it's possible.
9681 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9682                                      SDLoc dl, SelectionDAG &DAG) const {
9683   SDValue Op0 = And.getOperand(0);
9684   SDValue Op1 = And.getOperand(1);
9685   if (Op0.getOpcode() == ISD::TRUNCATE)
9686     Op0 = Op0.getOperand(0);
9687   if (Op1.getOpcode() == ISD::TRUNCATE)
9688     Op1 = Op1.getOperand(0);
9689
9690   SDValue LHS, RHS;
9691   if (Op1.getOpcode() == ISD::SHL)
9692     std::swap(Op0, Op1);
9693   if (Op0.getOpcode() == ISD::SHL) {
9694     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9695       if (And00C->getZExtValue() == 1) {
9696         // If we looked past a truncate, check that it's only truncating away
9697         // known zeros.
9698         unsigned BitWidth = Op0.getValueSizeInBits();
9699         unsigned AndBitWidth = And.getValueSizeInBits();
9700         if (BitWidth > AndBitWidth) {
9701           APInt Zeros, Ones;
9702           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9703           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9704             return SDValue();
9705         }
9706         LHS = Op1;
9707         RHS = Op0.getOperand(1);
9708       }
9709   } else if (Op1.getOpcode() == ISD::Constant) {
9710     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9711     uint64_t AndRHSVal = AndRHS->getZExtValue();
9712     SDValue AndLHS = Op0;
9713
9714     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9715       LHS = AndLHS.getOperand(0);
9716       RHS = AndLHS.getOperand(1);
9717     }
9718
9719     // Use BT if the immediate can't be encoded in a TEST instruction.
9720     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9721       LHS = AndLHS;
9722       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9723     }
9724   }
9725
9726   if (LHS.getNode()) {
9727     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9728     // instruction.  Since the shift amount is in-range-or-undefined, we know
9729     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9730     // the encoding for the i16 version is larger than the i32 version.
9731     // Also promote i16 to i32 for performance / code size reason.
9732     if (LHS.getValueType() == MVT::i8 ||
9733         LHS.getValueType() == MVT::i16)
9734       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9735
9736     // If the operand types disagree, extend the shift amount to match.  Since
9737     // BT ignores high bits (like shifts) we can use anyextend.
9738     if (LHS.getValueType() != RHS.getValueType())
9739       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9740
9741     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9742     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9743     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9744                        DAG.getConstant(Cond, MVT::i8), BT);
9745   }
9746
9747   return SDValue();
9748 }
9749
9750 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9751 /// mask CMPs.
9752 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9753                               SDValue &Op1) {
9754   unsigned SSECC;
9755   bool Swap = false;
9756
9757   // SSE Condition code mapping:
9758   //  0 - EQ
9759   //  1 - LT
9760   //  2 - LE
9761   //  3 - UNORD
9762   //  4 - NEQ
9763   //  5 - NLT
9764   //  6 - NLE
9765   //  7 - ORD
9766   switch (SetCCOpcode) {
9767   default: llvm_unreachable("Unexpected SETCC condition");
9768   case ISD::SETOEQ:
9769   case ISD::SETEQ:  SSECC = 0; break;
9770   case ISD::SETOGT:
9771   case ISD::SETGT:  Swap = true; // Fallthrough
9772   case ISD::SETLT:
9773   case ISD::SETOLT: SSECC = 1; break;
9774   case ISD::SETOGE:
9775   case ISD::SETGE:  Swap = true; // Fallthrough
9776   case ISD::SETLE:
9777   case ISD::SETOLE: SSECC = 2; break;
9778   case ISD::SETUO:  SSECC = 3; break;
9779   case ISD::SETUNE:
9780   case ISD::SETNE:  SSECC = 4; break;
9781   case ISD::SETULE: Swap = true; // Fallthrough
9782   case ISD::SETUGE: SSECC = 5; break;
9783   case ISD::SETULT: Swap = true; // Fallthrough
9784   case ISD::SETUGT: SSECC = 6; break;
9785   case ISD::SETO:   SSECC = 7; break;
9786   case ISD::SETUEQ:
9787   case ISD::SETONE: SSECC = 8; break;
9788   }
9789   if (Swap)
9790     std::swap(Op0, Op1);
9791
9792   return SSECC;
9793 }
9794
9795 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9796 // ones, and then concatenate the result back.
9797 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9798   MVT VT = Op.getSimpleValueType();
9799
9800   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9801          "Unsupported value type for operation");
9802
9803   unsigned NumElems = VT.getVectorNumElements();
9804   SDLoc dl(Op);
9805   SDValue CC = Op.getOperand(2);
9806
9807   // Extract the LHS vectors
9808   SDValue LHS = Op.getOperand(0);
9809   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9810   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9811
9812   // Extract the RHS vectors
9813   SDValue RHS = Op.getOperand(1);
9814   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9815   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9816
9817   // Issue the operation on the smaller types and concatenate the result back
9818   MVT EltVT = VT.getVectorElementType();
9819   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9820   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9821                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9822                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9823 }
9824
9825 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9826   SDValue Cond;
9827   SDValue Op0 = Op.getOperand(0);
9828   SDValue Op1 = Op.getOperand(1);
9829   SDValue CC = Op.getOperand(2);
9830   MVT VT = Op.getSimpleValueType();
9831
9832   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9833          Op.getValueType().getScalarType() == MVT::i1 &&
9834          "Cannot set masked compare for this operation");
9835
9836   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9837   SDLoc dl(Op);
9838
9839   bool Unsigned = false;
9840   unsigned SSECC;
9841   switch (SetCCOpcode) {
9842   default: llvm_unreachable("Unexpected SETCC condition");
9843   case ISD::SETNE:  SSECC = 4; break;
9844   case ISD::SETEQ:  SSECC = 0; break;
9845   case ISD::SETUGT: Unsigned = true;
9846   case ISD::SETGT:  SSECC = 6; break; // NLE
9847   case ISD::SETULT: Unsigned = true;
9848   case ISD::SETLT:  SSECC = 1; break;
9849   case ISD::SETUGE: Unsigned = true;
9850   case ISD::SETGE:  SSECC = 5; break; // NLT
9851   case ISD::SETULE: Unsigned = true;
9852   case ISD::SETLE:  SSECC = 2; break;
9853   }
9854   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9855   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9856                      DAG.getConstant(SSECC, MVT::i8));
9857
9858 }
9859
9860 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9861                            SelectionDAG &DAG) {
9862   SDValue Cond;
9863   SDValue Op0 = Op.getOperand(0);
9864   SDValue Op1 = Op.getOperand(1);
9865   SDValue CC = Op.getOperand(2);
9866   MVT VT = Op.getSimpleValueType();
9867   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9868   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9869   SDLoc dl(Op);
9870
9871   if (isFP) {
9872 #ifndef NDEBUG
9873     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9874     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9875 #endif
9876
9877     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9878     unsigned Opc = X86ISD::CMPP;
9879     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9880       assert(VT.getVectorNumElements() <= 16);
9881       Opc = X86ISD::CMPM;
9882     }
9883     // In the two special cases we can't handle, emit two comparisons.
9884     if (SSECC == 8) {
9885       unsigned CC0, CC1;
9886       unsigned CombineOpc;
9887       if (SetCCOpcode == ISD::SETUEQ) {
9888         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9889       } else {
9890         assert(SetCCOpcode == ISD::SETONE);
9891         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9892       }
9893
9894       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9895                                  DAG.getConstant(CC0, MVT::i8));
9896       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9897                                  DAG.getConstant(CC1, MVT::i8));
9898       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9899     }
9900     // Handle all other FP comparisons here.
9901     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9902                        DAG.getConstant(SSECC, MVT::i8));
9903   }
9904
9905   // Break 256-bit integer vector compare into smaller ones.
9906   if (VT.is256BitVector() && !Subtarget->hasInt256())
9907     return Lower256IntVSETCC(Op, DAG);
9908
9909   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9910   EVT OpVT = Op1.getValueType();
9911   if (Subtarget->hasAVX512()) {
9912     if (Op1.getValueType().is512BitVector() ||
9913         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9914       return LowerIntVSETCC_AVX512(Op, DAG);
9915
9916     // In AVX-512 architecture setcc returns mask with i1 elements,
9917     // But there is no compare instruction for i8 and i16 elements.
9918     // We are not talking about 512-bit operands in this case, these
9919     // types are illegal.
9920     if (MaskResult &&
9921         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9922          OpVT.getVectorElementType().getSizeInBits() >= 8))
9923       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9924                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9925   }
9926
9927   // We are handling one of the integer comparisons here.  Since SSE only has
9928   // GT and EQ comparisons for integer, swapping operands and multiple
9929   // operations may be required for some comparisons.
9930   unsigned Opc;
9931   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9932   
9933   switch (SetCCOpcode) {
9934   default: llvm_unreachable("Unexpected SETCC condition");
9935   case ISD::SETNE:  Invert = true;
9936   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9937   case ISD::SETLT:  Swap = true;
9938   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9939   case ISD::SETGE:  Swap = true;
9940   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9941                     Invert = true; break;
9942   case ISD::SETULT: Swap = true;
9943   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9944                     FlipSigns = true; break;
9945   case ISD::SETUGE: Swap = true;
9946   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9947                     FlipSigns = true; Invert = true; break;
9948   }
9949   
9950   // Special case: Use min/max operations for SETULE/SETUGE
9951   MVT VET = VT.getVectorElementType();
9952   bool hasMinMax =
9953        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9954     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9955   
9956   if (hasMinMax) {
9957     switch (SetCCOpcode) {
9958     default: break;
9959     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9960     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9961     }
9962     
9963     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9964   }
9965   
9966   if (Swap)
9967     std::swap(Op0, Op1);
9968
9969   // Check that the operation in question is available (most are plain SSE2,
9970   // but PCMPGTQ and PCMPEQQ have different requirements).
9971   if (VT == MVT::v2i64) {
9972     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9973       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9974
9975       // First cast everything to the right type.
9976       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9977       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9978
9979       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9980       // bits of the inputs before performing those operations. The lower
9981       // compare is always unsigned.
9982       SDValue SB;
9983       if (FlipSigns) {
9984         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9985       } else {
9986         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9987         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9988         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9989                          Sign, Zero, Sign, Zero);
9990       }
9991       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9992       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9993
9994       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9995       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9996       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9997
9998       // Create masks for only the low parts/high parts of the 64 bit integers.
9999       static const int MaskHi[] = { 1, 1, 3, 3 };
10000       static const int MaskLo[] = { 0, 0, 2, 2 };
10001       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10002       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10003       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10004
10005       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10006       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10007
10008       if (Invert)
10009         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10010
10011       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10012     }
10013
10014     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10015       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10016       // pcmpeqd + pshufd + pand.
10017       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10018
10019       // First cast everything to the right type.
10020       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10021       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10022
10023       // Do the compare.
10024       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10025
10026       // Make sure the lower and upper halves are both all-ones.
10027       static const int Mask[] = { 1, 0, 3, 2 };
10028       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10029       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10030
10031       if (Invert)
10032         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10033
10034       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10035     }
10036   }
10037
10038   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10039   // bits of the inputs before performing those operations.
10040   if (FlipSigns) {
10041     EVT EltVT = VT.getVectorElementType();
10042     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10043     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10044     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10045   }
10046
10047   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10048
10049   // If the logical-not of the result is required, perform that now.
10050   if (Invert)
10051     Result = DAG.getNOT(dl, Result, VT);
10052   
10053   if (MinMax)
10054     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10055
10056   return Result;
10057 }
10058
10059 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10060
10061   MVT VT = Op.getSimpleValueType();
10062
10063   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10064
10065   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10066   SDValue Op0 = Op.getOperand(0);
10067   SDValue Op1 = Op.getOperand(1);
10068   SDLoc dl(Op);
10069   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10070
10071   // Optimize to BT if possible.
10072   // Lower (X & (1 << N)) == 0 to BT(X, N).
10073   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10074   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10075   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10076       Op1.getOpcode() == ISD::Constant &&
10077       cast<ConstantSDNode>(Op1)->isNullValue() &&
10078       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10079     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10080     if (NewSetCC.getNode())
10081       return NewSetCC;
10082   }
10083
10084   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10085   // these.
10086   if (Op1.getOpcode() == ISD::Constant &&
10087       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10088        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10089       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10090
10091     // If the input is a setcc, then reuse the input setcc or use a new one with
10092     // the inverted condition.
10093     if (Op0.getOpcode() == X86ISD::SETCC) {
10094       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10095       bool Invert = (CC == ISD::SETNE) ^
10096         cast<ConstantSDNode>(Op1)->isNullValue();
10097       if (!Invert) return Op0;
10098
10099       CCode = X86::GetOppositeBranchCondition(CCode);
10100       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10101                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10102     }
10103   }
10104
10105   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10106   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10107   if (X86CC == X86::COND_INVALID)
10108     return SDValue();
10109
10110   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10111   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10112   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10113                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10114 }
10115
10116 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10117 static bool isX86LogicalCmp(SDValue Op) {
10118   unsigned Opc = Op.getNode()->getOpcode();
10119   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10120       Opc == X86ISD::SAHF)
10121     return true;
10122   if (Op.getResNo() == 1 &&
10123       (Opc == X86ISD::ADD ||
10124        Opc == X86ISD::SUB ||
10125        Opc == X86ISD::ADC ||
10126        Opc == X86ISD::SBB ||
10127        Opc == X86ISD::SMUL ||
10128        Opc == X86ISD::UMUL ||
10129        Opc == X86ISD::INC ||
10130        Opc == X86ISD::DEC ||
10131        Opc == X86ISD::OR ||
10132        Opc == X86ISD::XOR ||
10133        Opc == X86ISD::AND))
10134     return true;
10135
10136   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10137     return true;
10138
10139   return false;
10140 }
10141
10142 static bool isZero(SDValue V) {
10143   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10144   return C && C->isNullValue();
10145 }
10146
10147 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10148   if (V.getOpcode() != ISD::TRUNCATE)
10149     return false;
10150
10151   SDValue VOp0 = V.getOperand(0);
10152   unsigned InBits = VOp0.getValueSizeInBits();
10153   unsigned Bits = V.getValueSizeInBits();
10154   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10155 }
10156
10157 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10158   bool addTest = true;
10159   SDValue Cond  = Op.getOperand(0);
10160   SDValue Op1 = Op.getOperand(1);
10161   SDValue Op2 = Op.getOperand(2);
10162   SDLoc DL(Op);
10163   EVT VT = Op1.getValueType();
10164   SDValue CC;
10165
10166   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10167   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10168   // sequence later on.
10169   if (Cond.getOpcode() == ISD::SETCC &&
10170       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10171        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10172       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10173     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10174     int SSECC = translateX86FSETCC(
10175         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10176
10177     if (SSECC != 8) {
10178       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10179       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10180                                 DAG.getConstant(SSECC, MVT::i8));
10181       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10182       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10183       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10184     }
10185   }
10186
10187   if (Cond.getOpcode() == ISD::SETCC) {
10188     SDValue NewCond = LowerSETCC(Cond, DAG);
10189     if (NewCond.getNode())
10190       Cond = NewCond;
10191   }
10192
10193   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10194   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10195   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10196   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10197   if (Cond.getOpcode() == X86ISD::SETCC &&
10198       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10199       isZero(Cond.getOperand(1).getOperand(1))) {
10200     SDValue Cmp = Cond.getOperand(1);
10201
10202     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10203
10204     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10205         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10206       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10207
10208       SDValue CmpOp0 = Cmp.getOperand(0);
10209       // Apply further optimizations for special cases
10210       // (select (x != 0), -1, 0) -> neg & sbb
10211       // (select (x == 0), 0, -1) -> neg & sbb
10212       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10213         if (YC->isNullValue() &&
10214             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10215           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10216           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10217                                     DAG.getConstant(0, CmpOp0.getValueType()),
10218                                     CmpOp0);
10219           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10220                                     DAG.getConstant(X86::COND_B, MVT::i8),
10221                                     SDValue(Neg.getNode(), 1));
10222           return Res;
10223         }
10224
10225       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10226                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10227       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10228
10229       SDValue Res =   // Res = 0 or -1.
10230         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10231                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10232
10233       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10234         Res = DAG.getNOT(DL, Res, Res.getValueType());
10235
10236       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10237       if (N2C == 0 || !N2C->isNullValue())
10238         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10239       return Res;
10240     }
10241   }
10242
10243   // Look past (and (setcc_carry (cmp ...)), 1).
10244   if (Cond.getOpcode() == ISD::AND &&
10245       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10246     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10247     if (C && C->getAPIntValue() == 1)
10248       Cond = Cond.getOperand(0);
10249   }
10250
10251   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10252   // setting operand in place of the X86ISD::SETCC.
10253   unsigned CondOpcode = Cond.getOpcode();
10254   if (CondOpcode == X86ISD::SETCC ||
10255       CondOpcode == X86ISD::SETCC_CARRY) {
10256     CC = Cond.getOperand(0);
10257
10258     SDValue Cmp = Cond.getOperand(1);
10259     unsigned Opc = Cmp.getOpcode();
10260     MVT VT = Op.getSimpleValueType();
10261
10262     bool IllegalFPCMov = false;
10263     if (VT.isFloatingPoint() && !VT.isVector() &&
10264         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10265       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10266
10267     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10268         Opc == X86ISD::BT) { // FIXME
10269       Cond = Cmp;
10270       addTest = false;
10271     }
10272   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10273              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10274              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10275               Cond.getOperand(0).getValueType() != MVT::i8)) {
10276     SDValue LHS = Cond.getOperand(0);
10277     SDValue RHS = Cond.getOperand(1);
10278     unsigned X86Opcode;
10279     unsigned X86Cond;
10280     SDVTList VTs;
10281     switch (CondOpcode) {
10282     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10283     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10284     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10285     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10286     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10287     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10288     default: llvm_unreachable("unexpected overflowing operator");
10289     }
10290     if (CondOpcode == ISD::UMULO)
10291       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10292                           MVT::i32);
10293     else
10294       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10295
10296     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10297
10298     if (CondOpcode == ISD::UMULO)
10299       Cond = X86Op.getValue(2);
10300     else
10301       Cond = X86Op.getValue(1);
10302
10303     CC = DAG.getConstant(X86Cond, MVT::i8);
10304     addTest = false;
10305   }
10306
10307   if (addTest) {
10308     // Look pass the truncate if the high bits are known zero.
10309     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10310         Cond = Cond.getOperand(0);
10311
10312     // We know the result of AND is compared against zero. Try to match
10313     // it to BT.
10314     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10315       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10316       if (NewSetCC.getNode()) {
10317         CC = NewSetCC.getOperand(0);
10318         Cond = NewSetCC.getOperand(1);
10319         addTest = false;
10320       }
10321     }
10322   }
10323
10324   if (addTest) {
10325     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10326     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10327   }
10328
10329   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10330   // a <  b ?  0 : -1 -> RES = setcc_carry
10331   // a >= b ? -1 :  0 -> RES = setcc_carry
10332   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10333   if (Cond.getOpcode() == X86ISD::SUB) {
10334     Cond = ConvertCmpIfNecessary(Cond, DAG);
10335     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10336
10337     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10338         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10339       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10340                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10341       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10342         return DAG.getNOT(DL, Res, Res.getValueType());
10343       return Res;
10344     }
10345   }
10346
10347   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10348   // widen the cmov and push the truncate through. This avoids introducing a new
10349   // branch during isel and doesn't add any extensions.
10350   if (Op.getValueType() == MVT::i8 &&
10351       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10352     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10353     if (T1.getValueType() == T2.getValueType() &&
10354         // Blacklist CopyFromReg to avoid partial register stalls.
10355         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10356       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10357       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10358       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10359     }
10360   }
10361
10362   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10363   // condition is true.
10364   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10365   SDValue Ops[] = { Op2, Op1, CC, Cond };
10366   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10367 }
10368
10369 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10370   MVT VT = Op->getSimpleValueType(0);
10371   SDValue In = Op->getOperand(0);
10372   MVT InVT = In.getSimpleValueType();
10373   SDLoc dl(Op);
10374
10375   unsigned int NumElts = VT.getVectorNumElements();
10376   if (NumElts != 8 && NumElts != 16)
10377     return SDValue();
10378
10379   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10380     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10381
10382   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10383   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10384
10385   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10386   Constant *C = ConstantInt::get(*DAG.getContext(),
10387     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10388
10389   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10390   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10391   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10392                           MachinePointerInfo::getConstantPool(),
10393                           false, false, false, Alignment);
10394   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10395   if (VT.is512BitVector())
10396     return Brcst;
10397   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10398 }
10399
10400 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10401                                 SelectionDAG &DAG) {
10402   MVT VT = Op->getSimpleValueType(0);
10403   SDValue In = Op->getOperand(0);
10404   MVT InVT = In.getSimpleValueType();
10405   SDLoc dl(Op);
10406
10407   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10408     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10409
10410   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10411       (VT != MVT::v8i32 || InVT != MVT::v8i16))
10412     return SDValue();
10413
10414   if (Subtarget->hasInt256())
10415     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10416
10417   // Optimize vectors in AVX mode
10418   // Sign extend  v8i16 to v8i32 and
10419   //              v4i32 to v4i64
10420   //
10421   // Divide input vector into two parts
10422   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10423   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10424   // concat the vectors to original VT
10425
10426   unsigned NumElems = InVT.getVectorNumElements();
10427   SDValue Undef = DAG.getUNDEF(InVT);
10428
10429   SmallVector<int,8> ShufMask1(NumElems, -1);
10430   for (unsigned i = 0; i != NumElems/2; ++i)
10431     ShufMask1[i] = i;
10432
10433   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10434
10435   SmallVector<int,8> ShufMask2(NumElems, -1);
10436   for (unsigned i = 0; i != NumElems/2; ++i)
10437     ShufMask2[i] = i + NumElems/2;
10438
10439   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10440
10441   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10442                                 VT.getVectorNumElements()/2);
10443
10444   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10445   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10446
10447   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10448 }
10449
10450 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10451 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10452 // from the AND / OR.
10453 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10454   Opc = Op.getOpcode();
10455   if (Opc != ISD::OR && Opc != ISD::AND)
10456     return false;
10457   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10458           Op.getOperand(0).hasOneUse() &&
10459           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10460           Op.getOperand(1).hasOneUse());
10461 }
10462
10463 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10464 // 1 and that the SETCC node has a single use.
10465 static bool isXor1OfSetCC(SDValue Op) {
10466   if (Op.getOpcode() != ISD::XOR)
10467     return false;
10468   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10469   if (N1C && N1C->getAPIntValue() == 1) {
10470     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10471       Op.getOperand(0).hasOneUse();
10472   }
10473   return false;
10474 }
10475
10476 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10477   bool addTest = true;
10478   SDValue Chain = Op.getOperand(0);
10479   SDValue Cond  = Op.getOperand(1);
10480   SDValue Dest  = Op.getOperand(2);
10481   SDLoc dl(Op);
10482   SDValue CC;
10483   bool Inverted = false;
10484
10485   if (Cond.getOpcode() == ISD::SETCC) {
10486     // Check for setcc([su]{add,sub,mul}o == 0).
10487     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10488         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10489         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10490         Cond.getOperand(0).getResNo() == 1 &&
10491         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10492          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10493          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10494          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10495          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10496          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10497       Inverted = true;
10498       Cond = Cond.getOperand(0);
10499     } else {
10500       SDValue NewCond = LowerSETCC(Cond, DAG);
10501       if (NewCond.getNode())
10502         Cond = NewCond;
10503     }
10504   }
10505 #if 0
10506   // FIXME: LowerXALUO doesn't handle these!!
10507   else if (Cond.getOpcode() == X86ISD::ADD  ||
10508            Cond.getOpcode() == X86ISD::SUB  ||
10509            Cond.getOpcode() == X86ISD::SMUL ||
10510            Cond.getOpcode() == X86ISD::UMUL)
10511     Cond = LowerXALUO(Cond, DAG);
10512 #endif
10513
10514   // Look pass (and (setcc_carry (cmp ...)), 1).
10515   if (Cond.getOpcode() == ISD::AND &&
10516       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10517     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10518     if (C && C->getAPIntValue() == 1)
10519       Cond = Cond.getOperand(0);
10520   }
10521
10522   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10523   // setting operand in place of the X86ISD::SETCC.
10524   unsigned CondOpcode = Cond.getOpcode();
10525   if (CondOpcode == X86ISD::SETCC ||
10526       CondOpcode == X86ISD::SETCC_CARRY) {
10527     CC = Cond.getOperand(0);
10528
10529     SDValue Cmp = Cond.getOperand(1);
10530     unsigned Opc = Cmp.getOpcode();
10531     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10532     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10533       Cond = Cmp;
10534       addTest = false;
10535     } else {
10536       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10537       default: break;
10538       case X86::COND_O:
10539       case X86::COND_B:
10540         // These can only come from an arithmetic instruction with overflow,
10541         // e.g. SADDO, UADDO.
10542         Cond = Cond.getNode()->getOperand(1);
10543         addTest = false;
10544         break;
10545       }
10546     }
10547   }
10548   CondOpcode = Cond.getOpcode();
10549   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10550       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10551       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10552        Cond.getOperand(0).getValueType() != MVT::i8)) {
10553     SDValue LHS = Cond.getOperand(0);
10554     SDValue RHS = Cond.getOperand(1);
10555     unsigned X86Opcode;
10556     unsigned X86Cond;
10557     SDVTList VTs;
10558     switch (CondOpcode) {
10559     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10560     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10561     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10562     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10563     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10564     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10565     default: llvm_unreachable("unexpected overflowing operator");
10566     }
10567     if (Inverted)
10568       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10569     if (CondOpcode == ISD::UMULO)
10570       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10571                           MVT::i32);
10572     else
10573       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10574
10575     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10576
10577     if (CondOpcode == ISD::UMULO)
10578       Cond = X86Op.getValue(2);
10579     else
10580       Cond = X86Op.getValue(1);
10581
10582     CC = DAG.getConstant(X86Cond, MVT::i8);
10583     addTest = false;
10584   } else {
10585     unsigned CondOpc;
10586     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10587       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10588       if (CondOpc == ISD::OR) {
10589         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10590         // two branches instead of an explicit OR instruction with a
10591         // separate test.
10592         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10593             isX86LogicalCmp(Cmp)) {
10594           CC = Cond.getOperand(0).getOperand(0);
10595           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10596                               Chain, Dest, CC, Cmp);
10597           CC = Cond.getOperand(1).getOperand(0);
10598           Cond = Cmp;
10599           addTest = false;
10600         }
10601       } else { // ISD::AND
10602         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10603         // two branches instead of an explicit AND instruction with a
10604         // separate test. However, we only do this if this block doesn't
10605         // have a fall-through edge, because this requires an explicit
10606         // jmp when the condition is false.
10607         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10608             isX86LogicalCmp(Cmp) &&
10609             Op.getNode()->hasOneUse()) {
10610           X86::CondCode CCode =
10611             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10612           CCode = X86::GetOppositeBranchCondition(CCode);
10613           CC = DAG.getConstant(CCode, MVT::i8);
10614           SDNode *User = *Op.getNode()->use_begin();
10615           // Look for an unconditional branch following this conditional branch.
10616           // We need this because we need to reverse the successors in order
10617           // to implement FCMP_OEQ.
10618           if (User->getOpcode() == ISD::BR) {
10619             SDValue FalseBB = User->getOperand(1);
10620             SDNode *NewBR =
10621               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10622             assert(NewBR == User);
10623             (void)NewBR;
10624             Dest = FalseBB;
10625
10626             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10627                                 Chain, Dest, CC, Cmp);
10628             X86::CondCode CCode =
10629               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10630             CCode = X86::GetOppositeBranchCondition(CCode);
10631             CC = DAG.getConstant(CCode, MVT::i8);
10632             Cond = Cmp;
10633             addTest = false;
10634           }
10635         }
10636       }
10637     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10638       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10639       // It should be transformed during dag combiner except when the condition
10640       // is set by a arithmetics with overflow node.
10641       X86::CondCode CCode =
10642         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10643       CCode = X86::GetOppositeBranchCondition(CCode);
10644       CC = DAG.getConstant(CCode, MVT::i8);
10645       Cond = Cond.getOperand(0).getOperand(1);
10646       addTest = false;
10647     } else if (Cond.getOpcode() == ISD::SETCC &&
10648                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10649       // For FCMP_OEQ, we can emit
10650       // two branches instead of an explicit AND instruction with a
10651       // separate test. However, we only do this if this block doesn't
10652       // have a fall-through edge, because this requires an explicit
10653       // jmp when the condition is false.
10654       if (Op.getNode()->hasOneUse()) {
10655         SDNode *User = *Op.getNode()->use_begin();
10656         // Look for an unconditional branch following this conditional branch.
10657         // We need this because we need to reverse the successors in order
10658         // to implement FCMP_OEQ.
10659         if (User->getOpcode() == ISD::BR) {
10660           SDValue FalseBB = User->getOperand(1);
10661           SDNode *NewBR =
10662             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10663           assert(NewBR == User);
10664           (void)NewBR;
10665           Dest = FalseBB;
10666
10667           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10668                                     Cond.getOperand(0), Cond.getOperand(1));
10669           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10670           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10671           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10672                               Chain, Dest, CC, Cmp);
10673           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10674           Cond = Cmp;
10675           addTest = false;
10676         }
10677       }
10678     } else if (Cond.getOpcode() == ISD::SETCC &&
10679                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10680       // For FCMP_UNE, we can emit
10681       // two branches instead of an explicit AND instruction with a
10682       // separate test. However, we only do this if this block doesn't
10683       // have a fall-through edge, because this requires an explicit
10684       // jmp when the condition is false.
10685       if (Op.getNode()->hasOneUse()) {
10686         SDNode *User = *Op.getNode()->use_begin();
10687         // Look for an unconditional branch following this conditional branch.
10688         // We need this because we need to reverse the successors in order
10689         // to implement FCMP_UNE.
10690         if (User->getOpcode() == ISD::BR) {
10691           SDValue FalseBB = User->getOperand(1);
10692           SDNode *NewBR =
10693             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10694           assert(NewBR == User);
10695           (void)NewBR;
10696
10697           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10698                                     Cond.getOperand(0), Cond.getOperand(1));
10699           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10700           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10701           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10702                               Chain, Dest, CC, Cmp);
10703           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10704           Cond = Cmp;
10705           addTest = false;
10706           Dest = FalseBB;
10707         }
10708       }
10709     }
10710   }
10711
10712   if (addTest) {
10713     // Look pass the truncate if the high bits are known zero.
10714     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10715         Cond = Cond.getOperand(0);
10716
10717     // We know the result of AND is compared against zero. Try to match
10718     // it to BT.
10719     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10720       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10721       if (NewSetCC.getNode()) {
10722         CC = NewSetCC.getOperand(0);
10723         Cond = NewSetCC.getOperand(1);
10724         addTest = false;
10725       }
10726     }
10727   }
10728
10729   if (addTest) {
10730     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10731     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10732   }
10733   Cond = ConvertCmpIfNecessary(Cond, DAG);
10734   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10735                      Chain, Dest, CC, Cond);
10736 }
10737
10738 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10739 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10740 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10741 // that the guard pages used by the OS virtual memory manager are allocated in
10742 // correct sequence.
10743 SDValue
10744 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10745                                            SelectionDAG &DAG) const {
10746   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10747           getTargetMachine().Options.EnableSegmentedStacks) &&
10748          "This should be used only on Windows targets or when segmented stacks "
10749          "are being used");
10750   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10751   SDLoc dl(Op);
10752
10753   // Get the inputs.
10754   SDValue Chain = Op.getOperand(0);
10755   SDValue Size  = Op.getOperand(1);
10756   // FIXME: Ensure alignment here
10757
10758   bool Is64Bit = Subtarget->is64Bit();
10759   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10760
10761   if (getTargetMachine().Options.EnableSegmentedStacks) {
10762     MachineFunction &MF = DAG.getMachineFunction();
10763     MachineRegisterInfo &MRI = MF.getRegInfo();
10764
10765     if (Is64Bit) {
10766       // The 64 bit implementation of segmented stacks needs to clobber both r10
10767       // r11. This makes it impossible to use it along with nested parameters.
10768       const Function *F = MF.getFunction();
10769
10770       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10771            I != E; ++I)
10772         if (I->hasNestAttr())
10773           report_fatal_error("Cannot use segmented stacks with functions that "
10774                              "have nested arguments.");
10775     }
10776
10777     const TargetRegisterClass *AddrRegClass =
10778       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10779     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10780     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10781     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10782                                 DAG.getRegister(Vreg, SPTy));
10783     SDValue Ops1[2] = { Value, Chain };
10784     return DAG.getMergeValues(Ops1, 2, dl);
10785   } else {
10786     SDValue Flag;
10787     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10788
10789     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10790     Flag = Chain.getValue(1);
10791     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10792
10793     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10794     Flag = Chain.getValue(1);
10795
10796     const X86RegisterInfo *RegInfo =
10797       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10798     Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
10799                                SPTy).getValue(1);
10800
10801     SDValue Ops1[2] = { Chain.getValue(0), Chain };
10802     return DAG.getMergeValues(Ops1, 2, dl);
10803   }
10804 }
10805
10806 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10807   MachineFunction &MF = DAG.getMachineFunction();
10808   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10809
10810   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10811   SDLoc DL(Op);
10812
10813   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10814     // vastart just stores the address of the VarArgsFrameIndex slot into the
10815     // memory location argument.
10816     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10817                                    getPointerTy());
10818     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10819                         MachinePointerInfo(SV), false, false, 0);
10820   }
10821
10822   // __va_list_tag:
10823   //   gp_offset         (0 - 6 * 8)
10824   //   fp_offset         (48 - 48 + 8 * 16)
10825   //   overflow_arg_area (point to parameters coming in memory).
10826   //   reg_save_area
10827   SmallVector<SDValue, 8> MemOps;
10828   SDValue FIN = Op.getOperand(1);
10829   // Store gp_offset
10830   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10831                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10832                                                MVT::i32),
10833                                FIN, MachinePointerInfo(SV), false, false, 0);
10834   MemOps.push_back(Store);
10835
10836   // Store fp_offset
10837   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10838                     FIN, DAG.getIntPtrConstant(4));
10839   Store = DAG.getStore(Op.getOperand(0), DL,
10840                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10841                                        MVT::i32),
10842                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10843   MemOps.push_back(Store);
10844
10845   // Store ptr to overflow_arg_area
10846   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10847                     FIN, DAG.getIntPtrConstant(4));
10848   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10849                                     getPointerTy());
10850   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10851                        MachinePointerInfo(SV, 8),
10852                        false, false, 0);
10853   MemOps.push_back(Store);
10854
10855   // Store ptr to reg_save_area.
10856   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10857                     FIN, DAG.getIntPtrConstant(8));
10858   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10859                                     getPointerTy());
10860   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10861                        MachinePointerInfo(SV, 16), false, false, 0);
10862   MemOps.push_back(Store);
10863   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10864                      &MemOps[0], MemOps.size());
10865 }
10866
10867 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10868   assert(Subtarget->is64Bit() &&
10869          "LowerVAARG only handles 64-bit va_arg!");
10870   assert((Subtarget->isTargetLinux() ||
10871           Subtarget->isTargetDarwin()) &&
10872           "Unhandled target in LowerVAARG");
10873   assert(Op.getNode()->getNumOperands() == 4);
10874   SDValue Chain = Op.getOperand(0);
10875   SDValue SrcPtr = Op.getOperand(1);
10876   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10877   unsigned Align = Op.getConstantOperandVal(3);
10878   SDLoc dl(Op);
10879
10880   EVT ArgVT = Op.getNode()->getValueType(0);
10881   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10882   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10883   uint8_t ArgMode;
10884
10885   // Decide which area this value should be read from.
10886   // TODO: Implement the AMD64 ABI in its entirety. This simple
10887   // selection mechanism works only for the basic types.
10888   if (ArgVT == MVT::f80) {
10889     llvm_unreachable("va_arg for f80 not yet implemented");
10890   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10891     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10892   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10893     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10894   } else {
10895     llvm_unreachable("Unhandled argument type in LowerVAARG");
10896   }
10897
10898   if (ArgMode == 2) {
10899     // Sanity Check: Make sure using fp_offset makes sense.
10900     assert(!getTargetMachine().Options.UseSoftFloat &&
10901            !(DAG.getMachineFunction()
10902                 .getFunction()->getAttributes()
10903                 .hasAttribute(AttributeSet::FunctionIndex,
10904                               Attribute::NoImplicitFloat)) &&
10905            Subtarget->hasSSE1());
10906   }
10907
10908   // Insert VAARG_64 node into the DAG
10909   // VAARG_64 returns two values: Variable Argument Address, Chain
10910   SmallVector<SDValue, 11> InstOps;
10911   InstOps.push_back(Chain);
10912   InstOps.push_back(SrcPtr);
10913   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10914   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10915   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10916   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10917   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10918                                           VTs, &InstOps[0], InstOps.size(),
10919                                           MVT::i64,
10920                                           MachinePointerInfo(SV),
10921                                           /*Align=*/0,
10922                                           /*Volatile=*/false,
10923                                           /*ReadMem=*/true,
10924                                           /*WriteMem=*/true);
10925   Chain = VAARG.getValue(1);
10926
10927   // Load the next argument and return it
10928   return DAG.getLoad(ArgVT, dl,
10929                      Chain,
10930                      VAARG,
10931                      MachinePointerInfo(),
10932                      false, false, false, 0);
10933 }
10934
10935 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10936                            SelectionDAG &DAG) {
10937   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10938   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10939   SDValue Chain = Op.getOperand(0);
10940   SDValue DstPtr = Op.getOperand(1);
10941   SDValue SrcPtr = Op.getOperand(2);
10942   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10943   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10944   SDLoc DL(Op);
10945
10946   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10947                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10948                        false,
10949                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10950 }
10951
10952 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10953 // may or may not be a constant. Takes immediate version of shift as input.
10954 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10955                                    SDValue SrcOp, SDValue ShAmt,
10956                                    SelectionDAG &DAG) {
10957   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10958
10959   if (isa<ConstantSDNode>(ShAmt)) {
10960     // Constant may be a TargetConstant. Use a regular constant.
10961     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
10962     switch (Opc) {
10963       default: llvm_unreachable("Unknown target vector shift node");
10964       case X86ISD::VSHLI:
10965       case X86ISD::VSRLI:
10966       case X86ISD::VSRAI:
10967         return DAG.getNode(Opc, dl, VT, SrcOp,
10968                            DAG.getConstant(ShiftAmt, MVT::i32));
10969     }
10970   }
10971
10972   // Change opcode to non-immediate version
10973   switch (Opc) {
10974     default: llvm_unreachable("Unknown target vector shift node");
10975     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10976     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10977     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10978   }
10979
10980   // Need to build a vector containing shift amount
10981   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10982   SDValue ShOps[4];
10983   ShOps[0] = ShAmt;
10984   ShOps[1] = DAG.getConstant(0, MVT::i32);
10985   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10986   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10987
10988   // The return type has to be a 128-bit type with the same element
10989   // type as the input type.
10990   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10991   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10992
10993   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
10994   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10995 }
10996
10997 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
10998   SDLoc dl(Op);
10999   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11000   switch (IntNo) {
11001   default: return SDValue();    // Don't custom lower most intrinsics.
11002   // Comparison intrinsics.
11003   case Intrinsic::x86_sse_comieq_ss:
11004   case Intrinsic::x86_sse_comilt_ss:
11005   case Intrinsic::x86_sse_comile_ss:
11006   case Intrinsic::x86_sse_comigt_ss:
11007   case Intrinsic::x86_sse_comige_ss:
11008   case Intrinsic::x86_sse_comineq_ss:
11009   case Intrinsic::x86_sse_ucomieq_ss:
11010   case Intrinsic::x86_sse_ucomilt_ss:
11011   case Intrinsic::x86_sse_ucomile_ss:
11012   case Intrinsic::x86_sse_ucomigt_ss:
11013   case Intrinsic::x86_sse_ucomige_ss:
11014   case Intrinsic::x86_sse_ucomineq_ss:
11015   case Intrinsic::x86_sse2_comieq_sd:
11016   case Intrinsic::x86_sse2_comilt_sd:
11017   case Intrinsic::x86_sse2_comile_sd:
11018   case Intrinsic::x86_sse2_comigt_sd:
11019   case Intrinsic::x86_sse2_comige_sd:
11020   case Intrinsic::x86_sse2_comineq_sd:
11021   case Intrinsic::x86_sse2_ucomieq_sd:
11022   case Intrinsic::x86_sse2_ucomilt_sd:
11023   case Intrinsic::x86_sse2_ucomile_sd:
11024   case Intrinsic::x86_sse2_ucomigt_sd:
11025   case Intrinsic::x86_sse2_ucomige_sd:
11026   case Intrinsic::x86_sse2_ucomineq_sd: {
11027     unsigned Opc;
11028     ISD::CondCode CC;
11029     switch (IntNo) {
11030     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11031     case Intrinsic::x86_sse_comieq_ss:
11032     case Intrinsic::x86_sse2_comieq_sd:
11033       Opc = X86ISD::COMI;
11034       CC = ISD::SETEQ;
11035       break;
11036     case Intrinsic::x86_sse_comilt_ss:
11037     case Intrinsic::x86_sse2_comilt_sd:
11038       Opc = X86ISD::COMI;
11039       CC = ISD::SETLT;
11040       break;
11041     case Intrinsic::x86_sse_comile_ss:
11042     case Intrinsic::x86_sse2_comile_sd:
11043       Opc = X86ISD::COMI;
11044       CC = ISD::SETLE;
11045       break;
11046     case Intrinsic::x86_sse_comigt_ss:
11047     case Intrinsic::x86_sse2_comigt_sd:
11048       Opc = X86ISD::COMI;
11049       CC = ISD::SETGT;
11050       break;
11051     case Intrinsic::x86_sse_comige_ss:
11052     case Intrinsic::x86_sse2_comige_sd:
11053       Opc = X86ISD::COMI;
11054       CC = ISD::SETGE;
11055       break;
11056     case Intrinsic::x86_sse_comineq_ss:
11057     case Intrinsic::x86_sse2_comineq_sd:
11058       Opc = X86ISD::COMI;
11059       CC = ISD::SETNE;
11060       break;
11061     case Intrinsic::x86_sse_ucomieq_ss:
11062     case Intrinsic::x86_sse2_ucomieq_sd:
11063       Opc = X86ISD::UCOMI;
11064       CC = ISD::SETEQ;
11065       break;
11066     case Intrinsic::x86_sse_ucomilt_ss:
11067     case Intrinsic::x86_sse2_ucomilt_sd:
11068       Opc = X86ISD::UCOMI;
11069       CC = ISD::SETLT;
11070       break;
11071     case Intrinsic::x86_sse_ucomile_ss:
11072     case Intrinsic::x86_sse2_ucomile_sd:
11073       Opc = X86ISD::UCOMI;
11074       CC = ISD::SETLE;
11075       break;
11076     case Intrinsic::x86_sse_ucomigt_ss:
11077     case Intrinsic::x86_sse2_ucomigt_sd:
11078       Opc = X86ISD::UCOMI;
11079       CC = ISD::SETGT;
11080       break;
11081     case Intrinsic::x86_sse_ucomige_ss:
11082     case Intrinsic::x86_sse2_ucomige_sd:
11083       Opc = X86ISD::UCOMI;
11084       CC = ISD::SETGE;
11085       break;
11086     case Intrinsic::x86_sse_ucomineq_ss:
11087     case Intrinsic::x86_sse2_ucomineq_sd:
11088       Opc = X86ISD::UCOMI;
11089       CC = ISD::SETNE;
11090       break;
11091     }
11092
11093     SDValue LHS = Op.getOperand(1);
11094     SDValue RHS = Op.getOperand(2);
11095     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11096     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11097     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11098     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11099                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11100     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11101   }
11102
11103   // Arithmetic intrinsics.
11104   case Intrinsic::x86_sse2_pmulu_dq:
11105   case Intrinsic::x86_avx2_pmulu_dq:
11106     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11107                        Op.getOperand(1), Op.getOperand(2));
11108
11109   // SSE2/AVX2 sub with unsigned saturation intrinsics
11110   case Intrinsic::x86_sse2_psubus_b:
11111   case Intrinsic::x86_sse2_psubus_w:
11112   case Intrinsic::x86_avx2_psubus_b:
11113   case Intrinsic::x86_avx2_psubus_w:
11114     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11115                        Op.getOperand(1), Op.getOperand(2));
11116
11117   // SSE3/AVX horizontal add/sub intrinsics
11118   case Intrinsic::x86_sse3_hadd_ps:
11119   case Intrinsic::x86_sse3_hadd_pd:
11120   case Intrinsic::x86_avx_hadd_ps_256:
11121   case Intrinsic::x86_avx_hadd_pd_256:
11122   case Intrinsic::x86_sse3_hsub_ps:
11123   case Intrinsic::x86_sse3_hsub_pd:
11124   case Intrinsic::x86_avx_hsub_ps_256:
11125   case Intrinsic::x86_avx_hsub_pd_256:
11126   case Intrinsic::x86_ssse3_phadd_w_128:
11127   case Intrinsic::x86_ssse3_phadd_d_128:
11128   case Intrinsic::x86_avx2_phadd_w:
11129   case Intrinsic::x86_avx2_phadd_d:
11130   case Intrinsic::x86_ssse3_phsub_w_128:
11131   case Intrinsic::x86_ssse3_phsub_d_128:
11132   case Intrinsic::x86_avx2_phsub_w:
11133   case Intrinsic::x86_avx2_phsub_d: {
11134     unsigned Opcode;
11135     switch (IntNo) {
11136     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11137     case Intrinsic::x86_sse3_hadd_ps:
11138     case Intrinsic::x86_sse3_hadd_pd:
11139     case Intrinsic::x86_avx_hadd_ps_256:
11140     case Intrinsic::x86_avx_hadd_pd_256:
11141       Opcode = X86ISD::FHADD;
11142       break;
11143     case Intrinsic::x86_sse3_hsub_ps:
11144     case Intrinsic::x86_sse3_hsub_pd:
11145     case Intrinsic::x86_avx_hsub_ps_256:
11146     case Intrinsic::x86_avx_hsub_pd_256:
11147       Opcode = X86ISD::FHSUB;
11148       break;
11149     case Intrinsic::x86_ssse3_phadd_w_128:
11150     case Intrinsic::x86_ssse3_phadd_d_128:
11151     case Intrinsic::x86_avx2_phadd_w:
11152     case Intrinsic::x86_avx2_phadd_d:
11153       Opcode = X86ISD::HADD;
11154       break;
11155     case Intrinsic::x86_ssse3_phsub_w_128:
11156     case Intrinsic::x86_ssse3_phsub_d_128:
11157     case Intrinsic::x86_avx2_phsub_w:
11158     case Intrinsic::x86_avx2_phsub_d:
11159       Opcode = X86ISD::HSUB;
11160       break;
11161     }
11162     return DAG.getNode(Opcode, dl, Op.getValueType(),
11163                        Op.getOperand(1), Op.getOperand(2));
11164   }
11165
11166   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11167   case Intrinsic::x86_sse2_pmaxu_b:
11168   case Intrinsic::x86_sse41_pmaxuw:
11169   case Intrinsic::x86_sse41_pmaxud:
11170   case Intrinsic::x86_avx2_pmaxu_b:
11171   case Intrinsic::x86_avx2_pmaxu_w:
11172   case Intrinsic::x86_avx2_pmaxu_d:
11173   case Intrinsic::x86_sse2_pminu_b:
11174   case Intrinsic::x86_sse41_pminuw:
11175   case Intrinsic::x86_sse41_pminud:
11176   case Intrinsic::x86_avx2_pminu_b:
11177   case Intrinsic::x86_avx2_pminu_w:
11178   case Intrinsic::x86_avx2_pminu_d:
11179   case Intrinsic::x86_sse41_pmaxsb:
11180   case Intrinsic::x86_sse2_pmaxs_w:
11181   case Intrinsic::x86_sse41_pmaxsd:
11182   case Intrinsic::x86_avx2_pmaxs_b:
11183   case Intrinsic::x86_avx2_pmaxs_w:
11184   case Intrinsic::x86_avx2_pmaxs_d:
11185   case Intrinsic::x86_sse41_pminsb:
11186   case Intrinsic::x86_sse2_pmins_w:
11187   case Intrinsic::x86_sse41_pminsd:
11188   case Intrinsic::x86_avx2_pmins_b:
11189   case Intrinsic::x86_avx2_pmins_w:
11190   case Intrinsic::x86_avx2_pmins_d: {
11191     unsigned Opcode;
11192     switch (IntNo) {
11193     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11194     case Intrinsic::x86_sse2_pmaxu_b:
11195     case Intrinsic::x86_sse41_pmaxuw:
11196     case Intrinsic::x86_sse41_pmaxud:
11197     case Intrinsic::x86_avx2_pmaxu_b:
11198     case Intrinsic::x86_avx2_pmaxu_w:
11199     case Intrinsic::x86_avx2_pmaxu_d:
11200       Opcode = X86ISD::UMAX;
11201       break;
11202     case Intrinsic::x86_sse2_pminu_b:
11203     case Intrinsic::x86_sse41_pminuw:
11204     case Intrinsic::x86_sse41_pminud:
11205     case Intrinsic::x86_avx2_pminu_b:
11206     case Intrinsic::x86_avx2_pminu_w:
11207     case Intrinsic::x86_avx2_pminu_d:
11208       Opcode = X86ISD::UMIN;
11209       break;
11210     case Intrinsic::x86_sse41_pmaxsb:
11211     case Intrinsic::x86_sse2_pmaxs_w:
11212     case Intrinsic::x86_sse41_pmaxsd:
11213     case Intrinsic::x86_avx2_pmaxs_b:
11214     case Intrinsic::x86_avx2_pmaxs_w:
11215     case Intrinsic::x86_avx2_pmaxs_d:
11216       Opcode = X86ISD::SMAX;
11217       break;
11218     case Intrinsic::x86_sse41_pminsb:
11219     case Intrinsic::x86_sse2_pmins_w:
11220     case Intrinsic::x86_sse41_pminsd:
11221     case Intrinsic::x86_avx2_pmins_b:
11222     case Intrinsic::x86_avx2_pmins_w:
11223     case Intrinsic::x86_avx2_pmins_d:
11224       Opcode = X86ISD::SMIN;
11225       break;
11226     }
11227     return DAG.getNode(Opcode, dl, Op.getValueType(),
11228                        Op.getOperand(1), Op.getOperand(2));
11229   }
11230
11231   // SSE/SSE2/AVX floating point max/min intrinsics.
11232   case Intrinsic::x86_sse_max_ps:
11233   case Intrinsic::x86_sse2_max_pd:
11234   case Intrinsic::x86_avx_max_ps_256:
11235   case Intrinsic::x86_avx_max_pd_256:
11236   case Intrinsic::x86_avx512_max_ps_512:
11237   case Intrinsic::x86_avx512_max_pd_512:
11238   case Intrinsic::x86_sse_min_ps:
11239   case Intrinsic::x86_sse2_min_pd:
11240   case Intrinsic::x86_avx_min_ps_256:
11241   case Intrinsic::x86_avx_min_pd_256:
11242   case Intrinsic::x86_avx512_min_ps_512:
11243   case Intrinsic::x86_avx512_min_pd_512:  {
11244     unsigned Opcode;
11245     switch (IntNo) {
11246     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11247     case Intrinsic::x86_sse_max_ps:
11248     case Intrinsic::x86_sse2_max_pd:
11249     case Intrinsic::x86_avx_max_ps_256:
11250     case Intrinsic::x86_avx_max_pd_256:
11251     case Intrinsic::x86_avx512_max_ps_512:
11252     case Intrinsic::x86_avx512_max_pd_512:
11253       Opcode = X86ISD::FMAX;
11254       break;
11255     case Intrinsic::x86_sse_min_ps:
11256     case Intrinsic::x86_sse2_min_pd:
11257     case Intrinsic::x86_avx_min_ps_256:
11258     case Intrinsic::x86_avx_min_pd_256:
11259     case Intrinsic::x86_avx512_min_ps_512:
11260     case Intrinsic::x86_avx512_min_pd_512:
11261       Opcode = X86ISD::FMIN;
11262       break;
11263     }
11264     return DAG.getNode(Opcode, dl, Op.getValueType(),
11265                        Op.getOperand(1), Op.getOperand(2));
11266   }
11267
11268   // AVX2 variable shift intrinsics
11269   case Intrinsic::x86_avx2_psllv_d:
11270   case Intrinsic::x86_avx2_psllv_q:
11271   case Intrinsic::x86_avx2_psllv_d_256:
11272   case Intrinsic::x86_avx2_psllv_q_256:
11273   case Intrinsic::x86_avx2_psrlv_d:
11274   case Intrinsic::x86_avx2_psrlv_q:
11275   case Intrinsic::x86_avx2_psrlv_d_256:
11276   case Intrinsic::x86_avx2_psrlv_q_256:
11277   case Intrinsic::x86_avx2_psrav_d:
11278   case Intrinsic::x86_avx2_psrav_d_256: {
11279     unsigned Opcode;
11280     switch (IntNo) {
11281     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11282     case Intrinsic::x86_avx2_psllv_d:
11283     case Intrinsic::x86_avx2_psllv_q:
11284     case Intrinsic::x86_avx2_psllv_d_256:
11285     case Intrinsic::x86_avx2_psllv_q_256:
11286       Opcode = ISD::SHL;
11287       break;
11288     case Intrinsic::x86_avx2_psrlv_d:
11289     case Intrinsic::x86_avx2_psrlv_q:
11290     case Intrinsic::x86_avx2_psrlv_d_256:
11291     case Intrinsic::x86_avx2_psrlv_q_256:
11292       Opcode = ISD::SRL;
11293       break;
11294     case Intrinsic::x86_avx2_psrav_d:
11295     case Intrinsic::x86_avx2_psrav_d_256:
11296       Opcode = ISD::SRA;
11297       break;
11298     }
11299     return DAG.getNode(Opcode, dl, Op.getValueType(),
11300                        Op.getOperand(1), Op.getOperand(2));
11301   }
11302
11303   case Intrinsic::x86_ssse3_pshuf_b_128:
11304   case Intrinsic::x86_avx2_pshuf_b:
11305     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11306                        Op.getOperand(1), Op.getOperand(2));
11307
11308   case Intrinsic::x86_ssse3_psign_b_128:
11309   case Intrinsic::x86_ssse3_psign_w_128:
11310   case Intrinsic::x86_ssse3_psign_d_128:
11311   case Intrinsic::x86_avx2_psign_b:
11312   case Intrinsic::x86_avx2_psign_w:
11313   case Intrinsic::x86_avx2_psign_d:
11314     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11315                        Op.getOperand(1), Op.getOperand(2));
11316
11317   case Intrinsic::x86_sse41_insertps:
11318     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11319                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11320
11321   case Intrinsic::x86_avx_vperm2f128_ps_256:
11322   case Intrinsic::x86_avx_vperm2f128_pd_256:
11323   case Intrinsic::x86_avx_vperm2f128_si_256:
11324   case Intrinsic::x86_avx2_vperm2i128:
11325     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11326                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11327
11328   case Intrinsic::x86_avx2_permd:
11329   case Intrinsic::x86_avx2_permps:
11330     // Operands intentionally swapped. Mask is last operand to intrinsic,
11331     // but second operand for node/intruction.
11332     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11333                        Op.getOperand(2), Op.getOperand(1));
11334
11335   case Intrinsic::x86_sse_sqrt_ps:
11336   case Intrinsic::x86_sse2_sqrt_pd:
11337   case Intrinsic::x86_avx_sqrt_ps_256:
11338   case Intrinsic::x86_avx_sqrt_pd_256:
11339     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11340
11341   // ptest and testp intrinsics. The intrinsic these come from are designed to
11342   // return an integer value, not just an instruction so lower it to the ptest
11343   // or testp pattern and a setcc for the result.
11344   case Intrinsic::x86_sse41_ptestz:
11345   case Intrinsic::x86_sse41_ptestc:
11346   case Intrinsic::x86_sse41_ptestnzc:
11347   case Intrinsic::x86_avx_ptestz_256:
11348   case Intrinsic::x86_avx_ptestc_256:
11349   case Intrinsic::x86_avx_ptestnzc_256:
11350   case Intrinsic::x86_avx_vtestz_ps:
11351   case Intrinsic::x86_avx_vtestc_ps:
11352   case Intrinsic::x86_avx_vtestnzc_ps:
11353   case Intrinsic::x86_avx_vtestz_pd:
11354   case Intrinsic::x86_avx_vtestc_pd:
11355   case Intrinsic::x86_avx_vtestnzc_pd:
11356   case Intrinsic::x86_avx_vtestz_ps_256:
11357   case Intrinsic::x86_avx_vtestc_ps_256:
11358   case Intrinsic::x86_avx_vtestnzc_ps_256:
11359   case Intrinsic::x86_avx_vtestz_pd_256:
11360   case Intrinsic::x86_avx_vtestc_pd_256:
11361   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11362     bool IsTestPacked = false;
11363     unsigned X86CC;
11364     switch (IntNo) {
11365     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11366     case Intrinsic::x86_avx_vtestz_ps:
11367     case Intrinsic::x86_avx_vtestz_pd:
11368     case Intrinsic::x86_avx_vtestz_ps_256:
11369     case Intrinsic::x86_avx_vtestz_pd_256:
11370       IsTestPacked = true; // Fallthrough
11371     case Intrinsic::x86_sse41_ptestz:
11372     case Intrinsic::x86_avx_ptestz_256:
11373       // ZF = 1
11374       X86CC = X86::COND_E;
11375       break;
11376     case Intrinsic::x86_avx_vtestc_ps:
11377     case Intrinsic::x86_avx_vtestc_pd:
11378     case Intrinsic::x86_avx_vtestc_ps_256:
11379     case Intrinsic::x86_avx_vtestc_pd_256:
11380       IsTestPacked = true; // Fallthrough
11381     case Intrinsic::x86_sse41_ptestc:
11382     case Intrinsic::x86_avx_ptestc_256:
11383       // CF = 1
11384       X86CC = X86::COND_B;
11385       break;
11386     case Intrinsic::x86_avx_vtestnzc_ps:
11387     case Intrinsic::x86_avx_vtestnzc_pd:
11388     case Intrinsic::x86_avx_vtestnzc_ps_256:
11389     case Intrinsic::x86_avx_vtestnzc_pd_256:
11390       IsTestPacked = true; // Fallthrough
11391     case Intrinsic::x86_sse41_ptestnzc:
11392     case Intrinsic::x86_avx_ptestnzc_256:
11393       // ZF and CF = 0
11394       X86CC = X86::COND_A;
11395       break;
11396     }
11397
11398     SDValue LHS = Op.getOperand(1);
11399     SDValue RHS = Op.getOperand(2);
11400     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11401     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11402     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11403     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11404     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11405   }
11406   case Intrinsic::x86_avx512_kortestz:
11407   case Intrinsic::x86_avx512_kortestc: {
11408     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11409     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11410     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11411     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11412     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11413     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11414     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11415   }
11416
11417   // SSE/AVX shift intrinsics
11418   case Intrinsic::x86_sse2_psll_w:
11419   case Intrinsic::x86_sse2_psll_d:
11420   case Intrinsic::x86_sse2_psll_q:
11421   case Intrinsic::x86_avx2_psll_w:
11422   case Intrinsic::x86_avx2_psll_d:
11423   case Intrinsic::x86_avx2_psll_q:
11424   case Intrinsic::x86_sse2_psrl_w:
11425   case Intrinsic::x86_sse2_psrl_d:
11426   case Intrinsic::x86_sse2_psrl_q:
11427   case Intrinsic::x86_avx2_psrl_w:
11428   case Intrinsic::x86_avx2_psrl_d:
11429   case Intrinsic::x86_avx2_psrl_q:
11430   case Intrinsic::x86_sse2_psra_w:
11431   case Intrinsic::x86_sse2_psra_d:
11432   case Intrinsic::x86_avx2_psra_w:
11433   case Intrinsic::x86_avx2_psra_d: {
11434     unsigned Opcode;
11435     switch (IntNo) {
11436     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11437     case Intrinsic::x86_sse2_psll_w:
11438     case Intrinsic::x86_sse2_psll_d:
11439     case Intrinsic::x86_sse2_psll_q:
11440     case Intrinsic::x86_avx2_psll_w:
11441     case Intrinsic::x86_avx2_psll_d:
11442     case Intrinsic::x86_avx2_psll_q:
11443       Opcode = X86ISD::VSHL;
11444       break;
11445     case Intrinsic::x86_sse2_psrl_w:
11446     case Intrinsic::x86_sse2_psrl_d:
11447     case Intrinsic::x86_sse2_psrl_q:
11448     case Intrinsic::x86_avx2_psrl_w:
11449     case Intrinsic::x86_avx2_psrl_d:
11450     case Intrinsic::x86_avx2_psrl_q:
11451       Opcode = X86ISD::VSRL;
11452       break;
11453     case Intrinsic::x86_sse2_psra_w:
11454     case Intrinsic::x86_sse2_psra_d:
11455     case Intrinsic::x86_avx2_psra_w:
11456     case Intrinsic::x86_avx2_psra_d:
11457       Opcode = X86ISD::VSRA;
11458       break;
11459     }
11460     return DAG.getNode(Opcode, dl, Op.getValueType(),
11461                        Op.getOperand(1), Op.getOperand(2));
11462   }
11463
11464   // SSE/AVX immediate shift intrinsics
11465   case Intrinsic::x86_sse2_pslli_w:
11466   case Intrinsic::x86_sse2_pslli_d:
11467   case Intrinsic::x86_sse2_pslli_q:
11468   case Intrinsic::x86_avx2_pslli_w:
11469   case Intrinsic::x86_avx2_pslli_d:
11470   case Intrinsic::x86_avx2_pslli_q:
11471   case Intrinsic::x86_sse2_psrli_w:
11472   case Intrinsic::x86_sse2_psrli_d:
11473   case Intrinsic::x86_sse2_psrli_q:
11474   case Intrinsic::x86_avx2_psrli_w:
11475   case Intrinsic::x86_avx2_psrli_d:
11476   case Intrinsic::x86_avx2_psrli_q:
11477   case Intrinsic::x86_sse2_psrai_w:
11478   case Intrinsic::x86_sse2_psrai_d:
11479   case Intrinsic::x86_avx2_psrai_w:
11480   case Intrinsic::x86_avx2_psrai_d: {
11481     unsigned Opcode;
11482     switch (IntNo) {
11483     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11484     case Intrinsic::x86_sse2_pslli_w:
11485     case Intrinsic::x86_sse2_pslli_d:
11486     case Intrinsic::x86_sse2_pslli_q:
11487     case Intrinsic::x86_avx2_pslli_w:
11488     case Intrinsic::x86_avx2_pslli_d:
11489     case Intrinsic::x86_avx2_pslli_q:
11490       Opcode = X86ISD::VSHLI;
11491       break;
11492     case Intrinsic::x86_sse2_psrli_w:
11493     case Intrinsic::x86_sse2_psrli_d:
11494     case Intrinsic::x86_sse2_psrli_q:
11495     case Intrinsic::x86_avx2_psrli_w:
11496     case Intrinsic::x86_avx2_psrli_d:
11497     case Intrinsic::x86_avx2_psrli_q:
11498       Opcode = X86ISD::VSRLI;
11499       break;
11500     case Intrinsic::x86_sse2_psrai_w:
11501     case Intrinsic::x86_sse2_psrai_d:
11502     case Intrinsic::x86_avx2_psrai_w:
11503     case Intrinsic::x86_avx2_psrai_d:
11504       Opcode = X86ISD::VSRAI;
11505       break;
11506     }
11507     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11508                                Op.getOperand(1), Op.getOperand(2), DAG);
11509   }
11510
11511   case Intrinsic::x86_sse42_pcmpistria128:
11512   case Intrinsic::x86_sse42_pcmpestria128:
11513   case Intrinsic::x86_sse42_pcmpistric128:
11514   case Intrinsic::x86_sse42_pcmpestric128:
11515   case Intrinsic::x86_sse42_pcmpistrio128:
11516   case Intrinsic::x86_sse42_pcmpestrio128:
11517   case Intrinsic::x86_sse42_pcmpistris128:
11518   case Intrinsic::x86_sse42_pcmpestris128:
11519   case Intrinsic::x86_sse42_pcmpistriz128:
11520   case Intrinsic::x86_sse42_pcmpestriz128: {
11521     unsigned Opcode;
11522     unsigned X86CC;
11523     switch (IntNo) {
11524     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11525     case Intrinsic::x86_sse42_pcmpistria128:
11526       Opcode = X86ISD::PCMPISTRI;
11527       X86CC = X86::COND_A;
11528       break;
11529     case Intrinsic::x86_sse42_pcmpestria128:
11530       Opcode = X86ISD::PCMPESTRI;
11531       X86CC = X86::COND_A;
11532       break;
11533     case Intrinsic::x86_sse42_pcmpistric128:
11534       Opcode = X86ISD::PCMPISTRI;
11535       X86CC = X86::COND_B;
11536       break;
11537     case Intrinsic::x86_sse42_pcmpestric128:
11538       Opcode = X86ISD::PCMPESTRI;
11539       X86CC = X86::COND_B;
11540       break;
11541     case Intrinsic::x86_sse42_pcmpistrio128:
11542       Opcode = X86ISD::PCMPISTRI;
11543       X86CC = X86::COND_O;
11544       break;
11545     case Intrinsic::x86_sse42_pcmpestrio128:
11546       Opcode = X86ISD::PCMPESTRI;
11547       X86CC = X86::COND_O;
11548       break;
11549     case Intrinsic::x86_sse42_pcmpistris128:
11550       Opcode = X86ISD::PCMPISTRI;
11551       X86CC = X86::COND_S;
11552       break;
11553     case Intrinsic::x86_sse42_pcmpestris128:
11554       Opcode = X86ISD::PCMPESTRI;
11555       X86CC = X86::COND_S;
11556       break;
11557     case Intrinsic::x86_sse42_pcmpistriz128:
11558       Opcode = X86ISD::PCMPISTRI;
11559       X86CC = X86::COND_E;
11560       break;
11561     case Intrinsic::x86_sse42_pcmpestriz128:
11562       Opcode = X86ISD::PCMPESTRI;
11563       X86CC = X86::COND_E;
11564       break;
11565     }
11566     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11567     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11568     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11569     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11570                                 DAG.getConstant(X86CC, MVT::i8),
11571                                 SDValue(PCMP.getNode(), 1));
11572     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11573   }
11574
11575   case Intrinsic::x86_sse42_pcmpistri128:
11576   case Intrinsic::x86_sse42_pcmpestri128: {
11577     unsigned Opcode;
11578     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11579       Opcode = X86ISD::PCMPISTRI;
11580     else
11581       Opcode = X86ISD::PCMPESTRI;
11582
11583     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11584     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11585     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11586   }
11587   case Intrinsic::x86_fma_vfmadd_ps:
11588   case Intrinsic::x86_fma_vfmadd_pd:
11589   case Intrinsic::x86_fma_vfmsub_ps:
11590   case Intrinsic::x86_fma_vfmsub_pd:
11591   case Intrinsic::x86_fma_vfnmadd_ps:
11592   case Intrinsic::x86_fma_vfnmadd_pd:
11593   case Intrinsic::x86_fma_vfnmsub_ps:
11594   case Intrinsic::x86_fma_vfnmsub_pd:
11595   case Intrinsic::x86_fma_vfmaddsub_ps:
11596   case Intrinsic::x86_fma_vfmaddsub_pd:
11597   case Intrinsic::x86_fma_vfmsubadd_ps:
11598   case Intrinsic::x86_fma_vfmsubadd_pd:
11599   case Intrinsic::x86_fma_vfmadd_ps_256:
11600   case Intrinsic::x86_fma_vfmadd_pd_256:
11601   case Intrinsic::x86_fma_vfmsub_ps_256:
11602   case Intrinsic::x86_fma_vfmsub_pd_256:
11603   case Intrinsic::x86_fma_vfnmadd_ps_256:
11604   case Intrinsic::x86_fma_vfnmadd_pd_256:
11605   case Intrinsic::x86_fma_vfnmsub_ps_256:
11606   case Intrinsic::x86_fma_vfnmsub_pd_256:
11607   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11608   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11609   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11610   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11611     unsigned Opc;
11612     switch (IntNo) {
11613     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11614     case Intrinsic::x86_fma_vfmadd_ps:
11615     case Intrinsic::x86_fma_vfmadd_pd:
11616     case Intrinsic::x86_fma_vfmadd_ps_256:
11617     case Intrinsic::x86_fma_vfmadd_pd_256:
11618       Opc = X86ISD::FMADD;
11619       break;
11620     case Intrinsic::x86_fma_vfmsub_ps:
11621     case Intrinsic::x86_fma_vfmsub_pd:
11622     case Intrinsic::x86_fma_vfmsub_ps_256:
11623     case Intrinsic::x86_fma_vfmsub_pd_256:
11624       Opc = X86ISD::FMSUB;
11625       break;
11626     case Intrinsic::x86_fma_vfnmadd_ps:
11627     case Intrinsic::x86_fma_vfnmadd_pd:
11628     case Intrinsic::x86_fma_vfnmadd_ps_256:
11629     case Intrinsic::x86_fma_vfnmadd_pd_256:
11630       Opc = X86ISD::FNMADD;
11631       break;
11632     case Intrinsic::x86_fma_vfnmsub_ps:
11633     case Intrinsic::x86_fma_vfnmsub_pd:
11634     case Intrinsic::x86_fma_vfnmsub_ps_256:
11635     case Intrinsic::x86_fma_vfnmsub_pd_256:
11636       Opc = X86ISD::FNMSUB;
11637       break;
11638     case Intrinsic::x86_fma_vfmaddsub_ps:
11639     case Intrinsic::x86_fma_vfmaddsub_pd:
11640     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11641     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11642       Opc = X86ISD::FMADDSUB;
11643       break;
11644     case Intrinsic::x86_fma_vfmsubadd_ps:
11645     case Intrinsic::x86_fma_vfmsubadd_pd:
11646     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11647     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11648       Opc = X86ISD::FMSUBADD;
11649       break;
11650     }
11651
11652     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11653                        Op.getOperand(2), Op.getOperand(3));
11654   }
11655   }
11656 }
11657
11658 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11659                              SDValue Base, SDValue Index,
11660                              SDValue ScaleOp, SDValue Chain,
11661                              const X86Subtarget * Subtarget) {
11662   SDLoc dl(Op);
11663   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11664   assert(C && "Invalid scale type");
11665   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11666   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11667   EVT MaskVT = MVT::getVectorVT(MVT::i1, 
11668                                 Index.getValueType().getVectorNumElements());
11669   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11670   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11671   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11672   SDValue Segment = DAG.getRegister(0, MVT::i32);
11673   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11674   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11675   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11676   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11677 }
11678
11679 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11680                               SDValue Src, SDValue Mask, SDValue Base,
11681                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11682                               const X86Subtarget * Subtarget) {
11683   SDLoc dl(Op);
11684   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11685   assert(C && "Invalid scale type");
11686   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11687   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11688                                 Index.getValueType().getVectorNumElements());
11689   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11690   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11691   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11692   SDValue Segment = DAG.getRegister(0, MVT::i32);
11693   if (Src.getOpcode() == ISD::UNDEF)
11694     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11695   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11696   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11697   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11698   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11699 }
11700
11701 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11702                               SDValue Src, SDValue Base, SDValue Index,
11703                               SDValue ScaleOp, SDValue Chain) {
11704   SDLoc dl(Op);
11705   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11706   assert(C && "Invalid scale type");
11707   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11708   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11709   SDValue Segment = DAG.getRegister(0, MVT::i32);
11710   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11711                                 Index.getValueType().getVectorNumElements());
11712   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11713   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11714   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11715   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11716   return SDValue(Res, 1);
11717 }
11718
11719 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11720                                SDValue Src, SDValue Mask, SDValue Base,
11721                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11722   SDLoc dl(Op);
11723   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11724   assert(C && "Invalid scale type");
11725   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11726   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11727   SDValue Segment = DAG.getRegister(0, MVT::i32);
11728   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11729                                 Index.getValueType().getVectorNumElements());
11730   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11731   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11732   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11733   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11734   return SDValue(Res, 1);
11735 }
11736
11737 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11738                                       SelectionDAG &DAG) {
11739   SDLoc dl(Op);
11740   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11741   switch (IntNo) {
11742   default: return SDValue();    // Don't custom lower most intrinsics.
11743
11744   // RDRAND/RDSEED intrinsics.
11745   case Intrinsic::x86_rdrand_16:
11746   case Intrinsic::x86_rdrand_32:
11747   case Intrinsic::x86_rdrand_64:
11748   case Intrinsic::x86_rdseed_16:
11749   case Intrinsic::x86_rdseed_32:
11750   case Intrinsic::x86_rdseed_64: {
11751     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11752                        IntNo == Intrinsic::x86_rdseed_32 ||
11753                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11754                                                             X86ISD::RDRAND;
11755     // Emit the node with the right value type.
11756     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11757     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11758
11759     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11760     // Otherwise return the value from Rand, which is always 0, casted to i32.
11761     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11762                       DAG.getConstant(1, Op->getValueType(1)),
11763                       DAG.getConstant(X86::COND_B, MVT::i32),
11764                       SDValue(Result.getNode(), 1) };
11765     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11766                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11767                                   Ops, array_lengthof(Ops));
11768
11769     // Return { result, isValid, chain }.
11770     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11771                        SDValue(Result.getNode(), 2));
11772   }
11773   //int_gather(index, base, scale);
11774   case Intrinsic::x86_avx512_gather_qpd_512:
11775   case Intrinsic::x86_avx512_gather_qps_512:
11776   case Intrinsic::x86_avx512_gather_dpd_512:
11777   case Intrinsic::x86_avx512_gather_qpi_512:
11778   case Intrinsic::x86_avx512_gather_qpq_512:
11779   case Intrinsic::x86_avx512_gather_dpq_512:
11780   case Intrinsic::x86_avx512_gather_dps_512:
11781   case Intrinsic::x86_avx512_gather_dpi_512: {
11782     unsigned Opc;
11783     switch (IntNo) {
11784       default: llvm_unreachable("Unexpected intrinsic!");
11785       case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11786       case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11787       case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11788       case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11789       case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11790       case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11791       case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11792       case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11793     }
11794     SDValue Chain = Op.getOperand(0);
11795     SDValue Index = Op.getOperand(2);
11796     SDValue Base  = Op.getOperand(3);
11797     SDValue Scale = Op.getOperand(4);
11798     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11799   }
11800   //int_gather_mask(v1, mask, index, base, scale);
11801   case Intrinsic::x86_avx512_gather_qps_mask_512:
11802   case Intrinsic::x86_avx512_gather_qpd_mask_512:
11803   case Intrinsic::x86_avx512_gather_dpd_mask_512:
11804   case Intrinsic::x86_avx512_gather_dps_mask_512:
11805   case Intrinsic::x86_avx512_gather_qpi_mask_512:
11806   case Intrinsic::x86_avx512_gather_qpq_mask_512:
11807   case Intrinsic::x86_avx512_gather_dpi_mask_512:
11808   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11809     unsigned Opc;
11810     switch (IntNo) {
11811       default: llvm_unreachable("Unexpected intrinsic!");
11812       case Intrinsic::x86_avx512_gather_qps_mask_512: 
11813         Opc = X86::VGATHERQPSZrm; break;
11814       case Intrinsic::x86_avx512_gather_qpd_mask_512:
11815         Opc = X86::VGATHERQPDZrm; break;
11816       case Intrinsic::x86_avx512_gather_dpd_mask_512:
11817         Opc = X86::VGATHERDPDZrm; break;
11818       case Intrinsic::x86_avx512_gather_dps_mask_512:
11819         Opc = X86::VGATHERDPSZrm; break;
11820       case Intrinsic::x86_avx512_gather_qpi_mask_512:
11821         Opc = X86::VPGATHERQDZrm; break;
11822       case Intrinsic::x86_avx512_gather_qpq_mask_512:
11823         Opc = X86::VPGATHERQQZrm; break;
11824       case Intrinsic::x86_avx512_gather_dpi_mask_512:
11825         Opc = X86::VPGATHERDDZrm; break;
11826       case Intrinsic::x86_avx512_gather_dpq_mask_512:
11827         Opc = X86::VPGATHERDQZrm; break;
11828     }
11829     SDValue Chain = Op.getOperand(0);
11830     SDValue Src   = Op.getOperand(2);
11831     SDValue Mask  = Op.getOperand(3);
11832     SDValue Index = Op.getOperand(4);
11833     SDValue Base  = Op.getOperand(5);
11834     SDValue Scale = Op.getOperand(6);
11835     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11836                           Subtarget);
11837   }
11838   //int_scatter(base, index, v1, scale);
11839   case Intrinsic::x86_avx512_scatter_qpd_512:
11840   case Intrinsic::x86_avx512_scatter_qps_512:
11841   case Intrinsic::x86_avx512_scatter_dpd_512:
11842   case Intrinsic::x86_avx512_scatter_qpi_512:
11843   case Intrinsic::x86_avx512_scatter_qpq_512:
11844   case Intrinsic::x86_avx512_scatter_dpq_512:
11845   case Intrinsic::x86_avx512_scatter_dps_512:
11846   case Intrinsic::x86_avx512_scatter_dpi_512: {
11847     unsigned Opc;
11848     switch (IntNo) {
11849       default: llvm_unreachable("Unexpected intrinsic!");
11850       case Intrinsic::x86_avx512_scatter_qpd_512: 
11851         Opc = X86::VSCATTERQPDZmr; break;
11852       case Intrinsic::x86_avx512_scatter_qps_512:
11853         Opc = X86::VSCATTERQPSZmr; break;
11854       case Intrinsic::x86_avx512_scatter_dpd_512:
11855         Opc = X86::VSCATTERDPDZmr; break;
11856       case Intrinsic::x86_avx512_scatter_dps_512:
11857         Opc = X86::VSCATTERDPSZmr; break;
11858       case Intrinsic::x86_avx512_scatter_qpi_512:
11859         Opc = X86::VPSCATTERQDZmr; break;
11860       case Intrinsic::x86_avx512_scatter_qpq_512:
11861         Opc = X86::VPSCATTERQQZmr; break;
11862       case Intrinsic::x86_avx512_scatter_dpq_512:
11863         Opc = X86::VPSCATTERDQZmr; break;
11864       case Intrinsic::x86_avx512_scatter_dpi_512:
11865         Opc = X86::VPSCATTERDDZmr; break;
11866     }
11867     SDValue Chain = Op.getOperand(0);
11868     SDValue Base  = Op.getOperand(2);
11869     SDValue Index = Op.getOperand(3);
11870     SDValue Src   = Op.getOperand(4);
11871     SDValue Scale = Op.getOperand(5);
11872     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11873   }
11874   //int_scatter_mask(base, mask, index, v1, scale);
11875   case Intrinsic::x86_avx512_scatter_qps_mask_512:
11876   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11877   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11878   case Intrinsic::x86_avx512_scatter_dps_mask_512:
11879   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11880   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11881   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11882   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11883     unsigned Opc;
11884     switch (IntNo) {
11885       default: llvm_unreachable("Unexpected intrinsic!");
11886       case Intrinsic::x86_avx512_scatter_qpd_mask_512: 
11887         Opc = X86::VSCATTERQPDZmr; break;
11888       case Intrinsic::x86_avx512_scatter_qps_mask_512:
11889         Opc = X86::VSCATTERQPSZmr; break;
11890       case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11891         Opc = X86::VSCATTERDPDZmr; break;
11892       case Intrinsic::x86_avx512_scatter_dps_mask_512:
11893         Opc = X86::VSCATTERDPSZmr; break;
11894       case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11895         Opc = X86::VPSCATTERQDZmr; break;
11896       case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11897         Opc = X86::VPSCATTERQQZmr; break;
11898       case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11899         Opc = X86::VPSCATTERDQZmr; break;
11900       case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11901         Opc = X86::VPSCATTERDDZmr; break;
11902     }
11903     SDValue Chain = Op.getOperand(0);
11904     SDValue Base  = Op.getOperand(2);
11905     SDValue Mask  = Op.getOperand(3);
11906     SDValue Index = Op.getOperand(4);
11907     SDValue Src   = Op.getOperand(5);
11908     SDValue Scale = Op.getOperand(6);
11909     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11910   }
11911   // XTEST intrinsics.
11912   case Intrinsic::x86_xtest: {
11913     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11914     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11915     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11916                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11917                                 InTrans);
11918     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11919     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11920                        Ret, SDValue(InTrans.getNode(), 1));
11921   }
11922   }
11923 }
11924
11925 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11926                                            SelectionDAG &DAG) const {
11927   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11928   MFI->setReturnAddressIsTaken(true);
11929
11930   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11931   SDLoc dl(Op);
11932   EVT PtrVT = getPointerTy();
11933
11934   if (Depth > 0) {
11935     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11936     const X86RegisterInfo *RegInfo =
11937       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11938     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11939     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11940                        DAG.getNode(ISD::ADD, dl, PtrVT,
11941                                    FrameAddr, Offset),
11942                        MachinePointerInfo(), false, false, false, 0);
11943   }
11944
11945   // Just load the return address.
11946   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11947   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11948                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11949 }
11950
11951 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11952   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11953   MFI->setFrameAddressIsTaken(true);
11954
11955   EVT VT = Op.getValueType();
11956   SDLoc dl(Op);  // FIXME probably not meaningful
11957   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11958   const X86RegisterInfo *RegInfo =
11959     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11960   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11961   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11962           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11963          "Invalid Frame Register!");
11964   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11965   while (Depth--)
11966     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11967                             MachinePointerInfo(),
11968                             false, false, false, 0);
11969   return FrameAddr;
11970 }
11971
11972 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11973                                                      SelectionDAG &DAG) const {
11974   const X86RegisterInfo *RegInfo =
11975     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11976   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11977 }
11978
11979 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11980   SDValue Chain     = Op.getOperand(0);
11981   SDValue Offset    = Op.getOperand(1);
11982   SDValue Handler   = Op.getOperand(2);
11983   SDLoc dl      (Op);
11984
11985   EVT PtrVT = getPointerTy();
11986   const X86RegisterInfo *RegInfo =
11987     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11988   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11989   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11990           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11991          "Invalid Frame Register!");
11992   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11993   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
11994
11995   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
11996                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
11997   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
11998   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
11999                        false, false, 0);
12000   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12001
12002   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12003                      DAG.getRegister(StoreAddrReg, PtrVT));
12004 }
12005
12006 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12007                                                SelectionDAG &DAG) const {
12008   SDLoc DL(Op);
12009   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12010                      DAG.getVTList(MVT::i32, MVT::Other),
12011                      Op.getOperand(0), Op.getOperand(1));
12012 }
12013
12014 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12015                                                 SelectionDAG &DAG) const {
12016   SDLoc DL(Op);
12017   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12018                      Op.getOperand(0), Op.getOperand(1));
12019 }
12020
12021 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12022   return Op.getOperand(0);
12023 }
12024
12025 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12026                                                 SelectionDAG &DAG) const {
12027   SDValue Root = Op.getOperand(0);
12028   SDValue Trmp = Op.getOperand(1); // trampoline
12029   SDValue FPtr = Op.getOperand(2); // nested function
12030   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12031   SDLoc dl (Op);
12032
12033   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12034   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12035
12036   if (Subtarget->is64Bit()) {
12037     SDValue OutChains[6];
12038
12039     // Large code-model.
12040     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12041     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12042
12043     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12044     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12045
12046     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12047
12048     // Load the pointer to the nested function into R11.
12049     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12050     SDValue Addr = Trmp;
12051     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12052                                 Addr, MachinePointerInfo(TrmpAddr),
12053                                 false, false, 0);
12054
12055     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12056                        DAG.getConstant(2, MVT::i64));
12057     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12058                                 MachinePointerInfo(TrmpAddr, 2),
12059                                 false, false, 2);
12060
12061     // Load the 'nest' parameter value into R10.
12062     // R10 is specified in X86CallingConv.td
12063     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12064     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12065                        DAG.getConstant(10, MVT::i64));
12066     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12067                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12068                                 false, false, 0);
12069
12070     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12071                        DAG.getConstant(12, MVT::i64));
12072     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12073                                 MachinePointerInfo(TrmpAddr, 12),
12074                                 false, false, 2);
12075
12076     // Jump to the nested function.
12077     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12078     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12079                        DAG.getConstant(20, MVT::i64));
12080     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12081                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12082                                 false, false, 0);
12083
12084     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12085     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12086                        DAG.getConstant(22, MVT::i64));
12087     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12088                                 MachinePointerInfo(TrmpAddr, 22),
12089                                 false, false, 0);
12090
12091     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12092   } else {
12093     const Function *Func =
12094       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12095     CallingConv::ID CC = Func->getCallingConv();
12096     unsigned NestReg;
12097
12098     switch (CC) {
12099     default:
12100       llvm_unreachable("Unsupported calling convention");
12101     case CallingConv::C:
12102     case CallingConv::X86_StdCall: {
12103       // Pass 'nest' parameter in ECX.
12104       // Must be kept in sync with X86CallingConv.td
12105       NestReg = X86::ECX;
12106
12107       // Check that ECX wasn't needed by an 'inreg' parameter.
12108       FunctionType *FTy = Func->getFunctionType();
12109       const AttributeSet &Attrs = Func->getAttributes();
12110
12111       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12112         unsigned InRegCount = 0;
12113         unsigned Idx = 1;
12114
12115         for (FunctionType::param_iterator I = FTy->param_begin(),
12116              E = FTy->param_end(); I != E; ++I, ++Idx)
12117           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12118             // FIXME: should only count parameters that are lowered to integers.
12119             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12120
12121         if (InRegCount > 2) {
12122           report_fatal_error("Nest register in use - reduce number of inreg"
12123                              " parameters!");
12124         }
12125       }
12126       break;
12127     }
12128     case CallingConv::X86_FastCall:
12129     case CallingConv::X86_ThisCall:
12130     case CallingConv::Fast:
12131       // Pass 'nest' parameter in EAX.
12132       // Must be kept in sync with X86CallingConv.td
12133       NestReg = X86::EAX;
12134       break;
12135     }
12136
12137     SDValue OutChains[4];
12138     SDValue Addr, Disp;
12139
12140     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12141                        DAG.getConstant(10, MVT::i32));
12142     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12143
12144     // This is storing the opcode for MOV32ri.
12145     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12146     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12147     OutChains[0] = DAG.getStore(Root, dl,
12148                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12149                                 Trmp, MachinePointerInfo(TrmpAddr),
12150                                 false, false, 0);
12151
12152     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12153                        DAG.getConstant(1, MVT::i32));
12154     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12155                                 MachinePointerInfo(TrmpAddr, 1),
12156                                 false, false, 1);
12157
12158     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12159     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12160                        DAG.getConstant(5, MVT::i32));
12161     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12162                                 MachinePointerInfo(TrmpAddr, 5),
12163                                 false, false, 1);
12164
12165     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12166                        DAG.getConstant(6, MVT::i32));
12167     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12168                                 MachinePointerInfo(TrmpAddr, 6),
12169                                 false, false, 1);
12170
12171     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12172   }
12173 }
12174
12175 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12176                                             SelectionDAG &DAG) const {
12177   /*
12178    The rounding mode is in bits 11:10 of FPSR, and has the following
12179    settings:
12180      00 Round to nearest
12181      01 Round to -inf
12182      10 Round to +inf
12183      11 Round to 0
12184
12185   FLT_ROUNDS, on the other hand, expects the following:
12186     -1 Undefined
12187      0 Round to 0
12188      1 Round to nearest
12189      2 Round to +inf
12190      3 Round to -inf
12191
12192   To perform the conversion, we do:
12193     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12194   */
12195
12196   MachineFunction &MF = DAG.getMachineFunction();
12197   const TargetMachine &TM = MF.getTarget();
12198   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12199   unsigned StackAlignment = TFI.getStackAlignment();
12200   EVT VT = Op.getValueType();
12201   SDLoc DL(Op);
12202
12203   // Save FP Control Word to stack slot
12204   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12205   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12206
12207   MachineMemOperand *MMO =
12208    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12209                            MachineMemOperand::MOStore, 2, 2);
12210
12211   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12212   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12213                                           DAG.getVTList(MVT::Other),
12214                                           Ops, array_lengthof(Ops), MVT::i16,
12215                                           MMO);
12216
12217   // Load FP Control Word from stack slot
12218   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12219                             MachinePointerInfo(), false, false, false, 0);
12220
12221   // Transform as necessary
12222   SDValue CWD1 =
12223     DAG.getNode(ISD::SRL, DL, MVT::i16,
12224                 DAG.getNode(ISD::AND, DL, MVT::i16,
12225                             CWD, DAG.getConstant(0x800, MVT::i16)),
12226                 DAG.getConstant(11, MVT::i8));
12227   SDValue CWD2 =
12228     DAG.getNode(ISD::SRL, DL, MVT::i16,
12229                 DAG.getNode(ISD::AND, DL, MVT::i16,
12230                             CWD, DAG.getConstant(0x400, MVT::i16)),
12231                 DAG.getConstant(9, MVT::i8));
12232
12233   SDValue RetVal =
12234     DAG.getNode(ISD::AND, DL, MVT::i16,
12235                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12236                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12237                             DAG.getConstant(1, MVT::i16)),
12238                 DAG.getConstant(3, MVT::i16));
12239
12240   return DAG.getNode((VT.getSizeInBits() < 16 ?
12241                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12242 }
12243
12244 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12245   EVT VT = Op.getValueType();
12246   EVT OpVT = VT;
12247   unsigned NumBits = VT.getSizeInBits();
12248   SDLoc dl(Op);
12249
12250   Op = Op.getOperand(0);
12251   if (VT == MVT::i8) {
12252     // Zero extend to i32 since there is not an i8 bsr.
12253     OpVT = MVT::i32;
12254     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12255   }
12256
12257   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12258   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12259   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12260
12261   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12262   SDValue Ops[] = {
12263     Op,
12264     DAG.getConstant(NumBits+NumBits-1, OpVT),
12265     DAG.getConstant(X86::COND_E, MVT::i8),
12266     Op.getValue(1)
12267   };
12268   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12269
12270   // Finally xor with NumBits-1.
12271   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12272
12273   if (VT == MVT::i8)
12274     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12275   return Op;
12276 }
12277
12278 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12279   EVT VT = Op.getValueType();
12280   EVT OpVT = VT;
12281   unsigned NumBits = VT.getSizeInBits();
12282   SDLoc dl(Op);
12283
12284   Op = Op.getOperand(0);
12285   if (VT == MVT::i8) {
12286     // Zero extend to i32 since there is not an i8 bsr.
12287     OpVT = MVT::i32;
12288     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12289   }
12290
12291   // Issue a bsr (scan bits in reverse).
12292   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12293   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12294
12295   // And xor with NumBits-1.
12296   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12297
12298   if (VT == MVT::i8)
12299     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12300   return Op;
12301 }
12302
12303 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12304   EVT VT = Op.getValueType();
12305   unsigned NumBits = VT.getSizeInBits();
12306   SDLoc dl(Op);
12307   Op = Op.getOperand(0);
12308
12309   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12310   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12311   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12312
12313   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12314   SDValue Ops[] = {
12315     Op,
12316     DAG.getConstant(NumBits, VT),
12317     DAG.getConstant(X86::COND_E, MVT::i8),
12318     Op.getValue(1)
12319   };
12320   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12321 }
12322
12323 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12324 // ones, and then concatenate the result back.
12325 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12326   EVT VT = Op.getValueType();
12327
12328   assert(VT.is256BitVector() && VT.isInteger() &&
12329          "Unsupported value type for operation");
12330
12331   unsigned NumElems = VT.getVectorNumElements();
12332   SDLoc dl(Op);
12333
12334   // Extract the LHS vectors
12335   SDValue LHS = Op.getOperand(0);
12336   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12337   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12338
12339   // Extract the RHS vectors
12340   SDValue RHS = Op.getOperand(1);
12341   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12342   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12343
12344   MVT EltVT = VT.getVectorElementType().getSimpleVT();
12345   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12346
12347   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12348                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12349                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12350 }
12351
12352 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12353   assert(Op.getValueType().is256BitVector() &&
12354          Op.getValueType().isInteger() &&
12355          "Only handle AVX 256-bit vector integer operation");
12356   return Lower256IntArith(Op, DAG);
12357 }
12358
12359 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12360   assert(Op.getValueType().is256BitVector() &&
12361          Op.getValueType().isInteger() &&
12362          "Only handle AVX 256-bit vector integer operation");
12363   return Lower256IntArith(Op, DAG);
12364 }
12365
12366 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12367                         SelectionDAG &DAG) {
12368   SDLoc dl(Op);
12369   EVT VT = Op.getValueType();
12370
12371   // Decompose 256-bit ops into smaller 128-bit ops.
12372   if (VT.is256BitVector() && !Subtarget->hasInt256())
12373     return Lower256IntArith(Op, DAG);
12374
12375   SDValue A = Op.getOperand(0);
12376   SDValue B = Op.getOperand(1);
12377
12378   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12379   if (VT == MVT::v4i32) {
12380     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12381            "Should not custom lower when pmuldq is available!");
12382
12383     // Extract the odd parts.
12384     static const int UnpackMask[] = { 1, -1, 3, -1 };
12385     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12386     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12387
12388     // Multiply the even parts.
12389     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12390     // Now multiply odd parts.
12391     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12392
12393     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12394     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12395
12396     // Merge the two vectors back together with a shuffle. This expands into 2
12397     // shuffles.
12398     static const int ShufMask[] = { 0, 4, 2, 6 };
12399     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12400   }
12401
12402   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12403          "Only know how to lower V2I64/V4I64 multiply");
12404
12405   //  Ahi = psrlqi(a, 32);
12406   //  Bhi = psrlqi(b, 32);
12407   //
12408   //  AloBlo = pmuludq(a, b);
12409   //  AloBhi = pmuludq(a, Bhi);
12410   //  AhiBlo = pmuludq(Ahi, b);
12411
12412   //  AloBhi = psllqi(AloBhi, 32);
12413   //  AhiBlo = psllqi(AhiBlo, 32);
12414   //  return AloBlo + AloBhi + AhiBlo;
12415
12416   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
12417
12418   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12419   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
12420
12421   // Bit cast to 32-bit vectors for MULUDQ
12422   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12423   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12424   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12425   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12426   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12427
12428   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12429   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12430   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12431
12432   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12433   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
12434
12435   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12436   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12437 }
12438
12439 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12440   EVT VT = Op.getValueType();
12441   EVT EltTy = VT.getVectorElementType();
12442   unsigned NumElts = VT.getVectorNumElements();
12443   SDValue N0 = Op.getOperand(0);
12444   SDLoc dl(Op);
12445
12446   // Lower sdiv X, pow2-const.
12447   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12448   if (!C)
12449     return SDValue();
12450
12451   APInt SplatValue, SplatUndef;
12452   unsigned SplatBitSize;
12453   bool HasAnyUndefs;
12454   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12455                           HasAnyUndefs) ||
12456       EltTy.getSizeInBits() < SplatBitSize)
12457     return SDValue();
12458
12459   if ((SplatValue != 0) &&
12460       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12461     unsigned lg2 = SplatValue.countTrailingZeros();
12462     // Splat the sign bit.
12463     SDValue Sz = DAG.getConstant(EltTy.getSizeInBits()-1, MVT::i32);
12464     SDValue SGN = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, N0, Sz, DAG);
12465     // Add (N0 < 0) ? abs2 - 1 : 0;
12466     SDValue Amt = DAG.getConstant(EltTy.getSizeInBits() - lg2, MVT::i32);
12467     SDValue SRL = getTargetVShiftNode(X86ISD::VSRLI, dl, VT, SGN, Amt, DAG);
12468     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12469     SDValue Lg2Amt = DAG.getConstant(lg2, MVT::i32);
12470     SDValue SRA = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, ADD, Lg2Amt, DAG);
12471
12472     // If we're dividing by a positive value, we're done.  Otherwise, we must
12473     // negate the result.
12474     if (SplatValue.isNonNegative())
12475       return SRA;
12476
12477     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12478     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12479     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12480   }
12481   return SDValue();
12482 }
12483
12484 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12485                                          const X86Subtarget *Subtarget) {
12486   EVT VT = Op.getValueType();
12487   SDLoc dl(Op);
12488   SDValue R = Op.getOperand(0);
12489   SDValue Amt = Op.getOperand(1);
12490
12491   // Optimize shl/srl/sra with constant shift amount.
12492   if (isSplatVector(Amt.getNode())) {
12493     SDValue SclrAmt = Amt->getOperand(0);
12494     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12495       uint64_t ShiftAmt = C->getZExtValue();
12496
12497       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12498           (Subtarget->hasInt256() &&
12499            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12500           (Subtarget->hasAVX512() &&
12501            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12502         if (Op.getOpcode() == ISD::SHL)
12503           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12504                              DAG.getConstant(ShiftAmt, MVT::i32));
12505         if (Op.getOpcode() == ISD::SRL)
12506           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12507                              DAG.getConstant(ShiftAmt, MVT::i32));
12508         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12509           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12510                              DAG.getConstant(ShiftAmt, MVT::i32));
12511       }
12512
12513       if (VT == MVT::v16i8) {
12514         if (Op.getOpcode() == ISD::SHL) {
12515           // Make a large shift.
12516           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12517                                     DAG.getConstant(ShiftAmt, MVT::i32));
12518           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12519           // Zero out the rightmost bits.
12520           SmallVector<SDValue, 16> V(16,
12521                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12522                                                      MVT::i8));
12523           return DAG.getNode(ISD::AND, dl, VT, SHL,
12524                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12525         }
12526         if (Op.getOpcode() == ISD::SRL) {
12527           // Make a large shift.
12528           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12529                                     DAG.getConstant(ShiftAmt, MVT::i32));
12530           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12531           // Zero out the leftmost bits.
12532           SmallVector<SDValue, 16> V(16,
12533                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12534                                                      MVT::i8));
12535           return DAG.getNode(ISD::AND, dl, VT, SRL,
12536                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12537         }
12538         if (Op.getOpcode() == ISD::SRA) {
12539           if (ShiftAmt == 7) {
12540             // R s>> 7  ===  R s< 0
12541             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12542             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12543           }
12544
12545           // R s>> a === ((R u>> a) ^ m) - m
12546           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12547           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12548                                                          MVT::i8));
12549           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12550           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12551           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12552           return Res;
12553         }
12554         llvm_unreachable("Unknown shift opcode.");
12555       }
12556
12557       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12558         if (Op.getOpcode() == ISD::SHL) {
12559           // Make a large shift.
12560           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12561                                     DAG.getConstant(ShiftAmt, MVT::i32));
12562           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12563           // Zero out the rightmost bits.
12564           SmallVector<SDValue, 32> V(32,
12565                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12566                                                      MVT::i8));
12567           return DAG.getNode(ISD::AND, dl, VT, SHL,
12568                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12569         }
12570         if (Op.getOpcode() == ISD::SRL) {
12571           // Make a large shift.
12572           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12573                                     DAG.getConstant(ShiftAmt, MVT::i32));
12574           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12575           // Zero out the leftmost bits.
12576           SmallVector<SDValue, 32> V(32,
12577                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12578                                                      MVT::i8));
12579           return DAG.getNode(ISD::AND, dl, VT, SRL,
12580                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12581         }
12582         if (Op.getOpcode() == ISD::SRA) {
12583           if (ShiftAmt == 7) {
12584             // R s>> 7  ===  R s< 0
12585             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12586             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12587           }
12588
12589           // R s>> a === ((R u>> a) ^ m) - m
12590           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12591           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12592                                                          MVT::i8));
12593           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12594           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12595           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12596           return Res;
12597         }
12598         llvm_unreachable("Unknown shift opcode.");
12599       }
12600     }
12601   }
12602
12603   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12604   if (!Subtarget->is64Bit() &&
12605       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12606       Amt.getOpcode() == ISD::BITCAST &&
12607       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12608     Amt = Amt.getOperand(0);
12609     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12610                      VT.getVectorNumElements();
12611     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12612     uint64_t ShiftAmt = 0;
12613     for (unsigned i = 0; i != Ratio; ++i) {
12614       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12615       if (C == 0)
12616         return SDValue();
12617       // 6 == Log2(64)
12618       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12619     }
12620     // Check remaining shift amounts.
12621     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12622       uint64_t ShAmt = 0;
12623       for (unsigned j = 0; j != Ratio; ++j) {
12624         ConstantSDNode *C =
12625           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12626         if (C == 0)
12627           return SDValue();
12628         // 6 == Log2(64)
12629         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12630       }
12631       if (ShAmt != ShiftAmt)
12632         return SDValue();
12633     }
12634     switch (Op.getOpcode()) {
12635     default:
12636       llvm_unreachable("Unknown shift opcode!");
12637     case ISD::SHL:
12638       return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12639                          DAG.getConstant(ShiftAmt, MVT::i32));
12640     case ISD::SRL:
12641       return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12642                          DAG.getConstant(ShiftAmt, MVT::i32));
12643     case ISD::SRA:
12644       return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12645                          DAG.getConstant(ShiftAmt, MVT::i32));
12646     }
12647   }
12648
12649   return SDValue();
12650 }
12651
12652 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12653                                         const X86Subtarget* Subtarget) {
12654   EVT VT = Op.getValueType();
12655   SDLoc dl(Op);
12656   SDValue R = Op.getOperand(0);
12657   SDValue Amt = Op.getOperand(1);
12658
12659   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12660       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12661       (Subtarget->hasInt256() &&
12662        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12663         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12664        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12665     SDValue BaseShAmt;
12666     EVT EltVT = VT.getVectorElementType();
12667
12668     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12669       unsigned NumElts = VT.getVectorNumElements();
12670       unsigned i, j;
12671       for (i = 0; i != NumElts; ++i) {
12672         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12673           continue;
12674         break;
12675       }
12676       for (j = i; j != NumElts; ++j) {
12677         SDValue Arg = Amt.getOperand(j);
12678         if (Arg.getOpcode() == ISD::UNDEF) continue;
12679         if (Arg != Amt.getOperand(i))
12680           break;
12681       }
12682       if (i != NumElts && j == NumElts)
12683         BaseShAmt = Amt.getOperand(i);
12684     } else {
12685       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12686         Amt = Amt.getOperand(0);
12687       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12688                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12689         SDValue InVec = Amt.getOperand(0);
12690         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12691           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12692           unsigned i = 0;
12693           for (; i != NumElts; ++i) {
12694             SDValue Arg = InVec.getOperand(i);
12695             if (Arg.getOpcode() == ISD::UNDEF) continue;
12696             BaseShAmt = Arg;
12697             break;
12698           }
12699         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12700            if (ConstantSDNode *C =
12701                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12702              unsigned SplatIdx =
12703                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12704              if (C->getZExtValue() == SplatIdx)
12705                BaseShAmt = InVec.getOperand(1);
12706            }
12707         }
12708         if (BaseShAmt.getNode() == 0)
12709           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12710                                   DAG.getIntPtrConstant(0));
12711       }
12712     }
12713
12714     if (BaseShAmt.getNode()) {
12715       if (EltVT.bitsGT(MVT::i32))
12716         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12717       else if (EltVT.bitsLT(MVT::i32))
12718         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12719
12720       switch (Op.getOpcode()) {
12721       default:
12722         llvm_unreachable("Unknown shift opcode!");
12723       case ISD::SHL:
12724         switch (VT.getSimpleVT().SimpleTy) {
12725         default: return SDValue();
12726         case MVT::v2i64:
12727         case MVT::v4i32:
12728         case MVT::v8i16:
12729         case MVT::v4i64:
12730         case MVT::v8i32:
12731         case MVT::v16i16:
12732         case MVT::v16i32:
12733         case MVT::v8i64:
12734           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12735         }
12736       case ISD::SRA:
12737         switch (VT.getSimpleVT().SimpleTy) {
12738         default: return SDValue();
12739         case MVT::v4i32:
12740         case MVT::v8i16:
12741         case MVT::v8i32:
12742         case MVT::v16i16:
12743         case MVT::v16i32:
12744         case MVT::v8i64:
12745           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12746         }
12747       case ISD::SRL:
12748         switch (VT.getSimpleVT().SimpleTy) {
12749         default: return SDValue();
12750         case MVT::v2i64:
12751         case MVT::v4i32:
12752         case MVT::v8i16:
12753         case MVT::v4i64:
12754         case MVT::v8i32:
12755         case MVT::v16i16:
12756         case MVT::v16i32:
12757         case MVT::v8i64:
12758           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12759         }
12760       }
12761     }
12762   }
12763
12764   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12765   if (!Subtarget->is64Bit() &&
12766       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12767       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12768       Amt.getOpcode() == ISD::BITCAST &&
12769       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12770     Amt = Amt.getOperand(0);
12771     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12772                      VT.getVectorNumElements();
12773     std::vector<SDValue> Vals(Ratio);
12774     for (unsigned i = 0; i != Ratio; ++i)
12775       Vals[i] = Amt.getOperand(i);
12776     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12777       for (unsigned j = 0; j != Ratio; ++j)
12778         if (Vals[j] != Amt.getOperand(i + j))
12779           return SDValue();
12780     }
12781     switch (Op.getOpcode()) {
12782     default:
12783       llvm_unreachable("Unknown shift opcode!");
12784     case ISD::SHL:
12785       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12786     case ISD::SRL:
12787       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12788     case ISD::SRA:
12789       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12790     }
12791   }
12792
12793   return SDValue();
12794 }
12795
12796 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12797                           SelectionDAG &DAG) {
12798
12799   EVT VT = Op.getValueType();
12800   SDLoc dl(Op);
12801   SDValue R = Op.getOperand(0);
12802   SDValue Amt = Op.getOperand(1);
12803   SDValue V;
12804
12805   if (!Subtarget->hasSSE2())
12806     return SDValue();
12807
12808   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12809   if (V.getNode())
12810     return V;
12811
12812   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12813   if (V.getNode())
12814       return V;
12815
12816   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12817     return Op;
12818   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12819   if (Subtarget->hasInt256()) {
12820     if (Op.getOpcode() == ISD::SRL &&
12821         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12822          VT == MVT::v4i64 || VT == MVT::v8i32))
12823       return Op;
12824     if (Op.getOpcode() == ISD::SHL &&
12825         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12826          VT == MVT::v4i64 || VT == MVT::v8i32))
12827       return Op;
12828     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12829       return Op;
12830   }
12831
12832   // Lower SHL with variable shift amount.
12833   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12834     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12835
12836     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12837     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12838     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12839     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12840   }
12841   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12842     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12843
12844     // a = a << 5;
12845     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12846     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12847
12848     // Turn 'a' into a mask suitable for VSELECT
12849     SDValue VSelM = DAG.getConstant(0x80, VT);
12850     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12851     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12852
12853     SDValue CM1 = DAG.getConstant(0x0f, VT);
12854     SDValue CM2 = DAG.getConstant(0x3f, VT);
12855
12856     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12857     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12858     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12859                             DAG.getConstant(4, MVT::i32), DAG);
12860     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12861     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12862
12863     // a += a
12864     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12865     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12866     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12867
12868     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12869     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12870     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12871                             DAG.getConstant(2, MVT::i32), DAG);
12872     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12873     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12874
12875     // a += a
12876     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12877     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12878     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12879
12880     // return VSELECT(r, r+r, a);
12881     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12882                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12883     return R;
12884   }
12885
12886   // Decompose 256-bit shifts into smaller 128-bit shifts.
12887   if (VT.is256BitVector()) {
12888     unsigned NumElems = VT.getVectorNumElements();
12889     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12890     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12891
12892     // Extract the two vectors
12893     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12894     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12895
12896     // Recreate the shift amount vectors
12897     SDValue Amt1, Amt2;
12898     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12899       // Constant shift amount
12900       SmallVector<SDValue, 4> Amt1Csts;
12901       SmallVector<SDValue, 4> Amt2Csts;
12902       for (unsigned i = 0; i != NumElems/2; ++i)
12903         Amt1Csts.push_back(Amt->getOperand(i));
12904       for (unsigned i = NumElems/2; i != NumElems; ++i)
12905         Amt2Csts.push_back(Amt->getOperand(i));
12906
12907       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12908                                  &Amt1Csts[0], NumElems/2);
12909       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12910                                  &Amt2Csts[0], NumElems/2);
12911     } else {
12912       // Variable shift amount
12913       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12914       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12915     }
12916
12917     // Issue new vector shifts for the smaller types
12918     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12919     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12920
12921     // Concatenate the result back
12922     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12923   }
12924
12925   return SDValue();
12926 }
12927
12928 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12929   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12930   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12931   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12932   // has only one use.
12933   SDNode *N = Op.getNode();
12934   SDValue LHS = N->getOperand(0);
12935   SDValue RHS = N->getOperand(1);
12936   unsigned BaseOp = 0;
12937   unsigned Cond = 0;
12938   SDLoc DL(Op);
12939   switch (Op.getOpcode()) {
12940   default: llvm_unreachable("Unknown ovf instruction!");
12941   case ISD::SADDO:
12942     // A subtract of one will be selected as a INC. Note that INC doesn't
12943     // set CF, so we can't do this for UADDO.
12944     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12945       if (C->isOne()) {
12946         BaseOp = X86ISD::INC;
12947         Cond = X86::COND_O;
12948         break;
12949       }
12950     BaseOp = X86ISD::ADD;
12951     Cond = X86::COND_O;
12952     break;
12953   case ISD::UADDO:
12954     BaseOp = X86ISD::ADD;
12955     Cond = X86::COND_B;
12956     break;
12957   case ISD::SSUBO:
12958     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12959     // set CF, so we can't do this for USUBO.
12960     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12961       if (C->isOne()) {
12962         BaseOp = X86ISD::DEC;
12963         Cond = X86::COND_O;
12964         break;
12965       }
12966     BaseOp = X86ISD::SUB;
12967     Cond = X86::COND_O;
12968     break;
12969   case ISD::USUBO:
12970     BaseOp = X86ISD::SUB;
12971     Cond = X86::COND_B;
12972     break;
12973   case ISD::SMULO:
12974     BaseOp = X86ISD::SMUL;
12975     Cond = X86::COND_O;
12976     break;
12977   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12978     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12979                                  MVT::i32);
12980     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
12981
12982     SDValue SetCC =
12983       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12984                   DAG.getConstant(X86::COND_O, MVT::i32),
12985                   SDValue(Sum.getNode(), 2));
12986
12987     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
12988   }
12989   }
12990
12991   // Also sets EFLAGS.
12992   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
12993   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
12994
12995   SDValue SetCC =
12996     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
12997                 DAG.getConstant(Cond, MVT::i32),
12998                 SDValue(Sum.getNode(), 1));
12999
13000   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13001 }
13002
13003 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13004                                                   SelectionDAG &DAG) const {
13005   SDLoc dl(Op);
13006   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13007   EVT VT = Op.getValueType();
13008
13009   if (!Subtarget->hasSSE2() || !VT.isVector())
13010     return SDValue();
13011
13012   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13013                       ExtraVT.getScalarType().getSizeInBits();
13014   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
13015
13016   switch (VT.getSimpleVT().SimpleTy) {
13017     default: return SDValue();
13018     case MVT::v8i32:
13019     case MVT::v16i16:
13020       if (!Subtarget->hasFp256())
13021         return SDValue();
13022       if (!Subtarget->hasInt256()) {
13023         // needs to be split
13024         unsigned NumElems = VT.getVectorNumElements();
13025
13026         // Extract the LHS vectors
13027         SDValue LHS = Op.getOperand(0);
13028         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13029         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13030
13031         MVT EltVT = VT.getVectorElementType().getSimpleVT();
13032         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13033
13034         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13035         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13036         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13037                                    ExtraNumElems/2);
13038         SDValue Extra = DAG.getValueType(ExtraVT);
13039
13040         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13041         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13042
13043         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13044       }
13045       // fall through
13046     case MVT::v4i32:
13047     case MVT::v8i16: {
13048       // (sext (vzext x)) -> (vsext x)
13049       SDValue Op0 = Op.getOperand(0);
13050       SDValue Op00 = Op0.getOperand(0);
13051       SDValue Tmp1;
13052       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13053       if (Op0.getOpcode() == ISD::BITCAST &&
13054           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
13055         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13056       if (Tmp1.getNode()) {
13057         SDValue Tmp1Op0 = Tmp1.getOperand(0);
13058         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13059                "This optimization is invalid without a VZEXT.");
13060         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13061       }
13062
13063       // If the above didn't work, then just use Shift-Left + Shift-Right.
13064       Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
13065       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
13066     }
13067   }
13068 }
13069
13070 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13071                                  SelectionDAG &DAG) {
13072   SDLoc dl(Op);
13073   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13074     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13075   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13076     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13077
13078   // The only fence that needs an instruction is a sequentially-consistent
13079   // cross-thread fence.
13080   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13081     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13082     // no-sse2). There isn't any reason to disable it if the target processor
13083     // supports it.
13084     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13085       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13086
13087     SDValue Chain = Op.getOperand(0);
13088     SDValue Zero = DAG.getConstant(0, MVT::i32);
13089     SDValue Ops[] = {
13090       DAG.getRegister(X86::ESP, MVT::i32), // Base
13091       DAG.getTargetConstant(1, MVT::i8),   // Scale
13092       DAG.getRegister(0, MVT::i32),        // Index
13093       DAG.getTargetConstant(0, MVT::i32),  // Disp
13094       DAG.getRegister(0, MVT::i32),        // Segment.
13095       Zero,
13096       Chain
13097     };
13098     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13099     return SDValue(Res, 0);
13100   }
13101
13102   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13103   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13104 }
13105
13106 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13107                              SelectionDAG &DAG) {
13108   EVT T = Op.getValueType();
13109   SDLoc DL(Op);
13110   unsigned Reg = 0;
13111   unsigned size = 0;
13112   switch(T.getSimpleVT().SimpleTy) {
13113   default: llvm_unreachable("Invalid value type!");
13114   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13115   case MVT::i16: Reg = X86::AX;  size = 2; break;
13116   case MVT::i32: Reg = X86::EAX; size = 4; break;
13117   case MVT::i64:
13118     assert(Subtarget->is64Bit() && "Node not type legal!");
13119     Reg = X86::RAX; size = 8;
13120     break;
13121   }
13122   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13123                                     Op.getOperand(2), SDValue());
13124   SDValue Ops[] = { cpIn.getValue(0),
13125                     Op.getOperand(1),
13126                     Op.getOperand(3),
13127                     DAG.getTargetConstant(size, MVT::i8),
13128                     cpIn.getValue(1) };
13129   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13130   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13131   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13132                                            Ops, array_lengthof(Ops), T, MMO);
13133   SDValue cpOut =
13134     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13135   return cpOut;
13136 }
13137
13138 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13139                                      SelectionDAG &DAG) {
13140   assert(Subtarget->is64Bit() && "Result not type legalized?");
13141   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13142   SDValue TheChain = Op.getOperand(0);
13143   SDLoc dl(Op);
13144   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13145   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13146   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13147                                    rax.getValue(2));
13148   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13149                             DAG.getConstant(32, MVT::i8));
13150   SDValue Ops[] = {
13151     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13152     rdx.getValue(1)
13153   };
13154   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13155 }
13156
13157 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13158                             SelectionDAG &DAG) {
13159   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13160   MVT DstVT = Op.getSimpleValueType();
13161   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13162          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13163   assert((DstVT == MVT::i64 ||
13164           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13165          "Unexpected custom BITCAST");
13166   // i64 <=> MMX conversions are Legal.
13167   if (SrcVT==MVT::i64 && DstVT.isVector())
13168     return Op;
13169   if (DstVT==MVT::i64 && SrcVT.isVector())
13170     return Op;
13171   // MMX <=> MMX conversions are Legal.
13172   if (SrcVT.isVector() && DstVT.isVector())
13173     return Op;
13174   // All other conversions need to be expanded.
13175   return SDValue();
13176 }
13177
13178 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13179   SDNode *Node = Op.getNode();
13180   SDLoc dl(Node);
13181   EVT T = Node->getValueType(0);
13182   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13183                               DAG.getConstant(0, T), Node->getOperand(2));
13184   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13185                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13186                        Node->getOperand(0),
13187                        Node->getOperand(1), negOp,
13188                        cast<AtomicSDNode>(Node)->getSrcValue(),
13189                        cast<AtomicSDNode>(Node)->getAlignment(),
13190                        cast<AtomicSDNode>(Node)->getOrdering(),
13191                        cast<AtomicSDNode>(Node)->getSynchScope());
13192 }
13193
13194 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13195   SDNode *Node = Op.getNode();
13196   SDLoc dl(Node);
13197   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13198
13199   // Convert seq_cst store -> xchg
13200   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13201   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13202   //        (The only way to get a 16-byte store is cmpxchg16b)
13203   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13204   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13205       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13206     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13207                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13208                                  Node->getOperand(0),
13209                                  Node->getOperand(1), Node->getOperand(2),
13210                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13211                                  cast<AtomicSDNode>(Node)->getOrdering(),
13212                                  cast<AtomicSDNode>(Node)->getSynchScope());
13213     return Swap.getValue(1);
13214   }
13215   // Other atomic stores have a simple pattern.
13216   return Op;
13217 }
13218
13219 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13220   EVT VT = Op.getNode()->getValueType(0);
13221
13222   // Let legalize expand this if it isn't a legal type yet.
13223   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13224     return SDValue();
13225
13226   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13227
13228   unsigned Opc;
13229   bool ExtraOp = false;
13230   switch (Op.getOpcode()) {
13231   default: llvm_unreachable("Invalid code");
13232   case ISD::ADDC: Opc = X86ISD::ADD; break;
13233   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13234   case ISD::SUBC: Opc = X86ISD::SUB; break;
13235   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13236   }
13237
13238   if (!ExtraOp)
13239     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13240                        Op.getOperand(1));
13241   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13242                      Op.getOperand(1), Op.getOperand(2));
13243 }
13244
13245 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13246                             SelectionDAG &DAG) {
13247   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13248
13249   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13250   // which returns the values as { float, float } (in XMM0) or
13251   // { double, double } (which is returned in XMM0, XMM1).
13252   SDLoc dl(Op);
13253   SDValue Arg = Op.getOperand(0);
13254   EVT ArgVT = Arg.getValueType();
13255   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13256
13257   TargetLowering::ArgListTy Args;
13258   TargetLowering::ArgListEntry Entry;
13259
13260   Entry.Node = Arg;
13261   Entry.Ty = ArgTy;
13262   Entry.isSExt = false;
13263   Entry.isZExt = false;
13264   Args.push_back(Entry);
13265
13266   bool isF64 = ArgVT == MVT::f64;
13267   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13268   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13269   // the results are returned via SRet in memory.
13270   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13271   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13272   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13273
13274   Type *RetTy = isF64
13275     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13276     : (Type*)VectorType::get(ArgTy, 4);
13277   TargetLowering::
13278     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13279                          false, false, false, false, 0,
13280                          CallingConv::C, /*isTaillCall=*/false,
13281                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13282                          Callee, Args, DAG, dl);
13283   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13284
13285   if (isF64)
13286     // Returned in xmm0 and xmm1.
13287     return CallResult.first;
13288
13289   // Returned in bits 0:31 and 32:64 xmm0.
13290   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13291                                CallResult.first, DAG.getIntPtrConstant(0));
13292   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13293                                CallResult.first, DAG.getIntPtrConstant(1));
13294   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13295   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13296 }
13297
13298 /// LowerOperation - Provide custom lowering hooks for some operations.
13299 ///
13300 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13301   switch (Op.getOpcode()) {
13302   default: llvm_unreachable("Should not custom lower this!");
13303   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13304   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13305   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13306   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13307   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13308   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13309   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13310   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13311   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13312   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13313   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13314   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13315   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13316   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13317   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13318   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13319   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13320   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13321   case ISD::SHL_PARTS:
13322   case ISD::SRA_PARTS:
13323   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13324   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13325   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13326   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13327   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13328   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13329   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13330   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13331   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13332   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13333   case ISD::FABS:               return LowerFABS(Op, DAG);
13334   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13335   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13336   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13337   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13338   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13339   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13340   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13341   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13342   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13343   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13344   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13345   case ISD::INTRINSIC_VOID:
13346   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13347   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13348   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13349   case ISD::FRAME_TO_ARGS_OFFSET:
13350                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13351   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13352   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13353   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13354   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13355   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13356   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13357   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13358   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13359   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13360   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13361   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13362   case ISD::SRA:
13363   case ISD::SRL:
13364   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13365   case ISD::SADDO:
13366   case ISD::UADDO:
13367   case ISD::SSUBO:
13368   case ISD::USUBO:
13369   case ISD::SMULO:
13370   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13371   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13372   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13373   case ISD::ADDC:
13374   case ISD::ADDE:
13375   case ISD::SUBC:
13376   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13377   case ISD::ADD:                return LowerADD(Op, DAG);
13378   case ISD::SUB:                return LowerSUB(Op, DAG);
13379   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13380   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13381   }
13382 }
13383
13384 static void ReplaceATOMIC_LOAD(SDNode *Node,
13385                                   SmallVectorImpl<SDValue> &Results,
13386                                   SelectionDAG &DAG) {
13387   SDLoc dl(Node);
13388   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13389
13390   // Convert wide load -> cmpxchg8b/cmpxchg16b
13391   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13392   //        (The only way to get a 16-byte load is cmpxchg16b)
13393   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13394   SDValue Zero = DAG.getConstant(0, VT);
13395   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13396                                Node->getOperand(0),
13397                                Node->getOperand(1), Zero, Zero,
13398                                cast<AtomicSDNode>(Node)->getMemOperand(),
13399                                cast<AtomicSDNode>(Node)->getOrdering(),
13400                                cast<AtomicSDNode>(Node)->getSynchScope());
13401   Results.push_back(Swap.getValue(0));
13402   Results.push_back(Swap.getValue(1));
13403 }
13404
13405 static void
13406 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13407                         SelectionDAG &DAG, unsigned NewOp) {
13408   SDLoc dl(Node);
13409   assert (Node->getValueType(0) == MVT::i64 &&
13410           "Only know how to expand i64 atomics");
13411
13412   SDValue Chain = Node->getOperand(0);
13413   SDValue In1 = Node->getOperand(1);
13414   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13415                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13416   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13417                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13418   SDValue Ops[] = { Chain, In1, In2L, In2H };
13419   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13420   SDValue Result =
13421     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13422                             cast<MemSDNode>(Node)->getMemOperand());
13423   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13424   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13425   Results.push_back(Result.getValue(2));
13426 }
13427
13428 /// ReplaceNodeResults - Replace a node with an illegal result type
13429 /// with a new node built out of custom code.
13430 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13431                                            SmallVectorImpl<SDValue>&Results,
13432                                            SelectionDAG &DAG) const {
13433   SDLoc dl(N);
13434   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13435   switch (N->getOpcode()) {
13436   default:
13437     llvm_unreachable("Do not know how to custom type legalize this operation!");
13438   case ISD::SIGN_EXTEND_INREG:
13439   case ISD::ADDC:
13440   case ISD::ADDE:
13441   case ISD::SUBC:
13442   case ISD::SUBE:
13443     // We don't want to expand or promote these.
13444     return;
13445   case ISD::FP_TO_SINT:
13446   case ISD::FP_TO_UINT: {
13447     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13448
13449     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13450       return;
13451
13452     std::pair<SDValue,SDValue> Vals =
13453         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13454     SDValue FIST = Vals.first, StackSlot = Vals.second;
13455     if (FIST.getNode() != 0) {
13456       EVT VT = N->getValueType(0);
13457       // Return a load from the stack slot.
13458       if (StackSlot.getNode() != 0)
13459         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13460                                       MachinePointerInfo(),
13461                                       false, false, false, 0));
13462       else
13463         Results.push_back(FIST);
13464     }
13465     return;
13466   }
13467   case ISD::UINT_TO_FP: {
13468     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13469     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13470         N->getValueType(0) != MVT::v2f32)
13471       return;
13472     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13473                                  N->getOperand(0));
13474     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13475                                      MVT::f64);
13476     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13477     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13478                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13479     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13480     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13481     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13482     return;
13483   }
13484   case ISD::FP_ROUND: {
13485     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13486         return;
13487     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13488     Results.push_back(V);
13489     return;
13490   }
13491   case ISD::READCYCLECOUNTER: {
13492     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13493     SDValue TheChain = N->getOperand(0);
13494     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13495     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13496                                      rd.getValue(1));
13497     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13498                                      eax.getValue(2));
13499     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13500     SDValue Ops[] = { eax, edx };
13501     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13502                                   array_lengthof(Ops)));
13503     Results.push_back(edx.getValue(1));
13504     return;
13505   }
13506   case ISD::ATOMIC_CMP_SWAP: {
13507     EVT T = N->getValueType(0);
13508     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13509     bool Regs64bit = T == MVT::i128;
13510     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13511     SDValue cpInL, cpInH;
13512     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13513                         DAG.getConstant(0, HalfT));
13514     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13515                         DAG.getConstant(1, HalfT));
13516     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13517                              Regs64bit ? X86::RAX : X86::EAX,
13518                              cpInL, SDValue());
13519     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13520                              Regs64bit ? X86::RDX : X86::EDX,
13521                              cpInH, cpInL.getValue(1));
13522     SDValue swapInL, swapInH;
13523     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13524                           DAG.getConstant(0, HalfT));
13525     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13526                           DAG.getConstant(1, HalfT));
13527     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13528                                Regs64bit ? X86::RBX : X86::EBX,
13529                                swapInL, cpInH.getValue(1));
13530     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13531                                Regs64bit ? X86::RCX : X86::ECX,
13532                                swapInH, swapInL.getValue(1));
13533     SDValue Ops[] = { swapInH.getValue(0),
13534                       N->getOperand(1),
13535                       swapInH.getValue(1) };
13536     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13537     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13538     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13539                                   X86ISD::LCMPXCHG8_DAG;
13540     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13541                                              Ops, array_lengthof(Ops), T, MMO);
13542     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13543                                         Regs64bit ? X86::RAX : X86::EAX,
13544                                         HalfT, Result.getValue(1));
13545     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13546                                         Regs64bit ? X86::RDX : X86::EDX,
13547                                         HalfT, cpOutL.getValue(2));
13548     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13549     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13550     Results.push_back(cpOutH.getValue(1));
13551     return;
13552   }
13553   case ISD::ATOMIC_LOAD_ADD:
13554   case ISD::ATOMIC_LOAD_AND:
13555   case ISD::ATOMIC_LOAD_NAND:
13556   case ISD::ATOMIC_LOAD_OR:
13557   case ISD::ATOMIC_LOAD_SUB:
13558   case ISD::ATOMIC_LOAD_XOR:
13559   case ISD::ATOMIC_LOAD_MAX:
13560   case ISD::ATOMIC_LOAD_MIN:
13561   case ISD::ATOMIC_LOAD_UMAX:
13562   case ISD::ATOMIC_LOAD_UMIN:
13563   case ISD::ATOMIC_SWAP: {
13564     unsigned Opc;
13565     switch (N->getOpcode()) {
13566     default: llvm_unreachable("Unexpected opcode");
13567     case ISD::ATOMIC_LOAD_ADD:
13568       Opc = X86ISD::ATOMADD64_DAG;
13569       break;
13570     case ISD::ATOMIC_LOAD_AND:
13571       Opc = X86ISD::ATOMAND64_DAG;
13572       break;
13573     case ISD::ATOMIC_LOAD_NAND:
13574       Opc = X86ISD::ATOMNAND64_DAG;
13575       break;
13576     case ISD::ATOMIC_LOAD_OR:
13577       Opc = X86ISD::ATOMOR64_DAG;
13578       break;
13579     case ISD::ATOMIC_LOAD_SUB:
13580       Opc = X86ISD::ATOMSUB64_DAG;
13581       break;
13582     case ISD::ATOMIC_LOAD_XOR:
13583       Opc = X86ISD::ATOMXOR64_DAG;
13584       break;
13585     case ISD::ATOMIC_LOAD_MAX:
13586       Opc = X86ISD::ATOMMAX64_DAG;
13587       break;
13588     case ISD::ATOMIC_LOAD_MIN:
13589       Opc = X86ISD::ATOMMIN64_DAG;
13590       break;
13591     case ISD::ATOMIC_LOAD_UMAX:
13592       Opc = X86ISD::ATOMUMAX64_DAG;
13593       break;
13594     case ISD::ATOMIC_LOAD_UMIN:
13595       Opc = X86ISD::ATOMUMIN64_DAG;
13596       break;
13597     case ISD::ATOMIC_SWAP:
13598       Opc = X86ISD::ATOMSWAP64_DAG;
13599       break;
13600     }
13601     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13602     return;
13603   }
13604   case ISD::ATOMIC_LOAD:
13605     ReplaceATOMIC_LOAD(N, Results, DAG);
13606   }
13607 }
13608
13609 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13610   switch (Opcode) {
13611   default: return NULL;
13612   case X86ISD::BSF:                return "X86ISD::BSF";
13613   case X86ISD::BSR:                return "X86ISD::BSR";
13614   case X86ISD::SHLD:               return "X86ISD::SHLD";
13615   case X86ISD::SHRD:               return "X86ISD::SHRD";
13616   case X86ISD::FAND:               return "X86ISD::FAND";
13617   case X86ISD::FANDN:              return "X86ISD::FANDN";
13618   case X86ISD::FOR:                return "X86ISD::FOR";
13619   case X86ISD::FXOR:               return "X86ISD::FXOR";
13620   case X86ISD::FSRL:               return "X86ISD::FSRL";
13621   case X86ISD::FILD:               return "X86ISD::FILD";
13622   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13623   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13624   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13625   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13626   case X86ISD::FLD:                return "X86ISD::FLD";
13627   case X86ISD::FST:                return "X86ISD::FST";
13628   case X86ISD::CALL:               return "X86ISD::CALL";
13629   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13630   case X86ISD::BT:                 return "X86ISD::BT";
13631   case X86ISD::CMP:                return "X86ISD::CMP";
13632   case X86ISD::COMI:               return "X86ISD::COMI";
13633   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13634   case X86ISD::CMPM:               return "X86ISD::CMPM";
13635   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13636   case X86ISD::SETCC:              return "X86ISD::SETCC";
13637   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13638   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13639   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13640   case X86ISD::CMOV:               return "X86ISD::CMOV";
13641   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13642   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13643   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13644   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13645   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13646   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13647   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13648   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13649   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13650   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13651   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13652   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13653   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13654   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13655   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13656   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13657   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13658   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13659   case X86ISD::HADD:               return "X86ISD::HADD";
13660   case X86ISD::HSUB:               return "X86ISD::HSUB";
13661   case X86ISD::FHADD:              return "X86ISD::FHADD";
13662   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13663   case X86ISD::UMAX:               return "X86ISD::UMAX";
13664   case X86ISD::UMIN:               return "X86ISD::UMIN";
13665   case X86ISD::SMAX:               return "X86ISD::SMAX";
13666   case X86ISD::SMIN:               return "X86ISD::SMIN";
13667   case X86ISD::FMAX:               return "X86ISD::FMAX";
13668   case X86ISD::FMIN:               return "X86ISD::FMIN";
13669   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13670   case X86ISD::FMINC:              return "X86ISD::FMINC";
13671   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13672   case X86ISD::FRCP:               return "X86ISD::FRCP";
13673   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13674   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13675   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13676   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13677   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13678   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13679   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13680   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13681   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13682   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13683   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13684   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13685   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13686   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13687   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13688   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13689   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13690   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13691   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13692   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13693   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13694   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13695   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13696   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13697   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13698   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13699   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13700   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13701   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13702   case X86ISD::VSHL:               return "X86ISD::VSHL";
13703   case X86ISD::VSRL:               return "X86ISD::VSRL";
13704   case X86ISD::VSRA:               return "X86ISD::VSRA";
13705   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13706   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13707   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13708   case X86ISD::CMPP:               return "X86ISD::CMPP";
13709   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13710   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13711   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13712   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13713   case X86ISD::ADD:                return "X86ISD::ADD";
13714   case X86ISD::SUB:                return "X86ISD::SUB";
13715   case X86ISD::ADC:                return "X86ISD::ADC";
13716   case X86ISD::SBB:                return "X86ISD::SBB";
13717   case X86ISD::SMUL:               return "X86ISD::SMUL";
13718   case X86ISD::UMUL:               return "X86ISD::UMUL";
13719   case X86ISD::INC:                return "X86ISD::INC";
13720   case X86ISD::DEC:                return "X86ISD::DEC";
13721   case X86ISD::OR:                 return "X86ISD::OR";
13722   case X86ISD::XOR:                return "X86ISD::XOR";
13723   case X86ISD::AND:                return "X86ISD::AND";
13724   case X86ISD::BLSI:               return "X86ISD::BLSI";
13725   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13726   case X86ISD::BLSR:               return "X86ISD::BLSR";
13727   case X86ISD::BZHI:               return "X86ISD::BZHI";
13728   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13729   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13730   case X86ISD::PTEST:              return "X86ISD::PTEST";
13731   case X86ISD::TESTP:              return "X86ISD::TESTP";
13732   case X86ISD::TESTM:              return "X86ISD::TESTM";
13733   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13734   case X86ISD::KTEST:              return "X86ISD::KTEST";
13735   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13736   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13737   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13738   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13739   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13740   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13741   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13742   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13743   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13744   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13745   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13746   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13747   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13748   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13749   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13750   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13751   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13752   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13753   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13754   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13755   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13756   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13757   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13758   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13759   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13760   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13761   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13762   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13763   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13764   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13765   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13766   case X86ISD::SAHF:               return "X86ISD::SAHF";
13767   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13768   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13769   case X86ISD::FMADD:              return "X86ISD::FMADD";
13770   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13771   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13772   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13773   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13774   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13775   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13776   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13777   case X86ISD::XTEST:              return "X86ISD::XTEST";
13778   }
13779 }
13780
13781 // isLegalAddressingMode - Return true if the addressing mode represented
13782 // by AM is legal for this target, for a load/store of the specified type.
13783 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13784                                               Type *Ty) const {
13785   // X86 supports extremely general addressing modes.
13786   CodeModel::Model M = getTargetMachine().getCodeModel();
13787   Reloc::Model R = getTargetMachine().getRelocationModel();
13788
13789   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13790   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13791     return false;
13792
13793   if (AM.BaseGV) {
13794     unsigned GVFlags =
13795       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13796
13797     // If a reference to this global requires an extra load, we can't fold it.
13798     if (isGlobalStubReference(GVFlags))
13799       return false;
13800
13801     // If BaseGV requires a register for the PIC base, we cannot also have a
13802     // BaseReg specified.
13803     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13804       return false;
13805
13806     // If lower 4G is not available, then we must use rip-relative addressing.
13807     if ((M != CodeModel::Small || R != Reloc::Static) &&
13808         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13809       return false;
13810   }
13811
13812   switch (AM.Scale) {
13813   case 0:
13814   case 1:
13815   case 2:
13816   case 4:
13817   case 8:
13818     // These scales always work.
13819     break;
13820   case 3:
13821   case 5:
13822   case 9:
13823     // These scales are formed with basereg+scalereg.  Only accept if there is
13824     // no basereg yet.
13825     if (AM.HasBaseReg)
13826       return false;
13827     break;
13828   default:  // Other stuff never works.
13829     return false;
13830   }
13831
13832   return true;
13833 }
13834
13835 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13836   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13837     return false;
13838   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13839   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13840   return NumBits1 > NumBits2;
13841 }
13842
13843 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13844   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13845     return false;
13846
13847   if (!isTypeLegal(EVT::getEVT(Ty1)))
13848     return false;
13849
13850   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13851
13852   // Assuming the caller doesn't have a zeroext or signext return parameter,
13853   // truncation all the way down to i1 is valid.
13854   return true;
13855 }
13856
13857 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13858   return isInt<32>(Imm);
13859 }
13860
13861 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13862   // Can also use sub to handle negated immediates.
13863   return isInt<32>(Imm);
13864 }
13865
13866 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13867   if (!VT1.isInteger() || !VT2.isInteger())
13868     return false;
13869   unsigned NumBits1 = VT1.getSizeInBits();
13870   unsigned NumBits2 = VT2.getSizeInBits();
13871   return NumBits1 > NumBits2;
13872 }
13873
13874 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13875   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13876   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13877 }
13878
13879 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13880   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13881   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13882 }
13883
13884 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13885   EVT VT1 = Val.getValueType();
13886   if (isZExtFree(VT1, VT2))
13887     return true;
13888
13889   if (Val.getOpcode() != ISD::LOAD)
13890     return false;
13891
13892   if (!VT1.isSimple() || !VT1.isInteger() ||
13893       !VT2.isSimple() || !VT2.isInteger())
13894     return false;
13895
13896   switch (VT1.getSimpleVT().SimpleTy) {
13897   default: break;
13898   case MVT::i8:
13899   case MVT::i16:
13900   case MVT::i32:
13901     // X86 has 8, 16, and 32-bit zero-extending loads.
13902     return true;
13903   }
13904
13905   return false;
13906 }
13907
13908 bool
13909 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13910   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13911     return false;
13912
13913   VT = VT.getScalarType();
13914
13915   if (!VT.isSimple())
13916     return false;
13917
13918   switch (VT.getSimpleVT().SimpleTy) {
13919   case MVT::f32:
13920   case MVT::f64:
13921     return true;
13922   default:
13923     break;
13924   }
13925
13926   return false;
13927 }
13928
13929 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13930   // i16 instructions are longer (0x66 prefix) and potentially slower.
13931   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13932 }
13933
13934 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13935 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13936 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13937 /// are assumed to be legal.
13938 bool
13939 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13940                                       EVT VT) const {
13941   if (!VT.isSimple())
13942     return false;
13943
13944   MVT SVT = VT.getSimpleVT();
13945
13946   // Very little shuffling can be done for 64-bit vectors right now.
13947   if (VT.getSizeInBits() == 64)
13948     return false;
13949
13950   // FIXME: pshufb, blends, shifts.
13951   return (SVT.getVectorNumElements() == 2 ||
13952           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13953           isMOVLMask(M, SVT) ||
13954           isSHUFPMask(M, SVT) ||
13955           isPSHUFDMask(M, SVT) ||
13956           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13957           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13958           isPALIGNRMask(M, SVT, Subtarget) ||
13959           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13960           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13961           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13962           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13963 }
13964
13965 bool
13966 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13967                                           EVT VT) const {
13968   if (!VT.isSimple())
13969     return false;
13970
13971   MVT SVT = VT.getSimpleVT();
13972   unsigned NumElts = SVT.getVectorNumElements();
13973   // FIXME: This collection of masks seems suspect.
13974   if (NumElts == 2)
13975     return true;
13976   if (NumElts == 4 && SVT.is128BitVector()) {
13977     return (isMOVLMask(Mask, SVT)  ||
13978             isCommutedMOVLMask(Mask, SVT, true) ||
13979             isSHUFPMask(Mask, SVT) ||
13980             isSHUFPMask(Mask, SVT, /* Commuted */ true));
13981   }
13982   return false;
13983 }
13984
13985 //===----------------------------------------------------------------------===//
13986 //                           X86 Scheduler Hooks
13987 //===----------------------------------------------------------------------===//
13988
13989 /// Utility function to emit xbegin specifying the start of an RTM region.
13990 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
13991                                      const TargetInstrInfo *TII) {
13992   DebugLoc DL = MI->getDebugLoc();
13993
13994   const BasicBlock *BB = MBB->getBasicBlock();
13995   MachineFunction::iterator I = MBB;
13996   ++I;
13997
13998   // For the v = xbegin(), we generate
13999   //
14000   // thisMBB:
14001   //  xbegin sinkMBB
14002   //
14003   // mainMBB:
14004   //  eax = -1
14005   //
14006   // sinkMBB:
14007   //  v = eax
14008
14009   MachineBasicBlock *thisMBB = MBB;
14010   MachineFunction *MF = MBB->getParent();
14011   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14012   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14013   MF->insert(I, mainMBB);
14014   MF->insert(I, sinkMBB);
14015
14016   // Transfer the remainder of BB and its successor edges to sinkMBB.
14017   sinkMBB->splice(sinkMBB->begin(), MBB,
14018                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14019   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14020
14021   // thisMBB:
14022   //  xbegin sinkMBB
14023   //  # fallthrough to mainMBB
14024   //  # abortion to sinkMBB
14025   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14026   thisMBB->addSuccessor(mainMBB);
14027   thisMBB->addSuccessor(sinkMBB);
14028
14029   // mainMBB:
14030   //  EAX = -1
14031   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14032   mainMBB->addSuccessor(sinkMBB);
14033
14034   // sinkMBB:
14035   // EAX is live into the sinkMBB
14036   sinkMBB->addLiveIn(X86::EAX);
14037   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14038           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14039     .addReg(X86::EAX);
14040
14041   MI->eraseFromParent();
14042   return sinkMBB;
14043 }
14044
14045 // Get CMPXCHG opcode for the specified data type.
14046 static unsigned getCmpXChgOpcode(EVT VT) {
14047   switch (VT.getSimpleVT().SimpleTy) {
14048   case MVT::i8:  return X86::LCMPXCHG8;
14049   case MVT::i16: return X86::LCMPXCHG16;
14050   case MVT::i32: return X86::LCMPXCHG32;
14051   case MVT::i64: return X86::LCMPXCHG64;
14052   default:
14053     break;
14054   }
14055   llvm_unreachable("Invalid operand size!");
14056 }
14057
14058 // Get LOAD opcode for the specified data type.
14059 static unsigned getLoadOpcode(EVT VT) {
14060   switch (VT.getSimpleVT().SimpleTy) {
14061   case MVT::i8:  return X86::MOV8rm;
14062   case MVT::i16: return X86::MOV16rm;
14063   case MVT::i32: return X86::MOV32rm;
14064   case MVT::i64: return X86::MOV64rm;
14065   default:
14066     break;
14067   }
14068   llvm_unreachable("Invalid operand size!");
14069 }
14070
14071 // Get opcode of the non-atomic one from the specified atomic instruction.
14072 static unsigned getNonAtomicOpcode(unsigned Opc) {
14073   switch (Opc) {
14074   case X86::ATOMAND8:  return X86::AND8rr;
14075   case X86::ATOMAND16: return X86::AND16rr;
14076   case X86::ATOMAND32: return X86::AND32rr;
14077   case X86::ATOMAND64: return X86::AND64rr;
14078   case X86::ATOMOR8:   return X86::OR8rr;
14079   case X86::ATOMOR16:  return X86::OR16rr;
14080   case X86::ATOMOR32:  return X86::OR32rr;
14081   case X86::ATOMOR64:  return X86::OR64rr;
14082   case X86::ATOMXOR8:  return X86::XOR8rr;
14083   case X86::ATOMXOR16: return X86::XOR16rr;
14084   case X86::ATOMXOR32: return X86::XOR32rr;
14085   case X86::ATOMXOR64: return X86::XOR64rr;
14086   }
14087   llvm_unreachable("Unhandled atomic-load-op opcode!");
14088 }
14089
14090 // Get opcode of the non-atomic one from the specified atomic instruction with
14091 // extra opcode.
14092 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14093                                                unsigned &ExtraOpc) {
14094   switch (Opc) {
14095   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14096   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14097   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14098   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14099   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14100   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14101   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14102   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14103   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14104   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14105   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14106   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14107   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14108   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14109   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14110   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14111   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14112   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14113   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14114   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14115   }
14116   llvm_unreachable("Unhandled atomic-load-op opcode!");
14117 }
14118
14119 // Get opcode of the non-atomic one from the specified atomic instruction for
14120 // 64-bit data type on 32-bit target.
14121 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14122   switch (Opc) {
14123   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14124   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14125   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14126   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14127   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14128   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14129   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14130   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14131   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14132   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14133   }
14134   llvm_unreachable("Unhandled atomic-load-op opcode!");
14135 }
14136
14137 // Get opcode of the non-atomic one from the specified atomic instruction for
14138 // 64-bit data type on 32-bit target with extra opcode.
14139 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14140                                                    unsigned &HiOpc,
14141                                                    unsigned &ExtraOpc) {
14142   switch (Opc) {
14143   case X86::ATOMNAND6432:
14144     ExtraOpc = X86::NOT32r;
14145     HiOpc = X86::AND32rr;
14146     return X86::AND32rr;
14147   }
14148   llvm_unreachable("Unhandled atomic-load-op opcode!");
14149 }
14150
14151 // Get pseudo CMOV opcode from the specified data type.
14152 static unsigned getPseudoCMOVOpc(EVT VT) {
14153   switch (VT.getSimpleVT().SimpleTy) {
14154   case MVT::i8:  return X86::CMOV_GR8;
14155   case MVT::i16: return X86::CMOV_GR16;
14156   case MVT::i32: return X86::CMOV_GR32;
14157   default:
14158     break;
14159   }
14160   llvm_unreachable("Unknown CMOV opcode!");
14161 }
14162
14163 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14164 // They will be translated into a spin-loop or compare-exchange loop from
14165 //
14166 //    ...
14167 //    dst = atomic-fetch-op MI.addr, MI.val
14168 //    ...
14169 //
14170 // to
14171 //
14172 //    ...
14173 //    t1 = LOAD MI.addr
14174 // loop:
14175 //    t4 = phi(t1, t3 / loop)
14176 //    t2 = OP MI.val, t4
14177 //    EAX = t4
14178 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14179 //    t3 = EAX
14180 //    JNE loop
14181 // sink:
14182 //    dst = t3
14183 //    ...
14184 MachineBasicBlock *
14185 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14186                                        MachineBasicBlock *MBB) const {
14187   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14188   DebugLoc DL = MI->getDebugLoc();
14189
14190   MachineFunction *MF = MBB->getParent();
14191   MachineRegisterInfo &MRI = MF->getRegInfo();
14192
14193   const BasicBlock *BB = MBB->getBasicBlock();
14194   MachineFunction::iterator I = MBB;
14195   ++I;
14196
14197   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14198          "Unexpected number of operands");
14199
14200   assert(MI->hasOneMemOperand() &&
14201          "Expected atomic-load-op to have one memoperand");
14202
14203   // Memory Reference
14204   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14205   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14206
14207   unsigned DstReg, SrcReg;
14208   unsigned MemOpndSlot;
14209
14210   unsigned CurOp = 0;
14211
14212   DstReg = MI->getOperand(CurOp++).getReg();
14213   MemOpndSlot = CurOp;
14214   CurOp += X86::AddrNumOperands;
14215   SrcReg = MI->getOperand(CurOp++).getReg();
14216
14217   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14218   MVT::SimpleValueType VT = *RC->vt_begin();
14219   unsigned t1 = MRI.createVirtualRegister(RC);
14220   unsigned t2 = MRI.createVirtualRegister(RC);
14221   unsigned t3 = MRI.createVirtualRegister(RC);
14222   unsigned t4 = MRI.createVirtualRegister(RC);
14223   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14224
14225   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14226   unsigned LOADOpc = getLoadOpcode(VT);
14227
14228   // For the atomic load-arith operator, we generate
14229   //
14230   //  thisMBB:
14231   //    t1 = LOAD [MI.addr]
14232   //  mainMBB:
14233   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14234   //    t1 = OP MI.val, EAX
14235   //    EAX = t4
14236   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14237   //    t3 = EAX
14238   //    JNE mainMBB
14239   //  sinkMBB:
14240   //    dst = t3
14241
14242   MachineBasicBlock *thisMBB = MBB;
14243   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14244   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14245   MF->insert(I, mainMBB);
14246   MF->insert(I, sinkMBB);
14247
14248   MachineInstrBuilder MIB;
14249
14250   // Transfer the remainder of BB and its successor edges to sinkMBB.
14251   sinkMBB->splice(sinkMBB->begin(), MBB,
14252                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14253   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14254
14255   // thisMBB:
14256   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14257   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14258     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14259     if (NewMO.isReg())
14260       NewMO.setIsKill(false);
14261     MIB.addOperand(NewMO);
14262   }
14263   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14264     unsigned flags = (*MMOI)->getFlags();
14265     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14266     MachineMemOperand *MMO =
14267       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14268                                (*MMOI)->getSize(),
14269                                (*MMOI)->getBaseAlignment(),
14270                                (*MMOI)->getTBAAInfo(),
14271                                (*MMOI)->getRanges());
14272     MIB.addMemOperand(MMO);
14273   }
14274
14275   thisMBB->addSuccessor(mainMBB);
14276
14277   // mainMBB:
14278   MachineBasicBlock *origMainMBB = mainMBB;
14279
14280   // Add a PHI.
14281   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14282                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14283
14284   unsigned Opc = MI->getOpcode();
14285   switch (Opc) {
14286   default:
14287     llvm_unreachable("Unhandled atomic-load-op opcode!");
14288   case X86::ATOMAND8:
14289   case X86::ATOMAND16:
14290   case X86::ATOMAND32:
14291   case X86::ATOMAND64:
14292   case X86::ATOMOR8:
14293   case X86::ATOMOR16:
14294   case X86::ATOMOR32:
14295   case X86::ATOMOR64:
14296   case X86::ATOMXOR8:
14297   case X86::ATOMXOR16:
14298   case X86::ATOMXOR32:
14299   case X86::ATOMXOR64: {
14300     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14301     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14302       .addReg(t4);
14303     break;
14304   }
14305   case X86::ATOMNAND8:
14306   case X86::ATOMNAND16:
14307   case X86::ATOMNAND32:
14308   case X86::ATOMNAND64: {
14309     unsigned Tmp = MRI.createVirtualRegister(RC);
14310     unsigned NOTOpc;
14311     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14312     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14313       .addReg(t4);
14314     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14315     break;
14316   }
14317   case X86::ATOMMAX8:
14318   case X86::ATOMMAX16:
14319   case X86::ATOMMAX32:
14320   case X86::ATOMMAX64:
14321   case X86::ATOMMIN8:
14322   case X86::ATOMMIN16:
14323   case X86::ATOMMIN32:
14324   case X86::ATOMMIN64:
14325   case X86::ATOMUMAX8:
14326   case X86::ATOMUMAX16:
14327   case X86::ATOMUMAX32:
14328   case X86::ATOMUMAX64:
14329   case X86::ATOMUMIN8:
14330   case X86::ATOMUMIN16:
14331   case X86::ATOMUMIN32:
14332   case X86::ATOMUMIN64: {
14333     unsigned CMPOpc;
14334     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14335
14336     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14337       .addReg(SrcReg)
14338       .addReg(t4);
14339
14340     if (Subtarget->hasCMov()) {
14341       if (VT != MVT::i8) {
14342         // Native support
14343         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14344           .addReg(SrcReg)
14345           .addReg(t4);
14346       } else {
14347         // Promote i8 to i32 to use CMOV32
14348         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14349         const TargetRegisterClass *RC32 =
14350           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14351         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14352         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14353         unsigned Tmp = MRI.createVirtualRegister(RC32);
14354
14355         unsigned Undef = MRI.createVirtualRegister(RC32);
14356         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14357
14358         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14359           .addReg(Undef)
14360           .addReg(SrcReg)
14361           .addImm(X86::sub_8bit);
14362         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14363           .addReg(Undef)
14364           .addReg(t4)
14365           .addImm(X86::sub_8bit);
14366
14367         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14368           .addReg(SrcReg32)
14369           .addReg(AccReg32);
14370
14371         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14372           .addReg(Tmp, 0, X86::sub_8bit);
14373       }
14374     } else {
14375       // Use pseudo select and lower them.
14376       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14377              "Invalid atomic-load-op transformation!");
14378       unsigned SelOpc = getPseudoCMOVOpc(VT);
14379       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14380       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14381       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14382               .addReg(SrcReg).addReg(t4)
14383               .addImm(CC);
14384       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14385       // Replace the original PHI node as mainMBB is changed after CMOV
14386       // lowering.
14387       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14388         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14389       Phi->eraseFromParent();
14390     }
14391     break;
14392   }
14393   }
14394
14395   // Copy PhyReg back from virtual register.
14396   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14397     .addReg(t4);
14398
14399   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14400   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14401     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14402     if (NewMO.isReg())
14403       NewMO.setIsKill(false);
14404     MIB.addOperand(NewMO);
14405   }
14406   MIB.addReg(t2);
14407   MIB.setMemRefs(MMOBegin, MMOEnd);
14408
14409   // Copy PhyReg back to virtual register.
14410   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14411     .addReg(PhyReg);
14412
14413   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14414
14415   mainMBB->addSuccessor(origMainMBB);
14416   mainMBB->addSuccessor(sinkMBB);
14417
14418   // sinkMBB:
14419   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14420           TII->get(TargetOpcode::COPY), DstReg)
14421     .addReg(t3);
14422
14423   MI->eraseFromParent();
14424   return sinkMBB;
14425 }
14426
14427 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14428 // instructions. They will be translated into a spin-loop or compare-exchange
14429 // loop from
14430 //
14431 //    ...
14432 //    dst = atomic-fetch-op MI.addr, MI.val
14433 //    ...
14434 //
14435 // to
14436 //
14437 //    ...
14438 //    t1L = LOAD [MI.addr + 0]
14439 //    t1H = LOAD [MI.addr + 4]
14440 // loop:
14441 //    t4L = phi(t1L, t3L / loop)
14442 //    t4H = phi(t1H, t3H / loop)
14443 //    t2L = OP MI.val.lo, t4L
14444 //    t2H = OP MI.val.hi, t4H
14445 //    EAX = t4L
14446 //    EDX = t4H
14447 //    EBX = t2L
14448 //    ECX = t2H
14449 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14450 //    t3L = EAX
14451 //    t3H = EDX
14452 //    JNE loop
14453 // sink:
14454 //    dstL = t3L
14455 //    dstH = t3H
14456 //    ...
14457 MachineBasicBlock *
14458 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14459                                            MachineBasicBlock *MBB) const {
14460   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14461   DebugLoc DL = MI->getDebugLoc();
14462
14463   MachineFunction *MF = MBB->getParent();
14464   MachineRegisterInfo &MRI = MF->getRegInfo();
14465
14466   const BasicBlock *BB = MBB->getBasicBlock();
14467   MachineFunction::iterator I = MBB;
14468   ++I;
14469
14470   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14471          "Unexpected number of operands");
14472
14473   assert(MI->hasOneMemOperand() &&
14474          "Expected atomic-load-op32 to have one memoperand");
14475
14476   // Memory Reference
14477   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14478   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14479
14480   unsigned DstLoReg, DstHiReg;
14481   unsigned SrcLoReg, SrcHiReg;
14482   unsigned MemOpndSlot;
14483
14484   unsigned CurOp = 0;
14485
14486   DstLoReg = MI->getOperand(CurOp++).getReg();
14487   DstHiReg = MI->getOperand(CurOp++).getReg();
14488   MemOpndSlot = CurOp;
14489   CurOp += X86::AddrNumOperands;
14490   SrcLoReg = MI->getOperand(CurOp++).getReg();
14491   SrcHiReg = MI->getOperand(CurOp++).getReg();
14492
14493   const TargetRegisterClass *RC = &X86::GR32RegClass;
14494   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14495
14496   unsigned t1L = MRI.createVirtualRegister(RC);
14497   unsigned t1H = MRI.createVirtualRegister(RC);
14498   unsigned t2L = MRI.createVirtualRegister(RC);
14499   unsigned t2H = MRI.createVirtualRegister(RC);
14500   unsigned t3L = MRI.createVirtualRegister(RC);
14501   unsigned t3H = MRI.createVirtualRegister(RC);
14502   unsigned t4L = MRI.createVirtualRegister(RC);
14503   unsigned t4H = MRI.createVirtualRegister(RC);
14504
14505   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14506   unsigned LOADOpc = X86::MOV32rm;
14507
14508   // For the atomic load-arith operator, we generate
14509   //
14510   //  thisMBB:
14511   //    t1L = LOAD [MI.addr + 0]
14512   //    t1H = LOAD [MI.addr + 4]
14513   //  mainMBB:
14514   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14515   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14516   //    t2L = OP MI.val.lo, t4L
14517   //    t2H = OP MI.val.hi, t4H
14518   //    EBX = t2L
14519   //    ECX = t2H
14520   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14521   //    t3L = EAX
14522   //    t3H = EDX
14523   //    JNE loop
14524   //  sinkMBB:
14525   //    dstL = t3L
14526   //    dstH = t3H
14527
14528   MachineBasicBlock *thisMBB = MBB;
14529   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14530   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14531   MF->insert(I, mainMBB);
14532   MF->insert(I, sinkMBB);
14533
14534   MachineInstrBuilder MIB;
14535
14536   // Transfer the remainder of BB and its successor edges to sinkMBB.
14537   sinkMBB->splice(sinkMBB->begin(), MBB,
14538                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14539   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14540
14541   // thisMBB:
14542   // Lo
14543   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14544   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14545     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14546     if (NewMO.isReg())
14547       NewMO.setIsKill(false);
14548     MIB.addOperand(NewMO);
14549   }
14550   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14551     unsigned flags = (*MMOI)->getFlags();
14552     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14553     MachineMemOperand *MMO =
14554       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14555                                (*MMOI)->getSize(),
14556                                (*MMOI)->getBaseAlignment(),
14557                                (*MMOI)->getTBAAInfo(),
14558                                (*MMOI)->getRanges());
14559     MIB.addMemOperand(MMO);
14560   };
14561   MachineInstr *LowMI = MIB;
14562
14563   // Hi
14564   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14565   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14566     if (i == X86::AddrDisp) {
14567       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14568     } else {
14569       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14570       if (NewMO.isReg())
14571         NewMO.setIsKill(false);
14572       MIB.addOperand(NewMO);
14573     }
14574   }
14575   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14576
14577   thisMBB->addSuccessor(mainMBB);
14578
14579   // mainMBB:
14580   MachineBasicBlock *origMainMBB = mainMBB;
14581
14582   // Add PHIs.
14583   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14584                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14585   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14586                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14587
14588   unsigned Opc = MI->getOpcode();
14589   switch (Opc) {
14590   default:
14591     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14592   case X86::ATOMAND6432:
14593   case X86::ATOMOR6432:
14594   case X86::ATOMXOR6432:
14595   case X86::ATOMADD6432:
14596   case X86::ATOMSUB6432: {
14597     unsigned HiOpc;
14598     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14599     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14600       .addReg(SrcLoReg);
14601     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14602       .addReg(SrcHiReg);
14603     break;
14604   }
14605   case X86::ATOMNAND6432: {
14606     unsigned HiOpc, NOTOpc;
14607     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14608     unsigned TmpL = MRI.createVirtualRegister(RC);
14609     unsigned TmpH = MRI.createVirtualRegister(RC);
14610     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14611       .addReg(t4L);
14612     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14613       .addReg(t4H);
14614     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14615     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14616     break;
14617   }
14618   case X86::ATOMMAX6432:
14619   case X86::ATOMMIN6432:
14620   case X86::ATOMUMAX6432:
14621   case X86::ATOMUMIN6432: {
14622     unsigned HiOpc;
14623     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14624     unsigned cL = MRI.createVirtualRegister(RC8);
14625     unsigned cH = MRI.createVirtualRegister(RC8);
14626     unsigned cL32 = MRI.createVirtualRegister(RC);
14627     unsigned cH32 = MRI.createVirtualRegister(RC);
14628     unsigned cc = MRI.createVirtualRegister(RC);
14629     // cl := cmp src_lo, lo
14630     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14631       .addReg(SrcLoReg).addReg(t4L);
14632     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14633     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14634     // ch := cmp src_hi, hi
14635     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14636       .addReg(SrcHiReg).addReg(t4H);
14637     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14638     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14639     // cc := if (src_hi == hi) ? cl : ch;
14640     if (Subtarget->hasCMov()) {
14641       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14642         .addReg(cH32).addReg(cL32);
14643     } else {
14644       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14645               .addReg(cH32).addReg(cL32)
14646               .addImm(X86::COND_E);
14647       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14648     }
14649     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14650     if (Subtarget->hasCMov()) {
14651       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14652         .addReg(SrcLoReg).addReg(t4L);
14653       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14654         .addReg(SrcHiReg).addReg(t4H);
14655     } else {
14656       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14657               .addReg(SrcLoReg).addReg(t4L)
14658               .addImm(X86::COND_NE);
14659       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14660       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14661       // 2nd CMOV lowering.
14662       mainMBB->addLiveIn(X86::EFLAGS);
14663       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14664               .addReg(SrcHiReg).addReg(t4H)
14665               .addImm(X86::COND_NE);
14666       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14667       // Replace the original PHI node as mainMBB is changed after CMOV
14668       // lowering.
14669       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14670         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14671       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14672         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14673       PhiL->eraseFromParent();
14674       PhiH->eraseFromParent();
14675     }
14676     break;
14677   }
14678   case X86::ATOMSWAP6432: {
14679     unsigned HiOpc;
14680     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14681     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14682     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14683     break;
14684   }
14685   }
14686
14687   // Copy EDX:EAX back from HiReg:LoReg
14688   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14689   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14690   // Copy ECX:EBX from t1H:t1L
14691   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14692   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14693
14694   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14695   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14696     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14697     if (NewMO.isReg())
14698       NewMO.setIsKill(false);
14699     MIB.addOperand(NewMO);
14700   }
14701   MIB.setMemRefs(MMOBegin, MMOEnd);
14702
14703   // Copy EDX:EAX back to t3H:t3L
14704   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14705   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14706
14707   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14708
14709   mainMBB->addSuccessor(origMainMBB);
14710   mainMBB->addSuccessor(sinkMBB);
14711
14712   // sinkMBB:
14713   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14714           TII->get(TargetOpcode::COPY), DstLoReg)
14715     .addReg(t3L);
14716   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14717           TII->get(TargetOpcode::COPY), DstHiReg)
14718     .addReg(t3H);
14719
14720   MI->eraseFromParent();
14721   return sinkMBB;
14722 }
14723
14724 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14725 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14726 // in the .td file.
14727 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14728                                        const TargetInstrInfo *TII) {
14729   unsigned Opc;
14730   switch (MI->getOpcode()) {
14731   default: llvm_unreachable("illegal opcode!");
14732   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14733   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14734   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14735   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14736   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14737   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14738   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14739   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14740   }
14741
14742   DebugLoc dl = MI->getDebugLoc();
14743   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14744
14745   unsigned NumArgs = MI->getNumOperands();
14746   for (unsigned i = 1; i < NumArgs; ++i) {
14747     MachineOperand &Op = MI->getOperand(i);
14748     if (!(Op.isReg() && Op.isImplicit()))
14749       MIB.addOperand(Op);
14750   }
14751   if (MI->hasOneMemOperand())
14752     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14753
14754   BuildMI(*BB, MI, dl,
14755     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14756     .addReg(X86::XMM0);
14757
14758   MI->eraseFromParent();
14759   return BB;
14760 }
14761
14762 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14763 // defs in an instruction pattern
14764 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14765                                        const TargetInstrInfo *TII) {
14766   unsigned Opc;
14767   switch (MI->getOpcode()) {
14768   default: llvm_unreachable("illegal opcode!");
14769   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14770   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14771   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14772   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14773   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14774   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14775   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14776   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14777   }
14778
14779   DebugLoc dl = MI->getDebugLoc();
14780   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14781
14782   unsigned NumArgs = MI->getNumOperands(); // remove the results
14783   for (unsigned i = 1; i < NumArgs; ++i) {
14784     MachineOperand &Op = MI->getOperand(i);
14785     if (!(Op.isReg() && Op.isImplicit()))
14786       MIB.addOperand(Op);
14787   }
14788   if (MI->hasOneMemOperand())
14789     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14790
14791   BuildMI(*BB, MI, dl,
14792     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14793     .addReg(X86::ECX);
14794
14795   MI->eraseFromParent();
14796   return BB;
14797 }
14798
14799 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14800                                        const TargetInstrInfo *TII,
14801                                        const X86Subtarget* Subtarget) {
14802   DebugLoc dl = MI->getDebugLoc();
14803
14804   // Address into RAX/EAX, other two args into ECX, EDX.
14805   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14806   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14807   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14808   for (int i = 0; i < X86::AddrNumOperands; ++i)
14809     MIB.addOperand(MI->getOperand(i));
14810
14811   unsigned ValOps = X86::AddrNumOperands;
14812   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14813     .addReg(MI->getOperand(ValOps).getReg());
14814   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14815     .addReg(MI->getOperand(ValOps+1).getReg());
14816
14817   // The instruction doesn't actually take any operands though.
14818   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14819
14820   MI->eraseFromParent(); // The pseudo is gone now.
14821   return BB;
14822 }
14823
14824 MachineBasicBlock *
14825 X86TargetLowering::EmitVAARG64WithCustomInserter(
14826                    MachineInstr *MI,
14827                    MachineBasicBlock *MBB) const {
14828   // Emit va_arg instruction on X86-64.
14829
14830   // Operands to this pseudo-instruction:
14831   // 0  ) Output        : destination address (reg)
14832   // 1-5) Input         : va_list address (addr, i64mem)
14833   // 6  ) ArgSize       : Size (in bytes) of vararg type
14834   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14835   // 8  ) Align         : Alignment of type
14836   // 9  ) EFLAGS (implicit-def)
14837
14838   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14839   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14840
14841   unsigned DestReg = MI->getOperand(0).getReg();
14842   MachineOperand &Base = MI->getOperand(1);
14843   MachineOperand &Scale = MI->getOperand(2);
14844   MachineOperand &Index = MI->getOperand(3);
14845   MachineOperand &Disp = MI->getOperand(4);
14846   MachineOperand &Segment = MI->getOperand(5);
14847   unsigned ArgSize = MI->getOperand(6).getImm();
14848   unsigned ArgMode = MI->getOperand(7).getImm();
14849   unsigned Align = MI->getOperand(8).getImm();
14850
14851   // Memory Reference
14852   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14853   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14854   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14855
14856   // Machine Information
14857   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14858   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14859   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14860   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14861   DebugLoc DL = MI->getDebugLoc();
14862
14863   // struct va_list {
14864   //   i32   gp_offset
14865   //   i32   fp_offset
14866   //   i64   overflow_area (address)
14867   //   i64   reg_save_area (address)
14868   // }
14869   // sizeof(va_list) = 24
14870   // alignment(va_list) = 8
14871
14872   unsigned TotalNumIntRegs = 6;
14873   unsigned TotalNumXMMRegs = 8;
14874   bool UseGPOffset = (ArgMode == 1);
14875   bool UseFPOffset = (ArgMode == 2);
14876   unsigned MaxOffset = TotalNumIntRegs * 8 +
14877                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14878
14879   /* Align ArgSize to a multiple of 8 */
14880   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14881   bool NeedsAlign = (Align > 8);
14882
14883   MachineBasicBlock *thisMBB = MBB;
14884   MachineBasicBlock *overflowMBB;
14885   MachineBasicBlock *offsetMBB;
14886   MachineBasicBlock *endMBB;
14887
14888   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14889   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14890   unsigned OffsetReg = 0;
14891
14892   if (!UseGPOffset && !UseFPOffset) {
14893     // If we only pull from the overflow region, we don't create a branch.
14894     // We don't need to alter control flow.
14895     OffsetDestReg = 0; // unused
14896     OverflowDestReg = DestReg;
14897
14898     offsetMBB = NULL;
14899     overflowMBB = thisMBB;
14900     endMBB = thisMBB;
14901   } else {
14902     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14903     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14904     // If not, pull from overflow_area. (branch to overflowMBB)
14905     //
14906     //       thisMBB
14907     //         |     .
14908     //         |        .
14909     //     offsetMBB   overflowMBB
14910     //         |        .
14911     //         |     .
14912     //        endMBB
14913
14914     // Registers for the PHI in endMBB
14915     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14916     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14917
14918     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14919     MachineFunction *MF = MBB->getParent();
14920     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14921     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14922     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14923
14924     MachineFunction::iterator MBBIter = MBB;
14925     ++MBBIter;
14926
14927     // Insert the new basic blocks
14928     MF->insert(MBBIter, offsetMBB);
14929     MF->insert(MBBIter, overflowMBB);
14930     MF->insert(MBBIter, endMBB);
14931
14932     // Transfer the remainder of MBB and its successor edges to endMBB.
14933     endMBB->splice(endMBB->begin(), thisMBB,
14934                     llvm::next(MachineBasicBlock::iterator(MI)),
14935                     thisMBB->end());
14936     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14937
14938     // Make offsetMBB and overflowMBB successors of thisMBB
14939     thisMBB->addSuccessor(offsetMBB);
14940     thisMBB->addSuccessor(overflowMBB);
14941
14942     // endMBB is a successor of both offsetMBB and overflowMBB
14943     offsetMBB->addSuccessor(endMBB);
14944     overflowMBB->addSuccessor(endMBB);
14945
14946     // Load the offset value into a register
14947     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14948     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14949       .addOperand(Base)
14950       .addOperand(Scale)
14951       .addOperand(Index)
14952       .addDisp(Disp, UseFPOffset ? 4 : 0)
14953       .addOperand(Segment)
14954       .setMemRefs(MMOBegin, MMOEnd);
14955
14956     // Check if there is enough room left to pull this argument.
14957     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14958       .addReg(OffsetReg)
14959       .addImm(MaxOffset + 8 - ArgSizeA8);
14960
14961     // Branch to "overflowMBB" if offset >= max
14962     // Fall through to "offsetMBB" otherwise
14963     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14964       .addMBB(overflowMBB);
14965   }
14966
14967   // In offsetMBB, emit code to use the reg_save_area.
14968   if (offsetMBB) {
14969     assert(OffsetReg != 0);
14970
14971     // Read the reg_save_area address.
14972     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14973     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14974       .addOperand(Base)
14975       .addOperand(Scale)
14976       .addOperand(Index)
14977       .addDisp(Disp, 16)
14978       .addOperand(Segment)
14979       .setMemRefs(MMOBegin, MMOEnd);
14980
14981     // Zero-extend the offset
14982     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14983       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14984         .addImm(0)
14985         .addReg(OffsetReg)
14986         .addImm(X86::sub_32bit);
14987
14988     // Add the offset to the reg_save_area to get the final address.
14989     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
14990       .addReg(OffsetReg64)
14991       .addReg(RegSaveReg);
14992
14993     // Compute the offset for the next argument
14994     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14995     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
14996       .addReg(OffsetReg)
14997       .addImm(UseFPOffset ? 16 : 8);
14998
14999     // Store it back into the va_list.
15000     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15001       .addOperand(Base)
15002       .addOperand(Scale)
15003       .addOperand(Index)
15004       .addDisp(Disp, UseFPOffset ? 4 : 0)
15005       .addOperand(Segment)
15006       .addReg(NextOffsetReg)
15007       .setMemRefs(MMOBegin, MMOEnd);
15008
15009     // Jump to endMBB
15010     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15011       .addMBB(endMBB);
15012   }
15013
15014   //
15015   // Emit code to use overflow area
15016   //
15017
15018   // Load the overflow_area address into a register.
15019   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15020   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15021     .addOperand(Base)
15022     .addOperand(Scale)
15023     .addOperand(Index)
15024     .addDisp(Disp, 8)
15025     .addOperand(Segment)
15026     .setMemRefs(MMOBegin, MMOEnd);
15027
15028   // If we need to align it, do so. Otherwise, just copy the address
15029   // to OverflowDestReg.
15030   if (NeedsAlign) {
15031     // Align the overflow address
15032     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15033     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15034
15035     // aligned_addr = (addr + (align-1)) & ~(align-1)
15036     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15037       .addReg(OverflowAddrReg)
15038       .addImm(Align-1);
15039
15040     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15041       .addReg(TmpReg)
15042       .addImm(~(uint64_t)(Align-1));
15043   } else {
15044     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15045       .addReg(OverflowAddrReg);
15046   }
15047
15048   // Compute the next overflow address after this argument.
15049   // (the overflow address should be kept 8-byte aligned)
15050   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15051   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15052     .addReg(OverflowDestReg)
15053     .addImm(ArgSizeA8);
15054
15055   // Store the new overflow address.
15056   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15057     .addOperand(Base)
15058     .addOperand(Scale)
15059     .addOperand(Index)
15060     .addDisp(Disp, 8)
15061     .addOperand(Segment)
15062     .addReg(NextAddrReg)
15063     .setMemRefs(MMOBegin, MMOEnd);
15064
15065   // If we branched, emit the PHI to the front of endMBB.
15066   if (offsetMBB) {
15067     BuildMI(*endMBB, endMBB->begin(), DL,
15068             TII->get(X86::PHI), DestReg)
15069       .addReg(OffsetDestReg).addMBB(offsetMBB)
15070       .addReg(OverflowDestReg).addMBB(overflowMBB);
15071   }
15072
15073   // Erase the pseudo instruction
15074   MI->eraseFromParent();
15075
15076   return endMBB;
15077 }
15078
15079 MachineBasicBlock *
15080 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15081                                                  MachineInstr *MI,
15082                                                  MachineBasicBlock *MBB) const {
15083   // Emit code to save XMM registers to the stack. The ABI says that the
15084   // number of registers to save is given in %al, so it's theoretically
15085   // possible to do an indirect jump trick to avoid saving all of them,
15086   // however this code takes a simpler approach and just executes all
15087   // of the stores if %al is non-zero. It's less code, and it's probably
15088   // easier on the hardware branch predictor, and stores aren't all that
15089   // expensive anyway.
15090
15091   // Create the new basic blocks. One block contains all the XMM stores,
15092   // and one block is the final destination regardless of whether any
15093   // stores were performed.
15094   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15095   MachineFunction *F = MBB->getParent();
15096   MachineFunction::iterator MBBIter = MBB;
15097   ++MBBIter;
15098   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15099   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15100   F->insert(MBBIter, XMMSaveMBB);
15101   F->insert(MBBIter, EndMBB);
15102
15103   // Transfer the remainder of MBB and its successor edges to EndMBB.
15104   EndMBB->splice(EndMBB->begin(), MBB,
15105                  llvm::next(MachineBasicBlock::iterator(MI)),
15106                  MBB->end());
15107   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15108
15109   // The original block will now fall through to the XMM save block.
15110   MBB->addSuccessor(XMMSaveMBB);
15111   // The XMMSaveMBB will fall through to the end block.
15112   XMMSaveMBB->addSuccessor(EndMBB);
15113
15114   // Now add the instructions.
15115   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15116   DebugLoc DL = MI->getDebugLoc();
15117
15118   unsigned CountReg = MI->getOperand(0).getReg();
15119   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15120   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15121
15122   if (!Subtarget->isTargetWin64()) {
15123     // If %al is 0, branch around the XMM save block.
15124     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15125     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15126     MBB->addSuccessor(EndMBB);
15127   }
15128
15129   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15130   // In the XMM save block, save all the XMM argument registers.
15131   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15132     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15133     MachineMemOperand *MMO =
15134       F->getMachineMemOperand(
15135           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15136         MachineMemOperand::MOStore,
15137         /*Size=*/16, /*Align=*/16);
15138     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15139       .addFrameIndex(RegSaveFrameIndex)
15140       .addImm(/*Scale=*/1)
15141       .addReg(/*IndexReg=*/0)
15142       .addImm(/*Disp=*/Offset)
15143       .addReg(/*Segment=*/0)
15144       .addReg(MI->getOperand(i).getReg())
15145       .addMemOperand(MMO);
15146   }
15147
15148   MI->eraseFromParent();   // The pseudo instruction is gone now.
15149
15150   return EndMBB;
15151 }
15152
15153 // The EFLAGS operand of SelectItr might be missing a kill marker
15154 // because there were multiple uses of EFLAGS, and ISel didn't know
15155 // which to mark. Figure out whether SelectItr should have had a
15156 // kill marker, and set it if it should. Returns the correct kill
15157 // marker value.
15158 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15159                                      MachineBasicBlock* BB,
15160                                      const TargetRegisterInfo* TRI) {
15161   // Scan forward through BB for a use/def of EFLAGS.
15162   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15163   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15164     const MachineInstr& mi = *miI;
15165     if (mi.readsRegister(X86::EFLAGS))
15166       return false;
15167     if (mi.definesRegister(X86::EFLAGS))
15168       break; // Should have kill-flag - update below.
15169   }
15170
15171   // If we hit the end of the block, check whether EFLAGS is live into a
15172   // successor.
15173   if (miI == BB->end()) {
15174     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15175                                           sEnd = BB->succ_end();
15176          sItr != sEnd; ++sItr) {
15177       MachineBasicBlock* succ = *sItr;
15178       if (succ->isLiveIn(X86::EFLAGS))
15179         return false;
15180     }
15181   }
15182
15183   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15184   // out. SelectMI should have a kill flag on EFLAGS.
15185   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15186   return true;
15187 }
15188
15189 MachineBasicBlock *
15190 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15191                                      MachineBasicBlock *BB) const {
15192   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15193   DebugLoc DL = MI->getDebugLoc();
15194
15195   // To "insert" a SELECT_CC instruction, we actually have to insert the
15196   // diamond control-flow pattern.  The incoming instruction knows the
15197   // destination vreg to set, the condition code register to branch on, the
15198   // true/false values to select between, and a branch opcode to use.
15199   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15200   MachineFunction::iterator It = BB;
15201   ++It;
15202
15203   //  thisMBB:
15204   //  ...
15205   //   TrueVal = ...
15206   //   cmpTY ccX, r1, r2
15207   //   bCC copy1MBB
15208   //   fallthrough --> copy0MBB
15209   MachineBasicBlock *thisMBB = BB;
15210   MachineFunction *F = BB->getParent();
15211   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15212   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15213   F->insert(It, copy0MBB);
15214   F->insert(It, sinkMBB);
15215
15216   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15217   // live into the sink and copy blocks.
15218   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15219   if (!MI->killsRegister(X86::EFLAGS) &&
15220       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15221     copy0MBB->addLiveIn(X86::EFLAGS);
15222     sinkMBB->addLiveIn(X86::EFLAGS);
15223   }
15224
15225   // Transfer the remainder of BB and its successor edges to sinkMBB.
15226   sinkMBB->splice(sinkMBB->begin(), BB,
15227                   llvm::next(MachineBasicBlock::iterator(MI)),
15228                   BB->end());
15229   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15230
15231   // Add the true and fallthrough blocks as its successors.
15232   BB->addSuccessor(copy0MBB);
15233   BB->addSuccessor(sinkMBB);
15234
15235   // Create the conditional branch instruction.
15236   unsigned Opc =
15237     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15238   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15239
15240   //  copy0MBB:
15241   //   %FalseValue = ...
15242   //   # fallthrough to sinkMBB
15243   copy0MBB->addSuccessor(sinkMBB);
15244
15245   //  sinkMBB:
15246   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15247   //  ...
15248   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15249           TII->get(X86::PHI), MI->getOperand(0).getReg())
15250     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15251     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15252
15253   MI->eraseFromParent();   // The pseudo instruction is gone now.
15254   return sinkMBB;
15255 }
15256
15257 MachineBasicBlock *
15258 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15259                                         bool Is64Bit) const {
15260   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15261   DebugLoc DL = MI->getDebugLoc();
15262   MachineFunction *MF = BB->getParent();
15263   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15264
15265   assert(getTargetMachine().Options.EnableSegmentedStacks);
15266
15267   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15268   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15269
15270   // BB:
15271   //  ... [Till the alloca]
15272   // If stacklet is not large enough, jump to mallocMBB
15273   //
15274   // bumpMBB:
15275   //  Allocate by subtracting from RSP
15276   //  Jump to continueMBB
15277   //
15278   // mallocMBB:
15279   //  Allocate by call to runtime
15280   //
15281   // continueMBB:
15282   //  ...
15283   //  [rest of original BB]
15284   //
15285
15286   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15287   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15288   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15289
15290   MachineRegisterInfo &MRI = MF->getRegInfo();
15291   const TargetRegisterClass *AddrRegClass =
15292     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15293
15294   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15295     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15296     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15297     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15298     sizeVReg = MI->getOperand(1).getReg(),
15299     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15300
15301   MachineFunction::iterator MBBIter = BB;
15302   ++MBBIter;
15303
15304   MF->insert(MBBIter, bumpMBB);
15305   MF->insert(MBBIter, mallocMBB);
15306   MF->insert(MBBIter, continueMBB);
15307
15308   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15309                       (MachineBasicBlock::iterator(MI)), BB->end());
15310   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15311
15312   // Add code to the main basic block to check if the stack limit has been hit,
15313   // and if so, jump to mallocMBB otherwise to bumpMBB.
15314   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15315   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15316     .addReg(tmpSPVReg).addReg(sizeVReg);
15317   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15318     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15319     .addReg(SPLimitVReg);
15320   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15321
15322   // bumpMBB simply decreases the stack pointer, since we know the current
15323   // stacklet has enough space.
15324   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15325     .addReg(SPLimitVReg);
15326   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15327     .addReg(SPLimitVReg);
15328   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15329
15330   // Calls into a routine in libgcc to allocate more space from the heap.
15331   const uint32_t *RegMask =
15332     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15333   if (Is64Bit) {
15334     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15335       .addReg(sizeVReg);
15336     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15337       .addExternalSymbol("__morestack_allocate_stack_space")
15338       .addRegMask(RegMask)
15339       .addReg(X86::RDI, RegState::Implicit)
15340       .addReg(X86::RAX, RegState::ImplicitDefine);
15341   } else {
15342     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15343       .addImm(12);
15344     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15345     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15346       .addExternalSymbol("__morestack_allocate_stack_space")
15347       .addRegMask(RegMask)
15348       .addReg(X86::EAX, RegState::ImplicitDefine);
15349   }
15350
15351   if (!Is64Bit)
15352     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15353       .addImm(16);
15354
15355   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15356     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15357   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15358
15359   // Set up the CFG correctly.
15360   BB->addSuccessor(bumpMBB);
15361   BB->addSuccessor(mallocMBB);
15362   mallocMBB->addSuccessor(continueMBB);
15363   bumpMBB->addSuccessor(continueMBB);
15364
15365   // Take care of the PHI nodes.
15366   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15367           MI->getOperand(0).getReg())
15368     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15369     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15370
15371   // Delete the original pseudo instruction.
15372   MI->eraseFromParent();
15373
15374   // And we're done.
15375   return continueMBB;
15376 }
15377
15378 MachineBasicBlock *
15379 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15380                                           MachineBasicBlock *BB) const {
15381   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15382   DebugLoc DL = MI->getDebugLoc();
15383
15384   assert(!Subtarget->isTargetEnvMacho());
15385
15386   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15387   // non-trivial part is impdef of ESP.
15388
15389   if (Subtarget->isTargetWin64()) {
15390     if (Subtarget->isTargetCygMing()) {
15391       // ___chkstk(Mingw64):
15392       // Clobbers R10, R11, RAX and EFLAGS.
15393       // Updates RSP.
15394       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15395         .addExternalSymbol("___chkstk")
15396         .addReg(X86::RAX, RegState::Implicit)
15397         .addReg(X86::RSP, RegState::Implicit)
15398         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15399         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15400         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15401     } else {
15402       // __chkstk(MSVCRT): does not update stack pointer.
15403       // Clobbers R10, R11 and EFLAGS.
15404       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15405         .addExternalSymbol("__chkstk")
15406         .addReg(X86::RAX, RegState::Implicit)
15407         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15408       // RAX has the offset to be subtracted from RSP.
15409       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15410         .addReg(X86::RSP)
15411         .addReg(X86::RAX);
15412     }
15413   } else {
15414     const char *StackProbeSymbol =
15415       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15416
15417     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15418       .addExternalSymbol(StackProbeSymbol)
15419       .addReg(X86::EAX, RegState::Implicit)
15420       .addReg(X86::ESP, RegState::Implicit)
15421       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15422       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15423       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15424   }
15425
15426   MI->eraseFromParent();   // The pseudo instruction is gone now.
15427   return BB;
15428 }
15429
15430 MachineBasicBlock *
15431 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15432                                       MachineBasicBlock *BB) const {
15433   // This is pretty easy.  We're taking the value that we received from
15434   // our load from the relocation, sticking it in either RDI (x86-64)
15435   // or EAX and doing an indirect call.  The return value will then
15436   // be in the normal return register.
15437   const X86InstrInfo *TII
15438     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15439   DebugLoc DL = MI->getDebugLoc();
15440   MachineFunction *F = BB->getParent();
15441
15442   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15443   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15444
15445   // Get a register mask for the lowered call.
15446   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15447   // proper register mask.
15448   const uint32_t *RegMask =
15449     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15450   if (Subtarget->is64Bit()) {
15451     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15452                                       TII->get(X86::MOV64rm), X86::RDI)
15453     .addReg(X86::RIP)
15454     .addImm(0).addReg(0)
15455     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15456                       MI->getOperand(3).getTargetFlags())
15457     .addReg(0);
15458     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15459     addDirectMem(MIB, X86::RDI);
15460     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15461   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15462     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15463                                       TII->get(X86::MOV32rm), X86::EAX)
15464     .addReg(0)
15465     .addImm(0).addReg(0)
15466     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15467                       MI->getOperand(3).getTargetFlags())
15468     .addReg(0);
15469     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15470     addDirectMem(MIB, X86::EAX);
15471     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15472   } else {
15473     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15474                                       TII->get(X86::MOV32rm), X86::EAX)
15475     .addReg(TII->getGlobalBaseReg(F))
15476     .addImm(0).addReg(0)
15477     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15478                       MI->getOperand(3).getTargetFlags())
15479     .addReg(0);
15480     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15481     addDirectMem(MIB, X86::EAX);
15482     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15483   }
15484
15485   MI->eraseFromParent(); // The pseudo instruction is gone now.
15486   return BB;
15487 }
15488
15489 MachineBasicBlock *
15490 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15491                                     MachineBasicBlock *MBB) const {
15492   DebugLoc DL = MI->getDebugLoc();
15493   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15494
15495   MachineFunction *MF = MBB->getParent();
15496   MachineRegisterInfo &MRI = MF->getRegInfo();
15497
15498   const BasicBlock *BB = MBB->getBasicBlock();
15499   MachineFunction::iterator I = MBB;
15500   ++I;
15501
15502   // Memory Reference
15503   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15504   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15505
15506   unsigned DstReg;
15507   unsigned MemOpndSlot = 0;
15508
15509   unsigned CurOp = 0;
15510
15511   DstReg = MI->getOperand(CurOp++).getReg();
15512   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15513   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15514   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15515   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15516
15517   MemOpndSlot = CurOp;
15518
15519   MVT PVT = getPointerTy();
15520   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15521          "Invalid Pointer Size!");
15522
15523   // For v = setjmp(buf), we generate
15524   //
15525   // thisMBB:
15526   //  buf[LabelOffset] = restoreMBB
15527   //  SjLjSetup restoreMBB
15528   //
15529   // mainMBB:
15530   //  v_main = 0
15531   //
15532   // sinkMBB:
15533   //  v = phi(main, restore)
15534   //
15535   // restoreMBB:
15536   //  v_restore = 1
15537
15538   MachineBasicBlock *thisMBB = MBB;
15539   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15540   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15541   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15542   MF->insert(I, mainMBB);
15543   MF->insert(I, sinkMBB);
15544   MF->push_back(restoreMBB);
15545
15546   MachineInstrBuilder MIB;
15547
15548   // Transfer the remainder of BB and its successor edges to sinkMBB.
15549   sinkMBB->splice(sinkMBB->begin(), MBB,
15550                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15551   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15552
15553   // thisMBB:
15554   unsigned PtrStoreOpc = 0;
15555   unsigned LabelReg = 0;
15556   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15557   Reloc::Model RM = getTargetMachine().getRelocationModel();
15558   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15559                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15560
15561   // Prepare IP either in reg or imm.
15562   if (!UseImmLabel) {
15563     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15564     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15565     LabelReg = MRI.createVirtualRegister(PtrRC);
15566     if (Subtarget->is64Bit()) {
15567       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15568               .addReg(X86::RIP)
15569               .addImm(0)
15570               .addReg(0)
15571               .addMBB(restoreMBB)
15572               .addReg(0);
15573     } else {
15574       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15575       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15576               .addReg(XII->getGlobalBaseReg(MF))
15577               .addImm(0)
15578               .addReg(0)
15579               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15580               .addReg(0);
15581     }
15582   } else
15583     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15584   // Store IP
15585   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15586   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15587     if (i == X86::AddrDisp)
15588       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15589     else
15590       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15591   }
15592   if (!UseImmLabel)
15593     MIB.addReg(LabelReg);
15594   else
15595     MIB.addMBB(restoreMBB);
15596   MIB.setMemRefs(MMOBegin, MMOEnd);
15597   // Setup
15598   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15599           .addMBB(restoreMBB);
15600
15601   const X86RegisterInfo *RegInfo =
15602     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15603   MIB.addRegMask(RegInfo->getNoPreservedMask());
15604   thisMBB->addSuccessor(mainMBB);
15605   thisMBB->addSuccessor(restoreMBB);
15606
15607   // mainMBB:
15608   //  EAX = 0
15609   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15610   mainMBB->addSuccessor(sinkMBB);
15611
15612   // sinkMBB:
15613   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15614           TII->get(X86::PHI), DstReg)
15615     .addReg(mainDstReg).addMBB(mainMBB)
15616     .addReg(restoreDstReg).addMBB(restoreMBB);
15617
15618   // restoreMBB:
15619   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15620   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15621   restoreMBB->addSuccessor(sinkMBB);
15622
15623   MI->eraseFromParent();
15624   return sinkMBB;
15625 }
15626
15627 MachineBasicBlock *
15628 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15629                                      MachineBasicBlock *MBB) const {
15630   DebugLoc DL = MI->getDebugLoc();
15631   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15632
15633   MachineFunction *MF = MBB->getParent();
15634   MachineRegisterInfo &MRI = MF->getRegInfo();
15635
15636   // Memory Reference
15637   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15638   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15639
15640   MVT PVT = getPointerTy();
15641   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15642          "Invalid Pointer Size!");
15643
15644   const TargetRegisterClass *RC =
15645     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15646   unsigned Tmp = MRI.createVirtualRegister(RC);
15647   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15648   const X86RegisterInfo *RegInfo =
15649     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15650   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15651   unsigned SP = RegInfo->getStackRegister();
15652
15653   MachineInstrBuilder MIB;
15654
15655   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15656   const int64_t SPOffset = 2 * PVT.getStoreSize();
15657
15658   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15659   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15660
15661   // Reload FP
15662   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15663   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15664     MIB.addOperand(MI->getOperand(i));
15665   MIB.setMemRefs(MMOBegin, MMOEnd);
15666   // Reload IP
15667   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15668   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15669     if (i == X86::AddrDisp)
15670       MIB.addDisp(MI->getOperand(i), LabelOffset);
15671     else
15672       MIB.addOperand(MI->getOperand(i));
15673   }
15674   MIB.setMemRefs(MMOBegin, MMOEnd);
15675   // Reload SP
15676   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15677   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15678     if (i == X86::AddrDisp)
15679       MIB.addDisp(MI->getOperand(i), SPOffset);
15680     else
15681       MIB.addOperand(MI->getOperand(i));
15682   }
15683   MIB.setMemRefs(MMOBegin, MMOEnd);
15684   // Jump
15685   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15686
15687   MI->eraseFromParent();
15688   return MBB;
15689 }
15690
15691 MachineBasicBlock *
15692 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15693                                                MachineBasicBlock *BB) const {
15694   switch (MI->getOpcode()) {
15695   default: llvm_unreachable("Unexpected instr type to insert");
15696   case X86::TAILJMPd64:
15697   case X86::TAILJMPr64:
15698   case X86::TAILJMPm64:
15699     llvm_unreachable("TAILJMP64 would not be touched here.");
15700   case X86::TCRETURNdi64:
15701   case X86::TCRETURNri64:
15702   case X86::TCRETURNmi64:
15703     return BB;
15704   case X86::WIN_ALLOCA:
15705     return EmitLoweredWinAlloca(MI, BB);
15706   case X86::SEG_ALLOCA_32:
15707     return EmitLoweredSegAlloca(MI, BB, false);
15708   case X86::SEG_ALLOCA_64:
15709     return EmitLoweredSegAlloca(MI, BB, true);
15710   case X86::TLSCall_32:
15711   case X86::TLSCall_64:
15712     return EmitLoweredTLSCall(MI, BB);
15713   case X86::CMOV_GR8:
15714   case X86::CMOV_FR32:
15715   case X86::CMOV_FR64:
15716   case X86::CMOV_V4F32:
15717   case X86::CMOV_V2F64:
15718   case X86::CMOV_V2I64:
15719   case X86::CMOV_V8F32:
15720   case X86::CMOV_V4F64:
15721   case X86::CMOV_V4I64:
15722   case X86::CMOV_GR16:
15723   case X86::CMOV_GR32:
15724   case X86::CMOV_RFP32:
15725   case X86::CMOV_RFP64:
15726   case X86::CMOV_RFP80:
15727     return EmitLoweredSelect(MI, BB);
15728
15729   case X86::FP32_TO_INT16_IN_MEM:
15730   case X86::FP32_TO_INT32_IN_MEM:
15731   case X86::FP32_TO_INT64_IN_MEM:
15732   case X86::FP64_TO_INT16_IN_MEM:
15733   case X86::FP64_TO_INT32_IN_MEM:
15734   case X86::FP64_TO_INT64_IN_MEM:
15735   case X86::FP80_TO_INT16_IN_MEM:
15736   case X86::FP80_TO_INT32_IN_MEM:
15737   case X86::FP80_TO_INT64_IN_MEM: {
15738     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15739     DebugLoc DL = MI->getDebugLoc();
15740
15741     // Change the floating point control register to use "round towards zero"
15742     // mode when truncating to an integer value.
15743     MachineFunction *F = BB->getParent();
15744     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15745     addFrameReference(BuildMI(*BB, MI, DL,
15746                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15747
15748     // Load the old value of the high byte of the control word...
15749     unsigned OldCW =
15750       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15751     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15752                       CWFrameIdx);
15753
15754     // Set the high part to be round to zero...
15755     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15756       .addImm(0xC7F);
15757
15758     // Reload the modified control word now...
15759     addFrameReference(BuildMI(*BB, MI, DL,
15760                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15761
15762     // Restore the memory image of control word to original value
15763     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15764       .addReg(OldCW);
15765
15766     // Get the X86 opcode to use.
15767     unsigned Opc;
15768     switch (MI->getOpcode()) {
15769     default: llvm_unreachable("illegal opcode!");
15770     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15771     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15772     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15773     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15774     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15775     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15776     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15777     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15778     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15779     }
15780
15781     X86AddressMode AM;
15782     MachineOperand &Op = MI->getOperand(0);
15783     if (Op.isReg()) {
15784       AM.BaseType = X86AddressMode::RegBase;
15785       AM.Base.Reg = Op.getReg();
15786     } else {
15787       AM.BaseType = X86AddressMode::FrameIndexBase;
15788       AM.Base.FrameIndex = Op.getIndex();
15789     }
15790     Op = MI->getOperand(1);
15791     if (Op.isImm())
15792       AM.Scale = Op.getImm();
15793     Op = MI->getOperand(2);
15794     if (Op.isImm())
15795       AM.IndexReg = Op.getImm();
15796     Op = MI->getOperand(3);
15797     if (Op.isGlobal()) {
15798       AM.GV = Op.getGlobal();
15799     } else {
15800       AM.Disp = Op.getImm();
15801     }
15802     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15803                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15804
15805     // Reload the original control word now.
15806     addFrameReference(BuildMI(*BB, MI, DL,
15807                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15808
15809     MI->eraseFromParent();   // The pseudo instruction is gone now.
15810     return BB;
15811   }
15812     // String/text processing lowering.
15813   case X86::PCMPISTRM128REG:
15814   case X86::VPCMPISTRM128REG:
15815   case X86::PCMPISTRM128MEM:
15816   case X86::VPCMPISTRM128MEM:
15817   case X86::PCMPESTRM128REG:
15818   case X86::VPCMPESTRM128REG:
15819   case X86::PCMPESTRM128MEM:
15820   case X86::VPCMPESTRM128MEM:
15821     assert(Subtarget->hasSSE42() &&
15822            "Target must have SSE4.2 or AVX features enabled");
15823     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15824
15825   // String/text processing lowering.
15826   case X86::PCMPISTRIREG:
15827   case X86::VPCMPISTRIREG:
15828   case X86::PCMPISTRIMEM:
15829   case X86::VPCMPISTRIMEM:
15830   case X86::PCMPESTRIREG:
15831   case X86::VPCMPESTRIREG:
15832   case X86::PCMPESTRIMEM:
15833   case X86::VPCMPESTRIMEM:
15834     assert(Subtarget->hasSSE42() &&
15835            "Target must have SSE4.2 or AVX features enabled");
15836     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15837
15838   // Thread synchronization.
15839   case X86::MONITOR:
15840     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15841
15842   // xbegin
15843   case X86::XBEGIN:
15844     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15845
15846   // Atomic Lowering.
15847   case X86::ATOMAND8:
15848   case X86::ATOMAND16:
15849   case X86::ATOMAND32:
15850   case X86::ATOMAND64:
15851     // Fall through
15852   case X86::ATOMOR8:
15853   case X86::ATOMOR16:
15854   case X86::ATOMOR32:
15855   case X86::ATOMOR64:
15856     // Fall through
15857   case X86::ATOMXOR16:
15858   case X86::ATOMXOR8:
15859   case X86::ATOMXOR32:
15860   case X86::ATOMXOR64:
15861     // Fall through
15862   case X86::ATOMNAND8:
15863   case X86::ATOMNAND16:
15864   case X86::ATOMNAND32:
15865   case X86::ATOMNAND64:
15866     // Fall through
15867   case X86::ATOMMAX8:
15868   case X86::ATOMMAX16:
15869   case X86::ATOMMAX32:
15870   case X86::ATOMMAX64:
15871     // Fall through
15872   case X86::ATOMMIN8:
15873   case X86::ATOMMIN16:
15874   case X86::ATOMMIN32:
15875   case X86::ATOMMIN64:
15876     // Fall through
15877   case X86::ATOMUMAX8:
15878   case X86::ATOMUMAX16:
15879   case X86::ATOMUMAX32:
15880   case X86::ATOMUMAX64:
15881     // Fall through
15882   case X86::ATOMUMIN8:
15883   case X86::ATOMUMIN16:
15884   case X86::ATOMUMIN32:
15885   case X86::ATOMUMIN64:
15886     return EmitAtomicLoadArith(MI, BB);
15887
15888   // This group does 64-bit operations on a 32-bit host.
15889   case X86::ATOMAND6432:
15890   case X86::ATOMOR6432:
15891   case X86::ATOMXOR6432:
15892   case X86::ATOMNAND6432:
15893   case X86::ATOMADD6432:
15894   case X86::ATOMSUB6432:
15895   case X86::ATOMMAX6432:
15896   case X86::ATOMMIN6432:
15897   case X86::ATOMUMAX6432:
15898   case X86::ATOMUMIN6432:
15899   case X86::ATOMSWAP6432:
15900     return EmitAtomicLoadArith6432(MI, BB);
15901
15902   case X86::VASTART_SAVE_XMM_REGS:
15903     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15904
15905   case X86::VAARG_64:
15906     return EmitVAARG64WithCustomInserter(MI, BB);
15907
15908   case X86::EH_SjLj_SetJmp32:
15909   case X86::EH_SjLj_SetJmp64:
15910     return emitEHSjLjSetJmp(MI, BB);
15911
15912   case X86::EH_SjLj_LongJmp32:
15913   case X86::EH_SjLj_LongJmp64:
15914     return emitEHSjLjLongJmp(MI, BB);
15915   }
15916 }
15917
15918 //===----------------------------------------------------------------------===//
15919 //                           X86 Optimization Hooks
15920 //===----------------------------------------------------------------------===//
15921
15922 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15923                                                        APInt &KnownZero,
15924                                                        APInt &KnownOne,
15925                                                        const SelectionDAG &DAG,
15926                                                        unsigned Depth) const {
15927   unsigned BitWidth = KnownZero.getBitWidth();
15928   unsigned Opc = Op.getOpcode();
15929   assert((Opc >= ISD::BUILTIN_OP_END ||
15930           Opc == ISD::INTRINSIC_WO_CHAIN ||
15931           Opc == ISD::INTRINSIC_W_CHAIN ||
15932           Opc == ISD::INTRINSIC_VOID) &&
15933          "Should use MaskedValueIsZero if you don't know whether Op"
15934          " is a target node!");
15935
15936   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15937   switch (Opc) {
15938   default: break;
15939   case X86ISD::ADD:
15940   case X86ISD::SUB:
15941   case X86ISD::ADC:
15942   case X86ISD::SBB:
15943   case X86ISD::SMUL:
15944   case X86ISD::UMUL:
15945   case X86ISD::INC:
15946   case X86ISD::DEC:
15947   case X86ISD::OR:
15948   case X86ISD::XOR:
15949   case X86ISD::AND:
15950     // These nodes' second result is a boolean.
15951     if (Op.getResNo() == 0)
15952       break;
15953     // Fallthrough
15954   case X86ISD::SETCC:
15955     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15956     break;
15957   case ISD::INTRINSIC_WO_CHAIN: {
15958     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15959     unsigned NumLoBits = 0;
15960     switch (IntId) {
15961     default: break;
15962     case Intrinsic::x86_sse_movmsk_ps:
15963     case Intrinsic::x86_avx_movmsk_ps_256:
15964     case Intrinsic::x86_sse2_movmsk_pd:
15965     case Intrinsic::x86_avx_movmsk_pd_256:
15966     case Intrinsic::x86_mmx_pmovmskb:
15967     case Intrinsic::x86_sse2_pmovmskb_128:
15968     case Intrinsic::x86_avx2_pmovmskb: {
15969       // High bits of movmskp{s|d}, pmovmskb are known zero.
15970       switch (IntId) {
15971         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15972         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
15973         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
15974         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
15975         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
15976         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
15977         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
15978         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
15979       }
15980       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
15981       break;
15982     }
15983     }
15984     break;
15985   }
15986   }
15987 }
15988
15989 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
15990                                                          unsigned Depth) const {
15991   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
15992   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
15993     return Op.getValueType().getScalarType().getSizeInBits();
15994
15995   // Fallback case.
15996   return 1;
15997 }
15998
15999 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16000 /// node is a GlobalAddress + offset.
16001 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16002                                        const GlobalValue* &GA,
16003                                        int64_t &Offset) const {
16004   if (N->getOpcode() == X86ISD::Wrapper) {
16005     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16006       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16007       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16008       return true;
16009     }
16010   }
16011   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16012 }
16013
16014 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16015 /// same as extracting the high 128-bit part of 256-bit vector and then
16016 /// inserting the result into the low part of a new 256-bit vector
16017 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16018   EVT VT = SVOp->getValueType(0);
16019   unsigned NumElems = VT.getVectorNumElements();
16020
16021   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16022   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16023     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16024         SVOp->getMaskElt(j) >= 0)
16025       return false;
16026
16027   return true;
16028 }
16029
16030 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16031 /// same as extracting the low 128-bit part of 256-bit vector and then
16032 /// inserting the result into the high part of a new 256-bit vector
16033 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16034   EVT VT = SVOp->getValueType(0);
16035   unsigned NumElems = VT.getVectorNumElements();
16036
16037   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16038   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16039     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16040         SVOp->getMaskElt(j) >= 0)
16041       return false;
16042
16043   return true;
16044 }
16045
16046 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16047 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16048                                         TargetLowering::DAGCombinerInfo &DCI,
16049                                         const X86Subtarget* Subtarget) {
16050   SDLoc dl(N);
16051   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16052   SDValue V1 = SVOp->getOperand(0);
16053   SDValue V2 = SVOp->getOperand(1);
16054   EVT VT = SVOp->getValueType(0);
16055   unsigned NumElems = VT.getVectorNumElements();
16056
16057   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16058       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16059     //
16060     //                   0,0,0,...
16061     //                      |
16062     //    V      UNDEF    BUILD_VECTOR    UNDEF
16063     //     \      /           \           /
16064     //  CONCAT_VECTOR         CONCAT_VECTOR
16065     //         \                  /
16066     //          \                /
16067     //          RESULT: V + zero extended
16068     //
16069     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16070         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16071         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16072       return SDValue();
16073
16074     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16075       return SDValue();
16076
16077     // To match the shuffle mask, the first half of the mask should
16078     // be exactly the first vector, and all the rest a splat with the
16079     // first element of the second one.
16080     for (unsigned i = 0; i != NumElems/2; ++i)
16081       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16082           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16083         return SDValue();
16084
16085     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16086     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16087       if (Ld->hasNUsesOfValue(1, 0)) {
16088         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16089         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16090         SDValue ResNode =
16091           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16092                                   array_lengthof(Ops),
16093                                   Ld->getMemoryVT(),
16094                                   Ld->getPointerInfo(),
16095                                   Ld->getAlignment(),
16096                                   false/*isVolatile*/, true/*ReadMem*/,
16097                                   false/*WriteMem*/);
16098
16099         // Make sure the newly-created LOAD is in the same position as Ld in
16100         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16101         // and update uses of Ld's output chain to use the TokenFactor.
16102         if (Ld->hasAnyUseOfValue(1)) {
16103           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16104                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16105           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16106           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16107                                  SDValue(ResNode.getNode(), 1));
16108         }
16109
16110         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16111       }
16112     }
16113
16114     // Emit a zeroed vector and insert the desired subvector on its
16115     // first half.
16116     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16117     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16118     return DCI.CombineTo(N, InsV);
16119   }
16120
16121   //===--------------------------------------------------------------------===//
16122   // Combine some shuffles into subvector extracts and inserts:
16123   //
16124
16125   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16126   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16127     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16128     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16129     return DCI.CombineTo(N, InsV);
16130   }
16131
16132   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16133   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16134     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16135     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16136     return DCI.CombineTo(N, InsV);
16137   }
16138
16139   return SDValue();
16140 }
16141
16142 /// PerformShuffleCombine - Performs several different shuffle combines.
16143 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16144                                      TargetLowering::DAGCombinerInfo &DCI,
16145                                      const X86Subtarget *Subtarget) {
16146   SDLoc dl(N);
16147   EVT VT = N->getValueType(0);
16148
16149   // Don't create instructions with illegal types after legalize types has run.
16150   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16151   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16152     return SDValue();
16153
16154   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16155   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16156       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16157     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16158
16159   // Only handle 128 wide vector from here on.
16160   if (!VT.is128BitVector())
16161     return SDValue();
16162
16163   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16164   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16165   // consecutive, non-overlapping, and in the right order.
16166   SmallVector<SDValue, 16> Elts;
16167   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16168     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16169
16170   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
16171 }
16172
16173 /// PerformTruncateCombine - Converts truncate operation to
16174 /// a sequence of vector shuffle operations.
16175 /// It is possible when we truncate 256-bit vector to 128-bit vector
16176 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16177                                       TargetLowering::DAGCombinerInfo &DCI,
16178                                       const X86Subtarget *Subtarget)  {
16179   return SDValue();
16180 }
16181
16182 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16183 /// specific shuffle of a load can be folded into a single element load.
16184 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16185 /// shuffles have been customed lowered so we need to handle those here.
16186 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16187                                          TargetLowering::DAGCombinerInfo &DCI) {
16188   if (DCI.isBeforeLegalizeOps())
16189     return SDValue();
16190
16191   SDValue InVec = N->getOperand(0);
16192   SDValue EltNo = N->getOperand(1);
16193
16194   if (!isa<ConstantSDNode>(EltNo))
16195     return SDValue();
16196
16197   EVT VT = InVec.getValueType();
16198
16199   bool HasShuffleIntoBitcast = false;
16200   if (InVec.getOpcode() == ISD::BITCAST) {
16201     // Don't duplicate a load with other uses.
16202     if (!InVec.hasOneUse())
16203       return SDValue();
16204     EVT BCVT = InVec.getOperand(0).getValueType();
16205     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16206       return SDValue();
16207     InVec = InVec.getOperand(0);
16208     HasShuffleIntoBitcast = true;
16209   }
16210
16211   if (!isTargetShuffle(InVec.getOpcode()))
16212     return SDValue();
16213
16214   // Don't duplicate a load with other uses.
16215   if (!InVec.hasOneUse())
16216     return SDValue();
16217
16218   SmallVector<int, 16> ShuffleMask;
16219   bool UnaryShuffle;
16220   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16221                             UnaryShuffle))
16222     return SDValue();
16223
16224   // Select the input vector, guarding against out of range extract vector.
16225   unsigned NumElems = VT.getVectorNumElements();
16226   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16227   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16228   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16229                                          : InVec.getOperand(1);
16230
16231   // If inputs to shuffle are the same for both ops, then allow 2 uses
16232   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16233
16234   if (LdNode.getOpcode() == ISD::BITCAST) {
16235     // Don't duplicate a load with other uses.
16236     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16237       return SDValue();
16238
16239     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16240     LdNode = LdNode.getOperand(0);
16241   }
16242
16243   if (!ISD::isNormalLoad(LdNode.getNode()))
16244     return SDValue();
16245
16246   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16247
16248   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16249     return SDValue();
16250
16251   if (HasShuffleIntoBitcast) {
16252     // If there's a bitcast before the shuffle, check if the load type and
16253     // alignment is valid.
16254     unsigned Align = LN0->getAlignment();
16255     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16256     unsigned NewAlign = TLI.getDataLayout()->
16257       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16258
16259     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16260       return SDValue();
16261   }
16262
16263   // All checks match so transform back to vector_shuffle so that DAG combiner
16264   // can finish the job
16265   SDLoc dl(N);
16266
16267   // Create shuffle node taking into account the case that its a unary shuffle
16268   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16269   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16270                                  InVec.getOperand(0), Shuffle,
16271                                  &ShuffleMask[0]);
16272   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16273   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16274                      EltNo);
16275 }
16276
16277 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16278 /// generation and convert it from being a bunch of shuffles and extracts
16279 /// to a simple store and scalar loads to extract the elements.
16280 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16281                                          TargetLowering::DAGCombinerInfo &DCI) {
16282   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16283   if (NewOp.getNode())
16284     return NewOp;
16285
16286   SDValue InputVector = N->getOperand(0);
16287   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16288   // from mmx to v2i32 has a single usage.
16289   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16290       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16291       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16292     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16293                        N->getValueType(0),
16294                        InputVector.getNode()->getOperand(0));
16295
16296   // Only operate on vectors of 4 elements, where the alternative shuffling
16297   // gets to be more expensive.
16298   if (InputVector.getValueType() != MVT::v4i32)
16299     return SDValue();
16300
16301   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16302   // single use which is a sign-extend or zero-extend, and all elements are
16303   // used.
16304   SmallVector<SDNode *, 4> Uses;
16305   unsigned ExtractedElements = 0;
16306   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16307        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16308     if (UI.getUse().getResNo() != InputVector.getResNo())
16309       return SDValue();
16310
16311     SDNode *Extract = *UI;
16312     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16313       return SDValue();
16314
16315     if (Extract->getValueType(0) != MVT::i32)
16316       return SDValue();
16317     if (!Extract->hasOneUse())
16318       return SDValue();
16319     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16320         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16321       return SDValue();
16322     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16323       return SDValue();
16324
16325     // Record which element was extracted.
16326     ExtractedElements |=
16327       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16328
16329     Uses.push_back(Extract);
16330   }
16331
16332   // If not all the elements were used, this may not be worthwhile.
16333   if (ExtractedElements != 15)
16334     return SDValue();
16335
16336   // Ok, we've now decided to do the transformation.
16337   SDLoc dl(InputVector);
16338
16339   // Store the value to a temporary stack slot.
16340   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16341   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16342                             MachinePointerInfo(), false, false, 0);
16343
16344   // Replace each use (extract) with a load of the appropriate element.
16345   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16346        UE = Uses.end(); UI != UE; ++UI) {
16347     SDNode *Extract = *UI;
16348
16349     // cOMpute the element's address.
16350     SDValue Idx = Extract->getOperand(1);
16351     unsigned EltSize =
16352         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16353     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16354     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16355     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16356
16357     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16358                                      StackPtr, OffsetVal);
16359
16360     // Load the scalar.
16361     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16362                                      ScalarAddr, MachinePointerInfo(),
16363                                      false, false, false, 0);
16364
16365     // Replace the exact with the load.
16366     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16367   }
16368
16369   // The replacement was made in place; don't return anything.
16370   return SDValue();
16371 }
16372
16373 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16374 static unsigned matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS,
16375                                    SDValue RHS, SelectionDAG &DAG,
16376                                    const X86Subtarget *Subtarget) {
16377   if (!VT.isVector())
16378     return 0;
16379
16380   switch (VT.getSimpleVT().SimpleTy) {
16381   default: return 0;
16382   case MVT::v32i8:
16383   case MVT::v16i16:
16384   case MVT::v8i32:
16385     if (!Subtarget->hasAVX2())
16386       return 0;
16387   case MVT::v16i8:
16388   case MVT::v8i16:
16389   case MVT::v4i32:
16390     if (!Subtarget->hasSSE2())
16391       return 0;
16392   }
16393
16394   // SSE2 has only a small subset of the operations.
16395   bool hasUnsigned = Subtarget->hasSSE41() ||
16396                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16397   bool hasSigned = Subtarget->hasSSE41() ||
16398                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16399
16400   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16401
16402   // Check for x CC y ? x : y.
16403   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16404       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16405     switch (CC) {
16406     default: break;
16407     case ISD::SETULT:
16408     case ISD::SETULE:
16409       return hasUnsigned ? X86ISD::UMIN : 0;
16410     case ISD::SETUGT:
16411     case ISD::SETUGE:
16412       return hasUnsigned ? X86ISD::UMAX : 0;
16413     case ISD::SETLT:
16414     case ISD::SETLE:
16415       return hasSigned ? X86ISD::SMIN : 0;
16416     case ISD::SETGT:
16417     case ISD::SETGE:
16418       return hasSigned ? X86ISD::SMAX : 0;
16419     }
16420   // Check for x CC y ? y : x -- a min/max with reversed arms.
16421   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16422              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16423     switch (CC) {
16424     default: break;
16425     case ISD::SETULT:
16426     case ISD::SETULE:
16427       return hasUnsigned ? X86ISD::UMAX : 0;
16428     case ISD::SETUGT:
16429     case ISD::SETUGE:
16430       return hasUnsigned ? X86ISD::UMIN : 0;
16431     case ISD::SETLT:
16432     case ISD::SETLE:
16433       return hasSigned ? X86ISD::SMAX : 0;
16434     case ISD::SETGT:
16435     case ISD::SETGE:
16436       return hasSigned ? X86ISD::SMIN : 0;
16437     }
16438   }
16439
16440   return 0;
16441 }
16442
16443 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16444 /// nodes.
16445 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16446                                     TargetLowering::DAGCombinerInfo &DCI,
16447                                     const X86Subtarget *Subtarget) {
16448   SDLoc DL(N);
16449   SDValue Cond = N->getOperand(0);
16450   // Get the LHS/RHS of the select.
16451   SDValue LHS = N->getOperand(1);
16452   SDValue RHS = N->getOperand(2);
16453   EVT VT = LHS.getValueType();
16454   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16455
16456   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16457   // instructions match the semantics of the common C idiom x<y?x:y but not
16458   // x<=y?x:y, because of how they handle negative zero (which can be
16459   // ignored in unsafe-math mode).
16460   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16461       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16462       (Subtarget->hasSSE2() ||
16463        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16464     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16465
16466     unsigned Opcode = 0;
16467     // Check for x CC y ? x : y.
16468     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16469         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16470       switch (CC) {
16471       default: break;
16472       case ISD::SETULT:
16473         // Converting this to a min would handle NaNs incorrectly, and swapping
16474         // the operands would cause it to handle comparisons between positive
16475         // and negative zero incorrectly.
16476         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16477           if (!DAG.getTarget().Options.UnsafeFPMath &&
16478               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16479             break;
16480           std::swap(LHS, RHS);
16481         }
16482         Opcode = X86ISD::FMIN;
16483         break;
16484       case ISD::SETOLE:
16485         // Converting this to a min would handle comparisons between positive
16486         // and negative zero incorrectly.
16487         if (!DAG.getTarget().Options.UnsafeFPMath &&
16488             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16489           break;
16490         Opcode = X86ISD::FMIN;
16491         break;
16492       case ISD::SETULE:
16493         // Converting this to a min would handle both negative zeros and NaNs
16494         // incorrectly, but we can swap the operands to fix both.
16495         std::swap(LHS, RHS);
16496       case ISD::SETOLT:
16497       case ISD::SETLT:
16498       case ISD::SETLE:
16499         Opcode = X86ISD::FMIN;
16500         break;
16501
16502       case ISD::SETOGE:
16503         // Converting this to a max would handle comparisons between positive
16504         // and negative zero incorrectly.
16505         if (!DAG.getTarget().Options.UnsafeFPMath &&
16506             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16507           break;
16508         Opcode = X86ISD::FMAX;
16509         break;
16510       case ISD::SETUGT:
16511         // Converting this to a max would handle NaNs incorrectly, and swapping
16512         // the operands would cause it to handle comparisons between positive
16513         // and negative zero incorrectly.
16514         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16515           if (!DAG.getTarget().Options.UnsafeFPMath &&
16516               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16517             break;
16518           std::swap(LHS, RHS);
16519         }
16520         Opcode = X86ISD::FMAX;
16521         break;
16522       case ISD::SETUGE:
16523         // Converting this to a max would handle both negative zeros and NaNs
16524         // incorrectly, but we can swap the operands to fix both.
16525         std::swap(LHS, RHS);
16526       case ISD::SETOGT:
16527       case ISD::SETGT:
16528       case ISD::SETGE:
16529         Opcode = X86ISD::FMAX;
16530         break;
16531       }
16532     // Check for x CC y ? y : x -- a min/max with reversed arms.
16533     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16534                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16535       switch (CC) {
16536       default: break;
16537       case ISD::SETOGE:
16538         // Converting this to a min would handle comparisons between positive
16539         // and negative zero incorrectly, and swapping the operands would
16540         // cause it to handle NaNs incorrectly.
16541         if (!DAG.getTarget().Options.UnsafeFPMath &&
16542             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16543           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16544             break;
16545           std::swap(LHS, RHS);
16546         }
16547         Opcode = X86ISD::FMIN;
16548         break;
16549       case ISD::SETUGT:
16550         // Converting this to a min would handle NaNs incorrectly.
16551         if (!DAG.getTarget().Options.UnsafeFPMath &&
16552             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16553           break;
16554         Opcode = X86ISD::FMIN;
16555         break;
16556       case ISD::SETUGE:
16557         // Converting this to a min would handle both negative zeros and NaNs
16558         // incorrectly, but we can swap the operands to fix both.
16559         std::swap(LHS, RHS);
16560       case ISD::SETOGT:
16561       case ISD::SETGT:
16562       case ISD::SETGE:
16563         Opcode = X86ISD::FMIN;
16564         break;
16565
16566       case ISD::SETULT:
16567         // Converting this to a max would handle NaNs incorrectly.
16568         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16569           break;
16570         Opcode = X86ISD::FMAX;
16571         break;
16572       case ISD::SETOLE:
16573         // Converting this to a max would handle comparisons between positive
16574         // and negative zero incorrectly, and swapping the operands would
16575         // cause it to handle NaNs incorrectly.
16576         if (!DAG.getTarget().Options.UnsafeFPMath &&
16577             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16578           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16579             break;
16580           std::swap(LHS, RHS);
16581         }
16582         Opcode = X86ISD::FMAX;
16583         break;
16584       case ISD::SETULE:
16585         // Converting this to a max would handle both negative zeros and NaNs
16586         // incorrectly, but we can swap the operands to fix both.
16587         std::swap(LHS, RHS);
16588       case ISD::SETOLT:
16589       case ISD::SETLT:
16590       case ISD::SETLE:
16591         Opcode = X86ISD::FMAX;
16592         break;
16593       }
16594     }
16595
16596     if (Opcode)
16597       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16598   }
16599
16600   if (Subtarget->hasAVX512() && VT.isVector() &&
16601       Cond.getValueType().getVectorElementType() == MVT::i1) {
16602     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16603     // lowering on AVX-512. In this case we convert it to
16604     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16605     // The same situation for all 128 and 256-bit vectors of i8 and i16
16606     EVT OpVT = LHS.getValueType();
16607     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16608         (OpVT.getVectorElementType() == MVT::i8 ||
16609          OpVT.getVectorElementType() == MVT::i16)) {
16610       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16611       DCI.AddToWorklist(Cond.getNode());
16612       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16613     }
16614   }
16615   // If this is a select between two integer constants, try to do some
16616   // optimizations.
16617   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16618     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16619       // Don't do this for crazy integer types.
16620       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16621         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16622         // so that TrueC (the true value) is larger than FalseC.
16623         bool NeedsCondInvert = false;
16624
16625         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16626             // Efficiently invertible.
16627             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16628              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16629               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16630           NeedsCondInvert = true;
16631           std::swap(TrueC, FalseC);
16632         }
16633
16634         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16635         if (FalseC->getAPIntValue() == 0 &&
16636             TrueC->getAPIntValue().isPowerOf2()) {
16637           if (NeedsCondInvert) // Invert the condition if needed.
16638             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16639                                DAG.getConstant(1, Cond.getValueType()));
16640
16641           // Zero extend the condition if needed.
16642           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16643
16644           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16645           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16646                              DAG.getConstant(ShAmt, MVT::i8));
16647         }
16648
16649         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16650         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16651           if (NeedsCondInvert) // Invert the condition if needed.
16652             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16653                                DAG.getConstant(1, Cond.getValueType()));
16654
16655           // Zero extend the condition if needed.
16656           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16657                              FalseC->getValueType(0), Cond);
16658           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16659                              SDValue(FalseC, 0));
16660         }
16661
16662         // Optimize cases that will turn into an LEA instruction.  This requires
16663         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16664         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16665           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16666           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16667
16668           bool isFastMultiplier = false;
16669           if (Diff < 10) {
16670             switch ((unsigned char)Diff) {
16671               default: break;
16672               case 1:  // result = add base, cond
16673               case 2:  // result = lea base(    , cond*2)
16674               case 3:  // result = lea base(cond, cond*2)
16675               case 4:  // result = lea base(    , cond*4)
16676               case 5:  // result = lea base(cond, cond*4)
16677               case 8:  // result = lea base(    , cond*8)
16678               case 9:  // result = lea base(cond, cond*8)
16679                 isFastMultiplier = true;
16680                 break;
16681             }
16682           }
16683
16684           if (isFastMultiplier) {
16685             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16686             if (NeedsCondInvert) // Invert the condition if needed.
16687               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16688                                  DAG.getConstant(1, Cond.getValueType()));
16689
16690             // Zero extend the condition if needed.
16691             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16692                                Cond);
16693             // Scale the condition by the difference.
16694             if (Diff != 1)
16695               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16696                                  DAG.getConstant(Diff, Cond.getValueType()));
16697
16698             // Add the base if non-zero.
16699             if (FalseC->getAPIntValue() != 0)
16700               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16701                                  SDValue(FalseC, 0));
16702             return Cond;
16703           }
16704         }
16705       }
16706   }
16707
16708   // Canonicalize max and min:
16709   // (x > y) ? x : y -> (x >= y) ? x : y
16710   // (x < y) ? x : y -> (x <= y) ? x : y
16711   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16712   // the need for an extra compare
16713   // against zero. e.g.
16714   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16715   // subl   %esi, %edi
16716   // testl  %edi, %edi
16717   // movl   $0, %eax
16718   // cmovgl %edi, %eax
16719   // =>
16720   // xorl   %eax, %eax
16721   // subl   %esi, $edi
16722   // cmovsl %eax, %edi
16723   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16724       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16725       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16726     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16727     switch (CC) {
16728     default: break;
16729     case ISD::SETLT:
16730     case ISD::SETGT: {
16731       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16732       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16733                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16734       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16735     }
16736     }
16737   }
16738
16739   // Early exit check
16740   if (!TLI.isTypeLegal(VT))
16741     return SDValue();
16742
16743   // Match VSELECTs into subs with unsigned saturation.
16744   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16745       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16746       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16747        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16748     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16749
16750     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16751     // left side invert the predicate to simplify logic below.
16752     SDValue Other;
16753     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16754       Other = RHS;
16755       CC = ISD::getSetCCInverse(CC, true);
16756     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16757       Other = LHS;
16758     }
16759
16760     if (Other.getNode() && Other->getNumOperands() == 2 &&
16761         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16762       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16763       SDValue CondRHS = Cond->getOperand(1);
16764
16765       // Look for a general sub with unsigned saturation first.
16766       // x >= y ? x-y : 0 --> subus x, y
16767       // x >  y ? x-y : 0 --> subus x, y
16768       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16769           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16770         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16771
16772       // If the RHS is a constant we have to reverse the const canonicalization.
16773       // x > C-1 ? x+-C : 0 --> subus x, C
16774       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16775           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16776         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16777         if (CondRHS.getConstantOperandVal(0) == -A-1)
16778           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16779                              DAG.getConstant(-A, VT));
16780       }
16781
16782       // Another special case: If C was a sign bit, the sub has been
16783       // canonicalized into a xor.
16784       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16785       //        it's safe to decanonicalize the xor?
16786       // x s< 0 ? x^C : 0 --> subus x, C
16787       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16788           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16789           isSplatVector(OpRHS.getNode())) {
16790         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16791         if (A.isSignBit())
16792           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16793       }
16794     }
16795   }
16796
16797   // Try to match a min/max vector operation.
16798   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC)
16799     if (unsigned Op = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget))
16800       return DAG.getNode(Op, DL, N->getValueType(0), LHS, RHS);
16801
16802   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16803   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16804       // Check if SETCC has already been promoted
16805       TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
16806
16807     assert(Cond.getValueType().isVector() &&
16808            "vector select expects a vector selector!");
16809
16810     EVT IntVT = Cond.getValueType();
16811     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16812     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16813
16814     if (!TValIsAllOnes && !FValIsAllZeros) {
16815       // Try invert the condition if true value is not all 1s and false value
16816       // is not all 0s.
16817       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16818       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16819
16820       if (TValIsAllZeros || FValIsAllOnes) {
16821         SDValue CC = Cond.getOperand(2);
16822         ISD::CondCode NewCC =
16823           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16824                                Cond.getOperand(0).getValueType().isInteger());
16825         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16826         std::swap(LHS, RHS);
16827         TValIsAllOnes = FValIsAllOnes;
16828         FValIsAllZeros = TValIsAllZeros;
16829       }
16830     }
16831
16832     if (TValIsAllOnes || FValIsAllZeros) {
16833       SDValue Ret;
16834
16835       if (TValIsAllOnes && FValIsAllZeros)
16836         Ret = Cond;
16837       else if (TValIsAllOnes)
16838         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16839                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16840       else if (FValIsAllZeros)
16841         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16842                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16843
16844       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16845     }
16846   }
16847
16848   // If we know that this node is legal then we know that it is going to be
16849   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16850   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16851   // to simplify previous instructions.
16852   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16853       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16854     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16855
16856     // Don't optimize vector selects that map to mask-registers.
16857     if (BitWidth == 1)
16858       return SDValue();
16859
16860     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16861     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16862
16863     APInt KnownZero, KnownOne;
16864     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16865                                           DCI.isBeforeLegalizeOps());
16866     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16867         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16868       DCI.CommitTargetLoweringOpt(TLO);
16869   }
16870
16871   return SDValue();
16872 }
16873
16874 // Check whether a boolean test is testing a boolean value generated by
16875 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16876 // code.
16877 //
16878 // Simplify the following patterns:
16879 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16880 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16881 // to (Op EFLAGS Cond)
16882 //
16883 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16884 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16885 // to (Op EFLAGS !Cond)
16886 //
16887 // where Op could be BRCOND or CMOV.
16888 //
16889 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16890   // Quit if not CMP and SUB with its value result used.
16891   if (Cmp.getOpcode() != X86ISD::CMP &&
16892       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16893       return SDValue();
16894
16895   // Quit if not used as a boolean value.
16896   if (CC != X86::COND_E && CC != X86::COND_NE)
16897     return SDValue();
16898
16899   // Check CMP operands. One of them should be 0 or 1 and the other should be
16900   // an SetCC or extended from it.
16901   SDValue Op1 = Cmp.getOperand(0);
16902   SDValue Op2 = Cmp.getOperand(1);
16903
16904   SDValue SetCC;
16905   const ConstantSDNode* C = 0;
16906   bool needOppositeCond = (CC == X86::COND_E);
16907   bool checkAgainstTrue = false; // Is it a comparison against 1?
16908
16909   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16910     SetCC = Op2;
16911   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16912     SetCC = Op1;
16913   else // Quit if all operands are not constants.
16914     return SDValue();
16915
16916   if (C->getZExtValue() == 1) {
16917     needOppositeCond = !needOppositeCond;
16918     checkAgainstTrue = true;
16919   } else if (C->getZExtValue() != 0)
16920     // Quit if the constant is neither 0 or 1.
16921     return SDValue();
16922
16923   bool truncatedToBoolWithAnd = false;
16924   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16925   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16926          SetCC.getOpcode() == ISD::TRUNCATE ||
16927          SetCC.getOpcode() == ISD::AND) {
16928     if (SetCC.getOpcode() == ISD::AND) {
16929       int OpIdx = -1;
16930       ConstantSDNode *CS;
16931       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16932           CS->getZExtValue() == 1)
16933         OpIdx = 1;
16934       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16935           CS->getZExtValue() == 1)
16936         OpIdx = 0;
16937       if (OpIdx == -1)
16938         break;
16939       SetCC = SetCC.getOperand(OpIdx);
16940       truncatedToBoolWithAnd = true;
16941     } else
16942       SetCC = SetCC.getOperand(0);
16943   }
16944
16945   switch (SetCC.getOpcode()) {
16946   case X86ISD::SETCC_CARRY:
16947     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16948     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16949     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16950     // truncated to i1 using 'and'.
16951     if (checkAgainstTrue && !truncatedToBoolWithAnd)
16952       break;
16953     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16954            "Invalid use of SETCC_CARRY!");
16955     // FALL THROUGH
16956   case X86ISD::SETCC:
16957     // Set the condition code or opposite one if necessary.
16958     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
16959     if (needOppositeCond)
16960       CC = X86::GetOppositeBranchCondition(CC);
16961     return SetCC.getOperand(1);
16962   case X86ISD::CMOV: {
16963     // Check whether false/true value has canonical one, i.e. 0 or 1.
16964     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
16965     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
16966     // Quit if true value is not a constant.
16967     if (!TVal)
16968       return SDValue();
16969     // Quit if false value is not a constant.
16970     if (!FVal) {
16971       SDValue Op = SetCC.getOperand(0);
16972       // Skip 'zext' or 'trunc' node.
16973       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
16974           Op.getOpcode() == ISD::TRUNCATE)
16975         Op = Op.getOperand(0);
16976       // A special case for rdrand/rdseed, where 0 is set if false cond is
16977       // found.
16978       if ((Op.getOpcode() != X86ISD::RDRAND &&
16979            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
16980         return SDValue();
16981     }
16982     // Quit if false value is not the constant 0 or 1.
16983     bool FValIsFalse = true;
16984     if (FVal && FVal->getZExtValue() != 0) {
16985       if (FVal->getZExtValue() != 1)
16986         return SDValue();
16987       // If FVal is 1, opposite cond is needed.
16988       needOppositeCond = !needOppositeCond;
16989       FValIsFalse = false;
16990     }
16991     // Quit if TVal is not the constant opposite of FVal.
16992     if (FValIsFalse && TVal->getZExtValue() != 1)
16993       return SDValue();
16994     if (!FValIsFalse && TVal->getZExtValue() != 0)
16995       return SDValue();
16996     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
16997     if (needOppositeCond)
16998       CC = X86::GetOppositeBranchCondition(CC);
16999     return SetCC.getOperand(3);
17000   }
17001   }
17002
17003   return SDValue();
17004 }
17005
17006 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17007 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17008                                   TargetLowering::DAGCombinerInfo &DCI,
17009                                   const X86Subtarget *Subtarget) {
17010   SDLoc DL(N);
17011
17012   // If the flag operand isn't dead, don't touch this CMOV.
17013   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17014     return SDValue();
17015
17016   SDValue FalseOp = N->getOperand(0);
17017   SDValue TrueOp = N->getOperand(1);
17018   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17019   SDValue Cond = N->getOperand(3);
17020
17021   if (CC == X86::COND_E || CC == X86::COND_NE) {
17022     switch (Cond.getOpcode()) {
17023     default: break;
17024     case X86ISD::BSR:
17025     case X86ISD::BSF:
17026       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17027       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17028         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17029     }
17030   }
17031
17032   SDValue Flags;
17033
17034   Flags = checkBoolTestSetCCCombine(Cond, CC);
17035   if (Flags.getNode() &&
17036       // Extra check as FCMOV only supports a subset of X86 cond.
17037       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17038     SDValue Ops[] = { FalseOp, TrueOp,
17039                       DAG.getConstant(CC, MVT::i8), Flags };
17040     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17041                        Ops, array_lengthof(Ops));
17042   }
17043
17044   // If this is a select between two integer constants, try to do some
17045   // optimizations.  Note that the operands are ordered the opposite of SELECT
17046   // operands.
17047   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17048     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17049       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17050       // larger than FalseC (the false value).
17051       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17052         CC = X86::GetOppositeBranchCondition(CC);
17053         std::swap(TrueC, FalseC);
17054         std::swap(TrueOp, FalseOp);
17055       }
17056
17057       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17058       // This is efficient for any integer data type (including i8/i16) and
17059       // shift amount.
17060       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17061         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17062                            DAG.getConstant(CC, MVT::i8), Cond);
17063
17064         // Zero extend the condition if needed.
17065         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17066
17067         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17068         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17069                            DAG.getConstant(ShAmt, MVT::i8));
17070         if (N->getNumValues() == 2)  // Dead flag value?
17071           return DCI.CombineTo(N, Cond, SDValue());
17072         return Cond;
17073       }
17074
17075       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17076       // for any integer data type, including i8/i16.
17077       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17078         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17079                            DAG.getConstant(CC, MVT::i8), Cond);
17080
17081         // Zero extend the condition if needed.
17082         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17083                            FalseC->getValueType(0), Cond);
17084         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17085                            SDValue(FalseC, 0));
17086
17087         if (N->getNumValues() == 2)  // Dead flag value?
17088           return DCI.CombineTo(N, Cond, SDValue());
17089         return Cond;
17090       }
17091
17092       // Optimize cases that will turn into an LEA instruction.  This requires
17093       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17094       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17095         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17096         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17097
17098         bool isFastMultiplier = false;
17099         if (Diff < 10) {
17100           switch ((unsigned char)Diff) {
17101           default: break;
17102           case 1:  // result = add base, cond
17103           case 2:  // result = lea base(    , cond*2)
17104           case 3:  // result = lea base(cond, cond*2)
17105           case 4:  // result = lea base(    , cond*4)
17106           case 5:  // result = lea base(cond, cond*4)
17107           case 8:  // result = lea base(    , cond*8)
17108           case 9:  // result = lea base(cond, cond*8)
17109             isFastMultiplier = true;
17110             break;
17111           }
17112         }
17113
17114         if (isFastMultiplier) {
17115           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17116           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17117                              DAG.getConstant(CC, MVT::i8), Cond);
17118           // Zero extend the condition if needed.
17119           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17120                              Cond);
17121           // Scale the condition by the difference.
17122           if (Diff != 1)
17123             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17124                                DAG.getConstant(Diff, Cond.getValueType()));
17125
17126           // Add the base if non-zero.
17127           if (FalseC->getAPIntValue() != 0)
17128             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17129                                SDValue(FalseC, 0));
17130           if (N->getNumValues() == 2)  // Dead flag value?
17131             return DCI.CombineTo(N, Cond, SDValue());
17132           return Cond;
17133         }
17134       }
17135     }
17136   }
17137
17138   // Handle these cases:
17139   //   (select (x != c), e, c) -> select (x != c), e, x),
17140   //   (select (x == c), c, e) -> select (x == c), x, e)
17141   // where the c is an integer constant, and the "select" is the combination
17142   // of CMOV and CMP.
17143   //
17144   // The rationale for this change is that the conditional-move from a constant
17145   // needs two instructions, however, conditional-move from a register needs
17146   // only one instruction.
17147   //
17148   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17149   //  some instruction-combining opportunities. This opt needs to be
17150   //  postponed as late as possible.
17151   //
17152   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17153     // the DCI.xxxx conditions are provided to postpone the optimization as
17154     // late as possible.
17155
17156     ConstantSDNode *CmpAgainst = 0;
17157     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17158         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17159         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17160
17161       if (CC == X86::COND_NE &&
17162           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17163         CC = X86::GetOppositeBranchCondition(CC);
17164         std::swap(TrueOp, FalseOp);
17165       }
17166
17167       if (CC == X86::COND_E &&
17168           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17169         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17170                           DAG.getConstant(CC, MVT::i8), Cond };
17171         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17172                            array_lengthof(Ops));
17173       }
17174     }
17175   }
17176
17177   return SDValue();
17178 }
17179
17180 /// PerformMulCombine - Optimize a single multiply with constant into two
17181 /// in order to implement it with two cheaper instructions, e.g.
17182 /// LEA + SHL, LEA + LEA.
17183 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17184                                  TargetLowering::DAGCombinerInfo &DCI) {
17185   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17186     return SDValue();
17187
17188   EVT VT = N->getValueType(0);
17189   if (VT != MVT::i64)
17190     return SDValue();
17191
17192   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17193   if (!C)
17194     return SDValue();
17195   uint64_t MulAmt = C->getZExtValue();
17196   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17197     return SDValue();
17198
17199   uint64_t MulAmt1 = 0;
17200   uint64_t MulAmt2 = 0;
17201   if ((MulAmt % 9) == 0) {
17202     MulAmt1 = 9;
17203     MulAmt2 = MulAmt / 9;
17204   } else if ((MulAmt % 5) == 0) {
17205     MulAmt1 = 5;
17206     MulAmt2 = MulAmt / 5;
17207   } else if ((MulAmt % 3) == 0) {
17208     MulAmt1 = 3;
17209     MulAmt2 = MulAmt / 3;
17210   }
17211   if (MulAmt2 &&
17212       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17213     SDLoc DL(N);
17214
17215     if (isPowerOf2_64(MulAmt2) &&
17216         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17217       // If second multiplifer is pow2, issue it first. We want the multiply by
17218       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17219       // is an add.
17220       std::swap(MulAmt1, MulAmt2);
17221
17222     SDValue NewMul;
17223     if (isPowerOf2_64(MulAmt1))
17224       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17225                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17226     else
17227       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17228                            DAG.getConstant(MulAmt1, VT));
17229
17230     if (isPowerOf2_64(MulAmt2))
17231       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17232                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17233     else
17234       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17235                            DAG.getConstant(MulAmt2, VT));
17236
17237     // Do not add new nodes to DAG combiner worklist.
17238     DCI.CombineTo(N, NewMul, false);
17239   }
17240   return SDValue();
17241 }
17242
17243 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17244   SDValue N0 = N->getOperand(0);
17245   SDValue N1 = N->getOperand(1);
17246   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17247   EVT VT = N0.getValueType();
17248
17249   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17250   // since the result of setcc_c is all zero's or all ones.
17251   if (VT.isInteger() && !VT.isVector() &&
17252       N1C && N0.getOpcode() == ISD::AND &&
17253       N0.getOperand(1).getOpcode() == ISD::Constant) {
17254     SDValue N00 = N0.getOperand(0);
17255     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17256         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17257           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17258          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17259       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17260       APInt ShAmt = N1C->getAPIntValue();
17261       Mask = Mask.shl(ShAmt);
17262       if (Mask != 0)
17263         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17264                            N00, DAG.getConstant(Mask, VT));
17265     }
17266   }
17267
17268   // Hardware support for vector shifts is sparse which makes us scalarize the
17269   // vector operations in many cases. Also, on sandybridge ADD is faster than
17270   // shl.
17271   // (shl V, 1) -> add V,V
17272   if (isSplatVector(N1.getNode())) {
17273     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17274     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17275     // We shift all of the values by one. In many cases we do not have
17276     // hardware support for this operation. This is better expressed as an ADD
17277     // of two values.
17278     if (N1C && (1 == N1C->getZExtValue())) {
17279       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17280     }
17281   }
17282
17283   return SDValue();
17284 }
17285
17286 /// \brief Returns a vector of 0s if the node in input is a vector logical
17287 /// shift by a constant amount which is known to be bigger than or equal 
17288 /// to the vector element size in bits.
17289 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17290                                       const X86Subtarget *Subtarget) {
17291   EVT VT = N->getValueType(0);
17292
17293   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17294       (!Subtarget->hasInt256() ||
17295        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17296     return SDValue();
17297
17298   SDValue Amt = N->getOperand(1);
17299   SDLoc DL(N);
17300   if (isSplatVector(Amt.getNode())) {
17301     SDValue SclrAmt = Amt->getOperand(0);
17302     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17303       APInt ShiftAmt = C->getAPIntValue();
17304       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17305
17306       // SSE2/AVX2 logical shifts always return a vector of 0s
17307       // if the shift amount is bigger than or equal to 
17308       // the element size. The constant shift amount will be
17309       // encoded as a 8-bit immediate.
17310       if (ShiftAmt.trunc(8).uge(MaxAmount))
17311         return getZeroVector(VT, Subtarget, DAG, DL);
17312     }
17313   }
17314
17315   return SDValue();
17316 }
17317
17318 /// PerformShiftCombine - Combine shifts.
17319 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17320                                    TargetLowering::DAGCombinerInfo &DCI,
17321                                    const X86Subtarget *Subtarget) {
17322   if (N->getOpcode() == ISD::SHL) {
17323     SDValue V = PerformSHLCombine(N, DAG);
17324     if (V.getNode()) return V;
17325   }
17326
17327   if (N->getOpcode() != ISD::SRA) {
17328     // Try to fold this logical shift into a zero vector.
17329     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17330     if (V.getNode()) return V;
17331   }
17332
17333   return SDValue();
17334 }
17335
17336 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17337 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17338 // and friends.  Likewise for OR -> CMPNEQSS.
17339 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17340                             TargetLowering::DAGCombinerInfo &DCI,
17341                             const X86Subtarget *Subtarget) {
17342   unsigned opcode;
17343
17344   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17345   // we're requiring SSE2 for both.
17346   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17347     SDValue N0 = N->getOperand(0);
17348     SDValue N1 = N->getOperand(1);
17349     SDValue CMP0 = N0->getOperand(1);
17350     SDValue CMP1 = N1->getOperand(1);
17351     SDLoc DL(N);
17352
17353     // The SETCCs should both refer to the same CMP.
17354     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17355       return SDValue();
17356
17357     SDValue CMP00 = CMP0->getOperand(0);
17358     SDValue CMP01 = CMP0->getOperand(1);
17359     EVT     VT    = CMP00.getValueType();
17360
17361     if (VT == MVT::f32 || VT == MVT::f64) {
17362       bool ExpectingFlags = false;
17363       // Check for any users that want flags:
17364       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17365            !ExpectingFlags && UI != UE; ++UI)
17366         switch (UI->getOpcode()) {
17367         default:
17368         case ISD::BR_CC:
17369         case ISD::BRCOND:
17370         case ISD::SELECT:
17371           ExpectingFlags = true;
17372           break;
17373         case ISD::CopyToReg:
17374         case ISD::SIGN_EXTEND:
17375         case ISD::ZERO_EXTEND:
17376         case ISD::ANY_EXTEND:
17377           break;
17378         }
17379
17380       if (!ExpectingFlags) {
17381         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17382         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17383
17384         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17385           X86::CondCode tmp = cc0;
17386           cc0 = cc1;
17387           cc1 = tmp;
17388         }
17389
17390         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17391             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17392           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17393           X86ISD::NodeType NTOperator = is64BitFP ?
17394             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17395           // FIXME: need symbolic constants for these magic numbers.
17396           // See X86ATTInstPrinter.cpp:printSSECC().
17397           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17398           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17399                                               DAG.getConstant(x86cc, MVT::i8));
17400           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17401                                               OnesOrZeroesF);
17402           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17403                                       DAG.getConstant(1, MVT::i32));
17404           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17405           return OneBitOfTruth;
17406         }
17407       }
17408     }
17409   }
17410   return SDValue();
17411 }
17412
17413 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17414 /// so it can be folded inside ANDNP.
17415 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17416   EVT VT = N->getValueType(0);
17417
17418   // Match direct AllOnes for 128 and 256-bit vectors
17419   if (ISD::isBuildVectorAllOnes(N))
17420     return true;
17421
17422   // Look through a bit convert.
17423   if (N->getOpcode() == ISD::BITCAST)
17424     N = N->getOperand(0).getNode();
17425
17426   // Sometimes the operand may come from a insert_subvector building a 256-bit
17427   // allones vector
17428   if (VT.is256BitVector() &&
17429       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17430     SDValue V1 = N->getOperand(0);
17431     SDValue V2 = N->getOperand(1);
17432
17433     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17434         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17435         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17436         ISD::isBuildVectorAllOnes(V2.getNode()))
17437       return true;
17438   }
17439
17440   return false;
17441 }
17442
17443 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17444 // register. In most cases we actually compare or select YMM-sized registers
17445 // and mixing the two types creates horrible code. This method optimizes
17446 // some of the transition sequences.
17447 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17448                                  TargetLowering::DAGCombinerInfo &DCI,
17449                                  const X86Subtarget *Subtarget) {
17450   EVT VT = N->getValueType(0);
17451   if (!VT.is256BitVector())
17452     return SDValue();
17453
17454   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17455           N->getOpcode() == ISD::ZERO_EXTEND ||
17456           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17457
17458   SDValue Narrow = N->getOperand(0);
17459   EVT NarrowVT = Narrow->getValueType(0);
17460   if (!NarrowVT.is128BitVector())
17461     return SDValue();
17462
17463   if (Narrow->getOpcode() != ISD::XOR &&
17464       Narrow->getOpcode() != ISD::AND &&
17465       Narrow->getOpcode() != ISD::OR)
17466     return SDValue();
17467
17468   SDValue N0  = Narrow->getOperand(0);
17469   SDValue N1  = Narrow->getOperand(1);
17470   SDLoc DL(Narrow);
17471
17472   // The Left side has to be a trunc.
17473   if (N0.getOpcode() != ISD::TRUNCATE)
17474     return SDValue();
17475
17476   // The type of the truncated inputs.
17477   EVT WideVT = N0->getOperand(0)->getValueType(0);
17478   if (WideVT != VT)
17479     return SDValue();
17480
17481   // The right side has to be a 'trunc' or a constant vector.
17482   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17483   bool RHSConst = (isSplatVector(N1.getNode()) &&
17484                    isa<ConstantSDNode>(N1->getOperand(0)));
17485   if (!RHSTrunc && !RHSConst)
17486     return SDValue();
17487
17488   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17489
17490   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17491     return SDValue();
17492
17493   // Set N0 and N1 to hold the inputs to the new wide operation.
17494   N0 = N0->getOperand(0);
17495   if (RHSConst) {
17496     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17497                      N1->getOperand(0));
17498     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17499     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17500   } else if (RHSTrunc) {
17501     N1 = N1->getOperand(0);
17502   }
17503
17504   // Generate the wide operation.
17505   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17506   unsigned Opcode = N->getOpcode();
17507   switch (Opcode) {
17508   case ISD::ANY_EXTEND:
17509     return Op;
17510   case ISD::ZERO_EXTEND: {
17511     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17512     APInt Mask = APInt::getAllOnesValue(InBits);
17513     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17514     return DAG.getNode(ISD::AND, DL, VT,
17515                        Op, DAG.getConstant(Mask, VT));
17516   }
17517   case ISD::SIGN_EXTEND:
17518     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17519                        Op, DAG.getValueType(NarrowVT));
17520   default:
17521     llvm_unreachable("Unexpected opcode");
17522   }
17523 }
17524
17525 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17526                                  TargetLowering::DAGCombinerInfo &DCI,
17527                                  const X86Subtarget *Subtarget) {
17528   EVT VT = N->getValueType(0);
17529   if (DCI.isBeforeLegalizeOps())
17530     return SDValue();
17531
17532   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17533   if (R.getNode())
17534     return R;
17535
17536   // Create BLSI, BLSR, and BZHI instructions
17537   // BLSI is X & (-X)
17538   // BLSR is X & (X-1)
17539   // BZHI is X & ((1 << Y) - 1)
17540   // BEXTR is ((X >> imm) & (2**size-1))
17541   if (VT == MVT::i32 || VT == MVT::i64) {
17542     SDValue N0 = N->getOperand(0);
17543     SDValue N1 = N->getOperand(1);
17544     SDLoc DL(N);
17545
17546     if (Subtarget->hasBMI()) {
17547       // Check LHS for neg
17548       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17549           isZero(N0.getOperand(0)))
17550         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17551
17552       // Check RHS for neg
17553       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17554           isZero(N1.getOperand(0)))
17555         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17556
17557       // Check LHS for X-1
17558       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17559           isAllOnes(N0.getOperand(1)))
17560         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17561
17562       // Check RHS for X-1
17563       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17564           isAllOnes(N1.getOperand(1)))
17565         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17566
17567       // Check for BEXTR
17568       if (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL) {
17569         ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17570         ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17571         if (MaskNode && ShiftNode) {
17572           uint64_t Mask = MaskNode->getZExtValue();
17573           uint64_t Shift = ShiftNode->getZExtValue();
17574           if (isMask_64(Mask)) {
17575             uint64_t MaskSize = CountPopulation_64(Mask);
17576             if (Shift + MaskSize <= VT.getSizeInBits())
17577               return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17578                                  DAG.getConstant(Shift | (MaskSize << 8), VT));
17579           }
17580         }
17581       }
17582     }
17583
17584     if (Subtarget->hasBMI2()) {
17585       // Check for (and (add (shl 1, Y), -1), X)
17586       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17587         SDValue N00 = N0.getOperand(0);
17588         if (N00.getOpcode() == ISD::SHL) {
17589           SDValue N001 = N00.getOperand(1);
17590           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17591           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17592           if (C && C->getZExtValue() == 1)
17593             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17594         }
17595       }
17596
17597       // Check for (and X, (add (shl 1, Y), -1))
17598       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17599         SDValue N10 = N1.getOperand(0);
17600         if (N10.getOpcode() == ISD::SHL) {
17601           SDValue N101 = N10.getOperand(1);
17602           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17603           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17604           if (C && C->getZExtValue() == 1)
17605             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17606         }
17607       }
17608     }
17609
17610     return SDValue();
17611   }
17612
17613   // Want to form ANDNP nodes:
17614   // 1) In the hopes of then easily combining them with OR and AND nodes
17615   //    to form PBLEND/PSIGN.
17616   // 2) To match ANDN packed intrinsics
17617   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17618     return SDValue();
17619
17620   SDValue N0 = N->getOperand(0);
17621   SDValue N1 = N->getOperand(1);
17622   SDLoc DL(N);
17623
17624   // Check LHS for vnot
17625   if (N0.getOpcode() == ISD::XOR &&
17626       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17627       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17628     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17629
17630   // Check RHS for vnot
17631   if (N1.getOpcode() == ISD::XOR &&
17632       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17633       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17634     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17635
17636   return SDValue();
17637 }
17638
17639 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17640                                 TargetLowering::DAGCombinerInfo &DCI,
17641                                 const X86Subtarget *Subtarget) {
17642   EVT VT = N->getValueType(0);
17643   if (DCI.isBeforeLegalizeOps())
17644     return SDValue();
17645
17646   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17647   if (R.getNode())
17648     return R;
17649
17650   SDValue N0 = N->getOperand(0);
17651   SDValue N1 = N->getOperand(1);
17652
17653   // look for psign/blend
17654   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17655     if (!Subtarget->hasSSSE3() ||
17656         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17657       return SDValue();
17658
17659     // Canonicalize pandn to RHS
17660     if (N0.getOpcode() == X86ISD::ANDNP)
17661       std::swap(N0, N1);
17662     // or (and (m, y), (pandn m, x))
17663     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17664       SDValue Mask = N1.getOperand(0);
17665       SDValue X    = N1.getOperand(1);
17666       SDValue Y;
17667       if (N0.getOperand(0) == Mask)
17668         Y = N0.getOperand(1);
17669       if (N0.getOperand(1) == Mask)
17670         Y = N0.getOperand(0);
17671
17672       // Check to see if the mask appeared in both the AND and ANDNP and
17673       if (!Y.getNode())
17674         return SDValue();
17675
17676       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17677       // Look through mask bitcast.
17678       if (Mask.getOpcode() == ISD::BITCAST)
17679         Mask = Mask.getOperand(0);
17680       if (X.getOpcode() == ISD::BITCAST)
17681         X = X.getOperand(0);
17682       if (Y.getOpcode() == ISD::BITCAST)
17683         Y = Y.getOperand(0);
17684
17685       EVT MaskVT = Mask.getValueType();
17686
17687       // Validate that the Mask operand is a vector sra node.
17688       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17689       // there is no psrai.b
17690       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17691       unsigned SraAmt = ~0;
17692       if (Mask.getOpcode() == ISD::SRA) {
17693         SDValue Amt = Mask.getOperand(1);
17694         if (isSplatVector(Amt.getNode())) {
17695           SDValue SclrAmt = Amt->getOperand(0);
17696           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17697             SraAmt = C->getZExtValue();
17698         }
17699       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17700         SDValue SraC = Mask.getOperand(1);
17701         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17702       }
17703       if ((SraAmt + 1) != EltBits)
17704         return SDValue();
17705
17706       SDLoc DL(N);
17707
17708       // Now we know we at least have a plendvb with the mask val.  See if
17709       // we can form a psignb/w/d.
17710       // psign = x.type == y.type == mask.type && y = sub(0, x);
17711       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17712           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17713           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17714         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17715                "Unsupported VT for PSIGN");
17716         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17717         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17718       }
17719       // PBLENDVB only available on SSE 4.1
17720       if (!Subtarget->hasSSE41())
17721         return SDValue();
17722
17723       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17724
17725       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17726       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17727       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17728       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17729       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17730     }
17731   }
17732
17733   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17734     return SDValue();
17735
17736   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17737   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17738     std::swap(N0, N1);
17739   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17740     return SDValue();
17741   if (!N0.hasOneUse() || !N1.hasOneUse())
17742     return SDValue();
17743
17744   SDValue ShAmt0 = N0.getOperand(1);
17745   if (ShAmt0.getValueType() != MVT::i8)
17746     return SDValue();
17747   SDValue ShAmt1 = N1.getOperand(1);
17748   if (ShAmt1.getValueType() != MVT::i8)
17749     return SDValue();
17750   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17751     ShAmt0 = ShAmt0.getOperand(0);
17752   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17753     ShAmt1 = ShAmt1.getOperand(0);
17754
17755   SDLoc DL(N);
17756   unsigned Opc = X86ISD::SHLD;
17757   SDValue Op0 = N0.getOperand(0);
17758   SDValue Op1 = N1.getOperand(0);
17759   if (ShAmt0.getOpcode() == ISD::SUB) {
17760     Opc = X86ISD::SHRD;
17761     std::swap(Op0, Op1);
17762     std::swap(ShAmt0, ShAmt1);
17763   }
17764
17765   unsigned Bits = VT.getSizeInBits();
17766   if (ShAmt1.getOpcode() == ISD::SUB) {
17767     SDValue Sum = ShAmt1.getOperand(0);
17768     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17769       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17770       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17771         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17772       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17773         return DAG.getNode(Opc, DL, VT,
17774                            Op0, Op1,
17775                            DAG.getNode(ISD::TRUNCATE, DL,
17776                                        MVT::i8, ShAmt0));
17777     }
17778   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17779     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17780     if (ShAmt0C &&
17781         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17782       return DAG.getNode(Opc, DL, VT,
17783                          N0.getOperand(0), N1.getOperand(0),
17784                          DAG.getNode(ISD::TRUNCATE, DL,
17785                                        MVT::i8, ShAmt0));
17786   }
17787
17788   return SDValue();
17789 }
17790
17791 // Generate NEG and CMOV for integer abs.
17792 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17793   EVT VT = N->getValueType(0);
17794
17795   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17796   // 8-bit integer abs to NEG and CMOV.
17797   if (VT.isInteger() && VT.getSizeInBits() == 8)
17798     return SDValue();
17799
17800   SDValue N0 = N->getOperand(0);
17801   SDValue N1 = N->getOperand(1);
17802   SDLoc DL(N);
17803
17804   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17805   // and change it to SUB and CMOV.
17806   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17807       N0.getOpcode() == ISD::ADD &&
17808       N0.getOperand(1) == N1 &&
17809       N1.getOpcode() == ISD::SRA &&
17810       N1.getOperand(0) == N0.getOperand(0))
17811     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17812       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17813         // Generate SUB & CMOV.
17814         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17815                                   DAG.getConstant(0, VT), N0.getOperand(0));
17816
17817         SDValue Ops[] = { N0.getOperand(0), Neg,
17818                           DAG.getConstant(X86::COND_GE, MVT::i8),
17819                           SDValue(Neg.getNode(), 1) };
17820         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17821                            Ops, array_lengthof(Ops));
17822       }
17823   return SDValue();
17824 }
17825
17826 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17827 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17828                                  TargetLowering::DAGCombinerInfo &DCI,
17829                                  const X86Subtarget *Subtarget) {
17830   EVT VT = N->getValueType(0);
17831   if (DCI.isBeforeLegalizeOps())
17832     return SDValue();
17833
17834   if (Subtarget->hasCMov()) {
17835     SDValue RV = performIntegerAbsCombine(N, DAG);
17836     if (RV.getNode())
17837       return RV;
17838   }
17839
17840   // Try forming BMI if it is available.
17841   if (!Subtarget->hasBMI())
17842     return SDValue();
17843
17844   if (VT != MVT::i32 && VT != MVT::i64)
17845     return SDValue();
17846
17847   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17848
17849   // Create BLSMSK instructions by finding X ^ (X-1)
17850   SDValue N0 = N->getOperand(0);
17851   SDValue N1 = N->getOperand(1);
17852   SDLoc DL(N);
17853
17854   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17855       isAllOnes(N0.getOperand(1)))
17856     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17857
17858   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17859       isAllOnes(N1.getOperand(1)))
17860     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17861
17862   return SDValue();
17863 }
17864
17865 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17866 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17867                                   TargetLowering::DAGCombinerInfo &DCI,
17868                                   const X86Subtarget *Subtarget) {
17869   LoadSDNode *Ld = cast<LoadSDNode>(N);
17870   EVT RegVT = Ld->getValueType(0);
17871   EVT MemVT = Ld->getMemoryVT();
17872   SDLoc dl(Ld);
17873   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17874   unsigned RegSz = RegVT.getSizeInBits();
17875
17876   // On Sandybridge unaligned 256bit loads are inefficient.
17877   ISD::LoadExtType Ext = Ld->getExtensionType();
17878   unsigned Alignment = Ld->getAlignment();
17879   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17880   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17881       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17882     unsigned NumElems = RegVT.getVectorNumElements();
17883     if (NumElems < 2)
17884       return SDValue();
17885
17886     SDValue Ptr = Ld->getBasePtr();
17887     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17888
17889     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17890                                   NumElems/2);
17891     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17892                                 Ld->getPointerInfo(), Ld->isVolatile(),
17893                                 Ld->isNonTemporal(), Ld->isInvariant(),
17894                                 Alignment);
17895     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17896     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17897                                 Ld->getPointerInfo(), Ld->isVolatile(),
17898                                 Ld->isNonTemporal(), Ld->isInvariant(),
17899                                 std::min(16U, Alignment));
17900     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17901                              Load1.getValue(1),
17902                              Load2.getValue(1));
17903
17904     SDValue NewVec = DAG.getUNDEF(RegVT);
17905     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17906     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17907     return DCI.CombineTo(N, NewVec, TF, true);
17908   }
17909
17910   // If this is a vector EXT Load then attempt to optimize it using a
17911   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17912   // expansion is still better than scalar code.
17913   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17914   // emit a shuffle and a arithmetic shift.
17915   // TODO: It is possible to support ZExt by zeroing the undef values
17916   // during the shuffle phase or after the shuffle.
17917   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17918       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17919     assert(MemVT != RegVT && "Cannot extend to the same type");
17920     assert(MemVT.isVector() && "Must load a vector from memory");
17921
17922     unsigned NumElems = RegVT.getVectorNumElements();
17923     unsigned MemSz = MemVT.getSizeInBits();
17924     assert(RegSz > MemSz && "Register size must be greater than the mem size");
17925
17926     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17927       return SDValue();
17928
17929     // All sizes must be a power of two.
17930     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17931       return SDValue();
17932
17933     // Attempt to load the original value using scalar loads.
17934     // Find the largest scalar type that divides the total loaded size.
17935     MVT SclrLoadTy = MVT::i8;
17936     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17937          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17938       MVT Tp = (MVT::SimpleValueType)tp;
17939       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
17940         SclrLoadTy = Tp;
17941       }
17942     }
17943
17944     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17945     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17946         (64 <= MemSz))
17947       SclrLoadTy = MVT::f64;
17948
17949     // Calculate the number of scalar loads that we need to perform
17950     // in order to load our vector from memory.
17951     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
17952     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17953       return SDValue();
17954
17955     unsigned loadRegZize = RegSz;
17956     if (Ext == ISD::SEXTLOAD && RegSz == 256)
17957       loadRegZize /= 2;
17958
17959     // Represent our vector as a sequence of elements which are the
17960     // largest scalar that we can load.
17961     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
17962       loadRegZize/SclrLoadTy.getSizeInBits());
17963
17964     // Represent the data using the same element type that is stored in
17965     // memory. In practice, we ''widen'' MemVT.
17966     EVT WideVecVT =
17967           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17968                        loadRegZize/MemVT.getScalarType().getSizeInBits());
17969
17970     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
17971       "Invalid vector type");
17972
17973     // We can't shuffle using an illegal type.
17974     if (!TLI.isTypeLegal(WideVecVT))
17975       return SDValue();
17976
17977     SmallVector<SDValue, 8> Chains;
17978     SDValue Ptr = Ld->getBasePtr();
17979     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
17980                                         TLI.getPointerTy());
17981     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
17982
17983     for (unsigned i = 0; i < NumLoads; ++i) {
17984       // Perform a single load.
17985       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
17986                                        Ptr, Ld->getPointerInfo(),
17987                                        Ld->isVolatile(), Ld->isNonTemporal(),
17988                                        Ld->isInvariant(), Ld->getAlignment());
17989       Chains.push_back(ScalarLoad.getValue(1));
17990       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
17991       // another round of DAGCombining.
17992       if (i == 0)
17993         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
17994       else
17995         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
17996                           ScalarLoad, DAG.getIntPtrConstant(i));
17997
17998       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17999     }
18000
18001     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18002                                Chains.size());
18003
18004     // Bitcast the loaded value to a vector of the original element type, in
18005     // the size of the target vector type.
18006     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18007     unsigned SizeRatio = RegSz/MemSz;
18008
18009     if (Ext == ISD::SEXTLOAD) {
18010       // If we have SSE4.1 we can directly emit a VSEXT node.
18011       if (Subtarget->hasSSE41()) {
18012         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18013         return DCI.CombineTo(N, Sext, TF, true);
18014       }
18015
18016       // Otherwise we'll shuffle the small elements in the high bits of the
18017       // larger type and perform an arithmetic shift. If the shift is not legal
18018       // it's better to scalarize.
18019       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18020         return SDValue();
18021
18022       // Redistribute the loaded elements into the different locations.
18023       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18024       for (unsigned i = 0; i != NumElems; ++i)
18025         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18026
18027       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18028                                            DAG.getUNDEF(WideVecVT),
18029                                            &ShuffleVec[0]);
18030
18031       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18032
18033       // Build the arithmetic shift.
18034       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18035                      MemVT.getVectorElementType().getSizeInBits();
18036       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18037                           DAG.getConstant(Amt, RegVT));
18038
18039       return DCI.CombineTo(N, Shuff, TF, true);
18040     }
18041
18042     // Redistribute the loaded elements into the different locations.
18043     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18044     for (unsigned i = 0; i != NumElems; ++i)
18045       ShuffleVec[i*SizeRatio] = i;
18046
18047     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18048                                          DAG.getUNDEF(WideVecVT),
18049                                          &ShuffleVec[0]);
18050
18051     // Bitcast to the requested type.
18052     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18053     // Replace the original load with the new sequence
18054     // and return the new chain.
18055     return DCI.CombineTo(N, Shuff, TF, true);
18056   }
18057
18058   return SDValue();
18059 }
18060
18061 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18062 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18063                                    const X86Subtarget *Subtarget) {
18064   StoreSDNode *St = cast<StoreSDNode>(N);
18065   EVT VT = St->getValue().getValueType();
18066   EVT StVT = St->getMemoryVT();
18067   SDLoc dl(St);
18068   SDValue StoredVal = St->getOperand(1);
18069   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18070
18071   // If we are saving a concatenation of two XMM registers, perform two stores.
18072   // On Sandy Bridge, 256-bit memory operations are executed by two
18073   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18074   // memory  operation.
18075   unsigned Alignment = St->getAlignment();
18076   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18077   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18078       StVT == VT && !IsAligned) {
18079     unsigned NumElems = VT.getVectorNumElements();
18080     if (NumElems < 2)
18081       return SDValue();
18082
18083     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18084     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18085
18086     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18087     SDValue Ptr0 = St->getBasePtr();
18088     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18089
18090     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18091                                 St->getPointerInfo(), St->isVolatile(),
18092                                 St->isNonTemporal(), Alignment);
18093     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18094                                 St->getPointerInfo(), St->isVolatile(),
18095                                 St->isNonTemporal(),
18096                                 std::min(16U, Alignment));
18097     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18098   }
18099
18100   // Optimize trunc store (of multiple scalars) to shuffle and store.
18101   // First, pack all of the elements in one place. Next, store to memory
18102   // in fewer chunks.
18103   if (St->isTruncatingStore() && VT.isVector()) {
18104     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18105     unsigned NumElems = VT.getVectorNumElements();
18106     assert(StVT != VT && "Cannot truncate to the same type");
18107     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18108     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18109
18110     // From, To sizes and ElemCount must be pow of two
18111     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18112     // We are going to use the original vector elt for storing.
18113     // Accumulated smaller vector elements must be a multiple of the store size.
18114     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18115
18116     unsigned SizeRatio  = FromSz / ToSz;
18117
18118     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18119
18120     // Create a type on which we perform the shuffle
18121     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18122             StVT.getScalarType(), NumElems*SizeRatio);
18123
18124     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18125
18126     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18127     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18128     for (unsigned i = 0; i != NumElems; ++i)
18129       ShuffleVec[i] = i * SizeRatio;
18130
18131     // Can't shuffle using an illegal type.
18132     if (!TLI.isTypeLegal(WideVecVT))
18133       return SDValue();
18134
18135     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18136                                          DAG.getUNDEF(WideVecVT),
18137                                          &ShuffleVec[0]);
18138     // At this point all of the data is stored at the bottom of the
18139     // register. We now need to save it to mem.
18140
18141     // Find the largest store unit
18142     MVT StoreType = MVT::i8;
18143     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18144          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18145       MVT Tp = (MVT::SimpleValueType)tp;
18146       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18147         StoreType = Tp;
18148     }
18149
18150     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18151     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18152         (64 <= NumElems * ToSz))
18153       StoreType = MVT::f64;
18154
18155     // Bitcast the original vector into a vector of store-size units
18156     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18157             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18158     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18159     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18160     SmallVector<SDValue, 8> Chains;
18161     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18162                                         TLI.getPointerTy());
18163     SDValue Ptr = St->getBasePtr();
18164
18165     // Perform one or more big stores into memory.
18166     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18167       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18168                                    StoreType, ShuffWide,
18169                                    DAG.getIntPtrConstant(i));
18170       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18171                                 St->getPointerInfo(), St->isVolatile(),
18172                                 St->isNonTemporal(), St->getAlignment());
18173       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18174       Chains.push_back(Ch);
18175     }
18176
18177     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18178                                Chains.size());
18179   }
18180
18181   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18182   // the FP state in cases where an emms may be missing.
18183   // A preferable solution to the general problem is to figure out the right
18184   // places to insert EMMS.  This qualifies as a quick hack.
18185
18186   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18187   if (VT.getSizeInBits() != 64)
18188     return SDValue();
18189
18190   const Function *F = DAG.getMachineFunction().getFunction();
18191   bool NoImplicitFloatOps = F->getAttributes().
18192     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18193   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18194                      && Subtarget->hasSSE2();
18195   if ((VT.isVector() ||
18196        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18197       isa<LoadSDNode>(St->getValue()) &&
18198       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18199       St->getChain().hasOneUse() && !St->isVolatile()) {
18200     SDNode* LdVal = St->getValue().getNode();
18201     LoadSDNode *Ld = 0;
18202     int TokenFactorIndex = -1;
18203     SmallVector<SDValue, 8> Ops;
18204     SDNode* ChainVal = St->getChain().getNode();
18205     // Must be a store of a load.  We currently handle two cases:  the load
18206     // is a direct child, and it's under an intervening TokenFactor.  It is
18207     // possible to dig deeper under nested TokenFactors.
18208     if (ChainVal == LdVal)
18209       Ld = cast<LoadSDNode>(St->getChain());
18210     else if (St->getValue().hasOneUse() &&
18211              ChainVal->getOpcode() == ISD::TokenFactor) {
18212       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18213         if (ChainVal->getOperand(i).getNode() == LdVal) {
18214           TokenFactorIndex = i;
18215           Ld = cast<LoadSDNode>(St->getValue());
18216         } else
18217           Ops.push_back(ChainVal->getOperand(i));
18218       }
18219     }
18220
18221     if (!Ld || !ISD::isNormalLoad(Ld))
18222       return SDValue();
18223
18224     // If this is not the MMX case, i.e. we are just turning i64 load/store
18225     // into f64 load/store, avoid the transformation if there are multiple
18226     // uses of the loaded value.
18227     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18228       return SDValue();
18229
18230     SDLoc LdDL(Ld);
18231     SDLoc StDL(N);
18232     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18233     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18234     // pair instead.
18235     if (Subtarget->is64Bit() || F64IsLegal) {
18236       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18237       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18238                                   Ld->getPointerInfo(), Ld->isVolatile(),
18239                                   Ld->isNonTemporal(), Ld->isInvariant(),
18240                                   Ld->getAlignment());
18241       SDValue NewChain = NewLd.getValue(1);
18242       if (TokenFactorIndex != -1) {
18243         Ops.push_back(NewChain);
18244         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18245                                Ops.size());
18246       }
18247       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18248                           St->getPointerInfo(),
18249                           St->isVolatile(), St->isNonTemporal(),
18250                           St->getAlignment());
18251     }
18252
18253     // Otherwise, lower to two pairs of 32-bit loads / stores.
18254     SDValue LoAddr = Ld->getBasePtr();
18255     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18256                                  DAG.getConstant(4, MVT::i32));
18257
18258     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18259                                Ld->getPointerInfo(),
18260                                Ld->isVolatile(), Ld->isNonTemporal(),
18261                                Ld->isInvariant(), Ld->getAlignment());
18262     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18263                                Ld->getPointerInfo().getWithOffset(4),
18264                                Ld->isVolatile(), Ld->isNonTemporal(),
18265                                Ld->isInvariant(),
18266                                MinAlign(Ld->getAlignment(), 4));
18267
18268     SDValue NewChain = LoLd.getValue(1);
18269     if (TokenFactorIndex != -1) {
18270       Ops.push_back(LoLd);
18271       Ops.push_back(HiLd);
18272       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18273                              Ops.size());
18274     }
18275
18276     LoAddr = St->getBasePtr();
18277     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18278                          DAG.getConstant(4, MVT::i32));
18279
18280     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18281                                 St->getPointerInfo(),
18282                                 St->isVolatile(), St->isNonTemporal(),
18283                                 St->getAlignment());
18284     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18285                                 St->getPointerInfo().getWithOffset(4),
18286                                 St->isVolatile(),
18287                                 St->isNonTemporal(),
18288                                 MinAlign(St->getAlignment(), 4));
18289     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18290   }
18291   return SDValue();
18292 }
18293
18294 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18295 /// and return the operands for the horizontal operation in LHS and RHS.  A
18296 /// horizontal operation performs the binary operation on successive elements
18297 /// of its first operand, then on successive elements of its second operand,
18298 /// returning the resulting values in a vector.  For example, if
18299 ///   A = < float a0, float a1, float a2, float a3 >
18300 /// and
18301 ///   B = < float b0, float b1, float b2, float b3 >
18302 /// then the result of doing a horizontal operation on A and B is
18303 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18304 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18305 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18306 /// set to A, RHS to B, and the routine returns 'true'.
18307 /// Note that the binary operation should have the property that if one of the
18308 /// operands is UNDEF then the result is UNDEF.
18309 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18310   // Look for the following pattern: if
18311   //   A = < float a0, float a1, float a2, float a3 >
18312   //   B = < float b0, float b1, float b2, float b3 >
18313   // and
18314   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18315   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18316   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18317   // which is A horizontal-op B.
18318
18319   // At least one of the operands should be a vector shuffle.
18320   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18321       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18322     return false;
18323
18324   MVT VT = LHS.getSimpleValueType();
18325
18326   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18327          "Unsupported vector type for horizontal add/sub");
18328
18329   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18330   // operate independently on 128-bit lanes.
18331   unsigned NumElts = VT.getVectorNumElements();
18332   unsigned NumLanes = VT.getSizeInBits()/128;
18333   unsigned NumLaneElts = NumElts / NumLanes;
18334   assert((NumLaneElts % 2 == 0) &&
18335          "Vector type should have an even number of elements in each lane");
18336   unsigned HalfLaneElts = NumLaneElts/2;
18337
18338   // View LHS in the form
18339   //   LHS = VECTOR_SHUFFLE A, B, LMask
18340   // If LHS is not a shuffle then pretend it is the shuffle
18341   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18342   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18343   // type VT.
18344   SDValue A, B;
18345   SmallVector<int, 16> LMask(NumElts);
18346   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18347     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18348       A = LHS.getOperand(0);
18349     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18350       B = LHS.getOperand(1);
18351     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18352     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18353   } else {
18354     if (LHS.getOpcode() != ISD::UNDEF)
18355       A = LHS;
18356     for (unsigned i = 0; i != NumElts; ++i)
18357       LMask[i] = i;
18358   }
18359
18360   // Likewise, view RHS in the form
18361   //   RHS = VECTOR_SHUFFLE C, D, RMask
18362   SDValue C, D;
18363   SmallVector<int, 16> RMask(NumElts);
18364   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18365     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18366       C = RHS.getOperand(0);
18367     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18368       D = RHS.getOperand(1);
18369     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18370     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18371   } else {
18372     if (RHS.getOpcode() != ISD::UNDEF)
18373       C = RHS;
18374     for (unsigned i = 0; i != NumElts; ++i)
18375       RMask[i] = i;
18376   }
18377
18378   // Check that the shuffles are both shuffling the same vectors.
18379   if (!(A == C && B == D) && !(A == D && B == C))
18380     return false;
18381
18382   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18383   if (!A.getNode() && !B.getNode())
18384     return false;
18385
18386   // If A and B occur in reverse order in RHS, then "swap" them (which means
18387   // rewriting the mask).
18388   if (A != C)
18389     CommuteVectorShuffleMask(RMask, NumElts);
18390
18391   // At this point LHS and RHS are equivalent to
18392   //   LHS = VECTOR_SHUFFLE A, B, LMask
18393   //   RHS = VECTOR_SHUFFLE A, B, RMask
18394   // Check that the masks correspond to performing a horizontal operation.
18395   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18396     for (unsigned i = 0; i != NumLaneElts; ++i) {
18397       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18398
18399       // Ignore any UNDEF components.
18400       if (LIdx < 0 || RIdx < 0 ||
18401           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18402           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18403         continue;
18404
18405       // Check that successive elements are being operated on.  If not, this is
18406       // not a horizontal operation.
18407       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18408       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18409       if (!(LIdx == Index && RIdx == Index + 1) &&
18410           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18411         return false;
18412     }
18413   }
18414
18415   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18416   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18417   return true;
18418 }
18419
18420 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18421 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18422                                   const X86Subtarget *Subtarget) {
18423   EVT VT = N->getValueType(0);
18424   SDValue LHS = N->getOperand(0);
18425   SDValue RHS = N->getOperand(1);
18426
18427   // Try to synthesize horizontal adds from adds of shuffles.
18428   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18429        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18430       isHorizontalBinOp(LHS, RHS, true))
18431     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18432   return SDValue();
18433 }
18434
18435 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18436 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18437                                   const X86Subtarget *Subtarget) {
18438   EVT VT = N->getValueType(0);
18439   SDValue LHS = N->getOperand(0);
18440   SDValue RHS = N->getOperand(1);
18441
18442   // Try to synthesize horizontal subs from subs of shuffles.
18443   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18444        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18445       isHorizontalBinOp(LHS, RHS, false))
18446     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18447   return SDValue();
18448 }
18449
18450 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18451 /// X86ISD::FXOR nodes.
18452 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18453   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18454   // F[X]OR(0.0, x) -> x
18455   // F[X]OR(x, 0.0) -> x
18456   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18457     if (C->getValueAPF().isPosZero())
18458       return N->getOperand(1);
18459   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18460     if (C->getValueAPF().isPosZero())
18461       return N->getOperand(0);
18462   return SDValue();
18463 }
18464
18465 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18466 /// X86ISD::FMAX nodes.
18467 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18468   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18469
18470   // Only perform optimizations if UnsafeMath is used.
18471   if (!DAG.getTarget().Options.UnsafeFPMath)
18472     return SDValue();
18473
18474   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18475   // into FMINC and FMAXC, which are Commutative operations.
18476   unsigned NewOp = 0;
18477   switch (N->getOpcode()) {
18478     default: llvm_unreachable("unknown opcode");
18479     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18480     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18481   }
18482
18483   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18484                      N->getOperand(0), N->getOperand(1));
18485 }
18486
18487 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18488 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18489   // FAND(0.0, x) -> 0.0
18490   // FAND(x, 0.0) -> 0.0
18491   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18492     if (C->getValueAPF().isPosZero())
18493       return N->getOperand(0);
18494   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18495     if (C->getValueAPF().isPosZero())
18496       return N->getOperand(1);
18497   return SDValue();
18498 }
18499
18500 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18501 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18502   // FANDN(x, 0.0) -> 0.0
18503   // FANDN(0.0, x) -> x
18504   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18505     if (C->getValueAPF().isPosZero())
18506       return N->getOperand(1);
18507   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18508     if (C->getValueAPF().isPosZero())
18509       return N->getOperand(1);
18510   return SDValue();
18511 }
18512
18513 static SDValue PerformBTCombine(SDNode *N,
18514                                 SelectionDAG &DAG,
18515                                 TargetLowering::DAGCombinerInfo &DCI) {
18516   // BT ignores high bits in the bit index operand.
18517   SDValue Op1 = N->getOperand(1);
18518   if (Op1.hasOneUse()) {
18519     unsigned BitWidth = Op1.getValueSizeInBits();
18520     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18521     APInt KnownZero, KnownOne;
18522     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18523                                           !DCI.isBeforeLegalizeOps());
18524     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18525     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18526         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18527       DCI.CommitTargetLoweringOpt(TLO);
18528   }
18529   return SDValue();
18530 }
18531
18532 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18533   SDValue Op = N->getOperand(0);
18534   if (Op.getOpcode() == ISD::BITCAST)
18535     Op = Op.getOperand(0);
18536   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18537   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18538       VT.getVectorElementType().getSizeInBits() ==
18539       OpVT.getVectorElementType().getSizeInBits()) {
18540     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18541   }
18542   return SDValue();
18543 }
18544
18545 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18546                                                const X86Subtarget *Subtarget) {
18547   EVT VT = N->getValueType(0);
18548   if (!VT.isVector())
18549     return SDValue();
18550
18551   SDValue N0 = N->getOperand(0);
18552   SDValue N1 = N->getOperand(1);
18553   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18554   SDLoc dl(N);
18555
18556   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18557   // both SSE and AVX2 since there is no sign-extended shift right
18558   // operation on a vector with 64-bit elements.
18559   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18560   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18561   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18562       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18563     SDValue N00 = N0.getOperand(0);
18564
18565     // EXTLOAD has a better solution on AVX2,
18566     // it may be replaced with X86ISD::VSEXT node.
18567     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18568       if (!ISD::isNormalLoad(N00.getNode()))
18569         return SDValue();
18570
18571     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18572         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18573                                   N00, N1);
18574       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18575     }
18576   }
18577   return SDValue();
18578 }
18579
18580 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18581                                   TargetLowering::DAGCombinerInfo &DCI,
18582                                   const X86Subtarget *Subtarget) {
18583   if (!DCI.isBeforeLegalizeOps())
18584     return SDValue();
18585
18586   if (!Subtarget->hasFp256())
18587     return SDValue();
18588
18589   EVT VT = N->getValueType(0);
18590   if (VT.isVector() && VT.getSizeInBits() == 256) {
18591     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18592     if (R.getNode())
18593       return R;
18594   }
18595
18596   return SDValue();
18597 }
18598
18599 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18600                                  const X86Subtarget* Subtarget) {
18601   SDLoc dl(N);
18602   EVT VT = N->getValueType(0);
18603
18604   // Let legalize expand this if it isn't a legal type yet.
18605   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18606     return SDValue();
18607
18608   EVT ScalarVT = VT.getScalarType();
18609   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18610       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18611     return SDValue();
18612
18613   SDValue A = N->getOperand(0);
18614   SDValue B = N->getOperand(1);
18615   SDValue C = N->getOperand(2);
18616
18617   bool NegA = (A.getOpcode() == ISD::FNEG);
18618   bool NegB = (B.getOpcode() == ISD::FNEG);
18619   bool NegC = (C.getOpcode() == ISD::FNEG);
18620
18621   // Negative multiplication when NegA xor NegB
18622   bool NegMul = (NegA != NegB);
18623   if (NegA)
18624     A = A.getOperand(0);
18625   if (NegB)
18626     B = B.getOperand(0);
18627   if (NegC)
18628     C = C.getOperand(0);
18629
18630   unsigned Opcode;
18631   if (!NegMul)
18632     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18633   else
18634     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18635
18636   return DAG.getNode(Opcode, dl, VT, A, B, C);
18637 }
18638
18639 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18640                                   TargetLowering::DAGCombinerInfo &DCI,
18641                                   const X86Subtarget *Subtarget) {
18642   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18643   //           (and (i32 x86isd::setcc_carry), 1)
18644   // This eliminates the zext. This transformation is necessary because
18645   // ISD::SETCC is always legalized to i8.
18646   SDLoc dl(N);
18647   SDValue N0 = N->getOperand(0);
18648   EVT VT = N->getValueType(0);
18649
18650   if (N0.getOpcode() == ISD::AND &&
18651       N0.hasOneUse() &&
18652       N0.getOperand(0).hasOneUse()) {
18653     SDValue N00 = N0.getOperand(0);
18654     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18655       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18656       if (!C || C->getZExtValue() != 1)
18657         return SDValue();
18658       return DAG.getNode(ISD::AND, dl, VT,
18659                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18660                                      N00.getOperand(0), N00.getOperand(1)),
18661                          DAG.getConstant(1, VT));
18662     }
18663   }
18664
18665   if (VT.is256BitVector()) {
18666     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18667     if (R.getNode())
18668       return R;
18669   }
18670
18671   return SDValue();
18672 }
18673
18674 // Optimize x == -y --> x+y == 0
18675 //          x != -y --> x+y != 0
18676 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18677   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18678   SDValue LHS = N->getOperand(0);
18679   SDValue RHS = N->getOperand(1);
18680
18681   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18682     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18683       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18684         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18685                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18686         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18687                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18688       }
18689   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18690     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18691       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18692         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18693                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18694         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18695                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18696       }
18697   return SDValue();
18698 }
18699
18700 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18701 // as "sbb reg,reg", since it can be extended without zext and produces
18702 // an all-ones bit which is more useful than 0/1 in some cases.
18703 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18704   return DAG.getNode(ISD::AND, DL, MVT::i8,
18705                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18706                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18707                      DAG.getConstant(1, MVT::i8));
18708 }
18709
18710 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18711 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18712                                    TargetLowering::DAGCombinerInfo &DCI,
18713                                    const X86Subtarget *Subtarget) {
18714   SDLoc DL(N);
18715   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18716   SDValue EFLAGS = N->getOperand(1);
18717
18718   if (CC == X86::COND_A) {
18719     // Try to convert COND_A into COND_B in an attempt to facilitate
18720     // materializing "setb reg".
18721     //
18722     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18723     // cannot take an immediate as its first operand.
18724     //
18725     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18726         EFLAGS.getValueType().isInteger() &&
18727         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18728       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18729                                    EFLAGS.getNode()->getVTList(),
18730                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18731       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18732       return MaterializeSETB(DL, NewEFLAGS, DAG);
18733     }
18734   }
18735
18736   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18737   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18738   // cases.
18739   if (CC == X86::COND_B)
18740     return MaterializeSETB(DL, EFLAGS, DAG);
18741
18742   SDValue Flags;
18743
18744   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18745   if (Flags.getNode()) {
18746     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18747     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18748   }
18749
18750   return SDValue();
18751 }
18752
18753 // Optimize branch condition evaluation.
18754 //
18755 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18756                                     TargetLowering::DAGCombinerInfo &DCI,
18757                                     const X86Subtarget *Subtarget) {
18758   SDLoc DL(N);
18759   SDValue Chain = N->getOperand(0);
18760   SDValue Dest = N->getOperand(1);
18761   SDValue EFLAGS = N->getOperand(3);
18762   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18763
18764   SDValue Flags;
18765
18766   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18767   if (Flags.getNode()) {
18768     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18769     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18770                        Flags);
18771   }
18772
18773   return SDValue();
18774 }
18775
18776 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18777                                         const X86TargetLowering *XTLI) {
18778   SDValue Op0 = N->getOperand(0);
18779   EVT InVT = Op0->getValueType(0);
18780
18781   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18782   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18783     SDLoc dl(N);
18784     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18785     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18786     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18787   }
18788
18789   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18790   // a 32-bit target where SSE doesn't support i64->FP operations.
18791   if (Op0.getOpcode() == ISD::LOAD) {
18792     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18793     EVT VT = Ld->getValueType(0);
18794     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18795         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18796         !XTLI->getSubtarget()->is64Bit() &&
18797         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
18798       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18799                                           Ld->getChain(), Op0, DAG);
18800       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18801       return FILDChain;
18802     }
18803   }
18804   return SDValue();
18805 }
18806
18807 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18808 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18809                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18810   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18811   // the result is either zero or one (depending on the input carry bit).
18812   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18813   if (X86::isZeroNode(N->getOperand(0)) &&
18814       X86::isZeroNode(N->getOperand(1)) &&
18815       // We don't have a good way to replace an EFLAGS use, so only do this when
18816       // dead right now.
18817       SDValue(N, 1).use_empty()) {
18818     SDLoc DL(N);
18819     EVT VT = N->getValueType(0);
18820     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18821     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18822                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18823                                            DAG.getConstant(X86::COND_B,MVT::i8),
18824                                            N->getOperand(2)),
18825                                DAG.getConstant(1, VT));
18826     return DCI.CombineTo(N, Res1, CarryOut);
18827   }
18828
18829   return SDValue();
18830 }
18831
18832 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18833 //      (add Y, (setne X, 0)) -> sbb -1, Y
18834 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18835 //      (sub (setne X, 0), Y) -> adc -1, Y
18836 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18837   SDLoc DL(N);
18838
18839   // Look through ZExts.
18840   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18841   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18842     return SDValue();
18843
18844   SDValue SetCC = Ext.getOperand(0);
18845   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18846     return SDValue();
18847
18848   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18849   if (CC != X86::COND_E && CC != X86::COND_NE)
18850     return SDValue();
18851
18852   SDValue Cmp = SetCC.getOperand(1);
18853   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18854       !X86::isZeroNode(Cmp.getOperand(1)) ||
18855       !Cmp.getOperand(0).getValueType().isInteger())
18856     return SDValue();
18857
18858   SDValue CmpOp0 = Cmp.getOperand(0);
18859   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18860                                DAG.getConstant(1, CmpOp0.getValueType()));
18861
18862   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18863   if (CC == X86::COND_NE)
18864     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18865                        DL, OtherVal.getValueType(), OtherVal,
18866                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18867   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18868                      DL, OtherVal.getValueType(), OtherVal,
18869                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18870 }
18871
18872 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18873 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18874                                  const X86Subtarget *Subtarget) {
18875   EVT VT = N->getValueType(0);
18876   SDValue Op0 = N->getOperand(0);
18877   SDValue Op1 = N->getOperand(1);
18878
18879   // Try to synthesize horizontal adds from adds of shuffles.
18880   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18881        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18882       isHorizontalBinOp(Op0, Op1, true))
18883     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18884
18885   return OptimizeConditionalInDecrement(N, DAG);
18886 }
18887
18888 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18889                                  const X86Subtarget *Subtarget) {
18890   SDValue Op0 = N->getOperand(0);
18891   SDValue Op1 = N->getOperand(1);
18892
18893   // X86 can't encode an immediate LHS of a sub. See if we can push the
18894   // negation into a preceding instruction.
18895   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18896     // If the RHS of the sub is a XOR with one use and a constant, invert the
18897     // immediate. Then add one to the LHS of the sub so we can turn
18898     // X-Y -> X+~Y+1, saving one register.
18899     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18900         isa<ConstantSDNode>(Op1.getOperand(1))) {
18901       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18902       EVT VT = Op0.getValueType();
18903       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18904                                    Op1.getOperand(0),
18905                                    DAG.getConstant(~XorC, VT));
18906       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18907                          DAG.getConstant(C->getAPIntValue()+1, VT));
18908     }
18909   }
18910
18911   // Try to synthesize horizontal adds from adds of shuffles.
18912   EVT VT = N->getValueType(0);
18913   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18914        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18915       isHorizontalBinOp(Op0, Op1, true))
18916     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18917
18918   return OptimizeConditionalInDecrement(N, DAG);
18919 }
18920
18921 /// performVZEXTCombine - Performs build vector combines
18922 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18923                                         TargetLowering::DAGCombinerInfo &DCI,
18924                                         const X86Subtarget *Subtarget) {
18925   // (vzext (bitcast (vzext (x)) -> (vzext x)
18926   SDValue In = N->getOperand(0);
18927   while (In.getOpcode() == ISD::BITCAST)
18928     In = In.getOperand(0);
18929
18930   if (In.getOpcode() != X86ISD::VZEXT)
18931     return SDValue();
18932
18933   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
18934                      In.getOperand(0));
18935 }
18936
18937 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
18938                                              DAGCombinerInfo &DCI) const {
18939   SelectionDAG &DAG = DCI.DAG;
18940   switch (N->getOpcode()) {
18941   default: break;
18942   case ISD::EXTRACT_VECTOR_ELT:
18943     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
18944   case ISD::VSELECT:
18945   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
18946   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
18947   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
18948   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
18949   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
18950   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
18951   case ISD::SHL:
18952   case ISD::SRA:
18953   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
18954   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
18955   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
18956   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
18957   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
18958   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
18959   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
18960   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
18961   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
18962   case X86ISD::FXOR:
18963   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
18964   case X86ISD::FMIN:
18965   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
18966   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
18967   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
18968   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
18969   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
18970   case ISD::ANY_EXTEND:
18971   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
18972   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
18973   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
18974   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
18975   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
18976   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
18977   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
18978   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
18979   case X86ISD::SHUFP:       // Handle all target specific shuffles
18980   case X86ISD::PALIGNR:
18981   case X86ISD::UNPCKH:
18982   case X86ISD::UNPCKL:
18983   case X86ISD::MOVHLPS:
18984   case X86ISD::MOVLHPS:
18985   case X86ISD::PSHUFD:
18986   case X86ISD::PSHUFHW:
18987   case X86ISD::PSHUFLW:
18988   case X86ISD::MOVSS:
18989   case X86ISD::MOVSD:
18990   case X86ISD::VPERMILP:
18991   case X86ISD::VPERM2X128:
18992   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
18993   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
18994   }
18995
18996   return SDValue();
18997 }
18998
18999 /// isTypeDesirableForOp - Return true if the target has native support for
19000 /// the specified value type and it is 'desirable' to use the type for the
19001 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19002 /// instruction encodings are longer and some i16 instructions are slow.
19003 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19004   if (!isTypeLegal(VT))
19005     return false;
19006   if (VT != MVT::i16)
19007     return true;
19008
19009   switch (Opc) {
19010   default:
19011     return true;
19012   case ISD::LOAD:
19013   case ISD::SIGN_EXTEND:
19014   case ISD::ZERO_EXTEND:
19015   case ISD::ANY_EXTEND:
19016   case ISD::SHL:
19017   case ISD::SRL:
19018   case ISD::SUB:
19019   case ISD::ADD:
19020   case ISD::MUL:
19021   case ISD::AND:
19022   case ISD::OR:
19023   case ISD::XOR:
19024     return false;
19025   }
19026 }
19027
19028 /// IsDesirableToPromoteOp - This method query the target whether it is
19029 /// beneficial for dag combiner to promote the specified node. If true, it
19030 /// should return the desired promotion type by reference.
19031 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19032   EVT VT = Op.getValueType();
19033   if (VT != MVT::i16)
19034     return false;
19035
19036   bool Promote = false;
19037   bool Commute = false;
19038   switch (Op.getOpcode()) {
19039   default: break;
19040   case ISD::LOAD: {
19041     LoadSDNode *LD = cast<LoadSDNode>(Op);
19042     // If the non-extending load has a single use and it's not live out, then it
19043     // might be folded.
19044     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19045                                                      Op.hasOneUse()*/) {
19046       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19047              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19048         // The only case where we'd want to promote LOAD (rather then it being
19049         // promoted as an operand is when it's only use is liveout.
19050         if (UI->getOpcode() != ISD::CopyToReg)
19051           return false;
19052       }
19053     }
19054     Promote = true;
19055     break;
19056   }
19057   case ISD::SIGN_EXTEND:
19058   case ISD::ZERO_EXTEND:
19059   case ISD::ANY_EXTEND:
19060     Promote = true;
19061     break;
19062   case ISD::SHL:
19063   case ISD::SRL: {
19064     SDValue N0 = Op.getOperand(0);
19065     // Look out for (store (shl (load), x)).
19066     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19067       return false;
19068     Promote = true;
19069     break;
19070   }
19071   case ISD::ADD:
19072   case ISD::MUL:
19073   case ISD::AND:
19074   case ISD::OR:
19075   case ISD::XOR:
19076     Commute = true;
19077     // fallthrough
19078   case ISD::SUB: {
19079     SDValue N0 = Op.getOperand(0);
19080     SDValue N1 = Op.getOperand(1);
19081     if (!Commute && MayFoldLoad(N1))
19082       return false;
19083     // Avoid disabling potential load folding opportunities.
19084     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19085       return false;
19086     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19087       return false;
19088     Promote = true;
19089   }
19090   }
19091
19092   PVT = MVT::i32;
19093   return Promote;
19094 }
19095
19096 //===----------------------------------------------------------------------===//
19097 //                           X86 Inline Assembly Support
19098 //===----------------------------------------------------------------------===//
19099
19100 namespace {
19101   // Helper to match a string separated by whitespace.
19102   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19103     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19104
19105     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19106       StringRef piece(*args[i]);
19107       if (!s.startswith(piece)) // Check if the piece matches.
19108         return false;
19109
19110       s = s.substr(piece.size());
19111       StringRef::size_type pos = s.find_first_not_of(" \t");
19112       if (pos == 0) // We matched a prefix.
19113         return false;
19114
19115       s = s.substr(pos);
19116     }
19117
19118     return s.empty();
19119   }
19120   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19121 }
19122
19123 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19124   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19125
19126   std::string AsmStr = IA->getAsmString();
19127
19128   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19129   if (!Ty || Ty->getBitWidth() % 16 != 0)
19130     return false;
19131
19132   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19133   SmallVector<StringRef, 4> AsmPieces;
19134   SplitString(AsmStr, AsmPieces, ";\n");
19135
19136   switch (AsmPieces.size()) {
19137   default: return false;
19138   case 1:
19139     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19140     // we will turn this bswap into something that will be lowered to logical
19141     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19142     // lower so don't worry about this.
19143     // bswap $0
19144     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19145         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19146         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19147         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19148         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19149         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19150       // No need to check constraints, nothing other than the equivalent of
19151       // "=r,0" would be valid here.
19152       return IntrinsicLowering::LowerToByteSwap(CI);
19153     }
19154
19155     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19156     if (CI->getType()->isIntegerTy(16) &&
19157         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19158         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19159          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19160       AsmPieces.clear();
19161       const std::string &ConstraintsStr = IA->getConstraintString();
19162       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19163       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19164       if (AsmPieces.size() == 4 &&
19165           AsmPieces[0] == "~{cc}" &&
19166           AsmPieces[1] == "~{dirflag}" &&
19167           AsmPieces[2] == "~{flags}" &&
19168           AsmPieces[3] == "~{fpsr}")
19169       return IntrinsicLowering::LowerToByteSwap(CI);
19170     }
19171     break;
19172   case 3:
19173     if (CI->getType()->isIntegerTy(32) &&
19174         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19175         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19176         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19177         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19178       AsmPieces.clear();
19179       const std::string &ConstraintsStr = IA->getConstraintString();
19180       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19181       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19182       if (AsmPieces.size() == 4 &&
19183           AsmPieces[0] == "~{cc}" &&
19184           AsmPieces[1] == "~{dirflag}" &&
19185           AsmPieces[2] == "~{flags}" &&
19186           AsmPieces[3] == "~{fpsr}")
19187         return IntrinsicLowering::LowerToByteSwap(CI);
19188     }
19189
19190     if (CI->getType()->isIntegerTy(64)) {
19191       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19192       if (Constraints.size() >= 2 &&
19193           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19194           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19195         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19196         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19197             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19198             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19199           return IntrinsicLowering::LowerToByteSwap(CI);
19200       }
19201     }
19202     break;
19203   }
19204   return false;
19205 }
19206
19207 /// getConstraintType - Given a constraint letter, return the type of
19208 /// constraint it is for this target.
19209 X86TargetLowering::ConstraintType
19210 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19211   if (Constraint.size() == 1) {
19212     switch (Constraint[0]) {
19213     case 'R':
19214     case 'q':
19215     case 'Q':
19216     case 'f':
19217     case 't':
19218     case 'u':
19219     case 'y':
19220     case 'x':
19221     case 'Y':
19222     case 'l':
19223       return C_RegisterClass;
19224     case 'a':
19225     case 'b':
19226     case 'c':
19227     case 'd':
19228     case 'S':
19229     case 'D':
19230     case 'A':
19231       return C_Register;
19232     case 'I':
19233     case 'J':
19234     case 'K':
19235     case 'L':
19236     case 'M':
19237     case 'N':
19238     case 'G':
19239     case 'C':
19240     case 'e':
19241     case 'Z':
19242       return C_Other;
19243     default:
19244       break;
19245     }
19246   }
19247   return TargetLowering::getConstraintType(Constraint);
19248 }
19249
19250 /// Examine constraint type and operand type and determine a weight value.
19251 /// This object must already have been set up with the operand type
19252 /// and the current alternative constraint selected.
19253 TargetLowering::ConstraintWeight
19254   X86TargetLowering::getSingleConstraintMatchWeight(
19255     AsmOperandInfo &info, const char *constraint) const {
19256   ConstraintWeight weight = CW_Invalid;
19257   Value *CallOperandVal = info.CallOperandVal;
19258     // If we don't have a value, we can't do a match,
19259     // but allow it at the lowest weight.
19260   if (CallOperandVal == NULL)
19261     return CW_Default;
19262   Type *type = CallOperandVal->getType();
19263   // Look at the constraint type.
19264   switch (*constraint) {
19265   default:
19266     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19267   case 'R':
19268   case 'q':
19269   case 'Q':
19270   case 'a':
19271   case 'b':
19272   case 'c':
19273   case 'd':
19274   case 'S':
19275   case 'D':
19276   case 'A':
19277     if (CallOperandVal->getType()->isIntegerTy())
19278       weight = CW_SpecificReg;
19279     break;
19280   case 'f':
19281   case 't':
19282   case 'u':
19283     if (type->isFloatingPointTy())
19284       weight = CW_SpecificReg;
19285     break;
19286   case 'y':
19287     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19288       weight = CW_SpecificReg;
19289     break;
19290   case 'x':
19291   case 'Y':
19292     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19293         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19294       weight = CW_Register;
19295     break;
19296   case 'I':
19297     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19298       if (C->getZExtValue() <= 31)
19299         weight = CW_Constant;
19300     }
19301     break;
19302   case 'J':
19303     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19304       if (C->getZExtValue() <= 63)
19305         weight = CW_Constant;
19306     }
19307     break;
19308   case 'K':
19309     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19310       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19311         weight = CW_Constant;
19312     }
19313     break;
19314   case 'L':
19315     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19316       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19317         weight = CW_Constant;
19318     }
19319     break;
19320   case 'M':
19321     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19322       if (C->getZExtValue() <= 3)
19323         weight = CW_Constant;
19324     }
19325     break;
19326   case 'N':
19327     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19328       if (C->getZExtValue() <= 0xff)
19329         weight = CW_Constant;
19330     }
19331     break;
19332   case 'G':
19333   case 'C':
19334     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19335       weight = CW_Constant;
19336     }
19337     break;
19338   case 'e':
19339     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19340       if ((C->getSExtValue() >= -0x80000000LL) &&
19341           (C->getSExtValue() <= 0x7fffffffLL))
19342         weight = CW_Constant;
19343     }
19344     break;
19345   case 'Z':
19346     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19347       if (C->getZExtValue() <= 0xffffffff)
19348         weight = CW_Constant;
19349     }
19350     break;
19351   }
19352   return weight;
19353 }
19354
19355 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19356 /// with another that has more specific requirements based on the type of the
19357 /// corresponding operand.
19358 const char *X86TargetLowering::
19359 LowerXConstraint(EVT ConstraintVT) const {
19360   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19361   // 'f' like normal targets.
19362   if (ConstraintVT.isFloatingPoint()) {
19363     if (Subtarget->hasSSE2())
19364       return "Y";
19365     if (Subtarget->hasSSE1())
19366       return "x";
19367   }
19368
19369   return TargetLowering::LowerXConstraint(ConstraintVT);
19370 }
19371
19372 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19373 /// vector.  If it is invalid, don't add anything to Ops.
19374 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19375                                                      std::string &Constraint,
19376                                                      std::vector<SDValue>&Ops,
19377                                                      SelectionDAG &DAG) const {
19378   SDValue Result(0, 0);
19379
19380   // Only support length 1 constraints for now.
19381   if (Constraint.length() > 1) return;
19382
19383   char ConstraintLetter = Constraint[0];
19384   switch (ConstraintLetter) {
19385   default: break;
19386   case 'I':
19387     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19388       if (C->getZExtValue() <= 31) {
19389         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19390         break;
19391       }
19392     }
19393     return;
19394   case 'J':
19395     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19396       if (C->getZExtValue() <= 63) {
19397         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19398         break;
19399       }
19400     }
19401     return;
19402   case 'K':
19403     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19404       if (isInt<8>(C->getSExtValue())) {
19405         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19406         break;
19407       }
19408     }
19409     return;
19410   case 'N':
19411     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19412       if (C->getZExtValue() <= 255) {
19413         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19414         break;
19415       }
19416     }
19417     return;
19418   case 'e': {
19419     // 32-bit signed value
19420     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19421       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19422                                            C->getSExtValue())) {
19423         // Widen to 64 bits here to get it sign extended.
19424         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19425         break;
19426       }
19427     // FIXME gcc accepts some relocatable values here too, but only in certain
19428     // memory models; it's complicated.
19429     }
19430     return;
19431   }
19432   case 'Z': {
19433     // 32-bit unsigned value
19434     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19435       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19436                                            C->getZExtValue())) {
19437         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19438         break;
19439       }
19440     }
19441     // FIXME gcc accepts some relocatable values here too, but only in certain
19442     // memory models; it's complicated.
19443     return;
19444   }
19445   case 'i': {
19446     // Literal immediates are always ok.
19447     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19448       // Widen to 64 bits here to get it sign extended.
19449       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19450       break;
19451     }
19452
19453     // In any sort of PIC mode addresses need to be computed at runtime by
19454     // adding in a register or some sort of table lookup.  These can't
19455     // be used as immediates.
19456     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19457       return;
19458
19459     // If we are in non-pic codegen mode, we allow the address of a global (with
19460     // an optional displacement) to be used with 'i'.
19461     GlobalAddressSDNode *GA = 0;
19462     int64_t Offset = 0;
19463
19464     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19465     while (1) {
19466       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19467         Offset += GA->getOffset();
19468         break;
19469       } else if (Op.getOpcode() == ISD::ADD) {
19470         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19471           Offset += C->getZExtValue();
19472           Op = Op.getOperand(0);
19473           continue;
19474         }
19475       } else if (Op.getOpcode() == ISD::SUB) {
19476         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19477           Offset += -C->getZExtValue();
19478           Op = Op.getOperand(0);
19479           continue;
19480         }
19481       }
19482
19483       // Otherwise, this isn't something we can handle, reject it.
19484       return;
19485     }
19486
19487     const GlobalValue *GV = GA->getGlobal();
19488     // If we require an extra load to get this address, as in PIC mode, we
19489     // can't accept it.
19490     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19491                                                         getTargetMachine())))
19492       return;
19493
19494     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19495                                         GA->getValueType(0), Offset);
19496     break;
19497   }
19498   }
19499
19500   if (Result.getNode()) {
19501     Ops.push_back(Result);
19502     return;
19503   }
19504   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19505 }
19506
19507 std::pair<unsigned, const TargetRegisterClass*>
19508 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19509                                                 MVT VT) const {
19510   // First, see if this is a constraint that directly corresponds to an LLVM
19511   // register class.
19512   if (Constraint.size() == 1) {
19513     // GCC Constraint Letters
19514     switch (Constraint[0]) {
19515     default: break;
19516       // TODO: Slight differences here in allocation order and leaving
19517       // RIP in the class. Do they matter any more here than they do
19518       // in the normal allocation?
19519     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19520       if (Subtarget->is64Bit()) {
19521         if (VT == MVT::i32 || VT == MVT::f32)
19522           return std::make_pair(0U, &X86::GR32RegClass);
19523         if (VT == MVT::i16)
19524           return std::make_pair(0U, &X86::GR16RegClass);
19525         if (VT == MVT::i8 || VT == MVT::i1)
19526           return std::make_pair(0U, &X86::GR8RegClass);
19527         if (VT == MVT::i64 || VT == MVT::f64)
19528           return std::make_pair(0U, &X86::GR64RegClass);
19529         break;
19530       }
19531       // 32-bit fallthrough
19532     case 'Q':   // Q_REGS
19533       if (VT == MVT::i32 || VT == MVT::f32)
19534         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19535       if (VT == MVT::i16)
19536         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19537       if (VT == MVT::i8 || VT == MVT::i1)
19538         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19539       if (VT == MVT::i64)
19540         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19541       break;
19542     case 'r':   // GENERAL_REGS
19543     case 'l':   // INDEX_REGS
19544       if (VT == MVT::i8 || VT == MVT::i1)
19545         return std::make_pair(0U, &X86::GR8RegClass);
19546       if (VT == MVT::i16)
19547         return std::make_pair(0U, &X86::GR16RegClass);
19548       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19549         return std::make_pair(0U, &X86::GR32RegClass);
19550       return std::make_pair(0U, &X86::GR64RegClass);
19551     case 'R':   // LEGACY_REGS
19552       if (VT == MVT::i8 || VT == MVT::i1)
19553         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19554       if (VT == MVT::i16)
19555         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19556       if (VT == MVT::i32 || !Subtarget->is64Bit())
19557         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19558       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19559     case 'f':  // FP Stack registers.
19560       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19561       // value to the correct fpstack register class.
19562       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19563         return std::make_pair(0U, &X86::RFP32RegClass);
19564       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19565         return std::make_pair(0U, &X86::RFP64RegClass);
19566       return std::make_pair(0U, &X86::RFP80RegClass);
19567     case 'y':   // MMX_REGS if MMX allowed.
19568       if (!Subtarget->hasMMX()) break;
19569       return std::make_pair(0U, &X86::VR64RegClass);
19570     case 'Y':   // SSE_REGS if SSE2 allowed
19571       if (!Subtarget->hasSSE2()) break;
19572       // FALL THROUGH.
19573     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19574       if (!Subtarget->hasSSE1()) break;
19575
19576       switch (VT.SimpleTy) {
19577       default: break;
19578       // Scalar SSE types.
19579       case MVT::f32:
19580       case MVT::i32:
19581         return std::make_pair(0U, &X86::FR32RegClass);
19582       case MVT::f64:
19583       case MVT::i64:
19584         return std::make_pair(0U, &X86::FR64RegClass);
19585       // Vector types.
19586       case MVT::v16i8:
19587       case MVT::v8i16:
19588       case MVT::v4i32:
19589       case MVT::v2i64:
19590       case MVT::v4f32:
19591       case MVT::v2f64:
19592         return std::make_pair(0U, &X86::VR128RegClass);
19593       // AVX types.
19594       case MVT::v32i8:
19595       case MVT::v16i16:
19596       case MVT::v8i32:
19597       case MVT::v4i64:
19598       case MVT::v8f32:
19599       case MVT::v4f64:
19600         return std::make_pair(0U, &X86::VR256RegClass);
19601       case MVT::v8f64:
19602       case MVT::v16f32:
19603       case MVT::v16i32:
19604       case MVT::v8i64:
19605         return std::make_pair(0U, &X86::VR512RegClass);
19606       }
19607       break;
19608     }
19609   }
19610
19611   // Use the default implementation in TargetLowering to convert the register
19612   // constraint into a member of a register class.
19613   std::pair<unsigned, const TargetRegisterClass*> Res;
19614   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19615
19616   // Not found as a standard register?
19617   if (Res.second == 0) {
19618     // Map st(0) -> st(7) -> ST0
19619     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19620         tolower(Constraint[1]) == 's' &&
19621         tolower(Constraint[2]) == 't' &&
19622         Constraint[3] == '(' &&
19623         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19624         Constraint[5] == ')' &&
19625         Constraint[6] == '}') {
19626
19627       Res.first = X86::ST0+Constraint[4]-'0';
19628       Res.second = &X86::RFP80RegClass;
19629       return Res;
19630     }
19631
19632     // GCC allows "st(0)" to be called just plain "st".
19633     if (StringRef("{st}").equals_lower(Constraint)) {
19634       Res.first = X86::ST0;
19635       Res.second = &X86::RFP80RegClass;
19636       return Res;
19637     }
19638
19639     // flags -> EFLAGS
19640     if (StringRef("{flags}").equals_lower(Constraint)) {
19641       Res.first = X86::EFLAGS;
19642       Res.second = &X86::CCRRegClass;
19643       return Res;
19644     }
19645
19646     // 'A' means EAX + EDX.
19647     if (Constraint == "A") {
19648       Res.first = X86::EAX;
19649       Res.second = &X86::GR32_ADRegClass;
19650       return Res;
19651     }
19652     return Res;
19653   }
19654
19655   // Otherwise, check to see if this is a register class of the wrong value
19656   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19657   // turn into {ax},{dx}.
19658   if (Res.second->hasType(VT))
19659     return Res;   // Correct type already, nothing to do.
19660
19661   // All of the single-register GCC register classes map their values onto
19662   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19663   // really want an 8-bit or 32-bit register, map to the appropriate register
19664   // class and return the appropriate register.
19665   if (Res.second == &X86::GR16RegClass) {
19666     if (VT == MVT::i8 || VT == MVT::i1) {
19667       unsigned DestReg = 0;
19668       switch (Res.first) {
19669       default: break;
19670       case X86::AX: DestReg = X86::AL; break;
19671       case X86::DX: DestReg = X86::DL; break;
19672       case X86::CX: DestReg = X86::CL; break;
19673       case X86::BX: DestReg = X86::BL; break;
19674       }
19675       if (DestReg) {
19676         Res.first = DestReg;
19677         Res.second = &X86::GR8RegClass;
19678       }
19679     } else if (VT == MVT::i32 || VT == MVT::f32) {
19680       unsigned DestReg = 0;
19681       switch (Res.first) {
19682       default: break;
19683       case X86::AX: DestReg = X86::EAX; break;
19684       case X86::DX: DestReg = X86::EDX; break;
19685       case X86::CX: DestReg = X86::ECX; break;
19686       case X86::BX: DestReg = X86::EBX; break;
19687       case X86::SI: DestReg = X86::ESI; break;
19688       case X86::DI: DestReg = X86::EDI; break;
19689       case X86::BP: DestReg = X86::EBP; break;
19690       case X86::SP: DestReg = X86::ESP; break;
19691       }
19692       if (DestReg) {
19693         Res.first = DestReg;
19694         Res.second = &X86::GR32RegClass;
19695       }
19696     } else if (VT == MVT::i64 || VT == MVT::f64) {
19697       unsigned DestReg = 0;
19698       switch (Res.first) {
19699       default: break;
19700       case X86::AX: DestReg = X86::RAX; break;
19701       case X86::DX: DestReg = X86::RDX; break;
19702       case X86::CX: DestReg = X86::RCX; break;
19703       case X86::BX: DestReg = X86::RBX; break;
19704       case X86::SI: DestReg = X86::RSI; break;
19705       case X86::DI: DestReg = X86::RDI; break;
19706       case X86::BP: DestReg = X86::RBP; break;
19707       case X86::SP: DestReg = X86::RSP; break;
19708       }
19709       if (DestReg) {
19710         Res.first = DestReg;
19711         Res.second = &X86::GR64RegClass;
19712       }
19713     }
19714   } else if (Res.second == &X86::FR32RegClass ||
19715              Res.second == &X86::FR64RegClass ||
19716              Res.second == &X86::VR128RegClass ||
19717              Res.second == &X86::VR256RegClass ||
19718              Res.second == &X86::FR32XRegClass ||
19719              Res.second == &X86::FR64XRegClass ||
19720              Res.second == &X86::VR128XRegClass ||
19721              Res.second == &X86::VR256XRegClass ||
19722              Res.second == &X86::VR512RegClass) {
19723     // Handle references to XMM physical registers that got mapped into the
19724     // wrong class.  This can happen with constraints like {xmm0} where the
19725     // target independent register mapper will just pick the first match it can
19726     // find, ignoring the required type.
19727
19728     if (VT == MVT::f32 || VT == MVT::i32)
19729       Res.second = &X86::FR32RegClass;
19730     else if (VT == MVT::f64 || VT == MVT::i64)
19731       Res.second = &X86::FR64RegClass;
19732     else if (X86::VR128RegClass.hasType(VT))
19733       Res.second = &X86::VR128RegClass;
19734     else if (X86::VR256RegClass.hasType(VT))
19735       Res.second = &X86::VR256RegClass;
19736     else if (X86::VR512RegClass.hasType(VT))
19737       Res.second = &X86::VR512RegClass;
19738   }
19739
19740   return Res;
19741 }