Fix PR17546
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86InstrBuilder.h"
20 #include "X86TargetMachine.h"
21 #include "X86TargetObjectFile.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringExtras.h"
25 #include "llvm/ADT/VariadicFunction.h"
26 #include "llvm/CodeGen/IntrinsicLowering.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/MachineJumpTableInfo.h"
31 #include "llvm/CodeGen/MachineModuleInfo.h"
32 #include "llvm/CodeGen/MachineRegisterInfo.h"
33 #include "llvm/IR/CallingConv.h"
34 #include "llvm/IR/Constants.h"
35 #include "llvm/IR/DerivedTypes.h"
36 #include "llvm/IR/Function.h"
37 #include "llvm/IR/GlobalAlias.h"
38 #include "llvm/IR/GlobalVariable.h"
39 #include "llvm/IR/Instructions.h"
40 #include "llvm/IR/Intrinsics.h"
41 #include "llvm/IR/LLVMContext.h"
42 #include "llvm/MC/MCAsmInfo.h"
43 #include "llvm/MC/MCContext.h"
44 #include "llvm/MC/MCExpr.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/CallSite.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 STATISTIC(NumTailCalls, "Number of tail calls");
56
57 // Forward declarations.
58 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62                                 SelectionDAG &DAG, SDLoc dl,
63                                 unsigned vectorWidth) {
64   assert((vectorWidth == 128 || vectorWidth == 256) &&
65          "Unsupported vector width");
66   EVT VT = Vec.getValueType();
67   EVT ElVT = VT.getVectorElementType();
68   unsigned Factor = VT.getSizeInBits()/vectorWidth;
69   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70                                   VT.getVectorNumElements()/Factor);
71
72   // Extract from UNDEF is UNDEF.
73   if (Vec.getOpcode() == ISD::UNDEF)
74     return DAG.getUNDEF(ResultVT);
75
76   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
77   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
78
79   // This is the index of the first element of the vectorWidth-bit chunk
80   // we want.
81   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
82                                * ElemsPerChunk);
83
84   // If the input is a buildvector just emit a smaller one.
85   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
89   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
90   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91                                VecIdx);
92
93   return Result;
94   
95 }
96 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
97 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99 /// instructions or a simple subregister reference. Idx is an index in the
100 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
101 /// lowering EXTRACT_VECTOR_ELT operations easier.
102 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103                                    SelectionDAG &DAG, SDLoc dl) {
104   assert((Vec.getValueType().is256BitVector() ||
105           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
106   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
107 }
108
109 /// Generate a DAG to grab 256-bits from a 512-bit vector.
110 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111                                    SelectionDAG &DAG, SDLoc dl) {
112   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114 }
115
116 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117                                unsigned IdxVal, SelectionDAG &DAG,
118                                SDLoc dl, unsigned vectorWidth) {
119   assert((vectorWidth == 128 || vectorWidth == 256) &&
120          "Unsupported vector width");
121   // Inserting UNDEF is Result
122   if (Vec.getOpcode() == ISD::UNDEF)
123     return Result;
124   EVT VT = Vec.getValueType();
125   EVT ElVT = VT.getVectorElementType();
126   EVT ResultVT = Result.getValueType();
127
128   // Insert the relevant vectorWidth bits.
129   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131   // This is the index of the first element of the vectorWidth-bit chunk
132   // we want.
133   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134                                * ElemsPerChunk);
135
136   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138                      VecIdx);
139 }
140 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
141 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
143 /// simple superregister reference.  Idx is an index in the 128 bits
144 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
145 /// lowering INSERT_VECTOR_ELT operations easier.
146 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147                                   unsigned IdxVal, SelectionDAG &DAG,
148                                   SDLoc dl) {
149   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151 }
152
153 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154                                   unsigned IdxVal, SelectionDAG &DAG,
155                                   SDLoc dl) {
156   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
158 }
159
160 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161 /// instructions. This is used because creating CONCAT_VECTOR nodes of
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163 /// large BUILD_VECTORS.
164 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165                                    unsigned NumElems, SelectionDAG &DAG,
166                                    SDLoc dl) {
167   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
169 }
170
171 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172                                    unsigned NumElems, SelectionDAG &DAG,
173                                    SDLoc dl) {
174   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176 }
177
178 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
179   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180   bool is64Bit = Subtarget->is64Bit();
181
182   if (Subtarget->isTargetEnvMacho()) {
183     if (is64Bit)
184       return new X86_64MachoTargetObjectFile();
185     return new TargetLoweringObjectFileMachO();
186   }
187
188   if (Subtarget->isTargetLinux())
189     return new X86LinuxTargetObjectFile();
190   if (Subtarget->isTargetELF())
191     return new TargetLoweringObjectFileELF();
192   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
193     return new TargetLoweringObjectFileCOFF();
194   llvm_unreachable("unknown subtarget type");
195 }
196
197 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
198   : TargetLowering(TM, createTLOF(TM)) {
199   Subtarget = &TM.getSubtarget<X86Subtarget>();
200   X86ScalarSSEf64 = Subtarget->hasSSE2();
201   X86ScalarSSEf32 = Subtarget->hasSSE1();
202   TD = getDataLayout();
203
204   resetOperationActions();
205 }
206
207 void X86TargetLowering::resetOperationActions() {
208   const TargetMachine &TM = getTargetMachine();
209   static bool FirstTimeThrough = true;
210
211   // If none of the target options have changed, then we don't need to reset the
212   // operation actions.
213   if (!FirstTimeThrough && TO == TM.Options) return;
214
215   if (!FirstTimeThrough) {
216     // Reinitialize the actions.
217     initActions();
218     FirstTimeThrough = false;
219   }
220
221   TO = TM.Options;
222
223   // Set up the TargetLowering object.
224   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
225
226   // X86 is weird, it always uses i8 for shift amounts and setcc results.
227   setBooleanContents(ZeroOrOneBooleanContent);
228   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
230
231   // For 64-bit since we have so many registers use the ILP scheduler, for
232   // 32-bit code use the register pressure specific scheduling.
233   // For Atom, always use ILP scheduling.
234   if (Subtarget->isAtom())
235     setSchedulingPreference(Sched::ILP);
236   else if (Subtarget->is64Bit())
237     setSchedulingPreference(Sched::ILP);
238   else
239     setSchedulingPreference(Sched::RegPressure);
240   const X86RegisterInfo *RegInfo =
241     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
242   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
243
244   // Bypass expensive divides on Atom when compiling with O2
245   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
246     addBypassSlowDiv(32, 8);
247     if (Subtarget->is64Bit())
248       addBypassSlowDiv(64, 16);
249   }
250
251   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
252     // Setup Windows compiler runtime calls.
253     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
254     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
255     setLibcallName(RTLIB::SREM_I64, "_allrem");
256     setLibcallName(RTLIB::UREM_I64, "_aullrem");
257     setLibcallName(RTLIB::MUL_I64, "_allmul");
258     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
259     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
260     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
263
264     // The _ftol2 runtime function has an unusual calling conv, which
265     // is modeled by a special pseudo-instruction.
266     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
270   }
271
272   if (Subtarget->isTargetDarwin()) {
273     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
274     setUseUnderscoreSetJmp(false);
275     setUseUnderscoreLongJmp(false);
276   } else if (Subtarget->isTargetMingw()) {
277     // MS runtime is weird: it exports _setjmp, but longjmp!
278     setUseUnderscoreSetJmp(true);
279     setUseUnderscoreLongJmp(false);
280   } else {
281     setUseUnderscoreSetJmp(true);
282     setUseUnderscoreLongJmp(true);
283   }
284
285   // Set up the register classes.
286   addRegisterClass(MVT::i8, &X86::GR8RegClass);
287   addRegisterClass(MVT::i16, &X86::GR16RegClass);
288   addRegisterClass(MVT::i32, &X86::GR32RegClass);
289   if (Subtarget->is64Bit())
290     addRegisterClass(MVT::i64, &X86::GR64RegClass);
291
292   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
293
294   // We don't accept any truncstore of integer registers.
295   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
296   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
297   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
298   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
301
302   // SETOEQ and SETUNE require checking two conditions.
303   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
309
310   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311   // operation.
312   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
313   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
315
316   if (Subtarget->is64Bit()) {
317     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
318     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
319   } else if (!TM.Options.UseSoftFloat) {
320     // We have an algorithm for SSE2->double, and we turn this into a
321     // 64-bit FILD followed by conditional FADD for other targets.
322     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
323     // We have an algorithm for SSE2, and we turn this into a 64-bit
324     // FILD for other targets.
325     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
326   }
327
328   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329   // this operation.
330   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
331   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
332
333   if (!TM.Options.UseSoftFloat) {
334     // SSE has no i16 to fp conversion, only i32
335     if (X86ScalarSSEf32) {
336       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
337       // f32 and f64 cases are Legal, f80 case is not
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
339     } else {
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
342     }
343   } else {
344     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
345     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
346   }
347
348   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
349   // are Legal, f80 is custom lowered.
350   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
351   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
352
353   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354   // this operation.
355   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
356   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
357
358   if (X86ScalarSSEf32) {
359     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
360     // f32 and f64 cases are Legal, f80 case is not
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
362   } else {
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
365   }
366
367   // Handle FP_TO_UINT by promoting the destination to a larger signed
368   // conversion.
369   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
370   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
372
373   if (Subtarget->is64Bit()) {
374     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
375     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
376   } else if (!TM.Options.UseSoftFloat) {
377     // Since AVX is a superset of SSE3, only check for SSE here.
378     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
379       // Expand FP_TO_UINT into a select.
380       // FIXME: We would like to use a Custom expander here eventually to do
381       // the optimal thing for SSE vs. the default expansion in the legalizer.
382       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
383     else
384       // With SSE3 we can use fisttpll to convert to a signed i64; without
385       // SSE, we're stuck with a fistpll.
386       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
387   }
388
389   if (isTargetFTOL()) {
390     // Use the _ftol2 runtime function, which has a pseudo-instruction
391     // to handle its weird calling convention.
392     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
393   }
394
395   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
396   if (!X86ScalarSSEf64) {
397     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
398     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
399     if (Subtarget->is64Bit()) {
400       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
401       // Without SSE, i64->f64 goes through memory.
402       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
403     }
404   }
405
406   // Scalar integer divide and remainder are lowered to use operations that
407   // produce two results, to match the available instructions. This exposes
408   // the two-result form to trivial CSE, which is able to combine x/y and x%y
409   // into a single instruction.
410   //
411   // Scalar integer multiply-high is also lowered to use two-result
412   // operations, to match the available instructions. However, plain multiply
413   // (low) operations are left as Legal, as there are single-result
414   // instructions for this in x86. Using the two-result multiply instructions
415   // when both high and low results are needed must be arranged by dagcombine.
416   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
417     MVT VT = IntVTs[i];
418     setOperationAction(ISD::MULHS, VT, Expand);
419     setOperationAction(ISD::MULHU, VT, Expand);
420     setOperationAction(ISD::SDIV, VT, Expand);
421     setOperationAction(ISD::UDIV, VT, Expand);
422     setOperationAction(ISD::SREM, VT, Expand);
423     setOperationAction(ISD::UREM, VT, Expand);
424
425     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
426     setOperationAction(ISD::ADDC, VT, Custom);
427     setOperationAction(ISD::ADDE, VT, Custom);
428     setOperationAction(ISD::SUBC, VT, Custom);
429     setOperationAction(ISD::SUBE, VT, Custom);
430   }
431
432   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
433   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
434   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
435   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
436   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
438   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
441   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
442   if (Subtarget->is64Bit())
443     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
445   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
447   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
448   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
449   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
451   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
452
453   // Promote the i8 variants and force them on up to i32 which has a shorter
454   // encoding.
455   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
456   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
457   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
459   if (Subtarget->hasBMI()) {
460     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
461     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
462     if (Subtarget->is64Bit())
463       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
464   } else {
465     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
466     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
467     if (Subtarget->is64Bit())
468       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
469   }
470
471   if (Subtarget->hasLZCNT()) {
472     // When promoting the i8 variants, force them to i32 for a shorter
473     // encoding.
474     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
475     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
476     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
479     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
480     if (Subtarget->is64Bit())
481       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
482   } else {
483     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
484     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
485     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
486     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
487     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
489     if (Subtarget->is64Bit()) {
490       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
491       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492     }
493   }
494
495   if (Subtarget->hasPOPCNT()) {
496     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
497   } else {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
499     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
500     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
501     if (Subtarget->is64Bit())
502       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
503   }
504
505   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
506   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
507
508   // These should be promoted to a larger select which is supported.
509   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
510   // X86 wants to expand cmov itself.
511   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
512   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
513   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
514   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
517   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
518   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
520   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
523   if (Subtarget->is64Bit()) {
524     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
525     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
526   }
527   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
528   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
529   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
530   // support continuation, user-level threading, and etc.. As a result, no
531   // other SjLj exception interfaces are implemented and please don't build
532   // your own exception handling based on them.
533   // LLVM/Clang supports zero-cost DWARF exception handling.
534   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
536
537   // Darwin ABI issue.
538   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
539   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
540   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
541   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
542   if (Subtarget->is64Bit())
543     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
545   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
546   if (Subtarget->is64Bit()) {
547     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
548     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
549     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
550     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
551     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
552   }
553   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
554   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
555   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
556   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
557   if (Subtarget->is64Bit()) {
558     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
559     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
560     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
561   }
562
563   if (Subtarget->hasSSE1())
564     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
565
566   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
567
568   // Expand certain atomics
569   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
570     MVT VT = IntVTs[i];
571     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
573     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
574   }
575
576   if (!Subtarget->is64Bit()) {
577     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
578     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
589   }
590
591   if (Subtarget->hasCmpxchg16b()) {
592     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593   }
594
595   // FIXME - use subtarget debug flags
596   if (!Subtarget->isTargetDarwin() &&
597       !Subtarget->isTargetELF() &&
598       !Subtarget->isTargetCygMing()) {
599     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
600   }
601
602   if (Subtarget->is64Bit()) {
603     setExceptionPointerRegister(X86::RAX);
604     setExceptionSelectorRegister(X86::RDX);
605   } else {
606     setExceptionPointerRegister(X86::EAX);
607     setExceptionSelectorRegister(X86::EDX);
608   }
609   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
611
612   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
614
615   setOperationAction(ISD::TRAP, MVT::Other, Legal);
616   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
617
618   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
619   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
620   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
621   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622     // TargetInfo::X86_64ABIBuiltinVaList
623     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
624     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
625   } else {
626     // TargetInfo::CharPtrBuiltinVaList
627     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
628     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
629   }
630
631   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
632   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
633
634   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
635     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636                        MVT::i64 : MVT::i32, Custom);
637   else if (TM.Options.EnableSegmentedStacks)
638     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639                        MVT::i64 : MVT::i32, Custom);
640   else
641     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642                        MVT::i64 : MVT::i32, Expand);
643
644   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
645     // f32 and f64 use SSE.
646     // Set up the FP register classes.
647     addRegisterClass(MVT::f32, &X86::FR32RegClass);
648     addRegisterClass(MVT::f64, &X86::FR64RegClass);
649
650     // Use ANDPD to simulate FABS.
651     setOperationAction(ISD::FABS , MVT::f64, Custom);
652     setOperationAction(ISD::FABS , MVT::f32, Custom);
653
654     // Use XORP to simulate FNEG.
655     setOperationAction(ISD::FNEG , MVT::f64, Custom);
656     setOperationAction(ISD::FNEG , MVT::f32, Custom);
657
658     // Use ANDPD and ORPD to simulate FCOPYSIGN.
659     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
661
662     // Lower this to FGETSIGNx86 plus an AND.
663     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
666     // We don't support sin/cos/fmod
667     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
668     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
669     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
671     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
672     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
673
674     // Expand FP immediates into loads from the stack, except for the special
675     // cases we handle.
676     addLegalFPImmediate(APFloat(+0.0)); // xorpd
677     addLegalFPImmediate(APFloat(+0.0f)); // xorps
678   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
679     // Use SSE for f32, x87 for f64.
680     // Set up the FP register classes.
681     addRegisterClass(MVT::f32, &X86::FR32RegClass);
682     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
683
684     // Use ANDPS to simulate FABS.
685     setOperationAction(ISD::FABS , MVT::f32, Custom);
686
687     // Use XORP to simulate FNEG.
688     setOperationAction(ISD::FNEG , MVT::f32, Custom);
689
690     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
691
692     // Use ANDPS and ORPS to simulate FCOPYSIGN.
693     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
695
696     // We don't support sin/cos/fmod
697     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
698     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
699     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
700
701     // Special cases we handle for FP constants.
702     addLegalFPImmediate(APFloat(+0.0f)); // xorps
703     addLegalFPImmediate(APFloat(+0.0)); // FLD0
704     addLegalFPImmediate(APFloat(+1.0)); // FLD1
705     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
708     if (!TM.Options.UnsafeFPMath) {
709       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
710       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
711       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
712     }
713   } else if (!TM.Options.UseSoftFloat) {
714     // f32 and f64 in x87.
715     // Set up the FP register classes.
716     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
718
719     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
720     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
721     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
723
724     if (!TM.Options.UnsafeFPMath) {
725       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
726       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
727       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
729       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
731     }
732     addLegalFPImmediate(APFloat(+0.0)); // FLD0
733     addLegalFPImmediate(APFloat(+1.0)); // FLD1
734     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
736     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
740   }
741
742   // We don't support FMA.
743   setOperationAction(ISD::FMA, MVT::f64, Expand);
744   setOperationAction(ISD::FMA, MVT::f32, Expand);
745
746   // Long double always uses X87.
747   if (!TM.Options.UseSoftFloat) {
748     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
749     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
750     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
751     {
752       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
753       addLegalFPImmediate(TmpFlt);  // FLD0
754       TmpFlt.changeSign();
755       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
756
757       bool ignored;
758       APFloat TmpFlt2(+1.0);
759       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760                       &ignored);
761       addLegalFPImmediate(TmpFlt2);  // FLD1
762       TmpFlt2.changeSign();
763       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
764     }
765
766     if (!TM.Options.UnsafeFPMath) {
767       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
768       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
769       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
770     }
771
772     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
774     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
776     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
777     setOperationAction(ISD::FMA, MVT::f80, Expand);
778   }
779
780   // Always use a library call for pow.
781   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
782   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
784
785   setOperationAction(ISD::FLOG, MVT::f80, Expand);
786   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788   setOperationAction(ISD::FEXP, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
790
791   // First set operation action for all vector types to either promote
792   // (for widening) or expand (for scalarization). Then we will selectively
793   // turn on ones that can be effectively codegen'd.
794   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
796     MVT VT = (MVT::SimpleValueType)i;
797     setOperationAction(ISD::ADD , VT, Expand);
798     setOperationAction(ISD::SUB , VT, Expand);
799     setOperationAction(ISD::FADD, VT, Expand);
800     setOperationAction(ISD::FNEG, VT, Expand);
801     setOperationAction(ISD::FSUB, VT, Expand);
802     setOperationAction(ISD::MUL , VT, Expand);
803     setOperationAction(ISD::FMUL, VT, Expand);
804     setOperationAction(ISD::SDIV, VT, Expand);
805     setOperationAction(ISD::UDIV, VT, Expand);
806     setOperationAction(ISD::FDIV, VT, Expand);
807     setOperationAction(ISD::SREM, VT, Expand);
808     setOperationAction(ISD::UREM, VT, Expand);
809     setOperationAction(ISD::LOAD, VT, Expand);
810     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::FABS, VT, Expand);
816     setOperationAction(ISD::FSIN, VT, Expand);
817     setOperationAction(ISD::FSINCOS, VT, Expand);
818     setOperationAction(ISD::FCOS, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FREM, VT, Expand);
821     setOperationAction(ISD::FMA,  VT, Expand);
822     setOperationAction(ISD::FPOWI, VT, Expand);
823     setOperationAction(ISD::FSQRT, VT, Expand);
824     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825     setOperationAction(ISD::FFLOOR, VT, Expand);
826     setOperationAction(ISD::FCEIL, VT, Expand);
827     setOperationAction(ISD::FTRUNC, VT, Expand);
828     setOperationAction(ISD::FRINT, VT, Expand);
829     setOperationAction(ISD::FNEARBYINT, VT, Expand);
830     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832     setOperationAction(ISD::SDIVREM, VT, Expand);
833     setOperationAction(ISD::UDIVREM, VT, Expand);
834     setOperationAction(ISD::FPOW, VT, Expand);
835     setOperationAction(ISD::CTPOP, VT, Expand);
836     setOperationAction(ISD::CTTZ, VT, Expand);
837     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838     setOperationAction(ISD::CTLZ, VT, Expand);
839     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::SHL, VT, Expand);
841     setOperationAction(ISD::SRA, VT, Expand);
842     setOperationAction(ISD::SRL, VT, Expand);
843     setOperationAction(ISD::ROTL, VT, Expand);
844     setOperationAction(ISD::ROTR, VT, Expand);
845     setOperationAction(ISD::BSWAP, VT, Expand);
846     setOperationAction(ISD::SETCC, VT, Expand);
847     setOperationAction(ISD::FLOG, VT, Expand);
848     setOperationAction(ISD::FLOG2, VT, Expand);
849     setOperationAction(ISD::FLOG10, VT, Expand);
850     setOperationAction(ISD::FEXP, VT, Expand);
851     setOperationAction(ISD::FEXP2, VT, Expand);
852     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857     setOperationAction(ISD::TRUNCATE, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861     setOperationAction(ISD::VSELECT, VT, Expand);
862     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
864       setTruncStoreAction(VT,
865                           (MVT::SimpleValueType)InnerVT, Expand);
866     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
869   }
870
871   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872   // with -msoft-float, disable use of MMX as well.
873   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
874     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
875     // No operations on x86mmx supported, everything uses intrinsics.
876   }
877
878   // MMX-sized vectors (other than x86mmx) are expected to be expanded
879   // into smaller operations.
880   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
881   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
882   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
883   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
884   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
885   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
886   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
887   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
888   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
889   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
890   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
891   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
892   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
893   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
894   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
895   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
896   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
897   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
900   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
901   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
902   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
904   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
905   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
906   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
909
910   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
911     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
912
913     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
914     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
915     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
918     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
919     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
920     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
921     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
922     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
923     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
925   }
926
927   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
928     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
929
930     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931     // registers cannot be used even for integer operations.
932     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
936
937     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
938     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
939     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
940     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
941     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
942     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
943     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
944     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
945     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
946     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
947     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
948     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
949     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
950     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
953     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
954     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
955
956     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
957     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
958     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
960
961     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
962     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
963     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
964     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
966
967     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
968     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
969       MVT VT = (MVT::SimpleValueType)i;
970       // Do not attempt to custom lower non-power-of-2 vectors
971       if (!isPowerOf2_32(VT.getVectorNumElements()))
972         continue;
973       // Do not attempt to custom lower non-128-bit vectors
974       if (!VT.is128BitVector())
975         continue;
976       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
977       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
978       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
979     }
980
981     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
982     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
983     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
984     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
985     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
986     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
987
988     if (Subtarget->is64Bit()) {
989       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
990       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
991     }
992
993     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
994     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
995       MVT VT = (MVT::SimpleValueType)i;
996
997       // Do not attempt to promote non-128-bit vectors
998       if (!VT.is128BitVector())
999         continue;
1000
1001       setOperationAction(ISD::AND,    VT, Promote);
1002       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1003       setOperationAction(ISD::OR,     VT, Promote);
1004       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1005       setOperationAction(ISD::XOR,    VT, Promote);
1006       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1007       setOperationAction(ISD::LOAD,   VT, Promote);
1008       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1009       setOperationAction(ISD::SELECT, VT, Promote);
1010       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1011     }
1012
1013     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1014
1015     // Custom lower v2i64 and v2f64 selects.
1016     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1017     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1018     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1019     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1020
1021     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1022     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1023
1024     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1025     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1026     // As there is no 64-bit GPR available, we need build a special custom
1027     // sequence to convert from v2i32 to v2f32.
1028     if (!Subtarget->is64Bit())
1029       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1030
1031     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1032     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1033
1034     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1035   }
1036
1037   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1038     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1039     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1040     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1043     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1044     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1045     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1048
1049     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1050     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1051     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1054     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1055     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1056     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1059
1060     // FIXME: Do we need to handle scalar-to-vector here?
1061     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1062
1063     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1064     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1065     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1068
1069     // i8 and i16 vectors are custom , because the source register and source
1070     // source memory operand types are not the same width.  f32 vectors are
1071     // custom since the immediate controlling the insert encodes additional
1072     // information.
1073     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1074     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1077
1078     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1082
1083     // FIXME: these should be Legal but thats only for the case where
1084     // the index is constant.  For now custom expand to deal with that.
1085     if (Subtarget->is64Bit()) {
1086       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1087       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1088     }
1089   }
1090
1091   if (Subtarget->hasSSE2()) {
1092     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1093     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1094
1095     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1096     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1097
1098     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1099     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1100
1101     // In the customized shift lowering, the legal cases in AVX2 will be
1102     // recognized.
1103     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1104     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1105
1106     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1107     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1108
1109     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1112     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1113   }
1114
1115   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1116     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1117     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1120     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1122
1123     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1124     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1125     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1126
1127     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1128     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1132     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1133     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1137     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1138     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1139
1140     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1141     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1142     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1145     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1146     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1150     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1151     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1152
1153     setOperationAction(ISD::TRUNCATE,           MVT::v8i16, Custom);
1154     setOperationAction(ISD::TRUNCATE,           MVT::v4i32, Custom);
1155
1156     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1157
1158     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1159     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1160     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1161     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1162
1163     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i32, Custom);
1164     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1165     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1166
1167     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1168
1169     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1170     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1171
1172     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1173     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1174
1175     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1176     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1177
1178     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1179
1180     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1181     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1182     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1183     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1184
1185     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1186     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1187     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1188
1189     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1190     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1191     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1192     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1193
1194     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1195     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1197     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1200
1201     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1202       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1203       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1204       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1205       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1206       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1208     }
1209
1210     if (Subtarget->hasInt256()) {
1211       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1212       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1213       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1214       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1215
1216       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1217       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1218       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1219       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1220
1221       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1222       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1223       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1224       // Don't lower v32i8 because there is no 128-bit byte mul
1225
1226       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1227
1228       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1229     } else {
1230       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1231       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1232       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1233       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1234
1235       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1236       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1237       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1238       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1239
1240       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1241       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1242       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1243       // Don't lower v32i8 because there is no 128-bit byte mul
1244     }
1245
1246     // In the customized shift lowering, the legal cases in AVX2 will be
1247     // recognized.
1248     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1249     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1250
1251     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1252     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1253
1254     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1255
1256     // Custom lower several nodes for 256-bit types.
1257     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1258              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1259       MVT VT = (MVT::SimpleValueType)i;
1260
1261       // Extract subvector is special because the value type
1262       // (result) is 128-bit but the source is 256-bit wide.
1263       if (VT.is128BitVector())
1264         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1265
1266       // Do not attempt to custom lower other non-256-bit vectors
1267       if (!VT.is256BitVector())
1268         continue;
1269
1270       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1271       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1272       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1273       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1275       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1276       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1277     }
1278
1279     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1280     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1281       MVT VT = (MVT::SimpleValueType)i;
1282
1283       // Do not attempt to promote non-256-bit vectors
1284       if (!VT.is256BitVector())
1285         continue;
1286
1287       setOperationAction(ISD::AND,    VT, Promote);
1288       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1289       setOperationAction(ISD::OR,     VT, Promote);
1290       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1291       setOperationAction(ISD::XOR,    VT, Promote);
1292       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1293       setOperationAction(ISD::LOAD,   VT, Promote);
1294       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1295       setOperationAction(ISD::SELECT, VT, Promote);
1296       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1297     }
1298   }
1299
1300   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1301     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1302     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1303     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1304     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1305
1306     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1307     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1308
1309     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1310     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1311     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1312     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1313     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1314     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1315
1316     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1317     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1318     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1319     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1320     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1321     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1322
1323     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1324     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1325     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1326     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1327     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1328     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1329     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1330     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1331     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1332
1333     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1334     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1335     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1336     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1337     if (Subtarget->is64Bit()) {
1338       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1339       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1340       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1341       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1342     }
1343     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1344     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1345     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1346     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1347     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1348     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1349     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1350     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1351
1352     setOperationAction(ISD::TRUNCATE,           MVT::i1, Legal);
1353     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1354     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1355     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1356     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1357     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1358     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1359     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1360     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1361     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1362     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1363     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1364
1365     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1366     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1367     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1368     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1369     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1370
1371     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1372     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1373
1374     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1375
1376     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1377     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1378     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1379     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1380     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1381
1382     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1383     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1384
1385     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1386     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1387
1388     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1389
1390     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1391     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1392
1393     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1394     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1395
1396     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1397     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1398
1399     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1400     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1401     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1402     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1403     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1404     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1405
1406     // Custom lower several nodes.
1407     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1408              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1409       MVT VT = (MVT::SimpleValueType)i;
1410
1411       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1412       // Extract subvector is special because the value type
1413       // (result) is 256/128-bit but the source is 512-bit wide.
1414       if (VT.is128BitVector() || VT.is256BitVector())
1415         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1416
1417       if (VT.getVectorElementType() == MVT::i1)
1418         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1419
1420       // Do not attempt to custom lower other non-512-bit vectors
1421       if (!VT.is512BitVector())
1422         continue;
1423
1424       if ( EltSize >= 32) {
1425         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1426         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1427         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1428         setOperationAction(ISD::VSELECT,             VT, Legal);
1429         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1430         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1431         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1432       }
1433     }
1434     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1435       MVT VT = (MVT::SimpleValueType)i;
1436
1437       // Do not attempt to promote non-256-bit vectors
1438       if (!VT.is512BitVector())
1439         continue;
1440
1441       setOperationAction(ISD::SELECT, VT, Promote);
1442       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1443     }
1444   }// has  AVX-512
1445
1446   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1447   // of this type with custom code.
1448   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1449            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1450     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1451                        Custom);
1452   }
1453
1454   // We want to custom lower some of our intrinsics.
1455   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1456   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1457   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1458
1459   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1460   // handle type legalization for these operations here.
1461   //
1462   // FIXME: We really should do custom legalization for addition and
1463   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1464   // than generic legalization for 64-bit multiplication-with-overflow, though.
1465   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1466     // Add/Sub/Mul with overflow operations are custom lowered.
1467     MVT VT = IntVTs[i];
1468     setOperationAction(ISD::SADDO, VT, Custom);
1469     setOperationAction(ISD::UADDO, VT, Custom);
1470     setOperationAction(ISD::SSUBO, VT, Custom);
1471     setOperationAction(ISD::USUBO, VT, Custom);
1472     setOperationAction(ISD::SMULO, VT, Custom);
1473     setOperationAction(ISD::UMULO, VT, Custom);
1474   }
1475
1476   // There are no 8-bit 3-address imul/mul instructions
1477   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1478   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1479
1480   if (!Subtarget->is64Bit()) {
1481     // These libcalls are not available in 32-bit.
1482     setLibcallName(RTLIB::SHL_I128, 0);
1483     setLibcallName(RTLIB::SRL_I128, 0);
1484     setLibcallName(RTLIB::SRA_I128, 0);
1485   }
1486
1487   // Combine sin / cos into one node or libcall if possible.
1488   if (Subtarget->hasSinCos()) {
1489     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1490     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1491     if (Subtarget->isTargetDarwin()) {
1492       // For MacOSX, we don't want to the normal expansion of a libcall to
1493       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1494       // traffic.
1495       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1496       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1497     }
1498   }
1499
1500   // We have target-specific dag combine patterns for the following nodes:
1501   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1502   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1503   setTargetDAGCombine(ISD::VSELECT);
1504   setTargetDAGCombine(ISD::SELECT);
1505   setTargetDAGCombine(ISD::SHL);
1506   setTargetDAGCombine(ISD::SRA);
1507   setTargetDAGCombine(ISD::SRL);
1508   setTargetDAGCombine(ISD::OR);
1509   setTargetDAGCombine(ISD::AND);
1510   setTargetDAGCombine(ISD::ADD);
1511   setTargetDAGCombine(ISD::FADD);
1512   setTargetDAGCombine(ISD::FSUB);
1513   setTargetDAGCombine(ISD::FMA);
1514   setTargetDAGCombine(ISD::SUB);
1515   setTargetDAGCombine(ISD::LOAD);
1516   setTargetDAGCombine(ISD::STORE);
1517   setTargetDAGCombine(ISD::ZERO_EXTEND);
1518   setTargetDAGCombine(ISD::ANY_EXTEND);
1519   setTargetDAGCombine(ISD::SIGN_EXTEND);
1520   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1521   setTargetDAGCombine(ISD::TRUNCATE);
1522   setTargetDAGCombine(ISD::SINT_TO_FP);
1523   setTargetDAGCombine(ISD::SETCC);
1524   if (Subtarget->is64Bit())
1525     setTargetDAGCombine(ISD::MUL);
1526   setTargetDAGCombine(ISD::XOR);
1527
1528   computeRegisterProperties();
1529
1530   // On Darwin, -Os means optimize for size without hurting performance,
1531   // do not reduce the limit.
1532   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1533   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1534   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1535   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1536   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1537   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1538   setPrefLoopAlignment(4); // 2^4 bytes.
1539
1540   // Predictable cmov don't hurt on atom because it's in-order.
1541   PredictableSelectIsExpensive = !Subtarget->isAtom();
1542
1543   setPrefFunctionAlignment(4); // 2^4 bytes.
1544 }
1545
1546 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1547   if (!VT.isVector()) return MVT::i8;
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   // There is no blend with immediate in AVX-512.
6152   if (VT.is512BitVector())
6153     return SDValue();
6154
6155   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6156     return SDValue();
6157   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6158     return SDValue();
6159
6160   // Check the mask for BLEND and build the value.
6161   unsigned MaskValue = 0;
6162   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6163   unsigned NumLanes = (NumElems-1)/8 + 1;
6164   unsigned NumElemsInLane = NumElems / NumLanes;
6165
6166   // Blend for v16i16 should be symetric for the both lanes.
6167   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6168
6169     int SndLaneEltIdx = (NumLanes == 2) ?
6170       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6171     int EltIdx = SVOp->getMaskElt(i);
6172
6173     if ((EltIdx < 0 || EltIdx == (int)i) &&
6174         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6175       continue;
6176
6177     if (((unsigned)EltIdx == (i + NumElems)) &&
6178         (SndLaneEltIdx < 0 ||
6179          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6180       MaskValue |= (1<<i);
6181     else
6182       return SDValue();
6183   }
6184
6185   // Convert i32 vectors to floating point if it is not AVX2.
6186   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6187   MVT BlendVT = VT;
6188   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6189     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6190                                NumElems);
6191     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6192     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6193   }
6194
6195   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6196                             DAG.getConstant(MaskValue, MVT::i32));
6197   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6198 }
6199
6200 // v8i16 shuffles - Prefer shuffles in the following order:
6201 // 1. [all]   pshuflw, pshufhw, optional move
6202 // 2. [ssse3] 1 x pshufb
6203 // 3. [ssse3] 2 x pshufb + 1 x por
6204 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6205 static SDValue
6206 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6207                          SelectionDAG &DAG) {
6208   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6209   SDValue V1 = SVOp->getOperand(0);
6210   SDValue V2 = SVOp->getOperand(1);
6211   SDLoc dl(SVOp);
6212   SmallVector<int, 8> MaskVals;
6213
6214   // Determine if more than 1 of the words in each of the low and high quadwords
6215   // of the result come from the same quadword of one of the two inputs.  Undef
6216   // mask values count as coming from any quadword, for better codegen.
6217   unsigned LoQuad[] = { 0, 0, 0, 0 };
6218   unsigned HiQuad[] = { 0, 0, 0, 0 };
6219   std::bitset<4> InputQuads;
6220   for (unsigned i = 0; i < 8; ++i) {
6221     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6222     int EltIdx = SVOp->getMaskElt(i);
6223     MaskVals.push_back(EltIdx);
6224     if (EltIdx < 0) {
6225       ++Quad[0];
6226       ++Quad[1];
6227       ++Quad[2];
6228       ++Quad[3];
6229       continue;
6230     }
6231     ++Quad[EltIdx / 4];
6232     InputQuads.set(EltIdx / 4);
6233   }
6234
6235   int BestLoQuad = -1;
6236   unsigned MaxQuad = 1;
6237   for (unsigned i = 0; i < 4; ++i) {
6238     if (LoQuad[i] > MaxQuad) {
6239       BestLoQuad = i;
6240       MaxQuad = LoQuad[i];
6241     }
6242   }
6243
6244   int BestHiQuad = -1;
6245   MaxQuad = 1;
6246   for (unsigned i = 0; i < 4; ++i) {
6247     if (HiQuad[i] > MaxQuad) {
6248       BestHiQuad = i;
6249       MaxQuad = HiQuad[i];
6250     }
6251   }
6252
6253   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6254   // of the two input vectors, shuffle them into one input vector so only a
6255   // single pshufb instruction is necessary. If There are more than 2 input
6256   // quads, disable the next transformation since it does not help SSSE3.
6257   bool V1Used = InputQuads[0] || InputQuads[1];
6258   bool V2Used = InputQuads[2] || InputQuads[3];
6259   if (Subtarget->hasSSSE3()) {
6260     if (InputQuads.count() == 2 && V1Used && V2Used) {
6261       BestLoQuad = InputQuads[0] ? 0 : 1;
6262       BestHiQuad = InputQuads[2] ? 2 : 3;
6263     }
6264     if (InputQuads.count() > 2) {
6265       BestLoQuad = -1;
6266       BestHiQuad = -1;
6267     }
6268   }
6269
6270   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6271   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6272   // words from all 4 input quadwords.
6273   SDValue NewV;
6274   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6275     int MaskV[] = {
6276       BestLoQuad < 0 ? 0 : BestLoQuad,
6277       BestHiQuad < 0 ? 1 : BestHiQuad
6278     };
6279     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6280                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6281                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6282     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6283
6284     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6285     // source words for the shuffle, to aid later transformations.
6286     bool AllWordsInNewV = true;
6287     bool InOrder[2] = { true, true };
6288     for (unsigned i = 0; i != 8; ++i) {
6289       int idx = MaskVals[i];
6290       if (idx != (int)i)
6291         InOrder[i/4] = false;
6292       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6293         continue;
6294       AllWordsInNewV = false;
6295       break;
6296     }
6297
6298     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6299     if (AllWordsInNewV) {
6300       for (int i = 0; i != 8; ++i) {
6301         int idx = MaskVals[i];
6302         if (idx < 0)
6303           continue;
6304         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6305         if ((idx != i) && idx < 4)
6306           pshufhw = false;
6307         if ((idx != i) && idx > 3)
6308           pshuflw = false;
6309       }
6310       V1 = NewV;
6311       V2Used = false;
6312       BestLoQuad = 0;
6313       BestHiQuad = 1;
6314     }
6315
6316     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6317     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6318     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6319       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6320       unsigned TargetMask = 0;
6321       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6322                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6323       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6324       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6325                              getShufflePSHUFLWImmediate(SVOp);
6326       V1 = NewV.getOperand(0);
6327       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6328     }
6329   }
6330
6331   // Promote splats to a larger type which usually leads to more efficient code.
6332   // FIXME: Is this true if pshufb is available?
6333   if (SVOp->isSplat())
6334     return PromoteSplat(SVOp, DAG);
6335
6336   // If we have SSSE3, and all words of the result are from 1 input vector,
6337   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6338   // is present, fall back to case 4.
6339   if (Subtarget->hasSSSE3()) {
6340     SmallVector<SDValue,16> pshufbMask;
6341
6342     // If we have elements from both input vectors, set the high bit of the
6343     // shuffle mask element to zero out elements that come from V2 in the V1
6344     // mask, and elements that come from V1 in the V2 mask, so that the two
6345     // results can be OR'd together.
6346     bool TwoInputs = V1Used && V2Used;
6347     for (unsigned i = 0; i != 8; ++i) {
6348       int EltIdx = MaskVals[i] * 2;
6349       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6350       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6351       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6352       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6353     }
6354     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6355     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6356                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6357                                  MVT::v16i8, &pshufbMask[0], 16));
6358     if (!TwoInputs)
6359       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6360
6361     // Calculate the shuffle mask for the second input, shuffle it, and
6362     // OR it with the first shuffled input.
6363     pshufbMask.clear();
6364     for (unsigned i = 0; i != 8; ++i) {
6365       int EltIdx = MaskVals[i] * 2;
6366       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6367       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6368       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6369       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6370     }
6371     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6372     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6373                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6374                                  MVT::v16i8, &pshufbMask[0], 16));
6375     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6376     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6377   }
6378
6379   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6380   // and update MaskVals with new element order.
6381   std::bitset<8> InOrder;
6382   if (BestLoQuad >= 0) {
6383     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6384     for (int i = 0; i != 4; ++i) {
6385       int idx = MaskVals[i];
6386       if (idx < 0) {
6387         InOrder.set(i);
6388       } else if ((idx / 4) == BestLoQuad) {
6389         MaskV[i] = idx & 3;
6390         InOrder.set(i);
6391       }
6392     }
6393     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6394                                 &MaskV[0]);
6395
6396     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6397       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6398       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6399                                   NewV.getOperand(0),
6400                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6401     }
6402   }
6403
6404   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6405   // and update MaskVals with the new element order.
6406   if (BestHiQuad >= 0) {
6407     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6408     for (unsigned i = 4; i != 8; ++i) {
6409       int idx = MaskVals[i];
6410       if (idx < 0) {
6411         InOrder.set(i);
6412       } else if ((idx / 4) == BestHiQuad) {
6413         MaskV[i] = (idx & 3) + 4;
6414         InOrder.set(i);
6415       }
6416     }
6417     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6418                                 &MaskV[0]);
6419
6420     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6421       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6422       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6423                                   NewV.getOperand(0),
6424                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6425     }
6426   }
6427
6428   // In case BestHi & BestLo were both -1, which means each quadword has a word
6429   // from each of the four input quadwords, calculate the InOrder bitvector now
6430   // before falling through to the insert/extract cleanup.
6431   if (BestLoQuad == -1 && BestHiQuad == -1) {
6432     NewV = V1;
6433     for (int i = 0; i != 8; ++i)
6434       if (MaskVals[i] < 0 || MaskVals[i] == i)
6435         InOrder.set(i);
6436   }
6437
6438   // The other elements are put in the right place using pextrw and pinsrw.
6439   for (unsigned i = 0; i != 8; ++i) {
6440     if (InOrder[i])
6441       continue;
6442     int EltIdx = MaskVals[i];
6443     if (EltIdx < 0)
6444       continue;
6445     SDValue ExtOp = (EltIdx < 8) ?
6446       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6447                   DAG.getIntPtrConstant(EltIdx)) :
6448       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6449                   DAG.getIntPtrConstant(EltIdx - 8));
6450     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6451                        DAG.getIntPtrConstant(i));
6452   }
6453   return NewV;
6454 }
6455
6456 // v16i8 shuffles - Prefer shuffles in the following order:
6457 // 1. [ssse3] 1 x pshufb
6458 // 2. [ssse3] 2 x pshufb + 1 x por
6459 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6460 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6461                                         const X86Subtarget* Subtarget,
6462                                         SelectionDAG &DAG) {
6463   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6464   SDValue V1 = SVOp->getOperand(0);
6465   SDValue V2 = SVOp->getOperand(1);
6466   SDLoc dl(SVOp);
6467   ArrayRef<int> MaskVals = SVOp->getMask();
6468
6469   // Promote splats to a larger type which usually leads to more efficient code.
6470   // FIXME: Is this true if pshufb is available?
6471   if (SVOp->isSplat())
6472     return PromoteSplat(SVOp, DAG);
6473
6474   // If we have SSSE3, case 1 is generated when all result bytes come from
6475   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6476   // present, fall back to case 3.
6477
6478   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6479   if (Subtarget->hasSSSE3()) {
6480     SmallVector<SDValue,16> pshufbMask;
6481
6482     // If all result elements are from one input vector, then only translate
6483     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6484     //
6485     // Otherwise, we have elements from both input vectors, and must zero out
6486     // elements that come from V2 in the first mask, and V1 in the second mask
6487     // so that we can OR them together.
6488     for (unsigned i = 0; i != 16; ++i) {
6489       int EltIdx = MaskVals[i];
6490       if (EltIdx < 0 || EltIdx >= 16)
6491         EltIdx = 0x80;
6492       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6493     }
6494     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6495                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6496                                  MVT::v16i8, &pshufbMask[0], 16));
6497
6498     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6499     // the 2nd operand if it's undefined or zero.
6500     if (V2.getOpcode() == ISD::UNDEF ||
6501         ISD::isBuildVectorAllZeros(V2.getNode()))
6502       return V1;
6503
6504     // Calculate the shuffle mask for the second input, shuffle it, and
6505     // OR it with the first shuffled input.
6506     pshufbMask.clear();
6507     for (unsigned i = 0; i != 16; ++i) {
6508       int EltIdx = MaskVals[i];
6509       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6510       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6511     }
6512     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6513                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6514                                  MVT::v16i8, &pshufbMask[0], 16));
6515     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6516   }
6517
6518   // No SSSE3 - Calculate in place words and then fix all out of place words
6519   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6520   // the 16 different words that comprise the two doublequadword input vectors.
6521   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6522   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6523   SDValue NewV = V1;
6524   for (int i = 0; i != 8; ++i) {
6525     int Elt0 = MaskVals[i*2];
6526     int Elt1 = MaskVals[i*2+1];
6527
6528     // This word of the result is all undef, skip it.
6529     if (Elt0 < 0 && Elt1 < 0)
6530       continue;
6531
6532     // This word of the result is already in the correct place, skip it.
6533     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6534       continue;
6535
6536     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6537     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6538     SDValue InsElt;
6539
6540     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6541     // using a single extract together, load it and store it.
6542     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6543       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6544                            DAG.getIntPtrConstant(Elt1 / 2));
6545       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6546                         DAG.getIntPtrConstant(i));
6547       continue;
6548     }
6549
6550     // If Elt1 is defined, extract it from the appropriate source.  If the
6551     // source byte is not also odd, shift the extracted word left 8 bits
6552     // otherwise clear the bottom 8 bits if we need to do an or.
6553     if (Elt1 >= 0) {
6554       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6555                            DAG.getIntPtrConstant(Elt1 / 2));
6556       if ((Elt1 & 1) == 0)
6557         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6558                              DAG.getConstant(8,
6559                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6560       else if (Elt0 >= 0)
6561         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6562                              DAG.getConstant(0xFF00, MVT::i16));
6563     }
6564     // If Elt0 is defined, extract it from the appropriate source.  If the
6565     // source byte is not also even, shift the extracted word right 8 bits. If
6566     // Elt1 was also defined, OR the extracted values together before
6567     // inserting them in the result.
6568     if (Elt0 >= 0) {
6569       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6570                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6571       if ((Elt0 & 1) != 0)
6572         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6573                               DAG.getConstant(8,
6574                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6575       else if (Elt1 >= 0)
6576         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6577                              DAG.getConstant(0x00FF, MVT::i16));
6578       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6579                          : InsElt0;
6580     }
6581     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6582                        DAG.getIntPtrConstant(i));
6583   }
6584   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6585 }
6586
6587 // v32i8 shuffles - Translate to VPSHUFB if possible.
6588 static
6589 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6590                                  const X86Subtarget *Subtarget,
6591                                  SelectionDAG &DAG) {
6592   MVT VT = SVOp->getSimpleValueType(0);
6593   SDValue V1 = SVOp->getOperand(0);
6594   SDValue V2 = SVOp->getOperand(1);
6595   SDLoc dl(SVOp);
6596   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6597
6598   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6599   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6600   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6601
6602   // VPSHUFB may be generated if
6603   // (1) one of input vector is undefined or zeroinitializer.
6604   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6605   // And (2) the mask indexes don't cross the 128-bit lane.
6606   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6607       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6608     return SDValue();
6609
6610   if (V1IsAllZero && !V2IsAllZero) {
6611     CommuteVectorShuffleMask(MaskVals, 32);
6612     V1 = V2;
6613   }
6614   SmallVector<SDValue, 32> pshufbMask;
6615   for (unsigned i = 0; i != 32; i++) {
6616     int EltIdx = MaskVals[i];
6617     if (EltIdx < 0 || EltIdx >= 32)
6618       EltIdx = 0x80;
6619     else {
6620       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6621         // Cross lane is not allowed.
6622         return SDValue();
6623       EltIdx &= 0xf;
6624     }
6625     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6626   }
6627   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6628                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6629                                   MVT::v32i8, &pshufbMask[0], 32));
6630 }
6631
6632 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6633 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6634 /// done when every pair / quad of shuffle mask elements point to elements in
6635 /// the right sequence. e.g.
6636 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6637 static
6638 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6639                                  SelectionDAG &DAG) {
6640   MVT VT = SVOp->getSimpleValueType(0);
6641   SDLoc dl(SVOp);
6642   unsigned NumElems = VT.getVectorNumElements();
6643   MVT NewVT;
6644   unsigned Scale;
6645   switch (VT.SimpleTy) {
6646   default: llvm_unreachable("Unexpected!");
6647   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6648   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6649   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6650   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6651   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6652   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6653   }
6654
6655   SmallVector<int, 8> MaskVec;
6656   for (unsigned i = 0; i != NumElems; i += Scale) {
6657     int StartIdx = -1;
6658     for (unsigned j = 0; j != Scale; ++j) {
6659       int EltIdx = SVOp->getMaskElt(i+j);
6660       if (EltIdx < 0)
6661         continue;
6662       if (StartIdx < 0)
6663         StartIdx = (EltIdx / Scale);
6664       if (EltIdx != (int)(StartIdx*Scale + j))
6665         return SDValue();
6666     }
6667     MaskVec.push_back(StartIdx);
6668   }
6669
6670   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6671   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6672   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6673 }
6674
6675 /// getVZextMovL - Return a zero-extending vector move low node.
6676 ///
6677 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6678                             SDValue SrcOp, SelectionDAG &DAG,
6679                             const X86Subtarget *Subtarget, SDLoc dl) {
6680   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6681     LoadSDNode *LD = NULL;
6682     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6683       LD = dyn_cast<LoadSDNode>(SrcOp);
6684     if (!LD) {
6685       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6686       // instead.
6687       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6688       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6689           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6690           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6691           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6692         // PR2108
6693         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6694         return DAG.getNode(ISD::BITCAST, dl, VT,
6695                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6696                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6697                                                    OpVT,
6698                                                    SrcOp.getOperand(0)
6699                                                           .getOperand(0))));
6700       }
6701     }
6702   }
6703
6704   return DAG.getNode(ISD::BITCAST, dl, VT,
6705                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6706                                  DAG.getNode(ISD::BITCAST, dl,
6707                                              OpVT, SrcOp)));
6708 }
6709
6710 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6711 /// which could not be matched by any known target speficic shuffle
6712 static SDValue
6713 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6714
6715   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6716   if (NewOp.getNode())
6717     return NewOp;
6718
6719   MVT VT = SVOp->getSimpleValueType(0);
6720
6721   unsigned NumElems = VT.getVectorNumElements();
6722   unsigned NumLaneElems = NumElems / 2;
6723
6724   SDLoc dl(SVOp);
6725   MVT EltVT = VT.getVectorElementType();
6726   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6727   SDValue Output[2];
6728
6729   SmallVector<int, 16> Mask;
6730   for (unsigned l = 0; l < 2; ++l) {
6731     // Build a shuffle mask for the output, discovering on the fly which
6732     // input vectors to use as shuffle operands (recorded in InputUsed).
6733     // If building a suitable shuffle vector proves too hard, then bail
6734     // out with UseBuildVector set.
6735     bool UseBuildVector = false;
6736     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6737     unsigned LaneStart = l * NumLaneElems;
6738     for (unsigned i = 0; i != NumLaneElems; ++i) {
6739       // The mask element.  This indexes into the input.
6740       int Idx = SVOp->getMaskElt(i+LaneStart);
6741       if (Idx < 0) {
6742         // the mask element does not index into any input vector.
6743         Mask.push_back(-1);
6744         continue;
6745       }
6746
6747       // The input vector this mask element indexes into.
6748       int Input = Idx / NumLaneElems;
6749
6750       // Turn the index into an offset from the start of the input vector.
6751       Idx -= Input * NumLaneElems;
6752
6753       // Find or create a shuffle vector operand to hold this input.
6754       unsigned OpNo;
6755       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6756         if (InputUsed[OpNo] == Input)
6757           // This input vector is already an operand.
6758           break;
6759         if (InputUsed[OpNo] < 0) {
6760           // Create a new operand for this input vector.
6761           InputUsed[OpNo] = Input;
6762           break;
6763         }
6764       }
6765
6766       if (OpNo >= array_lengthof(InputUsed)) {
6767         // More than two input vectors used!  Give up on trying to create a
6768         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6769         UseBuildVector = true;
6770         break;
6771       }
6772
6773       // Add the mask index for the new shuffle vector.
6774       Mask.push_back(Idx + OpNo * NumLaneElems);
6775     }
6776
6777     if (UseBuildVector) {
6778       SmallVector<SDValue, 16> SVOps;
6779       for (unsigned i = 0; i != NumLaneElems; ++i) {
6780         // The mask element.  This indexes into the input.
6781         int Idx = SVOp->getMaskElt(i+LaneStart);
6782         if (Idx < 0) {
6783           SVOps.push_back(DAG.getUNDEF(EltVT));
6784           continue;
6785         }
6786
6787         // The input vector this mask element indexes into.
6788         int Input = Idx / NumElems;
6789
6790         // Turn the index into an offset from the start of the input vector.
6791         Idx -= Input * NumElems;
6792
6793         // Extract the vector element by hand.
6794         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6795                                     SVOp->getOperand(Input),
6796                                     DAG.getIntPtrConstant(Idx)));
6797       }
6798
6799       // Construct the output using a BUILD_VECTOR.
6800       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6801                               SVOps.size());
6802     } else if (InputUsed[0] < 0) {
6803       // No input vectors were used! The result is undefined.
6804       Output[l] = DAG.getUNDEF(NVT);
6805     } else {
6806       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6807                                         (InputUsed[0] % 2) * NumLaneElems,
6808                                         DAG, dl);
6809       // If only one input was used, use an undefined vector for the other.
6810       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6811         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6812                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6813       // At least one input vector was used. Create a new shuffle vector.
6814       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6815     }
6816
6817     Mask.clear();
6818   }
6819
6820   // Concatenate the result back
6821   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6822 }
6823
6824 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6825 /// 4 elements, and match them with several different shuffle types.
6826 static SDValue
6827 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6828   SDValue V1 = SVOp->getOperand(0);
6829   SDValue V2 = SVOp->getOperand(1);
6830   SDLoc dl(SVOp);
6831   MVT VT = SVOp->getSimpleValueType(0);
6832
6833   assert(VT.is128BitVector() && "Unsupported vector size");
6834
6835   std::pair<int, int> Locs[4];
6836   int Mask1[] = { -1, -1, -1, -1 };
6837   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6838
6839   unsigned NumHi = 0;
6840   unsigned NumLo = 0;
6841   for (unsigned i = 0; i != 4; ++i) {
6842     int Idx = PermMask[i];
6843     if (Idx < 0) {
6844       Locs[i] = std::make_pair(-1, -1);
6845     } else {
6846       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6847       if (Idx < 4) {
6848         Locs[i] = std::make_pair(0, NumLo);
6849         Mask1[NumLo] = Idx;
6850         NumLo++;
6851       } else {
6852         Locs[i] = std::make_pair(1, NumHi);
6853         if (2+NumHi < 4)
6854           Mask1[2+NumHi] = Idx;
6855         NumHi++;
6856       }
6857     }
6858   }
6859
6860   if (NumLo <= 2 && NumHi <= 2) {
6861     // If no more than two elements come from either vector. This can be
6862     // implemented with two shuffles. First shuffle gather the elements.
6863     // The second shuffle, which takes the first shuffle as both of its
6864     // vector operands, put the elements into the right order.
6865     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6866
6867     int Mask2[] = { -1, -1, -1, -1 };
6868
6869     for (unsigned i = 0; i != 4; ++i)
6870       if (Locs[i].first != -1) {
6871         unsigned Idx = (i < 2) ? 0 : 4;
6872         Idx += Locs[i].first * 2 + Locs[i].second;
6873         Mask2[i] = Idx;
6874       }
6875
6876     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6877   }
6878
6879   if (NumLo == 3 || NumHi == 3) {
6880     // Otherwise, we must have three elements from one vector, call it X, and
6881     // one element from the other, call it Y.  First, use a shufps to build an
6882     // intermediate vector with the one element from Y and the element from X
6883     // that will be in the same half in the final destination (the indexes don't
6884     // matter). Then, use a shufps to build the final vector, taking the half
6885     // containing the element from Y from the intermediate, and the other half
6886     // from X.
6887     if (NumHi == 3) {
6888       // Normalize it so the 3 elements come from V1.
6889       CommuteVectorShuffleMask(PermMask, 4);
6890       std::swap(V1, V2);
6891     }
6892
6893     // Find the element from V2.
6894     unsigned HiIndex;
6895     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6896       int Val = PermMask[HiIndex];
6897       if (Val < 0)
6898         continue;
6899       if (Val >= 4)
6900         break;
6901     }
6902
6903     Mask1[0] = PermMask[HiIndex];
6904     Mask1[1] = -1;
6905     Mask1[2] = PermMask[HiIndex^1];
6906     Mask1[3] = -1;
6907     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6908
6909     if (HiIndex >= 2) {
6910       Mask1[0] = PermMask[0];
6911       Mask1[1] = PermMask[1];
6912       Mask1[2] = HiIndex & 1 ? 6 : 4;
6913       Mask1[3] = HiIndex & 1 ? 4 : 6;
6914       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6915     }
6916
6917     Mask1[0] = HiIndex & 1 ? 2 : 0;
6918     Mask1[1] = HiIndex & 1 ? 0 : 2;
6919     Mask1[2] = PermMask[2];
6920     Mask1[3] = PermMask[3];
6921     if (Mask1[2] >= 0)
6922       Mask1[2] += 4;
6923     if (Mask1[3] >= 0)
6924       Mask1[3] += 4;
6925     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6926   }
6927
6928   // Break it into (shuffle shuffle_hi, shuffle_lo).
6929   int LoMask[] = { -1, -1, -1, -1 };
6930   int HiMask[] = { -1, -1, -1, -1 };
6931
6932   int *MaskPtr = LoMask;
6933   unsigned MaskIdx = 0;
6934   unsigned LoIdx = 0;
6935   unsigned HiIdx = 2;
6936   for (unsigned i = 0; i != 4; ++i) {
6937     if (i == 2) {
6938       MaskPtr = HiMask;
6939       MaskIdx = 1;
6940       LoIdx = 0;
6941       HiIdx = 2;
6942     }
6943     int Idx = PermMask[i];
6944     if (Idx < 0) {
6945       Locs[i] = std::make_pair(-1, -1);
6946     } else if (Idx < 4) {
6947       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6948       MaskPtr[LoIdx] = Idx;
6949       LoIdx++;
6950     } else {
6951       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6952       MaskPtr[HiIdx] = Idx;
6953       HiIdx++;
6954     }
6955   }
6956
6957   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6958   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6959   int MaskOps[] = { -1, -1, -1, -1 };
6960   for (unsigned i = 0; i != 4; ++i)
6961     if (Locs[i].first != -1)
6962       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6963   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6964 }
6965
6966 static bool MayFoldVectorLoad(SDValue V) {
6967   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6968     V = V.getOperand(0);
6969
6970   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6971     V = V.getOperand(0);
6972   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6973       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6974     // BUILD_VECTOR (load), undef
6975     V = V.getOperand(0);
6976
6977   return MayFoldLoad(V);
6978 }
6979
6980 static
6981 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6982   MVT VT = Op.getSimpleValueType();
6983
6984   // Canonizalize to v2f64.
6985   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6986   return DAG.getNode(ISD::BITCAST, dl, VT,
6987                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6988                                           V1, DAG));
6989 }
6990
6991 static
6992 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6993                         bool HasSSE2) {
6994   SDValue V1 = Op.getOperand(0);
6995   SDValue V2 = Op.getOperand(1);
6996   MVT VT = Op.getSimpleValueType();
6997
6998   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6999
7000   if (HasSSE2 && VT == MVT::v2f64)
7001     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7002
7003   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7004   return DAG.getNode(ISD::BITCAST, dl, VT,
7005                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7006                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7007                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7008 }
7009
7010 static
7011 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7012   SDValue V1 = Op.getOperand(0);
7013   SDValue V2 = Op.getOperand(1);
7014   MVT VT = Op.getSimpleValueType();
7015
7016   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7017          "unsupported shuffle type");
7018
7019   if (V2.getOpcode() == ISD::UNDEF)
7020     V2 = V1;
7021
7022   // v4i32 or v4f32
7023   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7024 }
7025
7026 static
7027 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7028   SDValue V1 = Op.getOperand(0);
7029   SDValue V2 = Op.getOperand(1);
7030   MVT VT = Op.getSimpleValueType();
7031   unsigned NumElems = VT.getVectorNumElements();
7032
7033   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7034   // operand of these instructions is only memory, so check if there's a
7035   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7036   // same masks.
7037   bool CanFoldLoad = false;
7038
7039   // Trivial case, when V2 comes from a load.
7040   if (MayFoldVectorLoad(V2))
7041     CanFoldLoad = true;
7042
7043   // When V1 is a load, it can be folded later into a store in isel, example:
7044   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7045   //    turns into:
7046   //  (MOVLPSmr addr:$src1, VR128:$src2)
7047   // So, recognize this potential and also use MOVLPS or MOVLPD
7048   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7049     CanFoldLoad = true;
7050
7051   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7052   if (CanFoldLoad) {
7053     if (HasSSE2 && NumElems == 2)
7054       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7055
7056     if (NumElems == 4)
7057       // If we don't care about the second element, proceed to use movss.
7058       if (SVOp->getMaskElt(1) != -1)
7059         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7060   }
7061
7062   // movl and movlp will both match v2i64, but v2i64 is never matched by
7063   // movl earlier because we make it strict to avoid messing with the movlp load
7064   // folding logic (see the code above getMOVLP call). Match it here then,
7065   // this is horrible, but will stay like this until we move all shuffle
7066   // matching to x86 specific nodes. Note that for the 1st condition all
7067   // types are matched with movsd.
7068   if (HasSSE2) {
7069     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7070     // as to remove this logic from here, as much as possible
7071     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7072       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7073     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7074   }
7075
7076   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7077
7078   // Invert the operand order and use SHUFPS to match it.
7079   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7080                               getShuffleSHUFImmediate(SVOp), DAG);
7081 }
7082
7083 // Reduce a vector shuffle to zext.
7084 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7085                                     SelectionDAG &DAG) {
7086   // PMOVZX is only available from SSE41.
7087   if (!Subtarget->hasSSE41())
7088     return SDValue();
7089
7090   MVT VT = Op.getSimpleValueType();
7091
7092   // Only AVX2 support 256-bit vector integer extending.
7093   if (!Subtarget->hasInt256() && VT.is256BitVector())
7094     return SDValue();
7095
7096   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7097   SDLoc DL(Op);
7098   SDValue V1 = Op.getOperand(0);
7099   SDValue V2 = Op.getOperand(1);
7100   unsigned NumElems = VT.getVectorNumElements();
7101
7102   // Extending is an unary operation and the element type of the source vector
7103   // won't be equal to or larger than i64.
7104   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7105       VT.getVectorElementType() == MVT::i64)
7106     return SDValue();
7107
7108   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7109   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7110   while ((1U << Shift) < NumElems) {
7111     if (SVOp->getMaskElt(1U << Shift) == 1)
7112       break;
7113     Shift += 1;
7114     // The maximal ratio is 8, i.e. from i8 to i64.
7115     if (Shift > 3)
7116       return SDValue();
7117   }
7118
7119   // Check the shuffle mask.
7120   unsigned Mask = (1U << Shift) - 1;
7121   for (unsigned i = 0; i != NumElems; ++i) {
7122     int EltIdx = SVOp->getMaskElt(i);
7123     if ((i & Mask) != 0 && EltIdx != -1)
7124       return SDValue();
7125     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7126       return SDValue();
7127   }
7128
7129   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7130   MVT NeVT = MVT::getIntegerVT(NBits);
7131   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7132
7133   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7134     return SDValue();
7135
7136   // Simplify the operand as it's prepared to be fed into shuffle.
7137   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7138   if (V1.getOpcode() == ISD::BITCAST &&
7139       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7140       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7141       V1.getOperand(0).getOperand(0)
7142         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7143     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7144     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7145     ConstantSDNode *CIdx =
7146       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7147     // If it's foldable, i.e. normal load with single use, we will let code
7148     // selection to fold it. Otherwise, we will short the conversion sequence.
7149     if (CIdx && CIdx->getZExtValue() == 0 &&
7150         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7151       MVT FullVT = V.getSimpleValueType();
7152       MVT V1VT = V1.getSimpleValueType();
7153       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7154         // The "ext_vec_elt" node is wider than the result node.
7155         // In this case we should extract subvector from V.
7156         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7157         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7158         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7159                                         FullVT.getVectorNumElements()/Ratio);
7160         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7161                         DAG.getIntPtrConstant(0));
7162       }
7163       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7164     }
7165   }
7166
7167   return DAG.getNode(ISD::BITCAST, DL, VT,
7168                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7169 }
7170
7171 static SDValue
7172 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7173                        SelectionDAG &DAG) {
7174   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7175   MVT VT = Op.getSimpleValueType();
7176   SDLoc dl(Op);
7177   SDValue V1 = Op.getOperand(0);
7178   SDValue V2 = Op.getOperand(1);
7179
7180   if (isZeroShuffle(SVOp))
7181     return getZeroVector(VT, Subtarget, DAG, dl);
7182
7183   // Handle splat operations
7184   if (SVOp->isSplat()) {
7185     // Use vbroadcast whenever the splat comes from a foldable load
7186     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7187     if (Broadcast.getNode())
7188       return Broadcast;
7189   }
7190
7191   // Check integer expanding shuffles.
7192   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7193   if (NewOp.getNode())
7194     return NewOp;
7195
7196   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7197   // do it!
7198   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7199       VT == MVT::v16i16 || VT == MVT::v32i8) {
7200     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7201     if (NewOp.getNode())
7202       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7203   } else if ((VT == MVT::v4i32 ||
7204              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7205     // FIXME: Figure out a cleaner way to do this.
7206     // Try to make use of movq to zero out the top part.
7207     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7208       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7209       if (NewOp.getNode()) {
7210         MVT NewVT = NewOp.getSimpleValueType();
7211         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7212                                NewVT, true, false))
7213           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7214                               DAG, Subtarget, dl);
7215       }
7216     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7217       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7218       if (NewOp.getNode()) {
7219         MVT NewVT = NewOp.getSimpleValueType();
7220         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7221           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7222                               DAG, Subtarget, dl);
7223       }
7224     }
7225   }
7226   return SDValue();
7227 }
7228
7229 SDValue
7230 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7231   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7232   SDValue V1 = Op.getOperand(0);
7233   SDValue V2 = Op.getOperand(1);
7234   MVT VT = Op.getSimpleValueType();
7235   SDLoc dl(Op);
7236   unsigned NumElems = VT.getVectorNumElements();
7237   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7238   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7239   bool V1IsSplat = false;
7240   bool V2IsSplat = false;
7241   bool HasSSE2 = Subtarget->hasSSE2();
7242   bool HasFp256    = Subtarget->hasFp256();
7243   bool HasInt256   = Subtarget->hasInt256();
7244   MachineFunction &MF = DAG.getMachineFunction();
7245   bool OptForSize = MF.getFunction()->getAttributes().
7246     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7247
7248   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7249
7250   if (V1IsUndef && V2IsUndef)
7251     return DAG.getUNDEF(VT);
7252
7253   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7254
7255   // Vector shuffle lowering takes 3 steps:
7256   //
7257   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7258   //    narrowing and commutation of operands should be handled.
7259   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7260   //    shuffle nodes.
7261   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7262   //    so the shuffle can be broken into other shuffles and the legalizer can
7263   //    try the lowering again.
7264   //
7265   // The general idea is that no vector_shuffle operation should be left to
7266   // be matched during isel, all of them must be converted to a target specific
7267   // node here.
7268
7269   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7270   // narrowing and commutation of operands should be handled. The actual code
7271   // doesn't include all of those, work in progress...
7272   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7273   if (NewOp.getNode())
7274     return NewOp;
7275
7276   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7277
7278   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7279   // unpckh_undef). Only use pshufd if speed is more important than size.
7280   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7281     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7282   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7283     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7284
7285   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7286       V2IsUndef && MayFoldVectorLoad(V1))
7287     return getMOVDDup(Op, dl, V1, DAG);
7288
7289   if (isMOVHLPS_v_undef_Mask(M, VT))
7290     return getMOVHighToLow(Op, dl, DAG);
7291
7292   // Use to match splats
7293   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7294       (VT == MVT::v2f64 || VT == MVT::v2i64))
7295     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7296
7297   if (isPSHUFDMask(M, VT)) {
7298     // The actual implementation will match the mask in the if above and then
7299     // during isel it can match several different instructions, not only pshufd
7300     // as its name says, sad but true, emulate the behavior for now...
7301     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7302       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7303
7304     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7305
7306     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7307       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7308
7309     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7310       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7311                                   DAG);
7312
7313     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7314                                 TargetMask, DAG);
7315   }
7316
7317   if (isPALIGNRMask(M, VT, Subtarget))
7318     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7319                                 getShufflePALIGNRImmediate(SVOp),
7320                                 DAG);
7321
7322   // Check if this can be converted into a logical shift.
7323   bool isLeft = false;
7324   unsigned ShAmt = 0;
7325   SDValue ShVal;
7326   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7327   if (isShift && ShVal.hasOneUse()) {
7328     // If the shifted value has multiple uses, it may be cheaper to use
7329     // v_set0 + movlhps or movhlps, etc.
7330     MVT EltVT = VT.getVectorElementType();
7331     ShAmt *= EltVT.getSizeInBits();
7332     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7333   }
7334
7335   if (isMOVLMask(M, VT)) {
7336     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7337       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7338     if (!isMOVLPMask(M, VT)) {
7339       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7340         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7341
7342       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7343         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7344     }
7345   }
7346
7347   // FIXME: fold these into legal mask.
7348   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7349     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7350
7351   if (isMOVHLPSMask(M, VT))
7352     return getMOVHighToLow(Op, dl, DAG);
7353
7354   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7355     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7356
7357   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7358     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7359
7360   if (isMOVLPMask(M, VT))
7361     return getMOVLP(Op, dl, DAG, HasSSE2);
7362
7363   if (ShouldXformToMOVHLPS(M, VT) ||
7364       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7365     return CommuteVectorShuffle(SVOp, DAG);
7366
7367   if (isShift) {
7368     // No better options. Use a vshldq / vsrldq.
7369     MVT EltVT = VT.getVectorElementType();
7370     ShAmt *= EltVT.getSizeInBits();
7371     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7372   }
7373
7374   bool Commuted = false;
7375   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7376   // 1,1,1,1 -> v8i16 though.
7377   V1IsSplat = isSplatVector(V1.getNode());
7378   V2IsSplat = isSplatVector(V2.getNode());
7379
7380   // Canonicalize the splat or undef, if present, to be on the RHS.
7381   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7382     CommuteVectorShuffleMask(M, NumElems);
7383     std::swap(V1, V2);
7384     std::swap(V1IsSplat, V2IsSplat);
7385     Commuted = true;
7386   }
7387
7388   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7389     // Shuffling low element of v1 into undef, just return v1.
7390     if (V2IsUndef)
7391       return V1;
7392     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7393     // the instruction selector will not match, so get a canonical MOVL with
7394     // swapped operands to undo the commute.
7395     return getMOVL(DAG, dl, VT, V2, V1);
7396   }
7397
7398   if (isUNPCKLMask(M, VT, HasInt256))
7399     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7400
7401   if (isUNPCKHMask(M, VT, HasInt256))
7402     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7403
7404   if (V2IsSplat) {
7405     // Normalize mask so all entries that point to V2 points to its first
7406     // element then try to match unpck{h|l} again. If match, return a
7407     // new vector_shuffle with the corrected mask.p
7408     SmallVector<int, 8> NewMask(M.begin(), M.end());
7409     NormalizeMask(NewMask, NumElems);
7410     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7411       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7412     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7413       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7414   }
7415
7416   if (Commuted) {
7417     // Commute is back and try unpck* again.
7418     // FIXME: this seems wrong.
7419     CommuteVectorShuffleMask(M, NumElems);
7420     std::swap(V1, V2);
7421     std::swap(V1IsSplat, V2IsSplat);
7422     Commuted = false;
7423
7424     if (isUNPCKLMask(M, VT, HasInt256))
7425       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7426
7427     if (isUNPCKHMask(M, VT, HasInt256))
7428       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7429   }
7430
7431   // Normalize the node to match x86 shuffle ops if needed
7432   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7433     return CommuteVectorShuffle(SVOp, DAG);
7434
7435   // The checks below are all present in isShuffleMaskLegal, but they are
7436   // inlined here right now to enable us to directly emit target specific
7437   // nodes, and remove one by one until they don't return Op anymore.
7438
7439   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7440       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7441     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7442       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7443   }
7444
7445   if (isPSHUFHWMask(M, VT, HasInt256))
7446     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7447                                 getShufflePSHUFHWImmediate(SVOp),
7448                                 DAG);
7449
7450   if (isPSHUFLWMask(M, VT, HasInt256))
7451     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7452                                 getShufflePSHUFLWImmediate(SVOp),
7453                                 DAG);
7454
7455   if (isSHUFPMask(M, VT))
7456     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7457                                 getShuffleSHUFImmediate(SVOp), DAG);
7458
7459   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7460     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7461   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7462     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7463
7464   //===--------------------------------------------------------------------===//
7465   // Generate target specific nodes for 128 or 256-bit shuffles only
7466   // supported in the AVX instruction set.
7467   //
7468
7469   // Handle VMOVDDUPY permutations
7470   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7471     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7472
7473   // Handle VPERMILPS/D* permutations
7474   if (isVPERMILPMask(M, VT)) {
7475     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7476       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7477                                   getShuffleSHUFImmediate(SVOp), DAG);
7478     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7479                                 getShuffleSHUFImmediate(SVOp), DAG);
7480   }
7481
7482   // Handle VPERM2F128/VPERM2I128 permutations
7483   if (isVPERM2X128Mask(M, VT, HasFp256))
7484     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7485                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7486
7487   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7488   if (BlendOp.getNode())
7489     return BlendOp;
7490
7491   unsigned Imm8;
7492   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7493     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7494
7495   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7496       VT.is512BitVector()) {
7497     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7498     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7499     SmallVector<SDValue, 16> permclMask;
7500     for (unsigned i = 0; i != NumElems; ++i) {
7501       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7502     }
7503
7504     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7505                                 &permclMask[0], NumElems);
7506     if (V2IsUndef)
7507       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7508       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7509                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7510     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7511                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7512   }
7513
7514   //===--------------------------------------------------------------------===//
7515   // Since no target specific shuffle was selected for this generic one,
7516   // lower it into other known shuffles. FIXME: this isn't true yet, but
7517   // this is the plan.
7518   //
7519
7520   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7521   if (VT == MVT::v8i16) {
7522     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7523     if (NewOp.getNode())
7524       return NewOp;
7525   }
7526
7527   if (VT == MVT::v16i8) {
7528     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7529     if (NewOp.getNode())
7530       return NewOp;
7531   }
7532
7533   if (VT == MVT::v32i8) {
7534     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7535     if (NewOp.getNode())
7536       return NewOp;
7537   }
7538
7539   // Handle all 128-bit wide vectors with 4 elements, and match them with
7540   // several different shuffle types.
7541   if (NumElems == 4 && VT.is128BitVector())
7542     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7543
7544   // Handle general 256-bit shuffles
7545   if (VT.is256BitVector())
7546     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7547
7548   return SDValue();
7549 }
7550
7551 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7552   MVT VT = Op.getSimpleValueType();
7553   SDLoc dl(Op);
7554
7555   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7556     return SDValue();
7557
7558   if (VT.getSizeInBits() == 8) {
7559     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7560                                   Op.getOperand(0), Op.getOperand(1));
7561     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7562                                   DAG.getValueType(VT));
7563     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7564   }
7565
7566   if (VT.getSizeInBits() == 16) {
7567     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7568     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7569     if (Idx == 0)
7570       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7571                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7572                                      DAG.getNode(ISD::BITCAST, dl,
7573                                                  MVT::v4i32,
7574                                                  Op.getOperand(0)),
7575                                      Op.getOperand(1)));
7576     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7577                                   Op.getOperand(0), Op.getOperand(1));
7578     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7579                                   DAG.getValueType(VT));
7580     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7581   }
7582
7583   if (VT == MVT::f32) {
7584     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7585     // the result back to FR32 register. It's only worth matching if the
7586     // result has a single use which is a store or a bitcast to i32.  And in
7587     // the case of a store, it's not worth it if the index is a constant 0,
7588     // because a MOVSSmr can be used instead, which is smaller and faster.
7589     if (!Op.hasOneUse())
7590       return SDValue();
7591     SDNode *User = *Op.getNode()->use_begin();
7592     if ((User->getOpcode() != ISD::STORE ||
7593          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7594           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7595         (User->getOpcode() != ISD::BITCAST ||
7596          User->getValueType(0) != MVT::i32))
7597       return SDValue();
7598     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7599                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7600                                               Op.getOperand(0)),
7601                                               Op.getOperand(1));
7602     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7603   }
7604
7605   if (VT == MVT::i32 || VT == MVT::i64) {
7606     // ExtractPS/pextrq works with constant index.
7607     if (isa<ConstantSDNode>(Op.getOperand(1)))
7608       return Op;
7609   }
7610   return SDValue();
7611 }
7612
7613 SDValue
7614 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7615                                            SelectionDAG &DAG) const {
7616   SDLoc dl(Op);
7617   SDValue Vec = Op.getOperand(0);
7618   MVT VecVT = Vec.getSimpleValueType();
7619   SDValue Idx = Op.getOperand(1);
7620   if (!isa<ConstantSDNode>(Idx)) {
7621     if (VecVT.is512BitVector() ||
7622         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7623          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7624
7625       MVT MaskEltVT =
7626         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7627       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7628                                     MaskEltVT.getSizeInBits());
7629       
7630       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7631       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7632                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7633                                 Idx, DAG.getConstant(0, getPointerTy()));
7634       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7635       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7636                         Perm, DAG.getConstant(0, getPointerTy()));
7637     }
7638     return SDValue();
7639   }
7640
7641   // If this is a 256-bit vector result, first extract the 128-bit vector and
7642   // then extract the element from the 128-bit vector.
7643   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7644
7645     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7646     // Get the 128-bit vector.
7647     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7648     MVT EltVT = VecVT.getVectorElementType();
7649
7650     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7651
7652     //if (IdxVal >= NumElems/2)
7653     //  IdxVal -= NumElems/2;
7654     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7655     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7656                        DAG.getConstant(IdxVal, MVT::i32));
7657   }
7658
7659   assert(VecVT.is128BitVector() && "Unexpected vector length");
7660
7661   if (Subtarget->hasSSE41()) {
7662     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7663     if (Res.getNode())
7664       return Res;
7665   }
7666
7667   MVT VT = Op.getSimpleValueType();
7668   // TODO: handle v16i8.
7669   if (VT.getSizeInBits() == 16) {
7670     SDValue Vec = Op.getOperand(0);
7671     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7672     if (Idx == 0)
7673       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7674                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7675                                      DAG.getNode(ISD::BITCAST, dl,
7676                                                  MVT::v4i32, Vec),
7677                                      Op.getOperand(1)));
7678     // Transform it so it match pextrw which produces a 32-bit result.
7679     MVT EltVT = MVT::i32;
7680     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7681                                   Op.getOperand(0), Op.getOperand(1));
7682     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7683                                   DAG.getValueType(VT));
7684     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7685   }
7686
7687   if (VT.getSizeInBits() == 32) {
7688     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7689     if (Idx == 0)
7690       return Op;
7691
7692     // SHUFPS the element to the lowest double word, then movss.
7693     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7694     MVT VVT = Op.getOperand(0).getSimpleValueType();
7695     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7696                                        DAG.getUNDEF(VVT), Mask);
7697     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7698                        DAG.getIntPtrConstant(0));
7699   }
7700
7701   if (VT.getSizeInBits() == 64) {
7702     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7703     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7704     //        to match extract_elt for f64.
7705     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7706     if (Idx == 0)
7707       return Op;
7708
7709     // UNPCKHPD the element to the lowest double word, then movsd.
7710     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7711     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7712     int Mask[2] = { 1, -1 };
7713     MVT VVT = Op.getOperand(0).getSimpleValueType();
7714     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7715                                        DAG.getUNDEF(VVT), Mask);
7716     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7717                        DAG.getIntPtrConstant(0));
7718   }
7719
7720   return SDValue();
7721 }
7722
7723 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7724   MVT VT = Op.getSimpleValueType();
7725   MVT EltVT = VT.getVectorElementType();
7726   SDLoc dl(Op);
7727
7728   SDValue N0 = Op.getOperand(0);
7729   SDValue N1 = Op.getOperand(1);
7730   SDValue N2 = Op.getOperand(2);
7731
7732   if (!VT.is128BitVector())
7733     return SDValue();
7734
7735   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7736       isa<ConstantSDNode>(N2)) {
7737     unsigned Opc;
7738     if (VT == MVT::v8i16)
7739       Opc = X86ISD::PINSRW;
7740     else if (VT == MVT::v16i8)
7741       Opc = X86ISD::PINSRB;
7742     else
7743       Opc = X86ISD::PINSRB;
7744
7745     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7746     // argument.
7747     if (N1.getValueType() != MVT::i32)
7748       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7749     if (N2.getValueType() != MVT::i32)
7750       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7751     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7752   }
7753
7754   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7755     // Bits [7:6] of the constant are the source select.  This will always be
7756     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7757     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7758     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7759     // Bits [5:4] of the constant are the destination select.  This is the
7760     //  value of the incoming immediate.
7761     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7762     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7763     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7764     // Create this as a scalar to vector..
7765     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7766     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7767   }
7768
7769   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7770     // PINSR* works with constant index.
7771     return Op;
7772   }
7773   return SDValue();
7774 }
7775
7776 SDValue
7777 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7778   MVT VT = Op.getSimpleValueType();
7779   MVT EltVT = VT.getVectorElementType();
7780
7781   SDLoc dl(Op);
7782   SDValue N0 = Op.getOperand(0);
7783   SDValue N1 = Op.getOperand(1);
7784   SDValue N2 = Op.getOperand(2);
7785
7786   // If this is a 256-bit vector result, first extract the 128-bit vector,
7787   // insert the element into the extracted half and then place it back.
7788   if (VT.is256BitVector() || VT.is512BitVector()) {
7789     if (!isa<ConstantSDNode>(N2))
7790       return SDValue();
7791
7792     // Get the desired 128-bit vector half.
7793     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7794     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7795
7796     // Insert the element into the desired half.
7797     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7798     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7799
7800     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7801                     DAG.getConstant(IdxIn128, MVT::i32));
7802
7803     // Insert the changed part back to the 256-bit vector
7804     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7805   }
7806
7807   if (Subtarget->hasSSE41())
7808     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7809
7810   if (EltVT == MVT::i8)
7811     return SDValue();
7812
7813   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7814     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7815     // as its second argument.
7816     if (N1.getValueType() != MVT::i32)
7817       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7818     if (N2.getValueType() != MVT::i32)
7819       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7820     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7821   }
7822   return SDValue();
7823 }
7824
7825 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7826   SDLoc dl(Op);
7827   MVT OpVT = Op.getSimpleValueType();
7828
7829   // If this is a 256-bit vector result, first insert into a 128-bit
7830   // vector and then insert into the 256-bit vector.
7831   if (!OpVT.is128BitVector()) {
7832     // Insert into a 128-bit vector.
7833     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7834     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7835                                  OpVT.getVectorNumElements() / SizeFactor);
7836
7837     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7838
7839     // Insert the 128-bit vector.
7840     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7841   }
7842
7843   if (OpVT == MVT::v1i64 &&
7844       Op.getOperand(0).getValueType() == MVT::i64)
7845     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7846
7847   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7848   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7849   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7850                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7851 }
7852
7853 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7854 // a simple subregister reference or explicit instructions to grab
7855 // upper bits of a vector.
7856 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7857                                       SelectionDAG &DAG) {
7858   SDLoc dl(Op);
7859   SDValue In =  Op.getOperand(0);
7860   SDValue Idx = Op.getOperand(1);
7861   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7862   MVT ResVT   = Op.getSimpleValueType();
7863   MVT InVT    = In.getSimpleValueType();
7864
7865   if (Subtarget->hasFp256()) {
7866     if (ResVT.is128BitVector() &&
7867         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7868         isa<ConstantSDNode>(Idx)) {
7869       return Extract128BitVector(In, IdxVal, DAG, dl);
7870     }
7871     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7872         isa<ConstantSDNode>(Idx)) {
7873       return Extract256BitVector(In, IdxVal, DAG, dl);
7874     }
7875   }
7876   return SDValue();
7877 }
7878
7879 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7880 // simple superregister reference or explicit instructions to insert
7881 // the upper bits of a vector.
7882 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7883                                      SelectionDAG &DAG) {
7884   if (Subtarget->hasFp256()) {
7885     SDLoc dl(Op.getNode());
7886     SDValue Vec = Op.getNode()->getOperand(0);
7887     SDValue SubVec = Op.getNode()->getOperand(1);
7888     SDValue Idx = Op.getNode()->getOperand(2);
7889
7890     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7891          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7892         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
7893         isa<ConstantSDNode>(Idx)) {
7894       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7895       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7896     }
7897
7898     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7899         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
7900         isa<ConstantSDNode>(Idx)) {
7901       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7902       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7903     }
7904   }
7905   return SDValue();
7906 }
7907
7908 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7909 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7910 // one of the above mentioned nodes. It has to be wrapped because otherwise
7911 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7912 // be used to form addressing mode. These wrapped nodes will be selected
7913 // into MOV32ri.
7914 SDValue
7915 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7916   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7917
7918   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7919   // global base reg.
7920   unsigned char OpFlag = 0;
7921   unsigned WrapperKind = X86ISD::Wrapper;
7922   CodeModel::Model M = getTargetMachine().getCodeModel();
7923
7924   if (Subtarget->isPICStyleRIPRel() &&
7925       (M == CodeModel::Small || M == CodeModel::Kernel))
7926     WrapperKind = X86ISD::WrapperRIP;
7927   else if (Subtarget->isPICStyleGOT())
7928     OpFlag = X86II::MO_GOTOFF;
7929   else if (Subtarget->isPICStyleStubPIC())
7930     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7931
7932   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7933                                              CP->getAlignment(),
7934                                              CP->getOffset(), OpFlag);
7935   SDLoc DL(CP);
7936   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7937   // With PIC, the address is actually $g + Offset.
7938   if (OpFlag) {
7939     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7940                          DAG.getNode(X86ISD::GlobalBaseReg,
7941                                      SDLoc(), getPointerTy()),
7942                          Result);
7943   }
7944
7945   return Result;
7946 }
7947
7948 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7949   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7950
7951   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7952   // global base reg.
7953   unsigned char OpFlag = 0;
7954   unsigned WrapperKind = X86ISD::Wrapper;
7955   CodeModel::Model M = getTargetMachine().getCodeModel();
7956
7957   if (Subtarget->isPICStyleRIPRel() &&
7958       (M == CodeModel::Small || M == CodeModel::Kernel))
7959     WrapperKind = X86ISD::WrapperRIP;
7960   else if (Subtarget->isPICStyleGOT())
7961     OpFlag = X86II::MO_GOTOFF;
7962   else if (Subtarget->isPICStyleStubPIC())
7963     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7964
7965   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7966                                           OpFlag);
7967   SDLoc DL(JT);
7968   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7969
7970   // With PIC, the address is actually $g + Offset.
7971   if (OpFlag)
7972     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7973                          DAG.getNode(X86ISD::GlobalBaseReg,
7974                                      SDLoc(), getPointerTy()),
7975                          Result);
7976
7977   return Result;
7978 }
7979
7980 SDValue
7981 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7982   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7983
7984   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7985   // global base reg.
7986   unsigned char OpFlag = 0;
7987   unsigned WrapperKind = X86ISD::Wrapper;
7988   CodeModel::Model M = getTargetMachine().getCodeModel();
7989
7990   if (Subtarget->isPICStyleRIPRel() &&
7991       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7992     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7993       OpFlag = X86II::MO_GOTPCREL;
7994     WrapperKind = X86ISD::WrapperRIP;
7995   } else if (Subtarget->isPICStyleGOT()) {
7996     OpFlag = X86II::MO_GOT;
7997   } else if (Subtarget->isPICStyleStubPIC()) {
7998     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7999   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8000     OpFlag = X86II::MO_DARWIN_NONLAZY;
8001   }
8002
8003   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8004
8005   SDLoc DL(Op);
8006   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8007
8008   // With PIC, the address is actually $g + Offset.
8009   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8010       !Subtarget->is64Bit()) {
8011     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8012                          DAG.getNode(X86ISD::GlobalBaseReg,
8013                                      SDLoc(), getPointerTy()),
8014                          Result);
8015   }
8016
8017   // For symbols that require a load from a stub to get the address, emit the
8018   // load.
8019   if (isGlobalStubReference(OpFlag))
8020     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8021                          MachinePointerInfo::getGOT(), false, false, false, 0);
8022
8023   return Result;
8024 }
8025
8026 SDValue
8027 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8028   // Create the TargetBlockAddressAddress node.
8029   unsigned char OpFlags =
8030     Subtarget->ClassifyBlockAddressReference();
8031   CodeModel::Model M = getTargetMachine().getCodeModel();
8032   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8033   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8034   SDLoc dl(Op);
8035   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8036                                              OpFlags);
8037
8038   if (Subtarget->isPICStyleRIPRel() &&
8039       (M == CodeModel::Small || M == CodeModel::Kernel))
8040     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8041   else
8042     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8043
8044   // With PIC, the address is actually $g + Offset.
8045   if (isGlobalRelativeToPICBase(OpFlags)) {
8046     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8047                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8048                          Result);
8049   }
8050
8051   return Result;
8052 }
8053
8054 SDValue
8055 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8056                                       int64_t Offset, SelectionDAG &DAG) const {
8057   // Create the TargetGlobalAddress node, folding in the constant
8058   // offset if it is legal.
8059   unsigned char OpFlags =
8060     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8061   CodeModel::Model M = getTargetMachine().getCodeModel();
8062   SDValue Result;
8063   if (OpFlags == X86II::MO_NO_FLAG &&
8064       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8065     // A direct static reference to a global.
8066     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8067     Offset = 0;
8068   } else {
8069     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8070   }
8071
8072   if (Subtarget->isPICStyleRIPRel() &&
8073       (M == CodeModel::Small || M == CodeModel::Kernel))
8074     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8075   else
8076     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8077
8078   // With PIC, the address is actually $g + Offset.
8079   if (isGlobalRelativeToPICBase(OpFlags)) {
8080     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8081                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8082                          Result);
8083   }
8084
8085   // For globals that require a load from a stub to get the address, emit the
8086   // load.
8087   if (isGlobalStubReference(OpFlags))
8088     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8089                          MachinePointerInfo::getGOT(), false, false, false, 0);
8090
8091   // If there was a non-zero offset that we didn't fold, create an explicit
8092   // addition for it.
8093   if (Offset != 0)
8094     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8095                          DAG.getConstant(Offset, getPointerTy()));
8096
8097   return Result;
8098 }
8099
8100 SDValue
8101 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8102   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8103   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8104   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8105 }
8106
8107 static SDValue
8108 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8109            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8110            unsigned char OperandFlags, bool LocalDynamic = false) {
8111   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8112   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8113   SDLoc dl(GA);
8114   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8115                                            GA->getValueType(0),
8116                                            GA->getOffset(),
8117                                            OperandFlags);
8118
8119   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8120                                            : X86ISD::TLSADDR;
8121
8122   if (InFlag) {
8123     SDValue Ops[] = { Chain,  TGA, *InFlag };
8124     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8125   } else {
8126     SDValue Ops[]  = { Chain, TGA };
8127     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8128   }
8129
8130   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8131   MFI->setAdjustsStack(true);
8132
8133   SDValue Flag = Chain.getValue(1);
8134   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8135 }
8136
8137 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8138 static SDValue
8139 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8140                                 const EVT PtrVT) {
8141   SDValue InFlag;
8142   SDLoc dl(GA);  // ? function entry point might be better
8143   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8144                                    DAG.getNode(X86ISD::GlobalBaseReg,
8145                                                SDLoc(), PtrVT), InFlag);
8146   InFlag = Chain.getValue(1);
8147
8148   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8149 }
8150
8151 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8152 static SDValue
8153 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8154                                 const EVT PtrVT) {
8155   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8156                     X86::RAX, X86II::MO_TLSGD);
8157 }
8158
8159 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8160                                            SelectionDAG &DAG,
8161                                            const EVT PtrVT,
8162                                            bool is64Bit) {
8163   SDLoc dl(GA);
8164
8165   // Get the start address of the TLS block for this module.
8166   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8167       .getInfo<X86MachineFunctionInfo>();
8168   MFI->incNumLocalDynamicTLSAccesses();
8169
8170   SDValue Base;
8171   if (is64Bit) {
8172     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8173                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8174   } else {
8175     SDValue InFlag;
8176     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8177         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8178     InFlag = Chain.getValue(1);
8179     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8180                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8181   }
8182
8183   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8184   // of Base.
8185
8186   // Build x@dtpoff.
8187   unsigned char OperandFlags = X86II::MO_DTPOFF;
8188   unsigned WrapperKind = X86ISD::Wrapper;
8189   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8190                                            GA->getValueType(0),
8191                                            GA->getOffset(), OperandFlags);
8192   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8193
8194   // Add x@dtpoff with the base.
8195   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8196 }
8197
8198 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8199 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8200                                    const EVT PtrVT, TLSModel::Model model,
8201                                    bool is64Bit, bool isPIC) {
8202   SDLoc dl(GA);
8203
8204   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8205   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8206                                                          is64Bit ? 257 : 256));
8207
8208   SDValue ThreadPointer =
8209       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8210                   MachinePointerInfo(Ptr), false, false, false, 0);
8211
8212   unsigned char OperandFlags = 0;
8213   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8214   // initialexec.
8215   unsigned WrapperKind = X86ISD::Wrapper;
8216   if (model == TLSModel::LocalExec) {
8217     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8218   } else if (model == TLSModel::InitialExec) {
8219     if (is64Bit) {
8220       OperandFlags = X86II::MO_GOTTPOFF;
8221       WrapperKind = X86ISD::WrapperRIP;
8222     } else {
8223       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8224     }
8225   } else {
8226     llvm_unreachable("Unexpected model");
8227   }
8228
8229   // emit "addl x@ntpoff,%eax" (local exec)
8230   // or "addl x@indntpoff,%eax" (initial exec)
8231   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8232   SDValue TGA =
8233       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8234                                  GA->getOffset(), OperandFlags);
8235   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8236
8237   if (model == TLSModel::InitialExec) {
8238     if (isPIC && !is64Bit) {
8239       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8240                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8241                            Offset);
8242     }
8243
8244     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8245                          MachinePointerInfo::getGOT(), false, false, false, 0);
8246   }
8247
8248   // The address of the thread local variable is the add of the thread
8249   // pointer with the offset of the variable.
8250   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8251 }
8252
8253 SDValue
8254 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8255
8256   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8257   const GlobalValue *GV = GA->getGlobal();
8258
8259   if (Subtarget->isTargetELF()) {
8260     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8261
8262     switch (model) {
8263       case TLSModel::GeneralDynamic:
8264         if (Subtarget->is64Bit())
8265           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8266         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8267       case TLSModel::LocalDynamic:
8268         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8269                                            Subtarget->is64Bit());
8270       case TLSModel::InitialExec:
8271       case TLSModel::LocalExec:
8272         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8273                                    Subtarget->is64Bit(),
8274                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8275     }
8276     llvm_unreachable("Unknown TLS model.");
8277   }
8278
8279   if (Subtarget->isTargetDarwin()) {
8280     // Darwin only has one model of TLS.  Lower to that.
8281     unsigned char OpFlag = 0;
8282     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8283                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8284
8285     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8286     // global base reg.
8287     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8288                   !Subtarget->is64Bit();
8289     if (PIC32)
8290       OpFlag = X86II::MO_TLVP_PIC_BASE;
8291     else
8292       OpFlag = X86II::MO_TLVP;
8293     SDLoc DL(Op);
8294     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8295                                                 GA->getValueType(0),
8296                                                 GA->getOffset(), OpFlag);
8297     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8298
8299     // With PIC32, the address is actually $g + Offset.
8300     if (PIC32)
8301       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8302                            DAG.getNode(X86ISD::GlobalBaseReg,
8303                                        SDLoc(), getPointerTy()),
8304                            Offset);
8305
8306     // Lowering the machine isd will make sure everything is in the right
8307     // location.
8308     SDValue Chain = DAG.getEntryNode();
8309     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8310     SDValue Args[] = { Chain, Offset };
8311     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8312
8313     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8314     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8315     MFI->setAdjustsStack(true);
8316
8317     // And our return value (tls address) is in the standard call return value
8318     // location.
8319     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8320     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8321                               Chain.getValue(1));
8322   }
8323
8324   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8325     // Just use the implicit TLS architecture
8326     // Need to generate someting similar to:
8327     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8328     //                                  ; from TEB
8329     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8330     //   mov     rcx, qword [rdx+rcx*8]
8331     //   mov     eax, .tls$:tlsvar
8332     //   [rax+rcx] contains the address
8333     // Windows 64bit: gs:0x58
8334     // Windows 32bit: fs:__tls_array
8335
8336     // If GV is an alias then use the aliasee for determining
8337     // thread-localness.
8338     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8339       GV = GA->resolveAliasedGlobal(false);
8340     SDLoc dl(GA);
8341     SDValue Chain = DAG.getEntryNode();
8342
8343     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8344     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8345     // use its literal value of 0x2C.
8346     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8347                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8348                                                              256)
8349                                         : Type::getInt32PtrTy(*DAG.getContext(),
8350                                                               257));
8351
8352     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8353       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8354         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8355
8356     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8357                                         MachinePointerInfo(Ptr),
8358                                         false, false, false, 0);
8359
8360     // Load the _tls_index variable
8361     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8362     if (Subtarget->is64Bit())
8363       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8364                            IDX, MachinePointerInfo(), MVT::i32,
8365                            false, false, 0);
8366     else
8367       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8368                         false, false, false, 0);
8369
8370     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8371                                     getPointerTy());
8372     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8373
8374     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8375     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8376                       false, false, false, 0);
8377
8378     // Get the offset of start of .tls section
8379     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8380                                              GA->getValueType(0),
8381                                              GA->getOffset(), X86II::MO_SECREL);
8382     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8383
8384     // The address of the thread local variable is the add of the thread
8385     // pointer with the offset of the variable.
8386     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8387   }
8388
8389   llvm_unreachable("TLS not implemented for this target.");
8390 }
8391
8392 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8393 /// and take a 2 x i32 value to shift plus a shift amount.
8394 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8395   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8396   EVT VT = Op.getValueType();
8397   unsigned VTBits = VT.getSizeInBits();
8398   SDLoc dl(Op);
8399   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8400   SDValue ShOpLo = Op.getOperand(0);
8401   SDValue ShOpHi = Op.getOperand(1);
8402   SDValue ShAmt  = Op.getOperand(2);
8403   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8404                                      DAG.getConstant(VTBits - 1, MVT::i8))
8405                        : DAG.getConstant(0, VT);
8406
8407   SDValue Tmp2, Tmp3;
8408   if (Op.getOpcode() == ISD::SHL_PARTS) {
8409     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8410     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8411   } else {
8412     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8413     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8414   }
8415
8416   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8417                                 DAG.getConstant(VTBits, MVT::i8));
8418   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8419                              AndNode, DAG.getConstant(0, MVT::i8));
8420
8421   SDValue Hi, Lo;
8422   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8423   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8424   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8425
8426   if (Op.getOpcode() == ISD::SHL_PARTS) {
8427     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8428     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8429   } else {
8430     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8431     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8432   }
8433
8434   SDValue Ops[2] = { Lo, Hi };
8435   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8436 }
8437
8438 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8439                                            SelectionDAG &DAG) const {
8440   EVT SrcVT = Op.getOperand(0).getValueType();
8441
8442   if (SrcVT.isVector())
8443     return SDValue();
8444
8445   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8446          "Unknown SINT_TO_FP to lower!");
8447
8448   // These are really Legal; return the operand so the caller accepts it as
8449   // Legal.
8450   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8451     return Op;
8452   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8453       Subtarget->is64Bit()) {
8454     return Op;
8455   }
8456
8457   SDLoc dl(Op);
8458   unsigned Size = SrcVT.getSizeInBits()/8;
8459   MachineFunction &MF = DAG.getMachineFunction();
8460   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8461   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8462   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8463                                StackSlot,
8464                                MachinePointerInfo::getFixedStack(SSFI),
8465                                false, false, 0);
8466   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8467 }
8468
8469 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8470                                      SDValue StackSlot,
8471                                      SelectionDAG &DAG) const {
8472   // Build the FILD
8473   SDLoc DL(Op);
8474   SDVTList Tys;
8475   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8476   if (useSSE)
8477     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8478   else
8479     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8480
8481   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8482
8483   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8484   MachineMemOperand *MMO;
8485   if (FI) {
8486     int SSFI = FI->getIndex();
8487     MMO =
8488       DAG.getMachineFunction()
8489       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8490                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8491   } else {
8492     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8493     StackSlot = StackSlot.getOperand(1);
8494   }
8495   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8496   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8497                                            X86ISD::FILD, DL,
8498                                            Tys, Ops, array_lengthof(Ops),
8499                                            SrcVT, MMO);
8500
8501   if (useSSE) {
8502     Chain = Result.getValue(1);
8503     SDValue InFlag = Result.getValue(2);
8504
8505     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8506     // shouldn't be necessary except that RFP cannot be live across
8507     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8508     MachineFunction &MF = DAG.getMachineFunction();
8509     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8510     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8511     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8512     Tys = DAG.getVTList(MVT::Other);
8513     SDValue Ops[] = {
8514       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8515     };
8516     MachineMemOperand *MMO =
8517       DAG.getMachineFunction()
8518       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8519                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8520
8521     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8522                                     Ops, array_lengthof(Ops),
8523                                     Op.getValueType(), MMO);
8524     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8525                          MachinePointerInfo::getFixedStack(SSFI),
8526                          false, false, false, 0);
8527   }
8528
8529   return Result;
8530 }
8531
8532 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8533 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8534                                                SelectionDAG &DAG) const {
8535   // This algorithm is not obvious. Here it is what we're trying to output:
8536   /*
8537      movq       %rax,  %xmm0
8538      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8539      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8540      #ifdef __SSE3__
8541        haddpd   %xmm0, %xmm0
8542      #else
8543        pshufd   $0x4e, %xmm0, %xmm1
8544        addpd    %xmm1, %xmm0
8545      #endif
8546   */
8547
8548   SDLoc dl(Op);
8549   LLVMContext *Context = DAG.getContext();
8550
8551   // Build some magic constants.
8552   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8553   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8554   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8555
8556   SmallVector<Constant*,2> CV1;
8557   CV1.push_back(
8558     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8559                                       APInt(64, 0x4330000000000000ULL))));
8560   CV1.push_back(
8561     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8562                                       APInt(64, 0x4530000000000000ULL))));
8563   Constant *C1 = ConstantVector::get(CV1);
8564   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8565
8566   // Load the 64-bit value into an XMM register.
8567   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8568                             Op.getOperand(0));
8569   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8570                               MachinePointerInfo::getConstantPool(),
8571                               false, false, false, 16);
8572   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8573                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8574                               CLod0);
8575
8576   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8577                               MachinePointerInfo::getConstantPool(),
8578                               false, false, false, 16);
8579   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8580   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8581   SDValue Result;
8582
8583   if (Subtarget->hasSSE3()) {
8584     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8585     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8586   } else {
8587     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8588     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8589                                            S2F, 0x4E, DAG);
8590     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8591                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8592                          Sub);
8593   }
8594
8595   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8596                      DAG.getIntPtrConstant(0));
8597 }
8598
8599 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8600 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8601                                                SelectionDAG &DAG) const {
8602   SDLoc dl(Op);
8603   // FP constant to bias correct the final result.
8604   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8605                                    MVT::f64);
8606
8607   // Load the 32-bit value into an XMM register.
8608   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8609                              Op.getOperand(0));
8610
8611   // Zero out the upper parts of the register.
8612   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8613
8614   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8615                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8616                      DAG.getIntPtrConstant(0));
8617
8618   // Or the load with the bias.
8619   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8620                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8621                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8622                                                    MVT::v2f64, Load)),
8623                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8624                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8625                                                    MVT::v2f64, Bias)));
8626   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8627                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8628                    DAG.getIntPtrConstant(0));
8629
8630   // Subtract the bias.
8631   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8632
8633   // Handle final rounding.
8634   EVT DestVT = Op.getValueType();
8635
8636   if (DestVT.bitsLT(MVT::f64))
8637     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8638                        DAG.getIntPtrConstant(0));
8639   if (DestVT.bitsGT(MVT::f64))
8640     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8641
8642   // Handle final rounding.
8643   return Sub;
8644 }
8645
8646 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8647                                                SelectionDAG &DAG) const {
8648   SDValue N0 = Op.getOperand(0);
8649   EVT SVT = N0.getValueType();
8650   SDLoc dl(Op);
8651
8652   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8653           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8654          "Custom UINT_TO_FP is not supported!");
8655
8656   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8657                              SVT.getVectorNumElements());
8658   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8659                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8660 }
8661
8662 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8663                                            SelectionDAG &DAG) const {
8664   SDValue N0 = Op.getOperand(0);
8665   SDLoc dl(Op);
8666
8667   if (Op.getValueType().isVector())
8668     return lowerUINT_TO_FP_vec(Op, DAG);
8669
8670   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8671   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8672   // the optimization here.
8673   if (DAG.SignBitIsZero(N0))
8674     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8675
8676   EVT SrcVT = N0.getValueType();
8677   EVT DstVT = Op.getValueType();
8678   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8679     return LowerUINT_TO_FP_i64(Op, DAG);
8680   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8681     return LowerUINT_TO_FP_i32(Op, DAG);
8682   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8683     return SDValue();
8684
8685   // Make a 64-bit buffer, and use it to build an FILD.
8686   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8687   if (SrcVT == MVT::i32) {
8688     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8689     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8690                                      getPointerTy(), StackSlot, WordOff);
8691     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8692                                   StackSlot, MachinePointerInfo(),
8693                                   false, false, 0);
8694     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8695                                   OffsetSlot, MachinePointerInfo(),
8696                                   false, false, 0);
8697     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8698     return Fild;
8699   }
8700
8701   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8702   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8703                                StackSlot, MachinePointerInfo(),
8704                                false, false, 0);
8705   // For i64 source, we need to add the appropriate power of 2 if the input
8706   // was negative.  This is the same as the optimization in
8707   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8708   // we must be careful to do the computation in x87 extended precision, not
8709   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8710   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8711   MachineMemOperand *MMO =
8712     DAG.getMachineFunction()
8713     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8714                           MachineMemOperand::MOLoad, 8, 8);
8715
8716   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8717   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8718   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8719                                          array_lengthof(Ops), MVT::i64, MMO);
8720
8721   APInt FF(32, 0x5F800000ULL);
8722
8723   // Check whether the sign bit is set.
8724   SDValue SignSet = DAG.getSetCC(dl,
8725                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8726                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8727                                  ISD::SETLT);
8728
8729   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8730   SDValue FudgePtr = DAG.getConstantPool(
8731                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8732                                          getPointerTy());
8733
8734   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8735   SDValue Zero = DAG.getIntPtrConstant(0);
8736   SDValue Four = DAG.getIntPtrConstant(4);
8737   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8738                                Zero, Four);
8739   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8740
8741   // Load the value out, extending it from f32 to f80.
8742   // FIXME: Avoid the extend by constructing the right constant pool?
8743   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8744                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8745                                  MVT::f32, false, false, 4);
8746   // Extend everything to 80 bits to force it to be done on x87.
8747   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8748   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8749 }
8750
8751 std::pair<SDValue,SDValue>
8752 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8753                                     bool IsSigned, bool IsReplace) const {
8754   SDLoc DL(Op);
8755
8756   EVT DstTy = Op.getValueType();
8757
8758   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8759     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8760     DstTy = MVT::i64;
8761   }
8762
8763   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8764          DstTy.getSimpleVT() >= MVT::i16 &&
8765          "Unknown FP_TO_INT to lower!");
8766
8767   // These are really Legal.
8768   if (DstTy == MVT::i32 &&
8769       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8770     return std::make_pair(SDValue(), SDValue());
8771   if (Subtarget->is64Bit() &&
8772       DstTy == MVT::i64 &&
8773       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8774     return std::make_pair(SDValue(), SDValue());
8775
8776   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8777   // stack slot, or into the FTOL runtime function.
8778   MachineFunction &MF = DAG.getMachineFunction();
8779   unsigned MemSize = DstTy.getSizeInBits()/8;
8780   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8781   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8782
8783   unsigned Opc;
8784   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8785     Opc = X86ISD::WIN_FTOL;
8786   else
8787     switch (DstTy.getSimpleVT().SimpleTy) {
8788     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8789     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8790     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8791     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8792     }
8793
8794   SDValue Chain = DAG.getEntryNode();
8795   SDValue Value = Op.getOperand(0);
8796   EVT TheVT = Op.getOperand(0).getValueType();
8797   // FIXME This causes a redundant load/store if the SSE-class value is already
8798   // in memory, such as if it is on the callstack.
8799   if (isScalarFPTypeInSSEReg(TheVT)) {
8800     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8801     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8802                          MachinePointerInfo::getFixedStack(SSFI),
8803                          false, false, 0);
8804     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8805     SDValue Ops[] = {
8806       Chain, StackSlot, DAG.getValueType(TheVT)
8807     };
8808
8809     MachineMemOperand *MMO =
8810       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8811                               MachineMemOperand::MOLoad, MemSize, MemSize);
8812     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8813                                     array_lengthof(Ops), DstTy, MMO);
8814     Chain = Value.getValue(1);
8815     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8816     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8817   }
8818
8819   MachineMemOperand *MMO =
8820     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8821                             MachineMemOperand::MOStore, MemSize, MemSize);
8822
8823   if (Opc != X86ISD::WIN_FTOL) {
8824     // Build the FP_TO_INT*_IN_MEM
8825     SDValue Ops[] = { Chain, Value, StackSlot };
8826     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8827                                            Ops, array_lengthof(Ops), DstTy,
8828                                            MMO);
8829     return std::make_pair(FIST, StackSlot);
8830   } else {
8831     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8832       DAG.getVTList(MVT::Other, MVT::Glue),
8833       Chain, Value);
8834     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8835       MVT::i32, ftol.getValue(1));
8836     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8837       MVT::i32, eax.getValue(2));
8838     SDValue Ops[] = { eax, edx };
8839     SDValue pair = IsReplace
8840       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8841       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8842     return std::make_pair(pair, SDValue());
8843   }
8844 }
8845
8846 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8847                               const X86Subtarget *Subtarget) {
8848   MVT VT = Op->getSimpleValueType(0);
8849   SDValue In = Op->getOperand(0);
8850   MVT InVT = In.getSimpleValueType();
8851   SDLoc dl(Op);
8852
8853   // Optimize vectors in AVX mode:
8854   //
8855   //   v8i16 -> v8i32
8856   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8857   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8858   //   Concat upper and lower parts.
8859   //
8860   //   v4i32 -> v4i64
8861   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8862   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8863   //   Concat upper and lower parts.
8864   //
8865
8866   if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8867       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8868     return SDValue();
8869
8870   if (Subtarget->hasInt256())
8871     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8872
8873   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8874   SDValue Undef = DAG.getUNDEF(InVT);
8875   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8876   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8877   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8878
8879   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8880                              VT.getVectorNumElements()/2);
8881
8882   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8883   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8884
8885   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8886 }
8887
8888 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8889                                         SelectionDAG &DAG) {
8890   MVT VT = Op->getValueType(0).getSimpleVT();
8891   SDValue In = Op->getOperand(0);
8892   MVT InVT = In.getValueType().getSimpleVT();
8893   SDLoc DL(Op);
8894   unsigned int NumElts = VT.getVectorNumElements();
8895   if (NumElts != 8 && NumElts != 16)
8896     return SDValue();
8897
8898   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8899     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8900
8901   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8902   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8903   // Now we have only mask extension
8904   assert(InVT.getVectorElementType() == MVT::i1);
8905   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8906   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8907   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8908   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8909   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8910                            MachinePointerInfo::getConstantPool(),
8911                            false, false, false, Alignment);
8912
8913   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8914   if (VT.is512BitVector())
8915     return Brcst;
8916   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8917 }
8918
8919 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8920                                SelectionDAG &DAG) {
8921   if (Subtarget->hasFp256()) {
8922     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8923     if (Res.getNode())
8924       return Res;
8925   }
8926
8927   return SDValue();
8928 }
8929
8930 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8931                                 SelectionDAG &DAG) {
8932   SDLoc DL(Op);
8933   MVT VT = Op.getSimpleValueType();
8934   SDValue In = Op.getOperand(0);
8935   MVT SVT = In.getSimpleValueType();
8936
8937   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8938     return LowerZERO_EXTEND_AVX512(Op, DAG);
8939
8940   if (Subtarget->hasFp256()) {
8941     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8942     if (Res.getNode())
8943       return Res;
8944   }
8945
8946   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8947       VT.getVectorNumElements() != SVT.getVectorNumElements())
8948     return SDValue();
8949
8950   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8951
8952   // AVX2 has better support of integer extending.
8953   if (Subtarget->hasInt256())
8954     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8955
8956   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8957   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8958   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8959                            DAG.getVectorShuffle(MVT::v8i16, DL, In,
8960                                                 DAG.getUNDEF(MVT::v8i16),
8961                                                 &Mask[0]));
8962
8963   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8964 }
8965
8966 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8967   SDLoc DL(Op);
8968   MVT VT = Op.getSimpleValueType();  
8969   SDValue In = Op.getOperand(0);
8970   MVT InVT = In.getSimpleValueType();
8971   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8972          "Invalid TRUNCATE operation");
8973
8974   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8975     if (VT.getVectorElementType().getSizeInBits() >=8)
8976       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8977
8978     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8979     unsigned NumElts = InVT.getVectorNumElements();
8980     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8981     if (InVT.getSizeInBits() < 512) {
8982       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8983       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8984       InVT = ExtVT;
8985     }
8986     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8987     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8988     SDValue CP = DAG.getConstantPool(C, getPointerTy());
8989     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8990     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8991                            MachinePointerInfo::getConstantPool(),
8992                            false, false, false, Alignment);
8993     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8994     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8995     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8996   }
8997
8998   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
8999     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9000     if (Subtarget->hasInt256()) {
9001       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9002       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9003       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9004                                 ShufMask);
9005       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9006                          DAG.getIntPtrConstant(0));
9007     }
9008
9009     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9010     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9011                                DAG.getIntPtrConstant(0));
9012     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9013                                DAG.getIntPtrConstant(2));
9014
9015     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9016     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9017
9018     // The PSHUFD mask:
9019     static const int ShufMask1[] = {0, 2, 0, 0};
9020     SDValue Undef = DAG.getUNDEF(VT);
9021     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9022     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9023
9024     // The MOVLHPS mask:
9025     static const int ShufMask2[] = {0, 1, 4, 5};
9026     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9027   }
9028
9029   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9030     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9031     if (Subtarget->hasInt256()) {
9032       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9033
9034       SmallVector<SDValue,32> pshufbMask;
9035       for (unsigned i = 0; i < 2; ++i) {
9036         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9037         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9038         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9039         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9040         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9041         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9042         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9043         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9044         for (unsigned j = 0; j < 8; ++j)
9045           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9046       }
9047       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9048                                &pshufbMask[0], 32);
9049       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9050       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9051
9052       static const int ShufMask[] = {0,  2,  -1,  -1};
9053       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9054                                 &ShufMask[0]);
9055       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9056                        DAG.getIntPtrConstant(0));
9057       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9058     }
9059
9060     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9061                                DAG.getIntPtrConstant(0));
9062
9063     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9064                                DAG.getIntPtrConstant(4));
9065
9066     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9067     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9068
9069     // The PSHUFB mask:
9070     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9071                                    -1, -1, -1, -1, -1, -1, -1, -1};
9072
9073     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9074     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9075     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9076
9077     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9078     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9079
9080     // The MOVLHPS Mask:
9081     static const int ShufMask2[] = {0, 1, 4, 5};
9082     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9083     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9084   }
9085
9086   // Handle truncation of V256 to V128 using shuffles.
9087   if (!VT.is128BitVector() || !InVT.is256BitVector())
9088     return SDValue();
9089
9090   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9091
9092   unsigned NumElems = VT.getVectorNumElements();
9093   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9094                              NumElems * 2);
9095
9096   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9097   // Prepare truncation shuffle mask
9098   for (unsigned i = 0; i != NumElems; ++i)
9099     MaskVec[i] = i * 2;
9100   SDValue V = DAG.getVectorShuffle(NVT, DL,
9101                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9102                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9103   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9104                      DAG.getIntPtrConstant(0));
9105 }
9106
9107 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9108                                            SelectionDAG &DAG) const {
9109   MVT VT = Op.getSimpleValueType();
9110   if (VT.isVector()) {
9111     if (VT == MVT::v8i16)
9112       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9113                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9114                                      MVT::v8i32, Op.getOperand(0)));
9115     return SDValue();
9116   }
9117
9118   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9119     /*IsSigned=*/ true, /*IsReplace=*/ false);
9120   SDValue FIST = Vals.first, StackSlot = Vals.second;
9121   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9122   if (FIST.getNode() == 0) return Op;
9123
9124   if (StackSlot.getNode())
9125     // Load the result.
9126     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9127                        FIST, StackSlot, MachinePointerInfo(),
9128                        false, false, false, 0);
9129
9130   // The node is the result.
9131   return FIST;
9132 }
9133
9134 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9135                                            SelectionDAG &DAG) const {
9136   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9137     /*IsSigned=*/ false, /*IsReplace=*/ false);
9138   SDValue FIST = Vals.first, StackSlot = Vals.second;
9139   assert(FIST.getNode() && "Unexpected failure");
9140
9141   if (StackSlot.getNode())
9142     // Load the result.
9143     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9144                        FIST, StackSlot, MachinePointerInfo(),
9145                        false, false, false, 0);
9146
9147   // The node is the result.
9148   return FIST;
9149 }
9150
9151 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9152   SDLoc DL(Op);
9153   MVT VT = Op.getSimpleValueType();
9154   SDValue In = Op.getOperand(0);
9155   MVT SVT = In.getSimpleValueType();
9156
9157   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9158
9159   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9160                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9161                                  In, DAG.getUNDEF(SVT)));
9162 }
9163
9164 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9165   LLVMContext *Context = DAG.getContext();
9166   SDLoc dl(Op);
9167   MVT VT = Op.getSimpleValueType();
9168   MVT EltVT = VT;
9169   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9170   if (VT.isVector()) {
9171     EltVT = VT.getVectorElementType();
9172     NumElts = VT.getVectorNumElements();
9173   }
9174   Constant *C;
9175   if (EltVT == MVT::f64)
9176     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9177                                           APInt(64, ~(1ULL << 63))));
9178   else
9179     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9180                                           APInt(32, ~(1U << 31))));
9181   C = ConstantVector::getSplat(NumElts, C);
9182   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9183   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9184   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9185                              MachinePointerInfo::getConstantPool(),
9186                              false, false, false, Alignment);
9187   if (VT.isVector()) {
9188     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9189     return DAG.getNode(ISD::BITCAST, dl, VT,
9190                        DAG.getNode(ISD::AND, dl, ANDVT,
9191                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9192                                                Op.getOperand(0)),
9193                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9194   }
9195   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9196 }
9197
9198 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9199   LLVMContext *Context = DAG.getContext();
9200   SDLoc dl(Op);
9201   MVT VT = Op.getSimpleValueType();
9202   MVT EltVT = VT;
9203   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9204   if (VT.isVector()) {
9205     EltVT = VT.getVectorElementType();
9206     NumElts = VT.getVectorNumElements();
9207   }
9208   Constant *C;
9209   if (EltVT == MVT::f64)
9210     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9211                                           APInt(64, 1ULL << 63)));
9212   else
9213     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9214                                           APInt(32, 1U << 31)));
9215   C = ConstantVector::getSplat(NumElts, C);
9216   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9217   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9218   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9219                              MachinePointerInfo::getConstantPool(),
9220                              false, false, false, Alignment);
9221   if (VT.isVector()) {
9222     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9223     return DAG.getNode(ISD::BITCAST, dl, VT,
9224                        DAG.getNode(ISD::XOR, dl, XORVT,
9225                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9226                                                Op.getOperand(0)),
9227                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9228   }
9229
9230   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9231 }
9232
9233 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9234   LLVMContext *Context = DAG.getContext();
9235   SDValue Op0 = Op.getOperand(0);
9236   SDValue Op1 = Op.getOperand(1);
9237   SDLoc dl(Op);
9238   MVT VT = Op.getSimpleValueType();
9239   MVT SrcVT = Op1.getSimpleValueType();
9240
9241   // If second operand is smaller, extend it first.
9242   if (SrcVT.bitsLT(VT)) {
9243     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9244     SrcVT = VT;
9245   }
9246   // And if it is bigger, shrink it first.
9247   if (SrcVT.bitsGT(VT)) {
9248     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9249     SrcVT = VT;
9250   }
9251
9252   // At this point the operands and the result should have the same
9253   // type, and that won't be f80 since that is not custom lowered.
9254
9255   // First get the sign bit of second operand.
9256   SmallVector<Constant*,4> CV;
9257   if (SrcVT == MVT::f64) {
9258     const fltSemantics &Sem = APFloat::IEEEdouble;
9259     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9260     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9261   } else {
9262     const fltSemantics &Sem = APFloat::IEEEsingle;
9263     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9264     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9265     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9266     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9267   }
9268   Constant *C = ConstantVector::get(CV);
9269   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9270   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9271                               MachinePointerInfo::getConstantPool(),
9272                               false, false, false, 16);
9273   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9274
9275   // Shift sign bit right or left if the two operands have different types.
9276   if (SrcVT.bitsGT(VT)) {
9277     // Op0 is MVT::f32, Op1 is MVT::f64.
9278     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9279     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9280                           DAG.getConstant(32, MVT::i32));
9281     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9282     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9283                           DAG.getIntPtrConstant(0));
9284   }
9285
9286   // Clear first operand sign bit.
9287   CV.clear();
9288   if (VT == MVT::f64) {
9289     const fltSemantics &Sem = APFloat::IEEEdouble;
9290     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9291                                                    APInt(64, ~(1ULL << 63)))));
9292     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9293   } else {
9294     const fltSemantics &Sem = APFloat::IEEEsingle;
9295     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9296                                                    APInt(32, ~(1U << 31)))));
9297     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9298     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9299     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9300   }
9301   C = ConstantVector::get(CV);
9302   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9303   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9304                               MachinePointerInfo::getConstantPool(),
9305                               false, false, false, 16);
9306   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9307
9308   // Or the value with the sign bit.
9309   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9310 }
9311
9312 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9313   SDValue N0 = Op.getOperand(0);
9314   SDLoc dl(Op);
9315   MVT VT = Op.getSimpleValueType();
9316
9317   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9318   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9319                                   DAG.getConstant(1, VT));
9320   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9321 }
9322
9323 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9324 //
9325 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9326                                       SelectionDAG &DAG) {
9327   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9328
9329   if (!Subtarget->hasSSE41())
9330     return SDValue();
9331
9332   if (!Op->hasOneUse())
9333     return SDValue();
9334
9335   SDNode *N = Op.getNode();
9336   SDLoc DL(N);
9337
9338   SmallVector<SDValue, 8> Opnds;
9339   DenseMap<SDValue, unsigned> VecInMap;
9340   EVT VT = MVT::Other;
9341
9342   // Recognize a special case where a vector is casted into wide integer to
9343   // test all 0s.
9344   Opnds.push_back(N->getOperand(0));
9345   Opnds.push_back(N->getOperand(1));
9346
9347   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9348     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9349     // BFS traverse all OR'd operands.
9350     if (I->getOpcode() == ISD::OR) {
9351       Opnds.push_back(I->getOperand(0));
9352       Opnds.push_back(I->getOperand(1));
9353       // Re-evaluate the number of nodes to be traversed.
9354       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9355       continue;
9356     }
9357
9358     // Quit if a non-EXTRACT_VECTOR_ELT
9359     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9360       return SDValue();
9361
9362     // Quit if without a constant index.
9363     SDValue Idx = I->getOperand(1);
9364     if (!isa<ConstantSDNode>(Idx))
9365       return SDValue();
9366
9367     SDValue ExtractedFromVec = I->getOperand(0);
9368     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9369     if (M == VecInMap.end()) {
9370       VT = ExtractedFromVec.getValueType();
9371       // Quit if not 128/256-bit vector.
9372       if (!VT.is128BitVector() && !VT.is256BitVector())
9373         return SDValue();
9374       // Quit if not the same type.
9375       if (VecInMap.begin() != VecInMap.end() &&
9376           VT != VecInMap.begin()->first.getValueType())
9377         return SDValue();
9378       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9379     }
9380     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9381   }
9382
9383   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9384          "Not extracted from 128-/256-bit vector.");
9385
9386   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9387   SmallVector<SDValue, 8> VecIns;
9388
9389   for (DenseMap<SDValue, unsigned>::const_iterator
9390         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9391     // Quit if not all elements are used.
9392     if (I->second != FullMask)
9393       return SDValue();
9394     VecIns.push_back(I->first);
9395   }
9396
9397   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9398
9399   // Cast all vectors into TestVT for PTEST.
9400   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9401     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9402
9403   // If more than one full vectors are evaluated, OR them first before PTEST.
9404   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9405     // Each iteration will OR 2 nodes and append the result until there is only
9406     // 1 node left, i.e. the final OR'd value of all vectors.
9407     SDValue LHS = VecIns[Slot];
9408     SDValue RHS = VecIns[Slot + 1];
9409     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9410   }
9411
9412   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9413                      VecIns.back(), VecIns.back());
9414 }
9415
9416 /// Emit nodes that will be selected as "test Op0,Op0", or something
9417 /// equivalent.
9418 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9419                                     SelectionDAG &DAG) const {
9420   SDLoc dl(Op);
9421
9422   // CF and OF aren't always set the way we want. Determine which
9423   // of these we need.
9424   bool NeedCF = false;
9425   bool NeedOF = false;
9426   switch (X86CC) {
9427   default: break;
9428   case X86::COND_A: case X86::COND_AE:
9429   case X86::COND_B: case X86::COND_BE:
9430     NeedCF = true;
9431     break;
9432   case X86::COND_G: case X86::COND_GE:
9433   case X86::COND_L: case X86::COND_LE:
9434   case X86::COND_O: case X86::COND_NO:
9435     NeedOF = true;
9436     break;
9437   }
9438
9439   // See if we can use the EFLAGS value from the operand instead of
9440   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9441   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9442   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9443     // Emit a CMP with 0, which is the TEST pattern.
9444     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9445                        DAG.getConstant(0, Op.getValueType()));
9446
9447   unsigned Opcode = 0;
9448   unsigned NumOperands = 0;
9449
9450   // Truncate operations may prevent the merge of the SETCC instruction
9451   // and the arithmetic instruction before it. Attempt to truncate the operands
9452   // of the arithmetic instruction and use a reduced bit-width instruction.
9453   bool NeedTruncation = false;
9454   SDValue ArithOp = Op;
9455   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9456     SDValue Arith = Op->getOperand(0);
9457     // Both the trunc and the arithmetic op need to have one user each.
9458     if (Arith->hasOneUse())
9459       switch (Arith.getOpcode()) {
9460         default: break;
9461         case ISD::ADD:
9462         case ISD::SUB:
9463         case ISD::AND:
9464         case ISD::OR:
9465         case ISD::XOR: {
9466           NeedTruncation = true;
9467           ArithOp = Arith;
9468         }
9469       }
9470   }
9471
9472   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9473   // which may be the result of a CAST.  We use the variable 'Op', which is the
9474   // non-casted variable when we check for possible users.
9475   switch (ArithOp.getOpcode()) {
9476   case ISD::ADD:
9477     // Due to an isel shortcoming, be conservative if this add is likely to be
9478     // selected as part of a load-modify-store instruction. When the root node
9479     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9480     // uses of other nodes in the match, such as the ADD in this case. This
9481     // leads to the ADD being left around and reselected, with the result being
9482     // two adds in the output.  Alas, even if none our users are stores, that
9483     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9484     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9485     // climbing the DAG back to the root, and it doesn't seem to be worth the
9486     // effort.
9487     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9488          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9489       if (UI->getOpcode() != ISD::CopyToReg &&
9490           UI->getOpcode() != ISD::SETCC &&
9491           UI->getOpcode() != ISD::STORE)
9492         goto default_case;
9493
9494     if (ConstantSDNode *C =
9495         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9496       // An add of one will be selected as an INC.
9497       if (C->getAPIntValue() == 1) {
9498         Opcode = X86ISD::INC;
9499         NumOperands = 1;
9500         break;
9501       }
9502
9503       // An add of negative one (subtract of one) will be selected as a DEC.
9504       if (C->getAPIntValue().isAllOnesValue()) {
9505         Opcode = X86ISD::DEC;
9506         NumOperands = 1;
9507         break;
9508       }
9509     }
9510
9511     // Otherwise use a regular EFLAGS-setting add.
9512     Opcode = X86ISD::ADD;
9513     NumOperands = 2;
9514     break;
9515   case ISD::AND: {
9516     // If the primary and result isn't used, don't bother using X86ISD::AND,
9517     // because a TEST instruction will be better.
9518     bool NonFlagUse = false;
9519     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9520            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9521       SDNode *User = *UI;
9522       unsigned UOpNo = UI.getOperandNo();
9523       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9524         // Look pass truncate.
9525         UOpNo = User->use_begin().getOperandNo();
9526         User = *User->use_begin();
9527       }
9528
9529       if (User->getOpcode() != ISD::BRCOND &&
9530           User->getOpcode() != ISD::SETCC &&
9531           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9532         NonFlagUse = true;
9533         break;
9534       }
9535     }
9536
9537     if (!NonFlagUse)
9538       break;
9539   }
9540     // FALL THROUGH
9541   case ISD::SUB:
9542   case ISD::OR:
9543   case ISD::XOR:
9544     // Due to the ISEL shortcoming noted above, be conservative if this op is
9545     // likely to be selected as part of a load-modify-store instruction.
9546     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9547            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9548       if (UI->getOpcode() == ISD::STORE)
9549         goto default_case;
9550
9551     // Otherwise use a regular EFLAGS-setting instruction.
9552     switch (ArithOp.getOpcode()) {
9553     default: llvm_unreachable("unexpected operator!");
9554     case ISD::SUB: Opcode = X86ISD::SUB; break;
9555     case ISD::XOR: Opcode = X86ISD::XOR; break;
9556     case ISD::AND: Opcode = X86ISD::AND; break;
9557     case ISD::OR: {
9558       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9559         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9560         if (EFLAGS.getNode())
9561           return EFLAGS;
9562       }
9563       Opcode = X86ISD::OR;
9564       break;
9565     }
9566     }
9567
9568     NumOperands = 2;
9569     break;
9570   case X86ISD::ADD:
9571   case X86ISD::SUB:
9572   case X86ISD::INC:
9573   case X86ISD::DEC:
9574   case X86ISD::OR:
9575   case X86ISD::XOR:
9576   case X86ISD::AND:
9577     return SDValue(Op.getNode(), 1);
9578   default:
9579   default_case:
9580     break;
9581   }
9582
9583   // If we found that truncation is beneficial, perform the truncation and
9584   // update 'Op'.
9585   if (NeedTruncation) {
9586     EVT VT = Op.getValueType();
9587     SDValue WideVal = Op->getOperand(0);
9588     EVT WideVT = WideVal.getValueType();
9589     unsigned ConvertedOp = 0;
9590     // Use a target machine opcode to prevent further DAGCombine
9591     // optimizations that may separate the arithmetic operations
9592     // from the setcc node.
9593     switch (WideVal.getOpcode()) {
9594       default: break;
9595       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9596       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9597       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9598       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9599       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9600     }
9601
9602     if (ConvertedOp) {
9603       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9604       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9605         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9606         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9607         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9608       }
9609     }
9610   }
9611
9612   if (Opcode == 0)
9613     // Emit a CMP with 0, which is the TEST pattern.
9614     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9615                        DAG.getConstant(0, Op.getValueType()));
9616
9617   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9618   SmallVector<SDValue, 4> Ops;
9619   for (unsigned i = 0; i != NumOperands; ++i)
9620     Ops.push_back(Op.getOperand(i));
9621
9622   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9623   DAG.ReplaceAllUsesWith(Op, New);
9624   return SDValue(New.getNode(), 1);
9625 }
9626
9627 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9628 /// equivalent.
9629 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9630                                    SelectionDAG &DAG) const {
9631   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9632     if (C->getAPIntValue() == 0)
9633       return EmitTest(Op0, X86CC, DAG);
9634
9635   SDLoc dl(Op0);
9636   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9637        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9638     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9639     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9640     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9641                               Op0, Op1);
9642     return SDValue(Sub.getNode(), 1);
9643   }
9644   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9645 }
9646
9647 /// Convert a comparison if required by the subtarget.
9648 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9649                                                  SelectionDAG &DAG) const {
9650   // If the subtarget does not support the FUCOMI instruction, floating-point
9651   // comparisons have to be converted.
9652   if (Subtarget->hasCMov() ||
9653       Cmp.getOpcode() != X86ISD::CMP ||
9654       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9655       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9656     return Cmp;
9657
9658   // The instruction selector will select an FUCOM instruction instead of
9659   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9660   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9661   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9662   SDLoc dl(Cmp);
9663   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9664   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9665   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9666                             DAG.getConstant(8, MVT::i8));
9667   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9668   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9669 }
9670
9671 static bool isAllOnes(SDValue V) {
9672   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9673   return C && C->isAllOnesValue();
9674 }
9675
9676 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9677 /// if it's possible.
9678 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9679                                      SDLoc dl, SelectionDAG &DAG) const {
9680   SDValue Op0 = And.getOperand(0);
9681   SDValue Op1 = And.getOperand(1);
9682   if (Op0.getOpcode() == ISD::TRUNCATE)
9683     Op0 = Op0.getOperand(0);
9684   if (Op1.getOpcode() == ISD::TRUNCATE)
9685     Op1 = Op1.getOperand(0);
9686
9687   SDValue LHS, RHS;
9688   if (Op1.getOpcode() == ISD::SHL)
9689     std::swap(Op0, Op1);
9690   if (Op0.getOpcode() == ISD::SHL) {
9691     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9692       if (And00C->getZExtValue() == 1) {
9693         // If we looked past a truncate, check that it's only truncating away
9694         // known zeros.
9695         unsigned BitWidth = Op0.getValueSizeInBits();
9696         unsigned AndBitWidth = And.getValueSizeInBits();
9697         if (BitWidth > AndBitWidth) {
9698           APInt Zeros, Ones;
9699           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9700           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9701             return SDValue();
9702         }
9703         LHS = Op1;
9704         RHS = Op0.getOperand(1);
9705       }
9706   } else if (Op1.getOpcode() == ISD::Constant) {
9707     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9708     uint64_t AndRHSVal = AndRHS->getZExtValue();
9709     SDValue AndLHS = Op0;
9710
9711     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9712       LHS = AndLHS.getOperand(0);
9713       RHS = AndLHS.getOperand(1);
9714     }
9715
9716     // Use BT if the immediate can't be encoded in a TEST instruction.
9717     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9718       LHS = AndLHS;
9719       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9720     }
9721   }
9722
9723   if (LHS.getNode()) {
9724     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9725     // instruction.  Since the shift amount is in-range-or-undefined, we know
9726     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9727     // the encoding for the i16 version is larger than the i32 version.
9728     // Also promote i16 to i32 for performance / code size reason.
9729     if (LHS.getValueType() == MVT::i8 ||
9730         LHS.getValueType() == MVT::i16)
9731       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9732
9733     // If the operand types disagree, extend the shift amount to match.  Since
9734     // BT ignores high bits (like shifts) we can use anyextend.
9735     if (LHS.getValueType() != RHS.getValueType())
9736       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9737
9738     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9739     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9740     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9741                        DAG.getConstant(Cond, MVT::i8), BT);
9742   }
9743
9744   return SDValue();
9745 }
9746
9747 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9748 /// mask CMPs.
9749 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9750                               SDValue &Op1) {
9751   unsigned SSECC;
9752   bool Swap = false;
9753
9754   // SSE Condition code mapping:
9755   //  0 - EQ
9756   //  1 - LT
9757   //  2 - LE
9758   //  3 - UNORD
9759   //  4 - NEQ
9760   //  5 - NLT
9761   //  6 - NLE
9762   //  7 - ORD
9763   switch (SetCCOpcode) {
9764   default: llvm_unreachable("Unexpected SETCC condition");
9765   case ISD::SETOEQ:
9766   case ISD::SETEQ:  SSECC = 0; break;
9767   case ISD::SETOGT:
9768   case ISD::SETGT:  Swap = true; // Fallthrough
9769   case ISD::SETLT:
9770   case ISD::SETOLT: SSECC = 1; break;
9771   case ISD::SETOGE:
9772   case ISD::SETGE:  Swap = true; // Fallthrough
9773   case ISD::SETLE:
9774   case ISD::SETOLE: SSECC = 2; break;
9775   case ISD::SETUO:  SSECC = 3; break;
9776   case ISD::SETUNE:
9777   case ISD::SETNE:  SSECC = 4; break;
9778   case ISD::SETULE: Swap = true; // Fallthrough
9779   case ISD::SETUGE: SSECC = 5; break;
9780   case ISD::SETULT: Swap = true; // Fallthrough
9781   case ISD::SETUGT: SSECC = 6; break;
9782   case ISD::SETO:   SSECC = 7; break;
9783   case ISD::SETUEQ:
9784   case ISD::SETONE: SSECC = 8; break;
9785   }
9786   if (Swap)
9787     std::swap(Op0, Op1);
9788
9789   return SSECC;
9790 }
9791
9792 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9793 // ones, and then concatenate the result back.
9794 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9795   MVT VT = Op.getSimpleValueType();
9796
9797   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9798          "Unsupported value type for operation");
9799
9800   unsigned NumElems = VT.getVectorNumElements();
9801   SDLoc dl(Op);
9802   SDValue CC = Op.getOperand(2);
9803
9804   // Extract the LHS vectors
9805   SDValue LHS = Op.getOperand(0);
9806   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9807   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9808
9809   // Extract the RHS vectors
9810   SDValue RHS = Op.getOperand(1);
9811   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9812   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9813
9814   // Issue the operation on the smaller types and concatenate the result back
9815   MVT EltVT = VT.getVectorElementType();
9816   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9817   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9818                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9819                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9820 }
9821
9822 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9823   SDValue Op0 = Op.getOperand(0);
9824   SDValue Op1 = Op.getOperand(1);
9825   SDValue CC = Op.getOperand(2);
9826   MVT VT = Op.getSimpleValueType();
9827
9828   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9829          Op.getValueType().getScalarType() == MVT::i1 &&
9830          "Cannot set masked compare for this operation");
9831
9832   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9833   SDLoc dl(Op);
9834
9835   bool Unsigned = false;
9836   unsigned SSECC;
9837   switch (SetCCOpcode) {
9838   default: llvm_unreachable("Unexpected SETCC condition");
9839   case ISD::SETNE:  SSECC = 4; break;
9840   case ISD::SETEQ:  SSECC = 0; break;
9841   case ISD::SETUGT: Unsigned = true;
9842   case ISD::SETGT:  SSECC = 6; break; // NLE
9843   case ISD::SETULT: Unsigned = true;
9844   case ISD::SETLT:  SSECC = 1; break;
9845   case ISD::SETUGE: Unsigned = true;
9846   case ISD::SETGE:  SSECC = 5; break; // NLT
9847   case ISD::SETULE: Unsigned = true;
9848   case ISD::SETLE:  SSECC = 2; break;
9849   }
9850   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9851   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9852                      DAG.getConstant(SSECC, MVT::i8));
9853
9854 }
9855
9856 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9857                            SelectionDAG &DAG) {
9858   SDValue Op0 = Op.getOperand(0);
9859   SDValue Op1 = Op.getOperand(1);
9860   SDValue CC = Op.getOperand(2);
9861   MVT VT = Op.getSimpleValueType();
9862   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9863   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9864   SDLoc dl(Op);
9865
9866   if (isFP) {
9867 #ifndef NDEBUG
9868     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9869     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9870 #endif
9871
9872     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9873     unsigned Opc = X86ISD::CMPP;
9874     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9875       assert(VT.getVectorNumElements() <= 16);
9876       Opc = X86ISD::CMPM;
9877     }
9878     // In the two special cases we can't handle, emit two comparisons.
9879     if (SSECC == 8) {
9880       unsigned CC0, CC1;
9881       unsigned CombineOpc;
9882       if (SetCCOpcode == ISD::SETUEQ) {
9883         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9884       } else {
9885         assert(SetCCOpcode == ISD::SETONE);
9886         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9887       }
9888
9889       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9890                                  DAG.getConstant(CC0, MVT::i8));
9891       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9892                                  DAG.getConstant(CC1, MVT::i8));
9893       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9894     }
9895     // Handle all other FP comparisons here.
9896     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9897                        DAG.getConstant(SSECC, MVT::i8));
9898   }
9899
9900   // Break 256-bit integer vector compare into smaller ones.
9901   if (VT.is256BitVector() && !Subtarget->hasInt256())
9902     return Lower256IntVSETCC(Op, DAG);
9903
9904   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9905   EVT OpVT = Op1.getValueType();
9906   if (Subtarget->hasAVX512()) {
9907     if (Op1.getValueType().is512BitVector() ||
9908         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9909       return LowerIntVSETCC_AVX512(Op, DAG);
9910
9911     // In AVX-512 architecture setcc returns mask with i1 elements,
9912     // But there is no compare instruction for i8 and i16 elements.
9913     // We are not talking about 512-bit operands in this case, these
9914     // types are illegal.
9915     if (MaskResult &&
9916         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9917          OpVT.getVectorElementType().getSizeInBits() >= 8))
9918       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9919                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9920   }
9921
9922   // We are handling one of the integer comparisons here.  Since SSE only has
9923   // GT and EQ comparisons for integer, swapping operands and multiple
9924   // operations may be required for some comparisons.
9925   unsigned Opc;
9926   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9927   
9928   switch (SetCCOpcode) {
9929   default: llvm_unreachable("Unexpected SETCC condition");
9930   case ISD::SETNE:  Invert = true;
9931   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9932   case ISD::SETLT:  Swap = true;
9933   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9934   case ISD::SETGE:  Swap = true;
9935   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9936                     Invert = true; break;
9937   case ISD::SETULT: Swap = true;
9938   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9939                     FlipSigns = true; break;
9940   case ISD::SETUGE: Swap = true;
9941   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9942                     FlipSigns = true; Invert = true; break;
9943   }
9944   
9945   // Special case: Use min/max operations for SETULE/SETUGE
9946   MVT VET = VT.getVectorElementType();
9947   bool hasMinMax =
9948        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9949     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9950   
9951   if (hasMinMax) {
9952     switch (SetCCOpcode) {
9953     default: break;
9954     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9955     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9956     }
9957     
9958     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9959   }
9960   
9961   if (Swap)
9962     std::swap(Op0, Op1);
9963
9964   // Check that the operation in question is available (most are plain SSE2,
9965   // but PCMPGTQ and PCMPEQQ have different requirements).
9966   if (VT == MVT::v2i64) {
9967     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9968       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9969
9970       // First cast everything to the right type.
9971       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9972       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9973
9974       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9975       // bits of the inputs before performing those operations. The lower
9976       // compare is always unsigned.
9977       SDValue SB;
9978       if (FlipSigns) {
9979         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9980       } else {
9981         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9982         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9983         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9984                          Sign, Zero, Sign, Zero);
9985       }
9986       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9987       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9988
9989       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9990       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9991       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9992
9993       // Create masks for only the low parts/high parts of the 64 bit integers.
9994       static const int MaskHi[] = { 1, 1, 3, 3 };
9995       static const int MaskLo[] = { 0, 0, 2, 2 };
9996       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9997       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9998       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9999
10000       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10001       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10002
10003       if (Invert)
10004         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10005
10006       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10007     }
10008
10009     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10010       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10011       // pcmpeqd + pshufd + pand.
10012       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10013
10014       // First cast everything to the right type.
10015       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10016       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10017
10018       // Do the compare.
10019       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10020
10021       // Make sure the lower and upper halves are both all-ones.
10022       static const int Mask[] = { 1, 0, 3, 2 };
10023       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10024       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10025
10026       if (Invert)
10027         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10028
10029       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10030     }
10031   }
10032
10033   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10034   // bits of the inputs before performing those operations.
10035   if (FlipSigns) {
10036     EVT EltVT = VT.getVectorElementType();
10037     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10038     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10039     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10040   }
10041
10042   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10043
10044   // If the logical-not of the result is required, perform that now.
10045   if (Invert)
10046     Result = DAG.getNOT(dl, Result, VT);
10047   
10048   if (MinMax)
10049     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10050
10051   return Result;
10052 }
10053
10054 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10055
10056   MVT VT = Op.getSimpleValueType();
10057
10058   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10059
10060   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10061   SDValue Op0 = Op.getOperand(0);
10062   SDValue Op1 = Op.getOperand(1);
10063   SDLoc dl(Op);
10064   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10065
10066   // Optimize to BT if possible.
10067   // Lower (X & (1 << N)) == 0 to BT(X, N).
10068   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10069   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10070   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10071       Op1.getOpcode() == ISD::Constant &&
10072       cast<ConstantSDNode>(Op1)->isNullValue() &&
10073       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10074     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10075     if (NewSetCC.getNode())
10076       return NewSetCC;
10077   }
10078
10079   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10080   // these.
10081   if (Op1.getOpcode() == ISD::Constant &&
10082       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10083        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10084       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10085
10086     // If the input is a setcc, then reuse the input setcc or use a new one with
10087     // the inverted condition.
10088     if (Op0.getOpcode() == X86ISD::SETCC) {
10089       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10090       bool Invert = (CC == ISD::SETNE) ^
10091         cast<ConstantSDNode>(Op1)->isNullValue();
10092       if (!Invert) return Op0;
10093
10094       CCode = X86::GetOppositeBranchCondition(CCode);
10095       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10096                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10097     }
10098   }
10099
10100   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10101   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10102   if (X86CC == X86::COND_INVALID)
10103     return SDValue();
10104
10105   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10106   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10107   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10108                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10109 }
10110
10111 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10112 static bool isX86LogicalCmp(SDValue Op) {
10113   unsigned Opc = Op.getNode()->getOpcode();
10114   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10115       Opc == X86ISD::SAHF)
10116     return true;
10117   if (Op.getResNo() == 1 &&
10118       (Opc == X86ISD::ADD ||
10119        Opc == X86ISD::SUB ||
10120        Opc == X86ISD::ADC ||
10121        Opc == X86ISD::SBB ||
10122        Opc == X86ISD::SMUL ||
10123        Opc == X86ISD::UMUL ||
10124        Opc == X86ISD::INC ||
10125        Opc == X86ISD::DEC ||
10126        Opc == X86ISD::OR ||
10127        Opc == X86ISD::XOR ||
10128        Opc == X86ISD::AND))
10129     return true;
10130
10131   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10132     return true;
10133
10134   return false;
10135 }
10136
10137 static bool isZero(SDValue V) {
10138   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10139   return C && C->isNullValue();
10140 }
10141
10142 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10143   if (V.getOpcode() != ISD::TRUNCATE)
10144     return false;
10145
10146   SDValue VOp0 = V.getOperand(0);
10147   unsigned InBits = VOp0.getValueSizeInBits();
10148   unsigned Bits = V.getValueSizeInBits();
10149   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10150 }
10151
10152 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10153   bool addTest = true;
10154   SDValue Cond  = Op.getOperand(0);
10155   SDValue Op1 = Op.getOperand(1);
10156   SDValue Op2 = Op.getOperand(2);
10157   SDLoc DL(Op);
10158   EVT VT = Op1.getValueType();
10159   SDValue CC;
10160
10161   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10162   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10163   // sequence later on.
10164   if (Cond.getOpcode() == ISD::SETCC &&
10165       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10166        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10167       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10168     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10169     int SSECC = translateX86FSETCC(
10170         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10171
10172     if (SSECC != 8) {
10173       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10174       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10175                                 DAG.getConstant(SSECC, MVT::i8));
10176       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10177       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10178       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10179     }
10180   }
10181
10182   if (Cond.getOpcode() == ISD::SETCC) {
10183     SDValue NewCond = LowerSETCC(Cond, DAG);
10184     if (NewCond.getNode())
10185       Cond = NewCond;
10186   }
10187
10188   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10189   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10190   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10191   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10192   if (Cond.getOpcode() == X86ISD::SETCC &&
10193       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10194       isZero(Cond.getOperand(1).getOperand(1))) {
10195     SDValue Cmp = Cond.getOperand(1);
10196
10197     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10198
10199     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10200         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10201       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10202
10203       SDValue CmpOp0 = Cmp.getOperand(0);
10204       // Apply further optimizations for special cases
10205       // (select (x != 0), -1, 0) -> neg & sbb
10206       // (select (x == 0), 0, -1) -> neg & sbb
10207       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10208         if (YC->isNullValue() &&
10209             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10210           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10211           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10212                                     DAG.getConstant(0, CmpOp0.getValueType()),
10213                                     CmpOp0);
10214           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10215                                     DAG.getConstant(X86::COND_B, MVT::i8),
10216                                     SDValue(Neg.getNode(), 1));
10217           return Res;
10218         }
10219
10220       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10221                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10222       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10223
10224       SDValue Res =   // Res = 0 or -1.
10225         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10226                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10227
10228       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10229         Res = DAG.getNOT(DL, Res, Res.getValueType());
10230
10231       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10232       if (N2C == 0 || !N2C->isNullValue())
10233         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10234       return Res;
10235     }
10236   }
10237
10238   // Look past (and (setcc_carry (cmp ...)), 1).
10239   if (Cond.getOpcode() == ISD::AND &&
10240       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10241     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10242     if (C && C->getAPIntValue() == 1)
10243       Cond = Cond.getOperand(0);
10244   }
10245
10246   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10247   // setting operand in place of the X86ISD::SETCC.
10248   unsigned CondOpcode = Cond.getOpcode();
10249   if (CondOpcode == X86ISD::SETCC ||
10250       CondOpcode == X86ISD::SETCC_CARRY) {
10251     CC = Cond.getOperand(0);
10252
10253     SDValue Cmp = Cond.getOperand(1);
10254     unsigned Opc = Cmp.getOpcode();
10255     MVT VT = Op.getSimpleValueType();
10256
10257     bool IllegalFPCMov = false;
10258     if (VT.isFloatingPoint() && !VT.isVector() &&
10259         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10260       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10261
10262     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10263         Opc == X86ISD::BT) { // FIXME
10264       Cond = Cmp;
10265       addTest = false;
10266     }
10267   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10268              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10269              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10270               Cond.getOperand(0).getValueType() != MVT::i8)) {
10271     SDValue LHS = Cond.getOperand(0);
10272     SDValue RHS = Cond.getOperand(1);
10273     unsigned X86Opcode;
10274     unsigned X86Cond;
10275     SDVTList VTs;
10276     switch (CondOpcode) {
10277     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10278     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10279     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10280     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10281     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10282     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10283     default: llvm_unreachable("unexpected overflowing operator");
10284     }
10285     if (CondOpcode == ISD::UMULO)
10286       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10287                           MVT::i32);
10288     else
10289       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10290
10291     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10292
10293     if (CondOpcode == ISD::UMULO)
10294       Cond = X86Op.getValue(2);
10295     else
10296       Cond = X86Op.getValue(1);
10297
10298     CC = DAG.getConstant(X86Cond, MVT::i8);
10299     addTest = false;
10300   }
10301
10302   if (addTest) {
10303     // Look pass the truncate if the high bits are known zero.
10304     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10305         Cond = Cond.getOperand(0);
10306
10307     // We know the result of AND is compared against zero. Try to match
10308     // it to BT.
10309     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10310       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10311       if (NewSetCC.getNode()) {
10312         CC = NewSetCC.getOperand(0);
10313         Cond = NewSetCC.getOperand(1);
10314         addTest = false;
10315       }
10316     }
10317   }
10318
10319   if (addTest) {
10320     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10321     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10322   }
10323
10324   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10325   // a <  b ?  0 : -1 -> RES = setcc_carry
10326   // a >= b ? -1 :  0 -> RES = setcc_carry
10327   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10328   if (Cond.getOpcode() == X86ISD::SUB) {
10329     Cond = ConvertCmpIfNecessary(Cond, DAG);
10330     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10331
10332     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10333         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10334       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10335                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10336       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10337         return DAG.getNOT(DL, Res, Res.getValueType());
10338       return Res;
10339     }
10340   }
10341
10342   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10343   // widen the cmov and push the truncate through. This avoids introducing a new
10344   // branch during isel and doesn't add any extensions.
10345   if (Op.getValueType() == MVT::i8 &&
10346       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10347     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10348     if (T1.getValueType() == T2.getValueType() &&
10349         // Blacklist CopyFromReg to avoid partial register stalls.
10350         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10351       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10352       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10353       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10354     }
10355   }
10356
10357   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10358   // condition is true.
10359   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10360   SDValue Ops[] = { Op2, Op1, CC, Cond };
10361   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10362 }
10363
10364 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10365   MVT VT = Op->getSimpleValueType(0);
10366   SDValue In = Op->getOperand(0);
10367   MVT InVT = In.getSimpleValueType();
10368   SDLoc dl(Op);
10369
10370   unsigned int NumElts = VT.getVectorNumElements();
10371   if (NumElts != 8 && NumElts != 16)
10372     return SDValue();
10373
10374   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10375     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10376
10377   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10378   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10379
10380   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10381   Constant *C = ConstantInt::get(*DAG.getContext(),
10382     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10383
10384   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10385   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10386   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10387                           MachinePointerInfo::getConstantPool(),
10388                           false, false, false, Alignment);
10389   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10390   if (VT.is512BitVector())
10391     return Brcst;
10392   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10393 }
10394
10395 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10396                                 SelectionDAG &DAG) {
10397   MVT VT = Op->getSimpleValueType(0);
10398   SDValue In = Op->getOperand(0);
10399   MVT InVT = In.getSimpleValueType();
10400   SDLoc dl(Op);
10401
10402   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10403     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10404
10405   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10406       (VT != MVT::v8i32 || InVT != MVT::v8i16))
10407     return SDValue();
10408
10409   if (Subtarget->hasInt256())
10410     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10411
10412   // Optimize vectors in AVX mode
10413   // Sign extend  v8i16 to v8i32 and
10414   //              v4i32 to v4i64
10415   //
10416   // Divide input vector into two parts
10417   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10418   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10419   // concat the vectors to original VT
10420
10421   unsigned NumElems = InVT.getVectorNumElements();
10422   SDValue Undef = DAG.getUNDEF(InVT);
10423
10424   SmallVector<int,8> ShufMask1(NumElems, -1);
10425   for (unsigned i = 0; i != NumElems/2; ++i)
10426     ShufMask1[i] = i;
10427
10428   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10429
10430   SmallVector<int,8> ShufMask2(NumElems, -1);
10431   for (unsigned i = 0; i != NumElems/2; ++i)
10432     ShufMask2[i] = i + NumElems/2;
10433
10434   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10435
10436   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10437                                 VT.getVectorNumElements()/2);
10438
10439   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10440   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10441
10442   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10443 }
10444
10445 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10446 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10447 // from the AND / OR.
10448 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10449   Opc = Op.getOpcode();
10450   if (Opc != ISD::OR && Opc != ISD::AND)
10451     return false;
10452   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10453           Op.getOperand(0).hasOneUse() &&
10454           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10455           Op.getOperand(1).hasOneUse());
10456 }
10457
10458 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10459 // 1 and that the SETCC node has a single use.
10460 static bool isXor1OfSetCC(SDValue Op) {
10461   if (Op.getOpcode() != ISD::XOR)
10462     return false;
10463   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10464   if (N1C && N1C->getAPIntValue() == 1) {
10465     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10466       Op.getOperand(0).hasOneUse();
10467   }
10468   return false;
10469 }
10470
10471 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10472   bool addTest = true;
10473   SDValue Chain = Op.getOperand(0);
10474   SDValue Cond  = Op.getOperand(1);
10475   SDValue Dest  = Op.getOperand(2);
10476   SDLoc dl(Op);
10477   SDValue CC;
10478   bool Inverted = false;
10479
10480   if (Cond.getOpcode() == ISD::SETCC) {
10481     // Check for setcc([su]{add,sub,mul}o == 0).
10482     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10483         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10484         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10485         Cond.getOperand(0).getResNo() == 1 &&
10486         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10487          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10488          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10489          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10490          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10491          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10492       Inverted = true;
10493       Cond = Cond.getOperand(0);
10494     } else {
10495       SDValue NewCond = LowerSETCC(Cond, DAG);
10496       if (NewCond.getNode())
10497         Cond = NewCond;
10498     }
10499   }
10500 #if 0
10501   // FIXME: LowerXALUO doesn't handle these!!
10502   else if (Cond.getOpcode() == X86ISD::ADD  ||
10503            Cond.getOpcode() == X86ISD::SUB  ||
10504            Cond.getOpcode() == X86ISD::SMUL ||
10505            Cond.getOpcode() == X86ISD::UMUL)
10506     Cond = LowerXALUO(Cond, DAG);
10507 #endif
10508
10509   // Look pass (and (setcc_carry (cmp ...)), 1).
10510   if (Cond.getOpcode() == ISD::AND &&
10511       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10512     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10513     if (C && C->getAPIntValue() == 1)
10514       Cond = Cond.getOperand(0);
10515   }
10516
10517   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10518   // setting operand in place of the X86ISD::SETCC.
10519   unsigned CondOpcode = Cond.getOpcode();
10520   if (CondOpcode == X86ISD::SETCC ||
10521       CondOpcode == X86ISD::SETCC_CARRY) {
10522     CC = Cond.getOperand(0);
10523
10524     SDValue Cmp = Cond.getOperand(1);
10525     unsigned Opc = Cmp.getOpcode();
10526     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10527     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10528       Cond = Cmp;
10529       addTest = false;
10530     } else {
10531       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10532       default: break;
10533       case X86::COND_O:
10534       case X86::COND_B:
10535         // These can only come from an arithmetic instruction with overflow,
10536         // e.g. SADDO, UADDO.
10537         Cond = Cond.getNode()->getOperand(1);
10538         addTest = false;
10539         break;
10540       }
10541     }
10542   }
10543   CondOpcode = Cond.getOpcode();
10544   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10545       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10546       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10547        Cond.getOperand(0).getValueType() != MVT::i8)) {
10548     SDValue LHS = Cond.getOperand(0);
10549     SDValue RHS = Cond.getOperand(1);
10550     unsigned X86Opcode;
10551     unsigned X86Cond;
10552     SDVTList VTs;
10553     switch (CondOpcode) {
10554     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10555     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10556     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10557     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10558     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10559     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10560     default: llvm_unreachable("unexpected overflowing operator");
10561     }
10562     if (Inverted)
10563       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10564     if (CondOpcode == ISD::UMULO)
10565       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10566                           MVT::i32);
10567     else
10568       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10569
10570     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10571
10572     if (CondOpcode == ISD::UMULO)
10573       Cond = X86Op.getValue(2);
10574     else
10575       Cond = X86Op.getValue(1);
10576
10577     CC = DAG.getConstant(X86Cond, MVT::i8);
10578     addTest = false;
10579   } else {
10580     unsigned CondOpc;
10581     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10582       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10583       if (CondOpc == ISD::OR) {
10584         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10585         // two branches instead of an explicit OR instruction with a
10586         // separate test.
10587         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10588             isX86LogicalCmp(Cmp)) {
10589           CC = Cond.getOperand(0).getOperand(0);
10590           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10591                               Chain, Dest, CC, Cmp);
10592           CC = Cond.getOperand(1).getOperand(0);
10593           Cond = Cmp;
10594           addTest = false;
10595         }
10596       } else { // ISD::AND
10597         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10598         // two branches instead of an explicit AND instruction with a
10599         // separate test. However, we only do this if this block doesn't
10600         // have a fall-through edge, because this requires an explicit
10601         // jmp when the condition is false.
10602         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10603             isX86LogicalCmp(Cmp) &&
10604             Op.getNode()->hasOneUse()) {
10605           X86::CondCode CCode =
10606             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10607           CCode = X86::GetOppositeBranchCondition(CCode);
10608           CC = DAG.getConstant(CCode, MVT::i8);
10609           SDNode *User = *Op.getNode()->use_begin();
10610           // Look for an unconditional branch following this conditional branch.
10611           // We need this because we need to reverse the successors in order
10612           // to implement FCMP_OEQ.
10613           if (User->getOpcode() == ISD::BR) {
10614             SDValue FalseBB = User->getOperand(1);
10615             SDNode *NewBR =
10616               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10617             assert(NewBR == User);
10618             (void)NewBR;
10619             Dest = FalseBB;
10620
10621             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10622                                 Chain, Dest, CC, Cmp);
10623             X86::CondCode CCode =
10624               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10625             CCode = X86::GetOppositeBranchCondition(CCode);
10626             CC = DAG.getConstant(CCode, MVT::i8);
10627             Cond = Cmp;
10628             addTest = false;
10629           }
10630         }
10631       }
10632     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10633       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10634       // It should be transformed during dag combiner except when the condition
10635       // is set by a arithmetics with overflow node.
10636       X86::CondCode CCode =
10637         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10638       CCode = X86::GetOppositeBranchCondition(CCode);
10639       CC = DAG.getConstant(CCode, MVT::i8);
10640       Cond = Cond.getOperand(0).getOperand(1);
10641       addTest = false;
10642     } else if (Cond.getOpcode() == ISD::SETCC &&
10643                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10644       // For FCMP_OEQ, we can emit
10645       // two branches instead of an explicit AND instruction with a
10646       // separate test. However, we only do this if this block doesn't
10647       // have a fall-through edge, because this requires an explicit
10648       // jmp when the condition is false.
10649       if (Op.getNode()->hasOneUse()) {
10650         SDNode *User = *Op.getNode()->use_begin();
10651         // Look for an unconditional branch following this conditional branch.
10652         // We need this because we need to reverse the successors in order
10653         // to implement FCMP_OEQ.
10654         if (User->getOpcode() == ISD::BR) {
10655           SDValue FalseBB = User->getOperand(1);
10656           SDNode *NewBR =
10657             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10658           assert(NewBR == User);
10659           (void)NewBR;
10660           Dest = FalseBB;
10661
10662           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10663                                     Cond.getOperand(0), Cond.getOperand(1));
10664           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10665           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10666           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10667                               Chain, Dest, CC, Cmp);
10668           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10669           Cond = Cmp;
10670           addTest = false;
10671         }
10672       }
10673     } else if (Cond.getOpcode() == ISD::SETCC &&
10674                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10675       // For FCMP_UNE, we can emit
10676       // two branches instead of an explicit AND instruction with a
10677       // separate test. However, we only do this if this block doesn't
10678       // have a fall-through edge, because this requires an explicit
10679       // jmp when the condition is false.
10680       if (Op.getNode()->hasOneUse()) {
10681         SDNode *User = *Op.getNode()->use_begin();
10682         // Look for an unconditional branch following this conditional branch.
10683         // We need this because we need to reverse the successors in order
10684         // to implement FCMP_UNE.
10685         if (User->getOpcode() == ISD::BR) {
10686           SDValue FalseBB = User->getOperand(1);
10687           SDNode *NewBR =
10688             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10689           assert(NewBR == User);
10690           (void)NewBR;
10691
10692           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10693                                     Cond.getOperand(0), Cond.getOperand(1));
10694           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10695           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10696           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10697                               Chain, Dest, CC, Cmp);
10698           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10699           Cond = Cmp;
10700           addTest = false;
10701           Dest = FalseBB;
10702         }
10703       }
10704     }
10705   }
10706
10707   if (addTest) {
10708     // Look pass the truncate if the high bits are known zero.
10709     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10710         Cond = Cond.getOperand(0);
10711
10712     // We know the result of AND is compared against zero. Try to match
10713     // it to BT.
10714     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10715       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10716       if (NewSetCC.getNode()) {
10717         CC = NewSetCC.getOperand(0);
10718         Cond = NewSetCC.getOperand(1);
10719         addTest = false;
10720       }
10721     }
10722   }
10723
10724   if (addTest) {
10725     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10726     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10727   }
10728   Cond = ConvertCmpIfNecessary(Cond, DAG);
10729   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10730                      Chain, Dest, CC, Cond);
10731 }
10732
10733 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10734 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10735 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10736 // that the guard pages used by the OS virtual memory manager are allocated in
10737 // correct sequence.
10738 SDValue
10739 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10740                                            SelectionDAG &DAG) const {
10741   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10742           getTargetMachine().Options.EnableSegmentedStacks) &&
10743          "This should be used only on Windows targets or when segmented stacks "
10744          "are being used");
10745   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10746   SDLoc dl(Op);
10747
10748   // Get the inputs.
10749   SDValue Chain = Op.getOperand(0);
10750   SDValue Size  = Op.getOperand(1);
10751   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10752   EVT VT = Op.getNode()->getValueType(0);
10753
10754   bool Is64Bit = Subtarget->is64Bit();
10755   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10756
10757   if (getTargetMachine().Options.EnableSegmentedStacks) {
10758     MachineFunction &MF = DAG.getMachineFunction();
10759     MachineRegisterInfo &MRI = MF.getRegInfo();
10760
10761     if (Is64Bit) {
10762       // The 64 bit implementation of segmented stacks needs to clobber both r10
10763       // r11. This makes it impossible to use it along with nested parameters.
10764       const Function *F = MF.getFunction();
10765
10766       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10767            I != E; ++I)
10768         if (I->hasNestAttr())
10769           report_fatal_error("Cannot use segmented stacks with functions that "
10770                              "have nested arguments.");
10771     }
10772
10773     const TargetRegisterClass *AddrRegClass =
10774       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10775     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10776     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10777     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10778                                 DAG.getRegister(Vreg, SPTy));
10779     SDValue Ops1[2] = { Value, Chain };
10780     return DAG.getMergeValues(Ops1, 2, dl);
10781   } else {
10782     SDValue Flag;
10783     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10784
10785     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10786     Flag = Chain.getValue(1);
10787     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10788
10789     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10790
10791     const X86RegisterInfo *RegInfo =
10792       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10793     unsigned SPReg = RegInfo->getStackRegister();
10794     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10795     Chain = SP.getValue(1);
10796
10797     if (Align) {
10798       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10799                        DAG.getConstant(-(uint64_t)Align, VT));
10800       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10801     }
10802
10803     SDValue Ops1[2] = { SP, Chain };
10804     return DAG.getMergeValues(Ops1, 2, dl);
10805   }
10806 }
10807
10808 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10809   MachineFunction &MF = DAG.getMachineFunction();
10810   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10811
10812   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10813   SDLoc DL(Op);
10814
10815   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10816     // vastart just stores the address of the VarArgsFrameIndex slot into the
10817     // memory location argument.
10818     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10819                                    getPointerTy());
10820     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10821                         MachinePointerInfo(SV), false, false, 0);
10822   }
10823
10824   // __va_list_tag:
10825   //   gp_offset         (0 - 6 * 8)
10826   //   fp_offset         (48 - 48 + 8 * 16)
10827   //   overflow_arg_area (point to parameters coming in memory).
10828   //   reg_save_area
10829   SmallVector<SDValue, 8> MemOps;
10830   SDValue FIN = Op.getOperand(1);
10831   // Store gp_offset
10832   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10833                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10834                                                MVT::i32),
10835                                FIN, MachinePointerInfo(SV), false, false, 0);
10836   MemOps.push_back(Store);
10837
10838   // Store fp_offset
10839   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10840                     FIN, DAG.getIntPtrConstant(4));
10841   Store = DAG.getStore(Op.getOperand(0), DL,
10842                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10843                                        MVT::i32),
10844                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10845   MemOps.push_back(Store);
10846
10847   // Store ptr to overflow_arg_area
10848   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10849                     FIN, DAG.getIntPtrConstant(4));
10850   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10851                                     getPointerTy());
10852   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10853                        MachinePointerInfo(SV, 8),
10854                        false, false, 0);
10855   MemOps.push_back(Store);
10856
10857   // Store ptr to reg_save_area.
10858   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10859                     FIN, DAG.getIntPtrConstant(8));
10860   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10861                                     getPointerTy());
10862   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10863                        MachinePointerInfo(SV, 16), false, false, 0);
10864   MemOps.push_back(Store);
10865   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10866                      &MemOps[0], MemOps.size());
10867 }
10868
10869 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10870   assert(Subtarget->is64Bit() &&
10871          "LowerVAARG only handles 64-bit va_arg!");
10872   assert((Subtarget->isTargetLinux() ||
10873           Subtarget->isTargetDarwin()) &&
10874           "Unhandled target in LowerVAARG");
10875   assert(Op.getNode()->getNumOperands() == 4);
10876   SDValue Chain = Op.getOperand(0);
10877   SDValue SrcPtr = Op.getOperand(1);
10878   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10879   unsigned Align = Op.getConstantOperandVal(3);
10880   SDLoc dl(Op);
10881
10882   EVT ArgVT = Op.getNode()->getValueType(0);
10883   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10884   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10885   uint8_t ArgMode;
10886
10887   // Decide which area this value should be read from.
10888   // TODO: Implement the AMD64 ABI in its entirety. This simple
10889   // selection mechanism works only for the basic types.
10890   if (ArgVT == MVT::f80) {
10891     llvm_unreachable("va_arg for f80 not yet implemented");
10892   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10893     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10894   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10895     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10896   } else {
10897     llvm_unreachable("Unhandled argument type in LowerVAARG");
10898   }
10899
10900   if (ArgMode == 2) {
10901     // Sanity Check: Make sure using fp_offset makes sense.
10902     assert(!getTargetMachine().Options.UseSoftFloat &&
10903            !(DAG.getMachineFunction()
10904                 .getFunction()->getAttributes()
10905                 .hasAttribute(AttributeSet::FunctionIndex,
10906                               Attribute::NoImplicitFloat)) &&
10907            Subtarget->hasSSE1());
10908   }
10909
10910   // Insert VAARG_64 node into the DAG
10911   // VAARG_64 returns two values: Variable Argument Address, Chain
10912   SmallVector<SDValue, 11> InstOps;
10913   InstOps.push_back(Chain);
10914   InstOps.push_back(SrcPtr);
10915   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10916   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10917   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10918   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10919   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10920                                           VTs, &InstOps[0], InstOps.size(),
10921                                           MVT::i64,
10922                                           MachinePointerInfo(SV),
10923                                           /*Align=*/0,
10924                                           /*Volatile=*/false,
10925                                           /*ReadMem=*/true,
10926                                           /*WriteMem=*/true);
10927   Chain = VAARG.getValue(1);
10928
10929   // Load the next argument and return it
10930   return DAG.getLoad(ArgVT, dl,
10931                      Chain,
10932                      VAARG,
10933                      MachinePointerInfo(),
10934                      false, false, false, 0);
10935 }
10936
10937 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10938                            SelectionDAG &DAG) {
10939   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10940   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10941   SDValue Chain = Op.getOperand(0);
10942   SDValue DstPtr = Op.getOperand(1);
10943   SDValue SrcPtr = Op.getOperand(2);
10944   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10945   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10946   SDLoc DL(Op);
10947
10948   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10949                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10950                        false,
10951                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10952 }
10953
10954 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10955 // may or may not be a constant. Takes immediate version of shift as input.
10956 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10957                                    SDValue SrcOp, SDValue ShAmt,
10958                                    SelectionDAG &DAG) {
10959   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10960
10961   if (isa<ConstantSDNode>(ShAmt)) {
10962     // Constant may be a TargetConstant. Use a regular constant.
10963     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
10964     switch (Opc) {
10965       default: llvm_unreachable("Unknown target vector shift node");
10966       case X86ISD::VSHLI:
10967       case X86ISD::VSRLI:
10968       case X86ISD::VSRAI:
10969         return DAG.getNode(Opc, dl, VT, SrcOp,
10970                            DAG.getConstant(ShiftAmt, MVT::i32));
10971     }
10972   }
10973
10974   // Change opcode to non-immediate version
10975   switch (Opc) {
10976     default: llvm_unreachable("Unknown target vector shift node");
10977     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10978     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10979     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10980   }
10981
10982   // Need to build a vector containing shift amount
10983   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10984   SDValue ShOps[4];
10985   ShOps[0] = ShAmt;
10986   ShOps[1] = DAG.getConstant(0, MVT::i32);
10987   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10988   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10989
10990   // The return type has to be a 128-bit type with the same element
10991   // type as the input type.
10992   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10993   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10994
10995   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
10996   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10997 }
10998
10999 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11000   SDLoc dl(Op);
11001   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11002   switch (IntNo) {
11003   default: return SDValue();    // Don't custom lower most intrinsics.
11004   // Comparison intrinsics.
11005   case Intrinsic::x86_sse_comieq_ss:
11006   case Intrinsic::x86_sse_comilt_ss:
11007   case Intrinsic::x86_sse_comile_ss:
11008   case Intrinsic::x86_sse_comigt_ss:
11009   case Intrinsic::x86_sse_comige_ss:
11010   case Intrinsic::x86_sse_comineq_ss:
11011   case Intrinsic::x86_sse_ucomieq_ss:
11012   case Intrinsic::x86_sse_ucomilt_ss:
11013   case Intrinsic::x86_sse_ucomile_ss:
11014   case Intrinsic::x86_sse_ucomigt_ss:
11015   case Intrinsic::x86_sse_ucomige_ss:
11016   case Intrinsic::x86_sse_ucomineq_ss:
11017   case Intrinsic::x86_sse2_comieq_sd:
11018   case Intrinsic::x86_sse2_comilt_sd:
11019   case Intrinsic::x86_sse2_comile_sd:
11020   case Intrinsic::x86_sse2_comigt_sd:
11021   case Intrinsic::x86_sse2_comige_sd:
11022   case Intrinsic::x86_sse2_comineq_sd:
11023   case Intrinsic::x86_sse2_ucomieq_sd:
11024   case Intrinsic::x86_sse2_ucomilt_sd:
11025   case Intrinsic::x86_sse2_ucomile_sd:
11026   case Intrinsic::x86_sse2_ucomigt_sd:
11027   case Intrinsic::x86_sse2_ucomige_sd:
11028   case Intrinsic::x86_sse2_ucomineq_sd: {
11029     unsigned Opc;
11030     ISD::CondCode CC;
11031     switch (IntNo) {
11032     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11033     case Intrinsic::x86_sse_comieq_ss:
11034     case Intrinsic::x86_sse2_comieq_sd:
11035       Opc = X86ISD::COMI;
11036       CC = ISD::SETEQ;
11037       break;
11038     case Intrinsic::x86_sse_comilt_ss:
11039     case Intrinsic::x86_sse2_comilt_sd:
11040       Opc = X86ISD::COMI;
11041       CC = ISD::SETLT;
11042       break;
11043     case Intrinsic::x86_sse_comile_ss:
11044     case Intrinsic::x86_sse2_comile_sd:
11045       Opc = X86ISD::COMI;
11046       CC = ISD::SETLE;
11047       break;
11048     case Intrinsic::x86_sse_comigt_ss:
11049     case Intrinsic::x86_sse2_comigt_sd:
11050       Opc = X86ISD::COMI;
11051       CC = ISD::SETGT;
11052       break;
11053     case Intrinsic::x86_sse_comige_ss:
11054     case Intrinsic::x86_sse2_comige_sd:
11055       Opc = X86ISD::COMI;
11056       CC = ISD::SETGE;
11057       break;
11058     case Intrinsic::x86_sse_comineq_ss:
11059     case Intrinsic::x86_sse2_comineq_sd:
11060       Opc = X86ISD::COMI;
11061       CC = ISD::SETNE;
11062       break;
11063     case Intrinsic::x86_sse_ucomieq_ss:
11064     case Intrinsic::x86_sse2_ucomieq_sd:
11065       Opc = X86ISD::UCOMI;
11066       CC = ISD::SETEQ;
11067       break;
11068     case Intrinsic::x86_sse_ucomilt_ss:
11069     case Intrinsic::x86_sse2_ucomilt_sd:
11070       Opc = X86ISD::UCOMI;
11071       CC = ISD::SETLT;
11072       break;
11073     case Intrinsic::x86_sse_ucomile_ss:
11074     case Intrinsic::x86_sse2_ucomile_sd:
11075       Opc = X86ISD::UCOMI;
11076       CC = ISD::SETLE;
11077       break;
11078     case Intrinsic::x86_sse_ucomigt_ss:
11079     case Intrinsic::x86_sse2_ucomigt_sd:
11080       Opc = X86ISD::UCOMI;
11081       CC = ISD::SETGT;
11082       break;
11083     case Intrinsic::x86_sse_ucomige_ss:
11084     case Intrinsic::x86_sse2_ucomige_sd:
11085       Opc = X86ISD::UCOMI;
11086       CC = ISD::SETGE;
11087       break;
11088     case Intrinsic::x86_sse_ucomineq_ss:
11089     case Intrinsic::x86_sse2_ucomineq_sd:
11090       Opc = X86ISD::UCOMI;
11091       CC = ISD::SETNE;
11092       break;
11093     }
11094
11095     SDValue LHS = Op.getOperand(1);
11096     SDValue RHS = Op.getOperand(2);
11097     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11098     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11099     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11100     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11101                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11102     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11103   }
11104
11105   // Arithmetic intrinsics.
11106   case Intrinsic::x86_sse2_pmulu_dq:
11107   case Intrinsic::x86_avx2_pmulu_dq:
11108     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11109                        Op.getOperand(1), Op.getOperand(2));
11110
11111   // SSE2/AVX2 sub with unsigned saturation intrinsics
11112   case Intrinsic::x86_sse2_psubus_b:
11113   case Intrinsic::x86_sse2_psubus_w:
11114   case Intrinsic::x86_avx2_psubus_b:
11115   case Intrinsic::x86_avx2_psubus_w:
11116     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11117                        Op.getOperand(1), Op.getOperand(2));
11118
11119   // SSE3/AVX horizontal add/sub intrinsics
11120   case Intrinsic::x86_sse3_hadd_ps:
11121   case Intrinsic::x86_sse3_hadd_pd:
11122   case Intrinsic::x86_avx_hadd_ps_256:
11123   case Intrinsic::x86_avx_hadd_pd_256:
11124   case Intrinsic::x86_sse3_hsub_ps:
11125   case Intrinsic::x86_sse3_hsub_pd:
11126   case Intrinsic::x86_avx_hsub_ps_256:
11127   case Intrinsic::x86_avx_hsub_pd_256:
11128   case Intrinsic::x86_ssse3_phadd_w_128:
11129   case Intrinsic::x86_ssse3_phadd_d_128:
11130   case Intrinsic::x86_avx2_phadd_w:
11131   case Intrinsic::x86_avx2_phadd_d:
11132   case Intrinsic::x86_ssse3_phsub_w_128:
11133   case Intrinsic::x86_ssse3_phsub_d_128:
11134   case Intrinsic::x86_avx2_phsub_w:
11135   case Intrinsic::x86_avx2_phsub_d: {
11136     unsigned Opcode;
11137     switch (IntNo) {
11138     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11139     case Intrinsic::x86_sse3_hadd_ps:
11140     case Intrinsic::x86_sse3_hadd_pd:
11141     case Intrinsic::x86_avx_hadd_ps_256:
11142     case Intrinsic::x86_avx_hadd_pd_256:
11143       Opcode = X86ISD::FHADD;
11144       break;
11145     case Intrinsic::x86_sse3_hsub_ps:
11146     case Intrinsic::x86_sse3_hsub_pd:
11147     case Intrinsic::x86_avx_hsub_ps_256:
11148     case Intrinsic::x86_avx_hsub_pd_256:
11149       Opcode = X86ISD::FHSUB;
11150       break;
11151     case Intrinsic::x86_ssse3_phadd_w_128:
11152     case Intrinsic::x86_ssse3_phadd_d_128:
11153     case Intrinsic::x86_avx2_phadd_w:
11154     case Intrinsic::x86_avx2_phadd_d:
11155       Opcode = X86ISD::HADD;
11156       break;
11157     case Intrinsic::x86_ssse3_phsub_w_128:
11158     case Intrinsic::x86_ssse3_phsub_d_128:
11159     case Intrinsic::x86_avx2_phsub_w:
11160     case Intrinsic::x86_avx2_phsub_d:
11161       Opcode = X86ISD::HSUB;
11162       break;
11163     }
11164     return DAG.getNode(Opcode, dl, Op.getValueType(),
11165                        Op.getOperand(1), Op.getOperand(2));
11166   }
11167
11168   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11169   case Intrinsic::x86_sse2_pmaxu_b:
11170   case Intrinsic::x86_sse41_pmaxuw:
11171   case Intrinsic::x86_sse41_pmaxud:
11172   case Intrinsic::x86_avx2_pmaxu_b:
11173   case Intrinsic::x86_avx2_pmaxu_w:
11174   case Intrinsic::x86_avx2_pmaxu_d:
11175   case Intrinsic::x86_sse2_pminu_b:
11176   case Intrinsic::x86_sse41_pminuw:
11177   case Intrinsic::x86_sse41_pminud:
11178   case Intrinsic::x86_avx2_pminu_b:
11179   case Intrinsic::x86_avx2_pminu_w:
11180   case Intrinsic::x86_avx2_pminu_d:
11181   case Intrinsic::x86_sse41_pmaxsb:
11182   case Intrinsic::x86_sse2_pmaxs_w:
11183   case Intrinsic::x86_sse41_pmaxsd:
11184   case Intrinsic::x86_avx2_pmaxs_b:
11185   case Intrinsic::x86_avx2_pmaxs_w:
11186   case Intrinsic::x86_avx2_pmaxs_d:
11187   case Intrinsic::x86_sse41_pminsb:
11188   case Intrinsic::x86_sse2_pmins_w:
11189   case Intrinsic::x86_sse41_pminsd:
11190   case Intrinsic::x86_avx2_pmins_b:
11191   case Intrinsic::x86_avx2_pmins_w:
11192   case Intrinsic::x86_avx2_pmins_d: {
11193     unsigned Opcode;
11194     switch (IntNo) {
11195     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11196     case Intrinsic::x86_sse2_pmaxu_b:
11197     case Intrinsic::x86_sse41_pmaxuw:
11198     case Intrinsic::x86_sse41_pmaxud:
11199     case Intrinsic::x86_avx2_pmaxu_b:
11200     case Intrinsic::x86_avx2_pmaxu_w:
11201     case Intrinsic::x86_avx2_pmaxu_d:
11202       Opcode = X86ISD::UMAX;
11203       break;
11204     case Intrinsic::x86_sse2_pminu_b:
11205     case Intrinsic::x86_sse41_pminuw:
11206     case Intrinsic::x86_sse41_pminud:
11207     case Intrinsic::x86_avx2_pminu_b:
11208     case Intrinsic::x86_avx2_pminu_w:
11209     case Intrinsic::x86_avx2_pminu_d:
11210       Opcode = X86ISD::UMIN;
11211       break;
11212     case Intrinsic::x86_sse41_pmaxsb:
11213     case Intrinsic::x86_sse2_pmaxs_w:
11214     case Intrinsic::x86_sse41_pmaxsd:
11215     case Intrinsic::x86_avx2_pmaxs_b:
11216     case Intrinsic::x86_avx2_pmaxs_w:
11217     case Intrinsic::x86_avx2_pmaxs_d:
11218       Opcode = X86ISD::SMAX;
11219       break;
11220     case Intrinsic::x86_sse41_pminsb:
11221     case Intrinsic::x86_sse2_pmins_w:
11222     case Intrinsic::x86_sse41_pminsd:
11223     case Intrinsic::x86_avx2_pmins_b:
11224     case Intrinsic::x86_avx2_pmins_w:
11225     case Intrinsic::x86_avx2_pmins_d:
11226       Opcode = X86ISD::SMIN;
11227       break;
11228     }
11229     return DAG.getNode(Opcode, dl, Op.getValueType(),
11230                        Op.getOperand(1), Op.getOperand(2));
11231   }
11232
11233   // SSE/SSE2/AVX floating point max/min intrinsics.
11234   case Intrinsic::x86_sse_max_ps:
11235   case Intrinsic::x86_sse2_max_pd:
11236   case Intrinsic::x86_avx_max_ps_256:
11237   case Intrinsic::x86_avx_max_pd_256:
11238   case Intrinsic::x86_avx512_max_ps_512:
11239   case Intrinsic::x86_avx512_max_pd_512:
11240   case Intrinsic::x86_sse_min_ps:
11241   case Intrinsic::x86_sse2_min_pd:
11242   case Intrinsic::x86_avx_min_ps_256:
11243   case Intrinsic::x86_avx_min_pd_256:
11244   case Intrinsic::x86_avx512_min_ps_512:
11245   case Intrinsic::x86_avx512_min_pd_512:  {
11246     unsigned Opcode;
11247     switch (IntNo) {
11248     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11249     case Intrinsic::x86_sse_max_ps:
11250     case Intrinsic::x86_sse2_max_pd:
11251     case Intrinsic::x86_avx_max_ps_256:
11252     case Intrinsic::x86_avx_max_pd_256:
11253     case Intrinsic::x86_avx512_max_ps_512:
11254     case Intrinsic::x86_avx512_max_pd_512:
11255       Opcode = X86ISD::FMAX;
11256       break;
11257     case Intrinsic::x86_sse_min_ps:
11258     case Intrinsic::x86_sse2_min_pd:
11259     case Intrinsic::x86_avx_min_ps_256:
11260     case Intrinsic::x86_avx_min_pd_256:
11261     case Intrinsic::x86_avx512_min_ps_512:
11262     case Intrinsic::x86_avx512_min_pd_512:
11263       Opcode = X86ISD::FMIN;
11264       break;
11265     }
11266     return DAG.getNode(Opcode, dl, Op.getValueType(),
11267                        Op.getOperand(1), Op.getOperand(2));
11268   }
11269
11270   // AVX2 variable shift intrinsics
11271   case Intrinsic::x86_avx2_psllv_d:
11272   case Intrinsic::x86_avx2_psllv_q:
11273   case Intrinsic::x86_avx2_psllv_d_256:
11274   case Intrinsic::x86_avx2_psllv_q_256:
11275   case Intrinsic::x86_avx2_psrlv_d:
11276   case Intrinsic::x86_avx2_psrlv_q:
11277   case Intrinsic::x86_avx2_psrlv_d_256:
11278   case Intrinsic::x86_avx2_psrlv_q_256:
11279   case Intrinsic::x86_avx2_psrav_d:
11280   case Intrinsic::x86_avx2_psrav_d_256: {
11281     unsigned Opcode;
11282     switch (IntNo) {
11283     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11284     case Intrinsic::x86_avx2_psllv_d:
11285     case Intrinsic::x86_avx2_psllv_q:
11286     case Intrinsic::x86_avx2_psllv_d_256:
11287     case Intrinsic::x86_avx2_psllv_q_256:
11288       Opcode = ISD::SHL;
11289       break;
11290     case Intrinsic::x86_avx2_psrlv_d:
11291     case Intrinsic::x86_avx2_psrlv_q:
11292     case Intrinsic::x86_avx2_psrlv_d_256:
11293     case Intrinsic::x86_avx2_psrlv_q_256:
11294       Opcode = ISD::SRL;
11295       break;
11296     case Intrinsic::x86_avx2_psrav_d:
11297     case Intrinsic::x86_avx2_psrav_d_256:
11298       Opcode = ISD::SRA;
11299       break;
11300     }
11301     return DAG.getNode(Opcode, dl, Op.getValueType(),
11302                        Op.getOperand(1), Op.getOperand(2));
11303   }
11304
11305   case Intrinsic::x86_ssse3_pshuf_b_128:
11306   case Intrinsic::x86_avx2_pshuf_b:
11307     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11308                        Op.getOperand(1), Op.getOperand(2));
11309
11310   case Intrinsic::x86_ssse3_psign_b_128:
11311   case Intrinsic::x86_ssse3_psign_w_128:
11312   case Intrinsic::x86_ssse3_psign_d_128:
11313   case Intrinsic::x86_avx2_psign_b:
11314   case Intrinsic::x86_avx2_psign_w:
11315   case Intrinsic::x86_avx2_psign_d:
11316     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11317                        Op.getOperand(1), Op.getOperand(2));
11318
11319   case Intrinsic::x86_sse41_insertps:
11320     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11321                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11322
11323   case Intrinsic::x86_avx_vperm2f128_ps_256:
11324   case Intrinsic::x86_avx_vperm2f128_pd_256:
11325   case Intrinsic::x86_avx_vperm2f128_si_256:
11326   case Intrinsic::x86_avx2_vperm2i128:
11327     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11328                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11329
11330   case Intrinsic::x86_avx2_permd:
11331   case Intrinsic::x86_avx2_permps:
11332     // Operands intentionally swapped. Mask is last operand to intrinsic,
11333     // but second operand for node/instruction.
11334     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11335                        Op.getOperand(2), Op.getOperand(1));
11336
11337   case Intrinsic::x86_sse_sqrt_ps:
11338   case Intrinsic::x86_sse2_sqrt_pd:
11339   case Intrinsic::x86_avx_sqrt_ps_256:
11340   case Intrinsic::x86_avx_sqrt_pd_256:
11341     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11342
11343   // ptest and testp intrinsics. The intrinsic these come from are designed to
11344   // return an integer value, not just an instruction so lower it to the ptest
11345   // or testp pattern and a setcc for the result.
11346   case Intrinsic::x86_sse41_ptestz:
11347   case Intrinsic::x86_sse41_ptestc:
11348   case Intrinsic::x86_sse41_ptestnzc:
11349   case Intrinsic::x86_avx_ptestz_256:
11350   case Intrinsic::x86_avx_ptestc_256:
11351   case Intrinsic::x86_avx_ptestnzc_256:
11352   case Intrinsic::x86_avx_vtestz_ps:
11353   case Intrinsic::x86_avx_vtestc_ps:
11354   case Intrinsic::x86_avx_vtestnzc_ps:
11355   case Intrinsic::x86_avx_vtestz_pd:
11356   case Intrinsic::x86_avx_vtestc_pd:
11357   case Intrinsic::x86_avx_vtestnzc_pd:
11358   case Intrinsic::x86_avx_vtestz_ps_256:
11359   case Intrinsic::x86_avx_vtestc_ps_256:
11360   case Intrinsic::x86_avx_vtestnzc_ps_256:
11361   case Intrinsic::x86_avx_vtestz_pd_256:
11362   case Intrinsic::x86_avx_vtestc_pd_256:
11363   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11364     bool IsTestPacked = false;
11365     unsigned X86CC;
11366     switch (IntNo) {
11367     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11368     case Intrinsic::x86_avx_vtestz_ps:
11369     case Intrinsic::x86_avx_vtestz_pd:
11370     case Intrinsic::x86_avx_vtestz_ps_256:
11371     case Intrinsic::x86_avx_vtestz_pd_256:
11372       IsTestPacked = true; // Fallthrough
11373     case Intrinsic::x86_sse41_ptestz:
11374     case Intrinsic::x86_avx_ptestz_256:
11375       // ZF = 1
11376       X86CC = X86::COND_E;
11377       break;
11378     case Intrinsic::x86_avx_vtestc_ps:
11379     case Intrinsic::x86_avx_vtestc_pd:
11380     case Intrinsic::x86_avx_vtestc_ps_256:
11381     case Intrinsic::x86_avx_vtestc_pd_256:
11382       IsTestPacked = true; // Fallthrough
11383     case Intrinsic::x86_sse41_ptestc:
11384     case Intrinsic::x86_avx_ptestc_256:
11385       // CF = 1
11386       X86CC = X86::COND_B;
11387       break;
11388     case Intrinsic::x86_avx_vtestnzc_ps:
11389     case Intrinsic::x86_avx_vtestnzc_pd:
11390     case Intrinsic::x86_avx_vtestnzc_ps_256:
11391     case Intrinsic::x86_avx_vtestnzc_pd_256:
11392       IsTestPacked = true; // Fallthrough
11393     case Intrinsic::x86_sse41_ptestnzc:
11394     case Intrinsic::x86_avx_ptestnzc_256:
11395       // ZF and CF = 0
11396       X86CC = X86::COND_A;
11397       break;
11398     }
11399
11400     SDValue LHS = Op.getOperand(1);
11401     SDValue RHS = Op.getOperand(2);
11402     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11403     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11404     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11405     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11406     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11407   }
11408   case Intrinsic::x86_avx512_kortestz:
11409   case Intrinsic::x86_avx512_kortestc: {
11410     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11411     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11412     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11413     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11414     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11415     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11416     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11417   }
11418
11419   // SSE/AVX shift intrinsics
11420   case Intrinsic::x86_sse2_psll_w:
11421   case Intrinsic::x86_sse2_psll_d:
11422   case Intrinsic::x86_sse2_psll_q:
11423   case Intrinsic::x86_avx2_psll_w:
11424   case Intrinsic::x86_avx2_psll_d:
11425   case Intrinsic::x86_avx2_psll_q:
11426   case Intrinsic::x86_sse2_psrl_w:
11427   case Intrinsic::x86_sse2_psrl_d:
11428   case Intrinsic::x86_sse2_psrl_q:
11429   case Intrinsic::x86_avx2_psrl_w:
11430   case Intrinsic::x86_avx2_psrl_d:
11431   case Intrinsic::x86_avx2_psrl_q:
11432   case Intrinsic::x86_sse2_psra_w:
11433   case Intrinsic::x86_sse2_psra_d:
11434   case Intrinsic::x86_avx2_psra_w:
11435   case Intrinsic::x86_avx2_psra_d: {
11436     unsigned Opcode;
11437     switch (IntNo) {
11438     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11439     case Intrinsic::x86_sse2_psll_w:
11440     case Intrinsic::x86_sse2_psll_d:
11441     case Intrinsic::x86_sse2_psll_q:
11442     case Intrinsic::x86_avx2_psll_w:
11443     case Intrinsic::x86_avx2_psll_d:
11444     case Intrinsic::x86_avx2_psll_q:
11445       Opcode = X86ISD::VSHL;
11446       break;
11447     case Intrinsic::x86_sse2_psrl_w:
11448     case Intrinsic::x86_sse2_psrl_d:
11449     case Intrinsic::x86_sse2_psrl_q:
11450     case Intrinsic::x86_avx2_psrl_w:
11451     case Intrinsic::x86_avx2_psrl_d:
11452     case Intrinsic::x86_avx2_psrl_q:
11453       Opcode = X86ISD::VSRL;
11454       break;
11455     case Intrinsic::x86_sse2_psra_w:
11456     case Intrinsic::x86_sse2_psra_d:
11457     case Intrinsic::x86_avx2_psra_w:
11458     case Intrinsic::x86_avx2_psra_d:
11459       Opcode = X86ISD::VSRA;
11460       break;
11461     }
11462     return DAG.getNode(Opcode, dl, Op.getValueType(),
11463                        Op.getOperand(1), Op.getOperand(2));
11464   }
11465
11466   // SSE/AVX immediate shift intrinsics
11467   case Intrinsic::x86_sse2_pslli_w:
11468   case Intrinsic::x86_sse2_pslli_d:
11469   case Intrinsic::x86_sse2_pslli_q:
11470   case Intrinsic::x86_avx2_pslli_w:
11471   case Intrinsic::x86_avx2_pslli_d:
11472   case Intrinsic::x86_avx2_pslli_q:
11473   case Intrinsic::x86_sse2_psrli_w:
11474   case Intrinsic::x86_sse2_psrli_d:
11475   case Intrinsic::x86_sse2_psrli_q:
11476   case Intrinsic::x86_avx2_psrli_w:
11477   case Intrinsic::x86_avx2_psrli_d:
11478   case Intrinsic::x86_avx2_psrli_q:
11479   case Intrinsic::x86_sse2_psrai_w:
11480   case Intrinsic::x86_sse2_psrai_d:
11481   case Intrinsic::x86_avx2_psrai_w:
11482   case Intrinsic::x86_avx2_psrai_d: {
11483     unsigned Opcode;
11484     switch (IntNo) {
11485     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11486     case Intrinsic::x86_sse2_pslli_w:
11487     case Intrinsic::x86_sse2_pslli_d:
11488     case Intrinsic::x86_sse2_pslli_q:
11489     case Intrinsic::x86_avx2_pslli_w:
11490     case Intrinsic::x86_avx2_pslli_d:
11491     case Intrinsic::x86_avx2_pslli_q:
11492       Opcode = X86ISD::VSHLI;
11493       break;
11494     case Intrinsic::x86_sse2_psrli_w:
11495     case Intrinsic::x86_sse2_psrli_d:
11496     case Intrinsic::x86_sse2_psrli_q:
11497     case Intrinsic::x86_avx2_psrli_w:
11498     case Intrinsic::x86_avx2_psrli_d:
11499     case Intrinsic::x86_avx2_psrli_q:
11500       Opcode = X86ISD::VSRLI;
11501       break;
11502     case Intrinsic::x86_sse2_psrai_w:
11503     case Intrinsic::x86_sse2_psrai_d:
11504     case Intrinsic::x86_avx2_psrai_w:
11505     case Intrinsic::x86_avx2_psrai_d:
11506       Opcode = X86ISD::VSRAI;
11507       break;
11508     }
11509     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11510                                Op.getOperand(1), Op.getOperand(2), DAG);
11511   }
11512
11513   case Intrinsic::x86_sse42_pcmpistria128:
11514   case Intrinsic::x86_sse42_pcmpestria128:
11515   case Intrinsic::x86_sse42_pcmpistric128:
11516   case Intrinsic::x86_sse42_pcmpestric128:
11517   case Intrinsic::x86_sse42_pcmpistrio128:
11518   case Intrinsic::x86_sse42_pcmpestrio128:
11519   case Intrinsic::x86_sse42_pcmpistris128:
11520   case Intrinsic::x86_sse42_pcmpestris128:
11521   case Intrinsic::x86_sse42_pcmpistriz128:
11522   case Intrinsic::x86_sse42_pcmpestriz128: {
11523     unsigned Opcode;
11524     unsigned X86CC;
11525     switch (IntNo) {
11526     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11527     case Intrinsic::x86_sse42_pcmpistria128:
11528       Opcode = X86ISD::PCMPISTRI;
11529       X86CC = X86::COND_A;
11530       break;
11531     case Intrinsic::x86_sse42_pcmpestria128:
11532       Opcode = X86ISD::PCMPESTRI;
11533       X86CC = X86::COND_A;
11534       break;
11535     case Intrinsic::x86_sse42_pcmpistric128:
11536       Opcode = X86ISD::PCMPISTRI;
11537       X86CC = X86::COND_B;
11538       break;
11539     case Intrinsic::x86_sse42_pcmpestric128:
11540       Opcode = X86ISD::PCMPESTRI;
11541       X86CC = X86::COND_B;
11542       break;
11543     case Intrinsic::x86_sse42_pcmpistrio128:
11544       Opcode = X86ISD::PCMPISTRI;
11545       X86CC = X86::COND_O;
11546       break;
11547     case Intrinsic::x86_sse42_pcmpestrio128:
11548       Opcode = X86ISD::PCMPESTRI;
11549       X86CC = X86::COND_O;
11550       break;
11551     case Intrinsic::x86_sse42_pcmpistris128:
11552       Opcode = X86ISD::PCMPISTRI;
11553       X86CC = X86::COND_S;
11554       break;
11555     case Intrinsic::x86_sse42_pcmpestris128:
11556       Opcode = X86ISD::PCMPESTRI;
11557       X86CC = X86::COND_S;
11558       break;
11559     case Intrinsic::x86_sse42_pcmpistriz128:
11560       Opcode = X86ISD::PCMPISTRI;
11561       X86CC = X86::COND_E;
11562       break;
11563     case Intrinsic::x86_sse42_pcmpestriz128:
11564       Opcode = X86ISD::PCMPESTRI;
11565       X86CC = X86::COND_E;
11566       break;
11567     }
11568     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11569     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11570     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11571     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11572                                 DAG.getConstant(X86CC, MVT::i8),
11573                                 SDValue(PCMP.getNode(), 1));
11574     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11575   }
11576
11577   case Intrinsic::x86_sse42_pcmpistri128:
11578   case Intrinsic::x86_sse42_pcmpestri128: {
11579     unsigned Opcode;
11580     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11581       Opcode = X86ISD::PCMPISTRI;
11582     else
11583       Opcode = X86ISD::PCMPESTRI;
11584
11585     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11586     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11587     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11588   }
11589   case Intrinsic::x86_fma_vfmadd_ps:
11590   case Intrinsic::x86_fma_vfmadd_pd:
11591   case Intrinsic::x86_fma_vfmsub_ps:
11592   case Intrinsic::x86_fma_vfmsub_pd:
11593   case Intrinsic::x86_fma_vfnmadd_ps:
11594   case Intrinsic::x86_fma_vfnmadd_pd:
11595   case Intrinsic::x86_fma_vfnmsub_ps:
11596   case Intrinsic::x86_fma_vfnmsub_pd:
11597   case Intrinsic::x86_fma_vfmaddsub_ps:
11598   case Intrinsic::x86_fma_vfmaddsub_pd:
11599   case Intrinsic::x86_fma_vfmsubadd_ps:
11600   case Intrinsic::x86_fma_vfmsubadd_pd:
11601   case Intrinsic::x86_fma_vfmadd_ps_256:
11602   case Intrinsic::x86_fma_vfmadd_pd_256:
11603   case Intrinsic::x86_fma_vfmsub_ps_256:
11604   case Intrinsic::x86_fma_vfmsub_pd_256:
11605   case Intrinsic::x86_fma_vfnmadd_ps_256:
11606   case Intrinsic::x86_fma_vfnmadd_pd_256:
11607   case Intrinsic::x86_fma_vfnmsub_ps_256:
11608   case Intrinsic::x86_fma_vfnmsub_pd_256:
11609   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11610   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11611   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11612   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11613     unsigned Opc;
11614     switch (IntNo) {
11615     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11616     case Intrinsic::x86_fma_vfmadd_ps:
11617     case Intrinsic::x86_fma_vfmadd_pd:
11618     case Intrinsic::x86_fma_vfmadd_ps_256:
11619     case Intrinsic::x86_fma_vfmadd_pd_256:
11620       Opc = X86ISD::FMADD;
11621       break;
11622     case Intrinsic::x86_fma_vfmsub_ps:
11623     case Intrinsic::x86_fma_vfmsub_pd:
11624     case Intrinsic::x86_fma_vfmsub_ps_256:
11625     case Intrinsic::x86_fma_vfmsub_pd_256:
11626       Opc = X86ISD::FMSUB;
11627       break;
11628     case Intrinsic::x86_fma_vfnmadd_ps:
11629     case Intrinsic::x86_fma_vfnmadd_pd:
11630     case Intrinsic::x86_fma_vfnmadd_ps_256:
11631     case Intrinsic::x86_fma_vfnmadd_pd_256:
11632       Opc = X86ISD::FNMADD;
11633       break;
11634     case Intrinsic::x86_fma_vfnmsub_ps:
11635     case Intrinsic::x86_fma_vfnmsub_pd:
11636     case Intrinsic::x86_fma_vfnmsub_ps_256:
11637     case Intrinsic::x86_fma_vfnmsub_pd_256:
11638       Opc = X86ISD::FNMSUB;
11639       break;
11640     case Intrinsic::x86_fma_vfmaddsub_ps:
11641     case Intrinsic::x86_fma_vfmaddsub_pd:
11642     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11643     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11644       Opc = X86ISD::FMADDSUB;
11645       break;
11646     case Intrinsic::x86_fma_vfmsubadd_ps:
11647     case Intrinsic::x86_fma_vfmsubadd_pd:
11648     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11649     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11650       Opc = X86ISD::FMSUBADD;
11651       break;
11652     }
11653
11654     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11655                        Op.getOperand(2), Op.getOperand(3));
11656   }
11657   }
11658 }
11659
11660 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11661                              SDValue Base, SDValue Index,
11662                              SDValue ScaleOp, SDValue Chain,
11663                              const X86Subtarget * Subtarget) {
11664   SDLoc dl(Op);
11665   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11666   assert(C && "Invalid scale type");
11667   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11668   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11669   EVT MaskVT = MVT::getVectorVT(MVT::i1, 
11670                                 Index.getValueType().getVectorNumElements());
11671   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11672   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11673   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11674   SDValue Segment = DAG.getRegister(0, MVT::i32);
11675   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11676   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11677   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11678   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11679 }
11680
11681 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11682                               SDValue Src, SDValue Mask, SDValue Base,
11683                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11684                               const X86Subtarget * Subtarget) {
11685   SDLoc dl(Op);
11686   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11687   assert(C && "Invalid scale type");
11688   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11689   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11690                                 Index.getValueType().getVectorNumElements());
11691   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11692   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11693   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11694   SDValue Segment = DAG.getRegister(0, MVT::i32);
11695   if (Src.getOpcode() == ISD::UNDEF)
11696     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11697   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11698   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11699   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11700   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11701 }
11702
11703 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11704                               SDValue Src, SDValue Base, SDValue Index,
11705                               SDValue ScaleOp, SDValue Chain) {
11706   SDLoc dl(Op);
11707   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11708   assert(C && "Invalid scale type");
11709   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11710   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11711   SDValue Segment = DAG.getRegister(0, MVT::i32);
11712   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11713                                 Index.getValueType().getVectorNumElements());
11714   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11715   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11716   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11717   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11718   return SDValue(Res, 1);
11719 }
11720
11721 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11722                                SDValue Src, SDValue Mask, SDValue Base,
11723                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11724   SDLoc dl(Op);
11725   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11726   assert(C && "Invalid scale type");
11727   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11728   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11729   SDValue Segment = DAG.getRegister(0, MVT::i32);
11730   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11731                                 Index.getValueType().getVectorNumElements());
11732   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11733   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11734   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11735   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11736   return SDValue(Res, 1);
11737 }
11738
11739 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11740                                       SelectionDAG &DAG) {
11741   SDLoc dl(Op);
11742   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11743   switch (IntNo) {
11744   default: return SDValue();    // Don't custom lower most intrinsics.
11745
11746   // RDRAND/RDSEED intrinsics.
11747   case Intrinsic::x86_rdrand_16:
11748   case Intrinsic::x86_rdrand_32:
11749   case Intrinsic::x86_rdrand_64:
11750   case Intrinsic::x86_rdseed_16:
11751   case Intrinsic::x86_rdseed_32:
11752   case Intrinsic::x86_rdseed_64: {
11753     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11754                        IntNo == Intrinsic::x86_rdseed_32 ||
11755                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11756                                                             X86ISD::RDRAND;
11757     // Emit the node with the right value type.
11758     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11759     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11760
11761     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11762     // Otherwise return the value from Rand, which is always 0, casted to i32.
11763     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11764                       DAG.getConstant(1, Op->getValueType(1)),
11765                       DAG.getConstant(X86::COND_B, MVT::i32),
11766                       SDValue(Result.getNode(), 1) };
11767     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11768                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11769                                   Ops, array_lengthof(Ops));
11770
11771     // Return { result, isValid, chain }.
11772     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11773                        SDValue(Result.getNode(), 2));
11774   }
11775   //int_gather(index, base, scale);
11776   case Intrinsic::x86_avx512_gather_qpd_512:
11777   case Intrinsic::x86_avx512_gather_qps_512:
11778   case Intrinsic::x86_avx512_gather_dpd_512:
11779   case Intrinsic::x86_avx512_gather_qpi_512:
11780   case Intrinsic::x86_avx512_gather_qpq_512:
11781   case Intrinsic::x86_avx512_gather_dpq_512:
11782   case Intrinsic::x86_avx512_gather_dps_512:
11783   case Intrinsic::x86_avx512_gather_dpi_512: {
11784     unsigned Opc;
11785     switch (IntNo) {
11786       default: llvm_unreachable("Unexpected intrinsic!");
11787       case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11788       case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11789       case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11790       case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11791       case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11792       case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11793       case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11794       case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11795     }
11796     SDValue Chain = Op.getOperand(0);
11797     SDValue Index = Op.getOperand(2);
11798     SDValue Base  = Op.getOperand(3);
11799     SDValue Scale = Op.getOperand(4);
11800     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11801   }
11802   //int_gather_mask(v1, mask, index, base, scale);
11803   case Intrinsic::x86_avx512_gather_qps_mask_512:
11804   case Intrinsic::x86_avx512_gather_qpd_mask_512:
11805   case Intrinsic::x86_avx512_gather_dpd_mask_512:
11806   case Intrinsic::x86_avx512_gather_dps_mask_512:
11807   case Intrinsic::x86_avx512_gather_qpi_mask_512:
11808   case Intrinsic::x86_avx512_gather_qpq_mask_512:
11809   case Intrinsic::x86_avx512_gather_dpi_mask_512:
11810   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11811     unsigned Opc;
11812     switch (IntNo) {
11813       default: llvm_unreachable("Unexpected intrinsic!");
11814       case Intrinsic::x86_avx512_gather_qps_mask_512: 
11815         Opc = X86::VGATHERQPSZrm; break;
11816       case Intrinsic::x86_avx512_gather_qpd_mask_512:
11817         Opc = X86::VGATHERQPDZrm; break;
11818       case Intrinsic::x86_avx512_gather_dpd_mask_512:
11819         Opc = X86::VGATHERDPDZrm; break;
11820       case Intrinsic::x86_avx512_gather_dps_mask_512:
11821         Opc = X86::VGATHERDPSZrm; break;
11822       case Intrinsic::x86_avx512_gather_qpi_mask_512:
11823         Opc = X86::VPGATHERQDZrm; break;
11824       case Intrinsic::x86_avx512_gather_qpq_mask_512:
11825         Opc = X86::VPGATHERQQZrm; break;
11826       case Intrinsic::x86_avx512_gather_dpi_mask_512:
11827         Opc = X86::VPGATHERDDZrm; break;
11828       case Intrinsic::x86_avx512_gather_dpq_mask_512:
11829         Opc = X86::VPGATHERDQZrm; break;
11830     }
11831     SDValue Chain = Op.getOperand(0);
11832     SDValue Src   = Op.getOperand(2);
11833     SDValue Mask  = Op.getOperand(3);
11834     SDValue Index = Op.getOperand(4);
11835     SDValue Base  = Op.getOperand(5);
11836     SDValue Scale = Op.getOperand(6);
11837     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11838                           Subtarget);
11839   }
11840   //int_scatter(base, index, v1, scale);
11841   case Intrinsic::x86_avx512_scatter_qpd_512:
11842   case Intrinsic::x86_avx512_scatter_qps_512:
11843   case Intrinsic::x86_avx512_scatter_dpd_512:
11844   case Intrinsic::x86_avx512_scatter_qpi_512:
11845   case Intrinsic::x86_avx512_scatter_qpq_512:
11846   case Intrinsic::x86_avx512_scatter_dpq_512:
11847   case Intrinsic::x86_avx512_scatter_dps_512:
11848   case Intrinsic::x86_avx512_scatter_dpi_512: {
11849     unsigned Opc;
11850     switch (IntNo) {
11851       default: llvm_unreachable("Unexpected intrinsic!");
11852       case Intrinsic::x86_avx512_scatter_qpd_512: 
11853         Opc = X86::VSCATTERQPDZmr; break;
11854       case Intrinsic::x86_avx512_scatter_qps_512:
11855         Opc = X86::VSCATTERQPSZmr; break;
11856       case Intrinsic::x86_avx512_scatter_dpd_512:
11857         Opc = X86::VSCATTERDPDZmr; break;
11858       case Intrinsic::x86_avx512_scatter_dps_512:
11859         Opc = X86::VSCATTERDPSZmr; break;
11860       case Intrinsic::x86_avx512_scatter_qpi_512:
11861         Opc = X86::VPSCATTERQDZmr; break;
11862       case Intrinsic::x86_avx512_scatter_qpq_512:
11863         Opc = X86::VPSCATTERQQZmr; break;
11864       case Intrinsic::x86_avx512_scatter_dpq_512:
11865         Opc = X86::VPSCATTERDQZmr; break;
11866       case Intrinsic::x86_avx512_scatter_dpi_512:
11867         Opc = X86::VPSCATTERDDZmr; break;
11868     }
11869     SDValue Chain = Op.getOperand(0);
11870     SDValue Base  = Op.getOperand(2);
11871     SDValue Index = Op.getOperand(3);
11872     SDValue Src   = Op.getOperand(4);
11873     SDValue Scale = Op.getOperand(5);
11874     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11875   }
11876   //int_scatter_mask(base, mask, index, v1, scale);
11877   case Intrinsic::x86_avx512_scatter_qps_mask_512:
11878   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11879   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11880   case Intrinsic::x86_avx512_scatter_dps_mask_512:
11881   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11882   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11883   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11884   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11885     unsigned Opc;
11886     switch (IntNo) {
11887       default: llvm_unreachable("Unexpected intrinsic!");
11888       case Intrinsic::x86_avx512_scatter_qpd_mask_512: 
11889         Opc = X86::VSCATTERQPDZmr; break;
11890       case Intrinsic::x86_avx512_scatter_qps_mask_512:
11891         Opc = X86::VSCATTERQPSZmr; break;
11892       case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11893         Opc = X86::VSCATTERDPDZmr; break;
11894       case Intrinsic::x86_avx512_scatter_dps_mask_512:
11895         Opc = X86::VSCATTERDPSZmr; break;
11896       case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11897         Opc = X86::VPSCATTERQDZmr; break;
11898       case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11899         Opc = X86::VPSCATTERQQZmr; break;
11900       case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11901         Opc = X86::VPSCATTERDQZmr; break;
11902       case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11903         Opc = X86::VPSCATTERDDZmr; break;
11904     }
11905     SDValue Chain = Op.getOperand(0);
11906     SDValue Base  = Op.getOperand(2);
11907     SDValue Mask  = Op.getOperand(3);
11908     SDValue Index = Op.getOperand(4);
11909     SDValue Src   = Op.getOperand(5);
11910     SDValue Scale = Op.getOperand(6);
11911     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11912   }
11913   // XTEST intrinsics.
11914   case Intrinsic::x86_xtest: {
11915     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11916     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11917     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11918                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11919                                 InTrans);
11920     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11921     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11922                        Ret, SDValue(InTrans.getNode(), 1));
11923   }
11924   }
11925 }
11926
11927 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11928                                            SelectionDAG &DAG) const {
11929   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11930   MFI->setReturnAddressIsTaken(true);
11931
11932   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11933   SDLoc dl(Op);
11934   EVT PtrVT = getPointerTy();
11935
11936   if (Depth > 0) {
11937     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11938     const X86RegisterInfo *RegInfo =
11939       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11940     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11941     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11942                        DAG.getNode(ISD::ADD, dl, PtrVT,
11943                                    FrameAddr, Offset),
11944                        MachinePointerInfo(), false, false, false, 0);
11945   }
11946
11947   // Just load the return address.
11948   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11949   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11950                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11951 }
11952
11953 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11954   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11955   MFI->setFrameAddressIsTaken(true);
11956
11957   EVT VT = Op.getValueType();
11958   SDLoc dl(Op);  // FIXME probably not meaningful
11959   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11960   const X86RegisterInfo *RegInfo =
11961     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11962   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11963   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11964           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11965          "Invalid Frame Register!");
11966   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11967   while (Depth--)
11968     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11969                             MachinePointerInfo(),
11970                             false, false, false, 0);
11971   return FrameAddr;
11972 }
11973
11974 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11975                                                      SelectionDAG &DAG) const {
11976   const X86RegisterInfo *RegInfo =
11977     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11978   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11979 }
11980
11981 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11982   SDValue Chain     = Op.getOperand(0);
11983   SDValue Offset    = Op.getOperand(1);
11984   SDValue Handler   = Op.getOperand(2);
11985   SDLoc dl      (Op);
11986
11987   EVT PtrVT = getPointerTy();
11988   const X86RegisterInfo *RegInfo =
11989     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11990   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11991   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11992           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11993          "Invalid Frame Register!");
11994   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11995   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
11996
11997   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
11998                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
11999   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12000   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12001                        false, false, 0);
12002   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12003
12004   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12005                      DAG.getRegister(StoreAddrReg, PtrVT));
12006 }
12007
12008 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12009                                                SelectionDAG &DAG) const {
12010   SDLoc DL(Op);
12011   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12012                      DAG.getVTList(MVT::i32, MVT::Other),
12013                      Op.getOperand(0), Op.getOperand(1));
12014 }
12015
12016 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12017                                                 SelectionDAG &DAG) const {
12018   SDLoc DL(Op);
12019   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12020                      Op.getOperand(0), Op.getOperand(1));
12021 }
12022
12023 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12024   return Op.getOperand(0);
12025 }
12026
12027 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12028                                                 SelectionDAG &DAG) const {
12029   SDValue Root = Op.getOperand(0);
12030   SDValue Trmp = Op.getOperand(1); // trampoline
12031   SDValue FPtr = Op.getOperand(2); // nested function
12032   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12033   SDLoc dl (Op);
12034
12035   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12036   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12037
12038   if (Subtarget->is64Bit()) {
12039     SDValue OutChains[6];
12040
12041     // Large code-model.
12042     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12043     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12044
12045     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12046     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12047
12048     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12049
12050     // Load the pointer to the nested function into R11.
12051     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12052     SDValue Addr = Trmp;
12053     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12054                                 Addr, MachinePointerInfo(TrmpAddr),
12055                                 false, false, 0);
12056
12057     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12058                        DAG.getConstant(2, MVT::i64));
12059     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12060                                 MachinePointerInfo(TrmpAddr, 2),
12061                                 false, false, 2);
12062
12063     // Load the 'nest' parameter value into R10.
12064     // R10 is specified in X86CallingConv.td
12065     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12066     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12067                        DAG.getConstant(10, MVT::i64));
12068     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12069                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12070                                 false, false, 0);
12071
12072     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12073                        DAG.getConstant(12, MVT::i64));
12074     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12075                                 MachinePointerInfo(TrmpAddr, 12),
12076                                 false, false, 2);
12077
12078     // Jump to the nested function.
12079     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12080     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12081                        DAG.getConstant(20, MVT::i64));
12082     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12083                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12084                                 false, false, 0);
12085
12086     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12087     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12088                        DAG.getConstant(22, MVT::i64));
12089     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12090                                 MachinePointerInfo(TrmpAddr, 22),
12091                                 false, false, 0);
12092
12093     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12094   } else {
12095     const Function *Func =
12096       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12097     CallingConv::ID CC = Func->getCallingConv();
12098     unsigned NestReg;
12099
12100     switch (CC) {
12101     default:
12102       llvm_unreachable("Unsupported calling convention");
12103     case CallingConv::C:
12104     case CallingConv::X86_StdCall: {
12105       // Pass 'nest' parameter in ECX.
12106       // Must be kept in sync with X86CallingConv.td
12107       NestReg = X86::ECX;
12108
12109       // Check that ECX wasn't needed by an 'inreg' parameter.
12110       FunctionType *FTy = Func->getFunctionType();
12111       const AttributeSet &Attrs = Func->getAttributes();
12112
12113       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12114         unsigned InRegCount = 0;
12115         unsigned Idx = 1;
12116
12117         for (FunctionType::param_iterator I = FTy->param_begin(),
12118              E = FTy->param_end(); I != E; ++I, ++Idx)
12119           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12120             // FIXME: should only count parameters that are lowered to integers.
12121             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12122
12123         if (InRegCount > 2) {
12124           report_fatal_error("Nest register in use - reduce number of inreg"
12125                              " parameters!");
12126         }
12127       }
12128       break;
12129     }
12130     case CallingConv::X86_FastCall:
12131     case CallingConv::X86_ThisCall:
12132     case CallingConv::Fast:
12133       // Pass 'nest' parameter in EAX.
12134       // Must be kept in sync with X86CallingConv.td
12135       NestReg = X86::EAX;
12136       break;
12137     }
12138
12139     SDValue OutChains[4];
12140     SDValue Addr, Disp;
12141
12142     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12143                        DAG.getConstant(10, MVT::i32));
12144     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12145
12146     // This is storing the opcode for MOV32ri.
12147     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12148     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12149     OutChains[0] = DAG.getStore(Root, dl,
12150                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12151                                 Trmp, MachinePointerInfo(TrmpAddr),
12152                                 false, false, 0);
12153
12154     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12155                        DAG.getConstant(1, MVT::i32));
12156     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12157                                 MachinePointerInfo(TrmpAddr, 1),
12158                                 false, false, 1);
12159
12160     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12161     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12162                        DAG.getConstant(5, MVT::i32));
12163     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12164                                 MachinePointerInfo(TrmpAddr, 5),
12165                                 false, false, 1);
12166
12167     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12168                        DAG.getConstant(6, MVT::i32));
12169     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12170                                 MachinePointerInfo(TrmpAddr, 6),
12171                                 false, false, 1);
12172
12173     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12174   }
12175 }
12176
12177 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12178                                             SelectionDAG &DAG) const {
12179   /*
12180    The rounding mode is in bits 11:10 of FPSR, and has the following
12181    settings:
12182      00 Round to nearest
12183      01 Round to -inf
12184      10 Round to +inf
12185      11 Round to 0
12186
12187   FLT_ROUNDS, on the other hand, expects the following:
12188     -1 Undefined
12189      0 Round to 0
12190      1 Round to nearest
12191      2 Round to +inf
12192      3 Round to -inf
12193
12194   To perform the conversion, we do:
12195     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12196   */
12197
12198   MachineFunction &MF = DAG.getMachineFunction();
12199   const TargetMachine &TM = MF.getTarget();
12200   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12201   unsigned StackAlignment = TFI.getStackAlignment();
12202   EVT VT = Op.getValueType();
12203   SDLoc DL(Op);
12204
12205   // Save FP Control Word to stack slot
12206   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12207   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12208
12209   MachineMemOperand *MMO =
12210    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12211                            MachineMemOperand::MOStore, 2, 2);
12212
12213   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12214   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12215                                           DAG.getVTList(MVT::Other),
12216                                           Ops, array_lengthof(Ops), MVT::i16,
12217                                           MMO);
12218
12219   // Load FP Control Word from stack slot
12220   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12221                             MachinePointerInfo(), false, false, false, 0);
12222
12223   // Transform as necessary
12224   SDValue CWD1 =
12225     DAG.getNode(ISD::SRL, DL, MVT::i16,
12226                 DAG.getNode(ISD::AND, DL, MVT::i16,
12227                             CWD, DAG.getConstant(0x800, MVT::i16)),
12228                 DAG.getConstant(11, MVT::i8));
12229   SDValue CWD2 =
12230     DAG.getNode(ISD::SRL, DL, MVT::i16,
12231                 DAG.getNode(ISD::AND, DL, MVT::i16,
12232                             CWD, DAG.getConstant(0x400, MVT::i16)),
12233                 DAG.getConstant(9, MVT::i8));
12234
12235   SDValue RetVal =
12236     DAG.getNode(ISD::AND, DL, MVT::i16,
12237                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12238                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12239                             DAG.getConstant(1, MVT::i16)),
12240                 DAG.getConstant(3, MVT::i16));
12241
12242   return DAG.getNode((VT.getSizeInBits() < 16 ?
12243                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12244 }
12245
12246 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12247   EVT VT = Op.getValueType();
12248   EVT OpVT = VT;
12249   unsigned NumBits = VT.getSizeInBits();
12250   SDLoc dl(Op);
12251
12252   Op = Op.getOperand(0);
12253   if (VT == MVT::i8) {
12254     // Zero extend to i32 since there is not an i8 bsr.
12255     OpVT = MVT::i32;
12256     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12257   }
12258
12259   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12260   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12261   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12262
12263   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12264   SDValue Ops[] = {
12265     Op,
12266     DAG.getConstant(NumBits+NumBits-1, OpVT),
12267     DAG.getConstant(X86::COND_E, MVT::i8),
12268     Op.getValue(1)
12269   };
12270   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12271
12272   // Finally xor with NumBits-1.
12273   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12274
12275   if (VT == MVT::i8)
12276     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12277   return Op;
12278 }
12279
12280 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12281   EVT VT = Op.getValueType();
12282   EVT OpVT = VT;
12283   unsigned NumBits = VT.getSizeInBits();
12284   SDLoc dl(Op);
12285
12286   Op = Op.getOperand(0);
12287   if (VT == MVT::i8) {
12288     // Zero extend to i32 since there is not an i8 bsr.
12289     OpVT = MVT::i32;
12290     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12291   }
12292
12293   // Issue a bsr (scan bits in reverse).
12294   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12295   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12296
12297   // And xor with NumBits-1.
12298   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12299
12300   if (VT == MVT::i8)
12301     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12302   return Op;
12303 }
12304
12305 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12306   EVT VT = Op.getValueType();
12307   unsigned NumBits = VT.getSizeInBits();
12308   SDLoc dl(Op);
12309   Op = Op.getOperand(0);
12310
12311   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12312   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12313   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12314
12315   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12316   SDValue Ops[] = {
12317     Op,
12318     DAG.getConstant(NumBits, VT),
12319     DAG.getConstant(X86::COND_E, MVT::i8),
12320     Op.getValue(1)
12321   };
12322   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12323 }
12324
12325 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12326 // ones, and then concatenate the result back.
12327 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12328   EVT VT = Op.getValueType();
12329
12330   assert(VT.is256BitVector() && VT.isInteger() &&
12331          "Unsupported value type for operation");
12332
12333   unsigned NumElems = VT.getVectorNumElements();
12334   SDLoc dl(Op);
12335
12336   // Extract the LHS vectors
12337   SDValue LHS = Op.getOperand(0);
12338   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12339   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12340
12341   // Extract the RHS vectors
12342   SDValue RHS = Op.getOperand(1);
12343   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12344   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12345
12346   MVT EltVT = VT.getVectorElementType().getSimpleVT();
12347   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12348
12349   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12350                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12351                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12352 }
12353
12354 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12355   assert(Op.getValueType().is256BitVector() &&
12356          Op.getValueType().isInteger() &&
12357          "Only handle AVX 256-bit vector integer operation");
12358   return Lower256IntArith(Op, DAG);
12359 }
12360
12361 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12362   assert(Op.getValueType().is256BitVector() &&
12363          Op.getValueType().isInteger() &&
12364          "Only handle AVX 256-bit vector integer operation");
12365   return Lower256IntArith(Op, DAG);
12366 }
12367
12368 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12369                         SelectionDAG &DAG) {
12370   SDLoc dl(Op);
12371   EVT VT = Op.getValueType();
12372
12373   // Decompose 256-bit ops into smaller 128-bit ops.
12374   if (VT.is256BitVector() && !Subtarget->hasInt256())
12375     return Lower256IntArith(Op, DAG);
12376
12377   SDValue A = Op.getOperand(0);
12378   SDValue B = Op.getOperand(1);
12379
12380   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12381   if (VT == MVT::v4i32) {
12382     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12383            "Should not custom lower when pmuldq is available!");
12384
12385     // Extract the odd parts.
12386     static const int UnpackMask[] = { 1, -1, 3, -1 };
12387     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12388     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12389
12390     // Multiply the even parts.
12391     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12392     // Now multiply odd parts.
12393     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12394
12395     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12396     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12397
12398     // Merge the two vectors back together with a shuffle. This expands into 2
12399     // shuffles.
12400     static const int ShufMask[] = { 0, 4, 2, 6 };
12401     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12402   }
12403
12404   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12405          "Only know how to lower V2I64/V4I64 multiply");
12406
12407   //  Ahi = psrlqi(a, 32);
12408   //  Bhi = psrlqi(b, 32);
12409   //
12410   //  AloBlo = pmuludq(a, b);
12411   //  AloBhi = pmuludq(a, Bhi);
12412   //  AhiBlo = pmuludq(Ahi, b);
12413
12414   //  AloBhi = psllqi(AloBhi, 32);
12415   //  AhiBlo = psllqi(AhiBlo, 32);
12416   //  return AloBlo + AloBhi + AhiBlo;
12417
12418   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
12419
12420   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12421   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
12422
12423   // Bit cast to 32-bit vectors for MULUDQ
12424   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12425   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12426   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12427   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12428   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12429
12430   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12431   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12432   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12433
12434   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12435   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
12436
12437   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12438   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12439 }
12440
12441 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12442   EVT VT = Op.getValueType();
12443   EVT EltTy = VT.getVectorElementType();
12444   unsigned NumElts = VT.getVectorNumElements();
12445   SDValue N0 = Op.getOperand(0);
12446   SDLoc dl(Op);
12447
12448   // Lower sdiv X, pow2-const.
12449   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12450   if (!C)
12451     return SDValue();
12452
12453   APInt SplatValue, SplatUndef;
12454   unsigned SplatBitSize;
12455   bool HasAnyUndefs;
12456   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12457                           HasAnyUndefs) ||
12458       EltTy.getSizeInBits() < SplatBitSize)
12459     return SDValue();
12460
12461   if ((SplatValue != 0) &&
12462       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12463     unsigned lg2 = SplatValue.countTrailingZeros();
12464     // Splat the sign bit.
12465     SmallVector<SDValue, 16> Sz(NumElts,
12466                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12467                                                 EltTy));
12468     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12469                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12470                                           NumElts));
12471     // Add (N0 < 0) ? abs2 - 1 : 0;
12472     SmallVector<SDValue, 16> Amt(NumElts,
12473                                  DAG.getConstant(EltTy.getSizeInBits() - lg2,
12474                                                  EltTy));
12475     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12476                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12477                                           NumElts));
12478     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12479     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(lg2, EltTy));
12480     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12481                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12482                                           NumElts));
12483
12484     // If we're dividing by a positive value, we're done.  Otherwise, we must
12485     // negate the result.
12486     if (SplatValue.isNonNegative())
12487       return SRA;
12488
12489     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12490     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12491     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12492   }
12493   return SDValue();
12494 }
12495
12496 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12497                                          const X86Subtarget *Subtarget) {
12498   EVT VT = Op.getValueType();
12499   SDLoc dl(Op);
12500   SDValue R = Op.getOperand(0);
12501   SDValue Amt = Op.getOperand(1);
12502
12503   // Optimize shl/srl/sra with constant shift amount.
12504   if (isSplatVector(Amt.getNode())) {
12505     SDValue SclrAmt = Amt->getOperand(0);
12506     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12507       uint64_t ShiftAmt = C->getZExtValue();
12508
12509       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12510           (Subtarget->hasInt256() &&
12511            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12512           (Subtarget->hasAVX512() &&
12513            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12514         if (Op.getOpcode() == ISD::SHL)
12515           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12516                              DAG.getConstant(ShiftAmt, MVT::i32));
12517         if (Op.getOpcode() == ISD::SRL)
12518           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12519                              DAG.getConstant(ShiftAmt, MVT::i32));
12520         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12521           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12522                              DAG.getConstant(ShiftAmt, MVT::i32));
12523       }
12524
12525       if (VT == MVT::v16i8) {
12526         if (Op.getOpcode() == ISD::SHL) {
12527           // Make a large shift.
12528           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12529                                     DAG.getConstant(ShiftAmt, MVT::i32));
12530           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12531           // Zero out the rightmost 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, SHL,
12536                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12537         }
12538         if (Op.getOpcode() == ISD::SRL) {
12539           // Make a large shift.
12540           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12541                                     DAG.getConstant(ShiftAmt, MVT::i32));
12542           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12543           // Zero out the leftmost bits.
12544           SmallVector<SDValue, 16> V(16,
12545                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12546                                                      MVT::i8));
12547           return DAG.getNode(ISD::AND, dl, VT, SRL,
12548                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12549         }
12550         if (Op.getOpcode() == ISD::SRA) {
12551           if (ShiftAmt == 7) {
12552             // R s>> 7  ===  R s< 0
12553             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12554             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12555           }
12556
12557           // R s>> a === ((R u>> a) ^ m) - m
12558           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12559           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12560                                                          MVT::i8));
12561           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12562           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12563           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12564           return Res;
12565         }
12566         llvm_unreachable("Unknown shift opcode.");
12567       }
12568
12569       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12570         if (Op.getOpcode() == ISD::SHL) {
12571           // Make a large shift.
12572           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12573                                     DAG.getConstant(ShiftAmt, MVT::i32));
12574           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12575           // Zero out the rightmost 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, SHL,
12580                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12581         }
12582         if (Op.getOpcode() == ISD::SRL) {
12583           // Make a large shift.
12584           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12585                                     DAG.getConstant(ShiftAmt, MVT::i32));
12586           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12587           // Zero out the leftmost bits.
12588           SmallVector<SDValue, 32> V(32,
12589                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12590                                                      MVT::i8));
12591           return DAG.getNode(ISD::AND, dl, VT, SRL,
12592                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12593         }
12594         if (Op.getOpcode() == ISD::SRA) {
12595           if (ShiftAmt == 7) {
12596             // R s>> 7  ===  R s< 0
12597             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12598             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12599           }
12600
12601           // R s>> a === ((R u>> a) ^ m) - m
12602           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12603           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12604                                                          MVT::i8));
12605           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12606           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12607           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12608           return Res;
12609         }
12610         llvm_unreachable("Unknown shift opcode.");
12611       }
12612     }
12613   }
12614
12615   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12616   if (!Subtarget->is64Bit() &&
12617       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12618       Amt.getOpcode() == ISD::BITCAST &&
12619       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12620     Amt = Amt.getOperand(0);
12621     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12622                      VT.getVectorNumElements();
12623     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12624     uint64_t ShiftAmt = 0;
12625     for (unsigned i = 0; i != Ratio; ++i) {
12626       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12627       if (C == 0)
12628         return SDValue();
12629       // 6 == Log2(64)
12630       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12631     }
12632     // Check remaining shift amounts.
12633     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12634       uint64_t ShAmt = 0;
12635       for (unsigned j = 0; j != Ratio; ++j) {
12636         ConstantSDNode *C =
12637           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12638         if (C == 0)
12639           return SDValue();
12640         // 6 == Log2(64)
12641         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12642       }
12643       if (ShAmt != ShiftAmt)
12644         return SDValue();
12645     }
12646     switch (Op.getOpcode()) {
12647     default:
12648       llvm_unreachable("Unknown shift opcode!");
12649     case ISD::SHL:
12650       return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12651                          DAG.getConstant(ShiftAmt, MVT::i32));
12652     case ISD::SRL:
12653       return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12654                          DAG.getConstant(ShiftAmt, MVT::i32));
12655     case ISD::SRA:
12656       return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12657                          DAG.getConstant(ShiftAmt, MVT::i32));
12658     }
12659   }
12660
12661   return SDValue();
12662 }
12663
12664 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12665                                         const X86Subtarget* Subtarget) {
12666   EVT VT = Op.getValueType();
12667   SDLoc dl(Op);
12668   SDValue R = Op.getOperand(0);
12669   SDValue Amt = Op.getOperand(1);
12670
12671   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12672       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12673       (Subtarget->hasInt256() &&
12674        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12675         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12676        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12677     SDValue BaseShAmt;
12678     EVT EltVT = VT.getVectorElementType();
12679
12680     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12681       unsigned NumElts = VT.getVectorNumElements();
12682       unsigned i, j;
12683       for (i = 0; i != NumElts; ++i) {
12684         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12685           continue;
12686         break;
12687       }
12688       for (j = i; j != NumElts; ++j) {
12689         SDValue Arg = Amt.getOperand(j);
12690         if (Arg.getOpcode() == ISD::UNDEF) continue;
12691         if (Arg != Amt.getOperand(i))
12692           break;
12693       }
12694       if (i != NumElts && j == NumElts)
12695         BaseShAmt = Amt.getOperand(i);
12696     } else {
12697       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12698         Amt = Amt.getOperand(0);
12699       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12700                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12701         SDValue InVec = Amt.getOperand(0);
12702         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12703           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12704           unsigned i = 0;
12705           for (; i != NumElts; ++i) {
12706             SDValue Arg = InVec.getOperand(i);
12707             if (Arg.getOpcode() == ISD::UNDEF) continue;
12708             BaseShAmt = Arg;
12709             break;
12710           }
12711         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12712            if (ConstantSDNode *C =
12713                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12714              unsigned SplatIdx =
12715                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12716              if (C->getZExtValue() == SplatIdx)
12717                BaseShAmt = InVec.getOperand(1);
12718            }
12719         }
12720         if (BaseShAmt.getNode() == 0)
12721           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12722                                   DAG.getIntPtrConstant(0));
12723       }
12724     }
12725
12726     if (BaseShAmt.getNode()) {
12727       if (EltVT.bitsGT(MVT::i32))
12728         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12729       else if (EltVT.bitsLT(MVT::i32))
12730         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12731
12732       switch (Op.getOpcode()) {
12733       default:
12734         llvm_unreachable("Unknown shift opcode!");
12735       case ISD::SHL:
12736         switch (VT.getSimpleVT().SimpleTy) {
12737         default: return SDValue();
12738         case MVT::v2i64:
12739         case MVT::v4i32:
12740         case MVT::v8i16:
12741         case MVT::v4i64:
12742         case MVT::v8i32:
12743         case MVT::v16i16:
12744         case MVT::v16i32:
12745         case MVT::v8i64:
12746           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12747         }
12748       case ISD::SRA:
12749         switch (VT.getSimpleVT().SimpleTy) {
12750         default: return SDValue();
12751         case MVT::v4i32:
12752         case MVT::v8i16:
12753         case MVT::v8i32:
12754         case MVT::v16i16:
12755         case MVT::v16i32:
12756         case MVT::v8i64:
12757           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12758         }
12759       case ISD::SRL:
12760         switch (VT.getSimpleVT().SimpleTy) {
12761         default: return SDValue();
12762         case MVT::v2i64:
12763         case MVT::v4i32:
12764         case MVT::v8i16:
12765         case MVT::v4i64:
12766         case MVT::v8i32:
12767         case MVT::v16i16:
12768         case MVT::v16i32:
12769         case MVT::v8i64:
12770           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12771         }
12772       }
12773     }
12774   }
12775
12776   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12777   if (!Subtarget->is64Bit() &&
12778       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12779       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12780       Amt.getOpcode() == ISD::BITCAST &&
12781       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12782     Amt = Amt.getOperand(0);
12783     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12784                      VT.getVectorNumElements();
12785     std::vector<SDValue> Vals(Ratio);
12786     for (unsigned i = 0; i != Ratio; ++i)
12787       Vals[i] = Amt.getOperand(i);
12788     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12789       for (unsigned j = 0; j != Ratio; ++j)
12790         if (Vals[j] != Amt.getOperand(i + j))
12791           return SDValue();
12792     }
12793     switch (Op.getOpcode()) {
12794     default:
12795       llvm_unreachable("Unknown shift opcode!");
12796     case ISD::SHL:
12797       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12798     case ISD::SRL:
12799       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12800     case ISD::SRA:
12801       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12802     }
12803   }
12804
12805   return SDValue();
12806 }
12807
12808 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12809                           SelectionDAG &DAG) {
12810
12811   EVT VT = Op.getValueType();
12812   SDLoc dl(Op);
12813   SDValue R = Op.getOperand(0);
12814   SDValue Amt = Op.getOperand(1);
12815   SDValue V;
12816
12817   if (!Subtarget->hasSSE2())
12818     return SDValue();
12819
12820   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12821   if (V.getNode())
12822     return V;
12823
12824   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12825   if (V.getNode())
12826       return V;
12827
12828   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12829     return Op;
12830   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12831   if (Subtarget->hasInt256()) {
12832     if (Op.getOpcode() == ISD::SRL &&
12833         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12834          VT == MVT::v4i64 || VT == MVT::v8i32))
12835       return Op;
12836     if (Op.getOpcode() == ISD::SHL &&
12837         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12838          VT == MVT::v4i64 || VT == MVT::v8i32))
12839       return Op;
12840     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12841       return Op;
12842   }
12843
12844   // Lower SHL with variable shift amount.
12845   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12846     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12847
12848     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12849     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12850     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12851     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12852   }
12853   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12854     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12855
12856     // a = a << 5;
12857     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12858     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12859
12860     // Turn 'a' into a mask suitable for VSELECT
12861     SDValue VSelM = DAG.getConstant(0x80, VT);
12862     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12863     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12864
12865     SDValue CM1 = DAG.getConstant(0x0f, VT);
12866     SDValue CM2 = DAG.getConstant(0x3f, VT);
12867
12868     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12869     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12870     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12871                             DAG.getConstant(4, 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     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12881     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12882     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12883                             DAG.getConstant(2, MVT::i32), DAG);
12884     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12885     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12886
12887     // a += a
12888     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12889     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12890     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12891
12892     // return VSELECT(r, r+r, a);
12893     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12894                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12895     return R;
12896   }
12897
12898   // Decompose 256-bit shifts into smaller 128-bit shifts.
12899   if (VT.is256BitVector()) {
12900     unsigned NumElems = VT.getVectorNumElements();
12901     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12902     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12903
12904     // Extract the two vectors
12905     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12906     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12907
12908     // Recreate the shift amount vectors
12909     SDValue Amt1, Amt2;
12910     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12911       // Constant shift amount
12912       SmallVector<SDValue, 4> Amt1Csts;
12913       SmallVector<SDValue, 4> Amt2Csts;
12914       for (unsigned i = 0; i != NumElems/2; ++i)
12915         Amt1Csts.push_back(Amt->getOperand(i));
12916       for (unsigned i = NumElems/2; i != NumElems; ++i)
12917         Amt2Csts.push_back(Amt->getOperand(i));
12918
12919       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12920                                  &Amt1Csts[0], NumElems/2);
12921       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12922                                  &Amt2Csts[0], NumElems/2);
12923     } else {
12924       // Variable shift amount
12925       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12926       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12927     }
12928
12929     // Issue new vector shifts for the smaller types
12930     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12931     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12932
12933     // Concatenate the result back
12934     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12935   }
12936
12937   return SDValue();
12938 }
12939
12940 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12941   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12942   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12943   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12944   // has only one use.
12945   SDNode *N = Op.getNode();
12946   SDValue LHS = N->getOperand(0);
12947   SDValue RHS = N->getOperand(1);
12948   unsigned BaseOp = 0;
12949   unsigned Cond = 0;
12950   SDLoc DL(Op);
12951   switch (Op.getOpcode()) {
12952   default: llvm_unreachable("Unknown ovf instruction!");
12953   case ISD::SADDO:
12954     // A subtract of one will be selected as a INC. Note that INC doesn't
12955     // set CF, so we can't do this for UADDO.
12956     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12957       if (C->isOne()) {
12958         BaseOp = X86ISD::INC;
12959         Cond = X86::COND_O;
12960         break;
12961       }
12962     BaseOp = X86ISD::ADD;
12963     Cond = X86::COND_O;
12964     break;
12965   case ISD::UADDO:
12966     BaseOp = X86ISD::ADD;
12967     Cond = X86::COND_B;
12968     break;
12969   case ISD::SSUBO:
12970     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12971     // set CF, so we can't do this for USUBO.
12972     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12973       if (C->isOne()) {
12974         BaseOp = X86ISD::DEC;
12975         Cond = X86::COND_O;
12976         break;
12977       }
12978     BaseOp = X86ISD::SUB;
12979     Cond = X86::COND_O;
12980     break;
12981   case ISD::USUBO:
12982     BaseOp = X86ISD::SUB;
12983     Cond = X86::COND_B;
12984     break;
12985   case ISD::SMULO:
12986     BaseOp = X86ISD::SMUL;
12987     Cond = X86::COND_O;
12988     break;
12989   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12990     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12991                                  MVT::i32);
12992     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
12993
12994     SDValue SetCC =
12995       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12996                   DAG.getConstant(X86::COND_O, MVT::i32),
12997                   SDValue(Sum.getNode(), 2));
12998
12999     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13000   }
13001   }
13002
13003   // Also sets EFLAGS.
13004   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13005   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13006
13007   SDValue SetCC =
13008     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13009                 DAG.getConstant(Cond, MVT::i32),
13010                 SDValue(Sum.getNode(), 1));
13011
13012   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13013 }
13014
13015 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13016                                                   SelectionDAG &DAG) const {
13017   SDLoc dl(Op);
13018   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13019   EVT VT = Op.getValueType();
13020
13021   if (!Subtarget->hasSSE2() || !VT.isVector())
13022     return SDValue();
13023
13024   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13025                       ExtraVT.getScalarType().getSizeInBits();
13026   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
13027
13028   switch (VT.getSimpleVT().SimpleTy) {
13029     default: return SDValue();
13030     case MVT::v8i32:
13031     case MVT::v16i16:
13032       if (!Subtarget->hasFp256())
13033         return SDValue();
13034       if (!Subtarget->hasInt256()) {
13035         // needs to be split
13036         unsigned NumElems = VT.getVectorNumElements();
13037
13038         // Extract the LHS vectors
13039         SDValue LHS = Op.getOperand(0);
13040         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13041         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13042
13043         MVT EltVT = VT.getVectorElementType().getSimpleVT();
13044         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13045
13046         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13047         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13048         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13049                                    ExtraNumElems/2);
13050         SDValue Extra = DAG.getValueType(ExtraVT);
13051
13052         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13053         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13054
13055         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13056       }
13057       // fall through
13058     case MVT::v4i32:
13059     case MVT::v8i16: {
13060       // (sext (vzext x)) -> (vsext x)
13061       SDValue Op0 = Op.getOperand(0);
13062       SDValue Op00 = Op0.getOperand(0);
13063       SDValue Tmp1;
13064       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13065       if (Op0.getOpcode() == ISD::BITCAST &&
13066           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
13067         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13068       if (Tmp1.getNode()) {
13069         SDValue Tmp1Op0 = Tmp1.getOperand(0);
13070         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13071                "This optimization is invalid without a VZEXT.");
13072         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13073       }
13074
13075       // If the above didn't work, then just use Shift-Left + Shift-Right.
13076       Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
13077       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
13078     }
13079   }
13080 }
13081
13082 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13083                                  SelectionDAG &DAG) {
13084   SDLoc dl(Op);
13085   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13086     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13087   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13088     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13089
13090   // The only fence that needs an instruction is a sequentially-consistent
13091   // cross-thread fence.
13092   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13093     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13094     // no-sse2). There isn't any reason to disable it if the target processor
13095     // supports it.
13096     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13097       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13098
13099     SDValue Chain = Op.getOperand(0);
13100     SDValue Zero = DAG.getConstant(0, MVT::i32);
13101     SDValue Ops[] = {
13102       DAG.getRegister(X86::ESP, MVT::i32), // Base
13103       DAG.getTargetConstant(1, MVT::i8),   // Scale
13104       DAG.getRegister(0, MVT::i32),        // Index
13105       DAG.getTargetConstant(0, MVT::i32),  // Disp
13106       DAG.getRegister(0, MVT::i32),        // Segment.
13107       Zero,
13108       Chain
13109     };
13110     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13111     return SDValue(Res, 0);
13112   }
13113
13114   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13115   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13116 }
13117
13118 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13119                              SelectionDAG &DAG) {
13120   EVT T = Op.getValueType();
13121   SDLoc DL(Op);
13122   unsigned Reg = 0;
13123   unsigned size = 0;
13124   switch(T.getSimpleVT().SimpleTy) {
13125   default: llvm_unreachable("Invalid value type!");
13126   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13127   case MVT::i16: Reg = X86::AX;  size = 2; break;
13128   case MVT::i32: Reg = X86::EAX; size = 4; break;
13129   case MVT::i64:
13130     assert(Subtarget->is64Bit() && "Node not type legal!");
13131     Reg = X86::RAX; size = 8;
13132     break;
13133   }
13134   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13135                                     Op.getOperand(2), SDValue());
13136   SDValue Ops[] = { cpIn.getValue(0),
13137                     Op.getOperand(1),
13138                     Op.getOperand(3),
13139                     DAG.getTargetConstant(size, MVT::i8),
13140                     cpIn.getValue(1) };
13141   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13142   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13143   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13144                                            Ops, array_lengthof(Ops), T, MMO);
13145   SDValue cpOut =
13146     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13147   return cpOut;
13148 }
13149
13150 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13151                                      SelectionDAG &DAG) {
13152   assert(Subtarget->is64Bit() && "Result not type legalized?");
13153   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13154   SDValue TheChain = Op.getOperand(0);
13155   SDLoc dl(Op);
13156   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13157   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13158   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13159                                    rax.getValue(2));
13160   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13161                             DAG.getConstant(32, MVT::i8));
13162   SDValue Ops[] = {
13163     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13164     rdx.getValue(1)
13165   };
13166   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13167 }
13168
13169 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13170                             SelectionDAG &DAG) {
13171   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13172   MVT DstVT = Op.getSimpleValueType();
13173   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13174          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13175   assert((DstVT == MVT::i64 ||
13176           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13177          "Unexpected custom BITCAST");
13178   // i64 <=> MMX conversions are Legal.
13179   if (SrcVT==MVT::i64 && DstVT.isVector())
13180     return Op;
13181   if (DstVT==MVT::i64 && SrcVT.isVector())
13182     return Op;
13183   // MMX <=> MMX conversions are Legal.
13184   if (SrcVT.isVector() && DstVT.isVector())
13185     return Op;
13186   // All other conversions need to be expanded.
13187   return SDValue();
13188 }
13189
13190 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13191   SDNode *Node = Op.getNode();
13192   SDLoc dl(Node);
13193   EVT T = Node->getValueType(0);
13194   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13195                               DAG.getConstant(0, T), Node->getOperand(2));
13196   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13197                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13198                        Node->getOperand(0),
13199                        Node->getOperand(1), negOp,
13200                        cast<AtomicSDNode>(Node)->getSrcValue(),
13201                        cast<AtomicSDNode>(Node)->getAlignment(),
13202                        cast<AtomicSDNode>(Node)->getOrdering(),
13203                        cast<AtomicSDNode>(Node)->getSynchScope());
13204 }
13205
13206 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13207   SDNode *Node = Op.getNode();
13208   SDLoc dl(Node);
13209   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13210
13211   // Convert seq_cst store -> xchg
13212   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13213   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13214   //        (The only way to get a 16-byte store is cmpxchg16b)
13215   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13216   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13217       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13218     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13219                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13220                                  Node->getOperand(0),
13221                                  Node->getOperand(1), Node->getOperand(2),
13222                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13223                                  cast<AtomicSDNode>(Node)->getOrdering(),
13224                                  cast<AtomicSDNode>(Node)->getSynchScope());
13225     return Swap.getValue(1);
13226   }
13227   // Other atomic stores have a simple pattern.
13228   return Op;
13229 }
13230
13231 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13232   EVT VT = Op.getNode()->getValueType(0);
13233
13234   // Let legalize expand this if it isn't a legal type yet.
13235   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13236     return SDValue();
13237
13238   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13239
13240   unsigned Opc;
13241   bool ExtraOp = false;
13242   switch (Op.getOpcode()) {
13243   default: llvm_unreachable("Invalid code");
13244   case ISD::ADDC: Opc = X86ISD::ADD; break;
13245   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13246   case ISD::SUBC: Opc = X86ISD::SUB; break;
13247   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13248   }
13249
13250   if (!ExtraOp)
13251     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13252                        Op.getOperand(1));
13253   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13254                      Op.getOperand(1), Op.getOperand(2));
13255 }
13256
13257 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13258                             SelectionDAG &DAG) {
13259   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13260
13261   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13262   // which returns the values as { float, float } (in XMM0) or
13263   // { double, double } (which is returned in XMM0, XMM1).
13264   SDLoc dl(Op);
13265   SDValue Arg = Op.getOperand(0);
13266   EVT ArgVT = Arg.getValueType();
13267   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13268
13269   TargetLowering::ArgListTy Args;
13270   TargetLowering::ArgListEntry Entry;
13271
13272   Entry.Node = Arg;
13273   Entry.Ty = ArgTy;
13274   Entry.isSExt = false;
13275   Entry.isZExt = false;
13276   Args.push_back(Entry);
13277
13278   bool isF64 = ArgVT == MVT::f64;
13279   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13280   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13281   // the results are returned via SRet in memory.
13282   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13283   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13284   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13285
13286   Type *RetTy = isF64
13287     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13288     : (Type*)VectorType::get(ArgTy, 4);
13289   TargetLowering::
13290     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13291                          false, false, false, false, 0,
13292                          CallingConv::C, /*isTaillCall=*/false,
13293                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13294                          Callee, Args, DAG, dl);
13295   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13296
13297   if (isF64)
13298     // Returned in xmm0 and xmm1.
13299     return CallResult.first;
13300
13301   // Returned in bits 0:31 and 32:64 xmm0.
13302   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13303                                CallResult.first, DAG.getIntPtrConstant(0));
13304   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13305                                CallResult.first, DAG.getIntPtrConstant(1));
13306   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13307   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13308 }
13309
13310 /// LowerOperation - Provide custom lowering hooks for some operations.
13311 ///
13312 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13313   switch (Op.getOpcode()) {
13314   default: llvm_unreachable("Should not custom lower this!");
13315   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13316   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13317   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13318   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13319   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13320   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13321   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13322   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13323   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13324   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13325   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13326   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13327   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13328   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13329   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13330   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13331   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13332   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13333   case ISD::SHL_PARTS:
13334   case ISD::SRA_PARTS:
13335   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13336   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13337   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13338   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13339   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13340   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13341   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13342   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13343   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13344   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13345   case ISD::FABS:               return LowerFABS(Op, DAG);
13346   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13347   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13348   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13349   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13350   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13351   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13352   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13353   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13354   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13355   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13356   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13357   case ISD::INTRINSIC_VOID:
13358   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13359   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13360   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13361   case ISD::FRAME_TO_ARGS_OFFSET:
13362                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13363   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13364   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13365   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13366   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13367   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13368   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13369   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13370   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13371   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13372   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13373   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13374   case ISD::SRA:
13375   case ISD::SRL:
13376   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13377   case ISD::SADDO:
13378   case ISD::UADDO:
13379   case ISD::SSUBO:
13380   case ISD::USUBO:
13381   case ISD::SMULO:
13382   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13383   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13384   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13385   case ISD::ADDC:
13386   case ISD::ADDE:
13387   case ISD::SUBC:
13388   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13389   case ISD::ADD:                return LowerADD(Op, DAG);
13390   case ISD::SUB:                return LowerSUB(Op, DAG);
13391   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13392   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13393   }
13394 }
13395
13396 static void ReplaceATOMIC_LOAD(SDNode *Node,
13397                                   SmallVectorImpl<SDValue> &Results,
13398                                   SelectionDAG &DAG) {
13399   SDLoc dl(Node);
13400   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13401
13402   // Convert wide load -> cmpxchg8b/cmpxchg16b
13403   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13404   //        (The only way to get a 16-byte load is cmpxchg16b)
13405   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13406   SDValue Zero = DAG.getConstant(0, VT);
13407   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13408                                Node->getOperand(0),
13409                                Node->getOperand(1), Zero, Zero,
13410                                cast<AtomicSDNode>(Node)->getMemOperand(),
13411                                cast<AtomicSDNode>(Node)->getOrdering(),
13412                                cast<AtomicSDNode>(Node)->getSynchScope());
13413   Results.push_back(Swap.getValue(0));
13414   Results.push_back(Swap.getValue(1));
13415 }
13416
13417 static void
13418 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13419                         SelectionDAG &DAG, unsigned NewOp) {
13420   SDLoc dl(Node);
13421   assert (Node->getValueType(0) == MVT::i64 &&
13422           "Only know how to expand i64 atomics");
13423
13424   SDValue Chain = Node->getOperand(0);
13425   SDValue In1 = Node->getOperand(1);
13426   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13427                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13428   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13429                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13430   SDValue Ops[] = { Chain, In1, In2L, In2H };
13431   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13432   SDValue Result =
13433     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13434                             cast<MemSDNode>(Node)->getMemOperand());
13435   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13436   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13437   Results.push_back(Result.getValue(2));
13438 }
13439
13440 /// ReplaceNodeResults - Replace a node with an illegal result type
13441 /// with a new node built out of custom code.
13442 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13443                                            SmallVectorImpl<SDValue>&Results,
13444                                            SelectionDAG &DAG) const {
13445   SDLoc dl(N);
13446   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13447   switch (N->getOpcode()) {
13448   default:
13449     llvm_unreachable("Do not know how to custom type legalize this operation!");
13450   case ISD::SIGN_EXTEND_INREG:
13451   case ISD::ADDC:
13452   case ISD::ADDE:
13453   case ISD::SUBC:
13454   case ISD::SUBE:
13455     // We don't want to expand or promote these.
13456     return;
13457   case ISD::FP_TO_SINT:
13458   case ISD::FP_TO_UINT: {
13459     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13460
13461     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13462       return;
13463
13464     std::pair<SDValue,SDValue> Vals =
13465         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13466     SDValue FIST = Vals.first, StackSlot = Vals.second;
13467     if (FIST.getNode() != 0) {
13468       EVT VT = N->getValueType(0);
13469       // Return a load from the stack slot.
13470       if (StackSlot.getNode() != 0)
13471         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13472                                       MachinePointerInfo(),
13473                                       false, false, false, 0));
13474       else
13475         Results.push_back(FIST);
13476     }
13477     return;
13478   }
13479   case ISD::UINT_TO_FP: {
13480     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13481     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13482         N->getValueType(0) != MVT::v2f32)
13483       return;
13484     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13485                                  N->getOperand(0));
13486     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13487                                      MVT::f64);
13488     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13489     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13490                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13491     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13492     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13493     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13494     return;
13495   }
13496   case ISD::FP_ROUND: {
13497     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13498         return;
13499     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13500     Results.push_back(V);
13501     return;
13502   }
13503   case ISD::READCYCLECOUNTER: {
13504     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13505     SDValue TheChain = N->getOperand(0);
13506     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13507     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13508                                      rd.getValue(1));
13509     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13510                                      eax.getValue(2));
13511     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13512     SDValue Ops[] = { eax, edx };
13513     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13514                                   array_lengthof(Ops)));
13515     Results.push_back(edx.getValue(1));
13516     return;
13517   }
13518   case ISD::ATOMIC_CMP_SWAP: {
13519     EVT T = N->getValueType(0);
13520     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13521     bool Regs64bit = T == MVT::i128;
13522     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13523     SDValue cpInL, cpInH;
13524     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13525                         DAG.getConstant(0, HalfT));
13526     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13527                         DAG.getConstant(1, HalfT));
13528     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13529                              Regs64bit ? X86::RAX : X86::EAX,
13530                              cpInL, SDValue());
13531     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13532                              Regs64bit ? X86::RDX : X86::EDX,
13533                              cpInH, cpInL.getValue(1));
13534     SDValue swapInL, swapInH;
13535     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13536                           DAG.getConstant(0, HalfT));
13537     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13538                           DAG.getConstant(1, HalfT));
13539     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13540                                Regs64bit ? X86::RBX : X86::EBX,
13541                                swapInL, cpInH.getValue(1));
13542     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13543                                Regs64bit ? X86::RCX : X86::ECX,
13544                                swapInH, swapInL.getValue(1));
13545     SDValue Ops[] = { swapInH.getValue(0),
13546                       N->getOperand(1),
13547                       swapInH.getValue(1) };
13548     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13549     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13550     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13551                                   X86ISD::LCMPXCHG8_DAG;
13552     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13553                                              Ops, array_lengthof(Ops), T, MMO);
13554     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13555                                         Regs64bit ? X86::RAX : X86::EAX,
13556                                         HalfT, Result.getValue(1));
13557     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13558                                         Regs64bit ? X86::RDX : X86::EDX,
13559                                         HalfT, cpOutL.getValue(2));
13560     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13561     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13562     Results.push_back(cpOutH.getValue(1));
13563     return;
13564   }
13565   case ISD::ATOMIC_LOAD_ADD:
13566   case ISD::ATOMIC_LOAD_AND:
13567   case ISD::ATOMIC_LOAD_NAND:
13568   case ISD::ATOMIC_LOAD_OR:
13569   case ISD::ATOMIC_LOAD_SUB:
13570   case ISD::ATOMIC_LOAD_XOR:
13571   case ISD::ATOMIC_LOAD_MAX:
13572   case ISD::ATOMIC_LOAD_MIN:
13573   case ISD::ATOMIC_LOAD_UMAX:
13574   case ISD::ATOMIC_LOAD_UMIN:
13575   case ISD::ATOMIC_SWAP: {
13576     unsigned Opc;
13577     switch (N->getOpcode()) {
13578     default: llvm_unreachable("Unexpected opcode");
13579     case ISD::ATOMIC_LOAD_ADD:
13580       Opc = X86ISD::ATOMADD64_DAG;
13581       break;
13582     case ISD::ATOMIC_LOAD_AND:
13583       Opc = X86ISD::ATOMAND64_DAG;
13584       break;
13585     case ISD::ATOMIC_LOAD_NAND:
13586       Opc = X86ISD::ATOMNAND64_DAG;
13587       break;
13588     case ISD::ATOMIC_LOAD_OR:
13589       Opc = X86ISD::ATOMOR64_DAG;
13590       break;
13591     case ISD::ATOMIC_LOAD_SUB:
13592       Opc = X86ISD::ATOMSUB64_DAG;
13593       break;
13594     case ISD::ATOMIC_LOAD_XOR:
13595       Opc = X86ISD::ATOMXOR64_DAG;
13596       break;
13597     case ISD::ATOMIC_LOAD_MAX:
13598       Opc = X86ISD::ATOMMAX64_DAG;
13599       break;
13600     case ISD::ATOMIC_LOAD_MIN:
13601       Opc = X86ISD::ATOMMIN64_DAG;
13602       break;
13603     case ISD::ATOMIC_LOAD_UMAX:
13604       Opc = X86ISD::ATOMUMAX64_DAG;
13605       break;
13606     case ISD::ATOMIC_LOAD_UMIN:
13607       Opc = X86ISD::ATOMUMIN64_DAG;
13608       break;
13609     case ISD::ATOMIC_SWAP:
13610       Opc = X86ISD::ATOMSWAP64_DAG;
13611       break;
13612     }
13613     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13614     return;
13615   }
13616   case ISD::ATOMIC_LOAD:
13617     ReplaceATOMIC_LOAD(N, Results, DAG);
13618   }
13619 }
13620
13621 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13622   switch (Opcode) {
13623   default: return NULL;
13624   case X86ISD::BSF:                return "X86ISD::BSF";
13625   case X86ISD::BSR:                return "X86ISD::BSR";
13626   case X86ISD::SHLD:               return "X86ISD::SHLD";
13627   case X86ISD::SHRD:               return "X86ISD::SHRD";
13628   case X86ISD::FAND:               return "X86ISD::FAND";
13629   case X86ISD::FANDN:              return "X86ISD::FANDN";
13630   case X86ISD::FOR:                return "X86ISD::FOR";
13631   case X86ISD::FXOR:               return "X86ISD::FXOR";
13632   case X86ISD::FSRL:               return "X86ISD::FSRL";
13633   case X86ISD::FILD:               return "X86ISD::FILD";
13634   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13635   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13636   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13637   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13638   case X86ISD::FLD:                return "X86ISD::FLD";
13639   case X86ISD::FST:                return "X86ISD::FST";
13640   case X86ISD::CALL:               return "X86ISD::CALL";
13641   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13642   case X86ISD::BT:                 return "X86ISD::BT";
13643   case X86ISD::CMP:                return "X86ISD::CMP";
13644   case X86ISD::COMI:               return "X86ISD::COMI";
13645   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13646   case X86ISD::CMPM:               return "X86ISD::CMPM";
13647   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13648   case X86ISD::SETCC:              return "X86ISD::SETCC";
13649   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13650   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13651   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13652   case X86ISD::CMOV:               return "X86ISD::CMOV";
13653   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13654   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13655   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13656   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13657   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13658   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13659   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13660   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13661   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13662   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13663   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13664   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13665   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13666   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13667   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13668   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13669   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13670   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13671   case X86ISD::HADD:               return "X86ISD::HADD";
13672   case X86ISD::HSUB:               return "X86ISD::HSUB";
13673   case X86ISD::FHADD:              return "X86ISD::FHADD";
13674   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13675   case X86ISD::UMAX:               return "X86ISD::UMAX";
13676   case X86ISD::UMIN:               return "X86ISD::UMIN";
13677   case X86ISD::SMAX:               return "X86ISD::SMAX";
13678   case X86ISD::SMIN:               return "X86ISD::SMIN";
13679   case X86ISD::FMAX:               return "X86ISD::FMAX";
13680   case X86ISD::FMIN:               return "X86ISD::FMIN";
13681   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13682   case X86ISD::FMINC:              return "X86ISD::FMINC";
13683   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13684   case X86ISD::FRCP:               return "X86ISD::FRCP";
13685   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13686   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13687   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13688   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13689   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13690   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13691   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13692   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13693   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13694   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13695   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13696   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13697   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13698   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13699   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13700   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13701   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13702   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13703   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13704   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13705   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13706   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13707   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13708   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13709   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13710   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13711   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13712   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13713   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13714   case X86ISD::VSHL:               return "X86ISD::VSHL";
13715   case X86ISD::VSRL:               return "X86ISD::VSRL";
13716   case X86ISD::VSRA:               return "X86ISD::VSRA";
13717   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13718   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13719   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13720   case X86ISD::CMPP:               return "X86ISD::CMPP";
13721   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13722   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13723   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13724   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13725   case X86ISD::ADD:                return "X86ISD::ADD";
13726   case X86ISD::SUB:                return "X86ISD::SUB";
13727   case X86ISD::ADC:                return "X86ISD::ADC";
13728   case X86ISD::SBB:                return "X86ISD::SBB";
13729   case X86ISD::SMUL:               return "X86ISD::SMUL";
13730   case X86ISD::UMUL:               return "X86ISD::UMUL";
13731   case X86ISD::INC:                return "X86ISD::INC";
13732   case X86ISD::DEC:                return "X86ISD::DEC";
13733   case X86ISD::OR:                 return "X86ISD::OR";
13734   case X86ISD::XOR:                return "X86ISD::XOR";
13735   case X86ISD::AND:                return "X86ISD::AND";
13736   case X86ISD::BLSI:               return "X86ISD::BLSI";
13737   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13738   case X86ISD::BLSR:               return "X86ISD::BLSR";
13739   case X86ISD::BZHI:               return "X86ISD::BZHI";
13740   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13741   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13742   case X86ISD::PTEST:              return "X86ISD::PTEST";
13743   case X86ISD::TESTP:              return "X86ISD::TESTP";
13744   case X86ISD::TESTM:              return "X86ISD::TESTM";
13745   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13746   case X86ISD::KTEST:              return "X86ISD::KTEST";
13747   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13748   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13749   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13750   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13751   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13752   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13753   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13754   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13755   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13756   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13757   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13758   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13759   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13760   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13761   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13762   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13763   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13764   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13765   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13766   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13767   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13768   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13769   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13770   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13771   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13772   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13773   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13774   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13775   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13776   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13777   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13778   case X86ISD::SAHF:               return "X86ISD::SAHF";
13779   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13780   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13781   case X86ISD::FMADD:              return "X86ISD::FMADD";
13782   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13783   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13784   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13785   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13786   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13787   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13788   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13789   case X86ISD::XTEST:              return "X86ISD::XTEST";
13790   }
13791 }
13792
13793 // isLegalAddressingMode - Return true if the addressing mode represented
13794 // by AM is legal for this target, for a load/store of the specified type.
13795 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13796                                               Type *Ty) const {
13797   // X86 supports extremely general addressing modes.
13798   CodeModel::Model M = getTargetMachine().getCodeModel();
13799   Reloc::Model R = getTargetMachine().getRelocationModel();
13800
13801   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13802   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13803     return false;
13804
13805   if (AM.BaseGV) {
13806     unsigned GVFlags =
13807       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13808
13809     // If a reference to this global requires an extra load, we can't fold it.
13810     if (isGlobalStubReference(GVFlags))
13811       return false;
13812
13813     // If BaseGV requires a register for the PIC base, we cannot also have a
13814     // BaseReg specified.
13815     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13816       return false;
13817
13818     // If lower 4G is not available, then we must use rip-relative addressing.
13819     if ((M != CodeModel::Small || R != Reloc::Static) &&
13820         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13821       return false;
13822   }
13823
13824   switch (AM.Scale) {
13825   case 0:
13826   case 1:
13827   case 2:
13828   case 4:
13829   case 8:
13830     // These scales always work.
13831     break;
13832   case 3:
13833   case 5:
13834   case 9:
13835     // These scales are formed with basereg+scalereg.  Only accept if there is
13836     // no basereg yet.
13837     if (AM.HasBaseReg)
13838       return false;
13839     break;
13840   default:  // Other stuff never works.
13841     return false;
13842   }
13843
13844   return true;
13845 }
13846
13847 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13848   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13849     return false;
13850   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13851   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13852   return NumBits1 > NumBits2;
13853 }
13854
13855 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13856   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13857     return false;
13858
13859   if (!isTypeLegal(EVT::getEVT(Ty1)))
13860     return false;
13861
13862   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13863
13864   // Assuming the caller doesn't have a zeroext or signext return parameter,
13865   // truncation all the way down to i1 is valid.
13866   return true;
13867 }
13868
13869 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13870   return isInt<32>(Imm);
13871 }
13872
13873 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13874   // Can also use sub to handle negated immediates.
13875   return isInt<32>(Imm);
13876 }
13877
13878 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13879   if (!VT1.isInteger() || !VT2.isInteger())
13880     return false;
13881   unsigned NumBits1 = VT1.getSizeInBits();
13882   unsigned NumBits2 = VT2.getSizeInBits();
13883   return NumBits1 > NumBits2;
13884 }
13885
13886 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13887   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13888   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13889 }
13890
13891 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13892   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13893   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13894 }
13895
13896 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13897   EVT VT1 = Val.getValueType();
13898   if (isZExtFree(VT1, VT2))
13899     return true;
13900
13901   if (Val.getOpcode() != ISD::LOAD)
13902     return false;
13903
13904   if (!VT1.isSimple() || !VT1.isInteger() ||
13905       !VT2.isSimple() || !VT2.isInteger())
13906     return false;
13907
13908   switch (VT1.getSimpleVT().SimpleTy) {
13909   default: break;
13910   case MVT::i8:
13911   case MVT::i16:
13912   case MVT::i32:
13913     // X86 has 8, 16, and 32-bit zero-extending loads.
13914     return true;
13915   }
13916
13917   return false;
13918 }
13919
13920 bool
13921 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13922   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13923     return false;
13924
13925   VT = VT.getScalarType();
13926
13927   if (!VT.isSimple())
13928     return false;
13929
13930   switch (VT.getSimpleVT().SimpleTy) {
13931   case MVT::f32:
13932   case MVT::f64:
13933     return true;
13934   default:
13935     break;
13936   }
13937
13938   return false;
13939 }
13940
13941 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13942   // i16 instructions are longer (0x66 prefix) and potentially slower.
13943   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13944 }
13945
13946 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13947 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13948 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13949 /// are assumed to be legal.
13950 bool
13951 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13952                                       EVT VT) const {
13953   if (!VT.isSimple())
13954     return false;
13955
13956   MVT SVT = VT.getSimpleVT();
13957
13958   // Very little shuffling can be done for 64-bit vectors right now.
13959   if (VT.getSizeInBits() == 64)
13960     return false;
13961
13962   // FIXME: pshufb, blends, shifts.
13963   return (SVT.getVectorNumElements() == 2 ||
13964           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13965           isMOVLMask(M, SVT) ||
13966           isSHUFPMask(M, SVT) ||
13967           isPSHUFDMask(M, SVT) ||
13968           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13969           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13970           isPALIGNRMask(M, SVT, Subtarget) ||
13971           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13972           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13973           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13974           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13975 }
13976
13977 bool
13978 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13979                                           EVT VT) const {
13980   if (!VT.isSimple())
13981     return false;
13982
13983   MVT SVT = VT.getSimpleVT();
13984   unsigned NumElts = SVT.getVectorNumElements();
13985   // FIXME: This collection of masks seems suspect.
13986   if (NumElts == 2)
13987     return true;
13988   if (NumElts == 4 && SVT.is128BitVector()) {
13989     return (isMOVLMask(Mask, SVT)  ||
13990             isCommutedMOVLMask(Mask, SVT, true) ||
13991             isSHUFPMask(Mask, SVT) ||
13992             isSHUFPMask(Mask, SVT, /* Commuted */ true));
13993   }
13994   return false;
13995 }
13996
13997 //===----------------------------------------------------------------------===//
13998 //                           X86 Scheduler Hooks
13999 //===----------------------------------------------------------------------===//
14000
14001 /// Utility function to emit xbegin specifying the start of an RTM region.
14002 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14003                                      const TargetInstrInfo *TII) {
14004   DebugLoc DL = MI->getDebugLoc();
14005
14006   const BasicBlock *BB = MBB->getBasicBlock();
14007   MachineFunction::iterator I = MBB;
14008   ++I;
14009
14010   // For the v = xbegin(), we generate
14011   //
14012   // thisMBB:
14013   //  xbegin sinkMBB
14014   //
14015   // mainMBB:
14016   //  eax = -1
14017   //
14018   // sinkMBB:
14019   //  v = eax
14020
14021   MachineBasicBlock *thisMBB = MBB;
14022   MachineFunction *MF = MBB->getParent();
14023   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14024   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14025   MF->insert(I, mainMBB);
14026   MF->insert(I, sinkMBB);
14027
14028   // Transfer the remainder of BB and its successor edges to sinkMBB.
14029   sinkMBB->splice(sinkMBB->begin(), MBB,
14030                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14031   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14032
14033   // thisMBB:
14034   //  xbegin sinkMBB
14035   //  # fallthrough to mainMBB
14036   //  # abortion to sinkMBB
14037   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14038   thisMBB->addSuccessor(mainMBB);
14039   thisMBB->addSuccessor(sinkMBB);
14040
14041   // mainMBB:
14042   //  EAX = -1
14043   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14044   mainMBB->addSuccessor(sinkMBB);
14045
14046   // sinkMBB:
14047   // EAX is live into the sinkMBB
14048   sinkMBB->addLiveIn(X86::EAX);
14049   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14050           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14051     .addReg(X86::EAX);
14052
14053   MI->eraseFromParent();
14054   return sinkMBB;
14055 }
14056
14057 // Get CMPXCHG opcode for the specified data type.
14058 static unsigned getCmpXChgOpcode(EVT VT) {
14059   switch (VT.getSimpleVT().SimpleTy) {
14060   case MVT::i8:  return X86::LCMPXCHG8;
14061   case MVT::i16: return X86::LCMPXCHG16;
14062   case MVT::i32: return X86::LCMPXCHG32;
14063   case MVT::i64: return X86::LCMPXCHG64;
14064   default:
14065     break;
14066   }
14067   llvm_unreachable("Invalid operand size!");
14068 }
14069
14070 // Get LOAD opcode for the specified data type.
14071 static unsigned getLoadOpcode(EVT VT) {
14072   switch (VT.getSimpleVT().SimpleTy) {
14073   case MVT::i8:  return X86::MOV8rm;
14074   case MVT::i16: return X86::MOV16rm;
14075   case MVT::i32: return X86::MOV32rm;
14076   case MVT::i64: return X86::MOV64rm;
14077   default:
14078     break;
14079   }
14080   llvm_unreachable("Invalid operand size!");
14081 }
14082
14083 // Get opcode of the non-atomic one from the specified atomic instruction.
14084 static unsigned getNonAtomicOpcode(unsigned Opc) {
14085   switch (Opc) {
14086   case X86::ATOMAND8:  return X86::AND8rr;
14087   case X86::ATOMAND16: return X86::AND16rr;
14088   case X86::ATOMAND32: return X86::AND32rr;
14089   case X86::ATOMAND64: return X86::AND64rr;
14090   case X86::ATOMOR8:   return X86::OR8rr;
14091   case X86::ATOMOR16:  return X86::OR16rr;
14092   case X86::ATOMOR32:  return X86::OR32rr;
14093   case X86::ATOMOR64:  return X86::OR64rr;
14094   case X86::ATOMXOR8:  return X86::XOR8rr;
14095   case X86::ATOMXOR16: return X86::XOR16rr;
14096   case X86::ATOMXOR32: return X86::XOR32rr;
14097   case X86::ATOMXOR64: return X86::XOR64rr;
14098   }
14099   llvm_unreachable("Unhandled atomic-load-op opcode!");
14100 }
14101
14102 // Get opcode of the non-atomic one from the specified atomic instruction with
14103 // extra opcode.
14104 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14105                                                unsigned &ExtraOpc) {
14106   switch (Opc) {
14107   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14108   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14109   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14110   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14111   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14112   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14113   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14114   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14115   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14116   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14117   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14118   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14119   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14120   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14121   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14122   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14123   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14124   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14125   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14126   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14127   }
14128   llvm_unreachable("Unhandled atomic-load-op opcode!");
14129 }
14130
14131 // Get opcode of the non-atomic one from the specified atomic instruction for
14132 // 64-bit data type on 32-bit target.
14133 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14134   switch (Opc) {
14135   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14136   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14137   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14138   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14139   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14140   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14141   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14142   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14143   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14144   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14145   }
14146   llvm_unreachable("Unhandled atomic-load-op opcode!");
14147 }
14148
14149 // Get opcode of the non-atomic one from the specified atomic instruction for
14150 // 64-bit data type on 32-bit target with extra opcode.
14151 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14152                                                    unsigned &HiOpc,
14153                                                    unsigned &ExtraOpc) {
14154   switch (Opc) {
14155   case X86::ATOMNAND6432:
14156     ExtraOpc = X86::NOT32r;
14157     HiOpc = X86::AND32rr;
14158     return X86::AND32rr;
14159   }
14160   llvm_unreachable("Unhandled atomic-load-op opcode!");
14161 }
14162
14163 // Get pseudo CMOV opcode from the specified data type.
14164 static unsigned getPseudoCMOVOpc(EVT VT) {
14165   switch (VT.getSimpleVT().SimpleTy) {
14166   case MVT::i8:  return X86::CMOV_GR8;
14167   case MVT::i16: return X86::CMOV_GR16;
14168   case MVT::i32: return X86::CMOV_GR32;
14169   default:
14170     break;
14171   }
14172   llvm_unreachable("Unknown CMOV opcode!");
14173 }
14174
14175 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14176 // They will be translated into a spin-loop or compare-exchange loop from
14177 //
14178 //    ...
14179 //    dst = atomic-fetch-op MI.addr, MI.val
14180 //    ...
14181 //
14182 // to
14183 //
14184 //    ...
14185 //    t1 = LOAD MI.addr
14186 // loop:
14187 //    t4 = phi(t1, t3 / loop)
14188 //    t2 = OP MI.val, t4
14189 //    EAX = t4
14190 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14191 //    t3 = EAX
14192 //    JNE loop
14193 // sink:
14194 //    dst = t3
14195 //    ...
14196 MachineBasicBlock *
14197 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14198                                        MachineBasicBlock *MBB) const {
14199   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14200   DebugLoc DL = MI->getDebugLoc();
14201
14202   MachineFunction *MF = MBB->getParent();
14203   MachineRegisterInfo &MRI = MF->getRegInfo();
14204
14205   const BasicBlock *BB = MBB->getBasicBlock();
14206   MachineFunction::iterator I = MBB;
14207   ++I;
14208
14209   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14210          "Unexpected number of operands");
14211
14212   assert(MI->hasOneMemOperand() &&
14213          "Expected atomic-load-op to have one memoperand");
14214
14215   // Memory Reference
14216   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14217   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14218
14219   unsigned DstReg, SrcReg;
14220   unsigned MemOpndSlot;
14221
14222   unsigned CurOp = 0;
14223
14224   DstReg = MI->getOperand(CurOp++).getReg();
14225   MemOpndSlot = CurOp;
14226   CurOp += X86::AddrNumOperands;
14227   SrcReg = MI->getOperand(CurOp++).getReg();
14228
14229   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14230   MVT::SimpleValueType VT = *RC->vt_begin();
14231   unsigned t1 = MRI.createVirtualRegister(RC);
14232   unsigned t2 = MRI.createVirtualRegister(RC);
14233   unsigned t3 = MRI.createVirtualRegister(RC);
14234   unsigned t4 = MRI.createVirtualRegister(RC);
14235   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14236
14237   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14238   unsigned LOADOpc = getLoadOpcode(VT);
14239
14240   // For the atomic load-arith operator, we generate
14241   //
14242   //  thisMBB:
14243   //    t1 = LOAD [MI.addr]
14244   //  mainMBB:
14245   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14246   //    t1 = OP MI.val, EAX
14247   //    EAX = t4
14248   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14249   //    t3 = EAX
14250   //    JNE mainMBB
14251   //  sinkMBB:
14252   //    dst = t3
14253
14254   MachineBasicBlock *thisMBB = MBB;
14255   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14256   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14257   MF->insert(I, mainMBB);
14258   MF->insert(I, sinkMBB);
14259
14260   MachineInstrBuilder MIB;
14261
14262   // Transfer the remainder of BB and its successor edges to sinkMBB.
14263   sinkMBB->splice(sinkMBB->begin(), MBB,
14264                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14265   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14266
14267   // thisMBB:
14268   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14269   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14270     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14271     if (NewMO.isReg())
14272       NewMO.setIsKill(false);
14273     MIB.addOperand(NewMO);
14274   }
14275   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14276     unsigned flags = (*MMOI)->getFlags();
14277     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14278     MachineMemOperand *MMO =
14279       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14280                                (*MMOI)->getSize(),
14281                                (*MMOI)->getBaseAlignment(),
14282                                (*MMOI)->getTBAAInfo(),
14283                                (*MMOI)->getRanges());
14284     MIB.addMemOperand(MMO);
14285   }
14286
14287   thisMBB->addSuccessor(mainMBB);
14288
14289   // mainMBB:
14290   MachineBasicBlock *origMainMBB = mainMBB;
14291
14292   // Add a PHI.
14293   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14294                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14295
14296   unsigned Opc = MI->getOpcode();
14297   switch (Opc) {
14298   default:
14299     llvm_unreachable("Unhandled atomic-load-op opcode!");
14300   case X86::ATOMAND8:
14301   case X86::ATOMAND16:
14302   case X86::ATOMAND32:
14303   case X86::ATOMAND64:
14304   case X86::ATOMOR8:
14305   case X86::ATOMOR16:
14306   case X86::ATOMOR32:
14307   case X86::ATOMOR64:
14308   case X86::ATOMXOR8:
14309   case X86::ATOMXOR16:
14310   case X86::ATOMXOR32:
14311   case X86::ATOMXOR64: {
14312     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14313     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14314       .addReg(t4);
14315     break;
14316   }
14317   case X86::ATOMNAND8:
14318   case X86::ATOMNAND16:
14319   case X86::ATOMNAND32:
14320   case X86::ATOMNAND64: {
14321     unsigned Tmp = MRI.createVirtualRegister(RC);
14322     unsigned NOTOpc;
14323     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14324     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14325       .addReg(t4);
14326     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14327     break;
14328   }
14329   case X86::ATOMMAX8:
14330   case X86::ATOMMAX16:
14331   case X86::ATOMMAX32:
14332   case X86::ATOMMAX64:
14333   case X86::ATOMMIN8:
14334   case X86::ATOMMIN16:
14335   case X86::ATOMMIN32:
14336   case X86::ATOMMIN64:
14337   case X86::ATOMUMAX8:
14338   case X86::ATOMUMAX16:
14339   case X86::ATOMUMAX32:
14340   case X86::ATOMUMAX64:
14341   case X86::ATOMUMIN8:
14342   case X86::ATOMUMIN16:
14343   case X86::ATOMUMIN32:
14344   case X86::ATOMUMIN64: {
14345     unsigned CMPOpc;
14346     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14347
14348     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14349       .addReg(SrcReg)
14350       .addReg(t4);
14351
14352     if (Subtarget->hasCMov()) {
14353       if (VT != MVT::i8) {
14354         // Native support
14355         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14356           .addReg(SrcReg)
14357           .addReg(t4);
14358       } else {
14359         // Promote i8 to i32 to use CMOV32
14360         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14361         const TargetRegisterClass *RC32 =
14362           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14363         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14364         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14365         unsigned Tmp = MRI.createVirtualRegister(RC32);
14366
14367         unsigned Undef = MRI.createVirtualRegister(RC32);
14368         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14369
14370         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14371           .addReg(Undef)
14372           .addReg(SrcReg)
14373           .addImm(X86::sub_8bit);
14374         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14375           .addReg(Undef)
14376           .addReg(t4)
14377           .addImm(X86::sub_8bit);
14378
14379         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14380           .addReg(SrcReg32)
14381           .addReg(AccReg32);
14382
14383         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14384           .addReg(Tmp, 0, X86::sub_8bit);
14385       }
14386     } else {
14387       // Use pseudo select and lower them.
14388       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14389              "Invalid atomic-load-op transformation!");
14390       unsigned SelOpc = getPseudoCMOVOpc(VT);
14391       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14392       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14393       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14394               .addReg(SrcReg).addReg(t4)
14395               .addImm(CC);
14396       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14397       // Replace the original PHI node as mainMBB is changed after CMOV
14398       // lowering.
14399       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14400         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14401       Phi->eraseFromParent();
14402     }
14403     break;
14404   }
14405   }
14406
14407   // Copy PhyReg back from virtual register.
14408   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14409     .addReg(t4);
14410
14411   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14412   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14413     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14414     if (NewMO.isReg())
14415       NewMO.setIsKill(false);
14416     MIB.addOperand(NewMO);
14417   }
14418   MIB.addReg(t2);
14419   MIB.setMemRefs(MMOBegin, MMOEnd);
14420
14421   // Copy PhyReg back to virtual register.
14422   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14423     .addReg(PhyReg);
14424
14425   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14426
14427   mainMBB->addSuccessor(origMainMBB);
14428   mainMBB->addSuccessor(sinkMBB);
14429
14430   // sinkMBB:
14431   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14432           TII->get(TargetOpcode::COPY), DstReg)
14433     .addReg(t3);
14434
14435   MI->eraseFromParent();
14436   return sinkMBB;
14437 }
14438
14439 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14440 // instructions. They will be translated into a spin-loop or compare-exchange
14441 // loop from
14442 //
14443 //    ...
14444 //    dst = atomic-fetch-op MI.addr, MI.val
14445 //    ...
14446 //
14447 // to
14448 //
14449 //    ...
14450 //    t1L = LOAD [MI.addr + 0]
14451 //    t1H = LOAD [MI.addr + 4]
14452 // loop:
14453 //    t4L = phi(t1L, t3L / loop)
14454 //    t4H = phi(t1H, t3H / loop)
14455 //    t2L = OP MI.val.lo, t4L
14456 //    t2H = OP MI.val.hi, t4H
14457 //    EAX = t4L
14458 //    EDX = t4H
14459 //    EBX = t2L
14460 //    ECX = t2H
14461 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14462 //    t3L = EAX
14463 //    t3H = EDX
14464 //    JNE loop
14465 // sink:
14466 //    dstL = t3L
14467 //    dstH = t3H
14468 //    ...
14469 MachineBasicBlock *
14470 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14471                                            MachineBasicBlock *MBB) const {
14472   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14473   DebugLoc DL = MI->getDebugLoc();
14474
14475   MachineFunction *MF = MBB->getParent();
14476   MachineRegisterInfo &MRI = MF->getRegInfo();
14477
14478   const BasicBlock *BB = MBB->getBasicBlock();
14479   MachineFunction::iterator I = MBB;
14480   ++I;
14481
14482   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14483          "Unexpected number of operands");
14484
14485   assert(MI->hasOneMemOperand() &&
14486          "Expected atomic-load-op32 to have one memoperand");
14487
14488   // Memory Reference
14489   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14490   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14491
14492   unsigned DstLoReg, DstHiReg;
14493   unsigned SrcLoReg, SrcHiReg;
14494   unsigned MemOpndSlot;
14495
14496   unsigned CurOp = 0;
14497
14498   DstLoReg = MI->getOperand(CurOp++).getReg();
14499   DstHiReg = MI->getOperand(CurOp++).getReg();
14500   MemOpndSlot = CurOp;
14501   CurOp += X86::AddrNumOperands;
14502   SrcLoReg = MI->getOperand(CurOp++).getReg();
14503   SrcHiReg = MI->getOperand(CurOp++).getReg();
14504
14505   const TargetRegisterClass *RC = &X86::GR32RegClass;
14506   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14507
14508   unsigned t1L = MRI.createVirtualRegister(RC);
14509   unsigned t1H = MRI.createVirtualRegister(RC);
14510   unsigned t2L = MRI.createVirtualRegister(RC);
14511   unsigned t2H = MRI.createVirtualRegister(RC);
14512   unsigned t3L = MRI.createVirtualRegister(RC);
14513   unsigned t3H = MRI.createVirtualRegister(RC);
14514   unsigned t4L = MRI.createVirtualRegister(RC);
14515   unsigned t4H = MRI.createVirtualRegister(RC);
14516
14517   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14518   unsigned LOADOpc = X86::MOV32rm;
14519
14520   // For the atomic load-arith operator, we generate
14521   //
14522   //  thisMBB:
14523   //    t1L = LOAD [MI.addr + 0]
14524   //    t1H = LOAD [MI.addr + 4]
14525   //  mainMBB:
14526   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14527   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14528   //    t2L = OP MI.val.lo, t4L
14529   //    t2H = OP MI.val.hi, t4H
14530   //    EBX = t2L
14531   //    ECX = t2H
14532   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14533   //    t3L = EAX
14534   //    t3H = EDX
14535   //    JNE loop
14536   //  sinkMBB:
14537   //    dstL = t3L
14538   //    dstH = t3H
14539
14540   MachineBasicBlock *thisMBB = MBB;
14541   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14542   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14543   MF->insert(I, mainMBB);
14544   MF->insert(I, sinkMBB);
14545
14546   MachineInstrBuilder MIB;
14547
14548   // Transfer the remainder of BB and its successor edges to sinkMBB.
14549   sinkMBB->splice(sinkMBB->begin(), MBB,
14550                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14551   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14552
14553   // thisMBB:
14554   // Lo
14555   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14556   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14557     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14558     if (NewMO.isReg())
14559       NewMO.setIsKill(false);
14560     MIB.addOperand(NewMO);
14561   }
14562   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14563     unsigned flags = (*MMOI)->getFlags();
14564     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14565     MachineMemOperand *MMO =
14566       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14567                                (*MMOI)->getSize(),
14568                                (*MMOI)->getBaseAlignment(),
14569                                (*MMOI)->getTBAAInfo(),
14570                                (*MMOI)->getRanges());
14571     MIB.addMemOperand(MMO);
14572   };
14573   MachineInstr *LowMI = MIB;
14574
14575   // Hi
14576   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14577   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14578     if (i == X86::AddrDisp) {
14579       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14580     } else {
14581       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14582       if (NewMO.isReg())
14583         NewMO.setIsKill(false);
14584       MIB.addOperand(NewMO);
14585     }
14586   }
14587   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14588
14589   thisMBB->addSuccessor(mainMBB);
14590
14591   // mainMBB:
14592   MachineBasicBlock *origMainMBB = mainMBB;
14593
14594   // Add PHIs.
14595   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14596                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14597   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14598                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14599
14600   unsigned Opc = MI->getOpcode();
14601   switch (Opc) {
14602   default:
14603     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14604   case X86::ATOMAND6432:
14605   case X86::ATOMOR6432:
14606   case X86::ATOMXOR6432:
14607   case X86::ATOMADD6432:
14608   case X86::ATOMSUB6432: {
14609     unsigned HiOpc;
14610     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14611     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14612       .addReg(SrcLoReg);
14613     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14614       .addReg(SrcHiReg);
14615     break;
14616   }
14617   case X86::ATOMNAND6432: {
14618     unsigned HiOpc, NOTOpc;
14619     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14620     unsigned TmpL = MRI.createVirtualRegister(RC);
14621     unsigned TmpH = MRI.createVirtualRegister(RC);
14622     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14623       .addReg(t4L);
14624     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14625       .addReg(t4H);
14626     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14627     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14628     break;
14629   }
14630   case X86::ATOMMAX6432:
14631   case X86::ATOMMIN6432:
14632   case X86::ATOMUMAX6432:
14633   case X86::ATOMUMIN6432: {
14634     unsigned HiOpc;
14635     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14636     unsigned cL = MRI.createVirtualRegister(RC8);
14637     unsigned cH = MRI.createVirtualRegister(RC8);
14638     unsigned cL32 = MRI.createVirtualRegister(RC);
14639     unsigned cH32 = MRI.createVirtualRegister(RC);
14640     unsigned cc = MRI.createVirtualRegister(RC);
14641     // cl := cmp src_lo, lo
14642     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14643       .addReg(SrcLoReg).addReg(t4L);
14644     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14645     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14646     // ch := cmp src_hi, hi
14647     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14648       .addReg(SrcHiReg).addReg(t4H);
14649     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14650     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14651     // cc := if (src_hi == hi) ? cl : ch;
14652     if (Subtarget->hasCMov()) {
14653       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14654         .addReg(cH32).addReg(cL32);
14655     } else {
14656       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14657               .addReg(cH32).addReg(cL32)
14658               .addImm(X86::COND_E);
14659       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14660     }
14661     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14662     if (Subtarget->hasCMov()) {
14663       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14664         .addReg(SrcLoReg).addReg(t4L);
14665       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14666         .addReg(SrcHiReg).addReg(t4H);
14667     } else {
14668       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14669               .addReg(SrcLoReg).addReg(t4L)
14670               .addImm(X86::COND_NE);
14671       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14672       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14673       // 2nd CMOV lowering.
14674       mainMBB->addLiveIn(X86::EFLAGS);
14675       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14676               .addReg(SrcHiReg).addReg(t4H)
14677               .addImm(X86::COND_NE);
14678       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14679       // Replace the original PHI node as mainMBB is changed after CMOV
14680       // lowering.
14681       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14682         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14683       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14684         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14685       PhiL->eraseFromParent();
14686       PhiH->eraseFromParent();
14687     }
14688     break;
14689   }
14690   case X86::ATOMSWAP6432: {
14691     unsigned HiOpc;
14692     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14693     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14694     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14695     break;
14696   }
14697   }
14698
14699   // Copy EDX:EAX back from HiReg:LoReg
14700   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14701   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14702   // Copy ECX:EBX from t1H:t1L
14703   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14704   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14705
14706   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14707   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14708     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14709     if (NewMO.isReg())
14710       NewMO.setIsKill(false);
14711     MIB.addOperand(NewMO);
14712   }
14713   MIB.setMemRefs(MMOBegin, MMOEnd);
14714
14715   // Copy EDX:EAX back to t3H:t3L
14716   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14717   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14718
14719   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14720
14721   mainMBB->addSuccessor(origMainMBB);
14722   mainMBB->addSuccessor(sinkMBB);
14723
14724   // sinkMBB:
14725   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14726           TII->get(TargetOpcode::COPY), DstLoReg)
14727     .addReg(t3L);
14728   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14729           TII->get(TargetOpcode::COPY), DstHiReg)
14730     .addReg(t3H);
14731
14732   MI->eraseFromParent();
14733   return sinkMBB;
14734 }
14735
14736 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14737 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14738 // in the .td file.
14739 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14740                                        const TargetInstrInfo *TII) {
14741   unsigned Opc;
14742   switch (MI->getOpcode()) {
14743   default: llvm_unreachable("illegal opcode!");
14744   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14745   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14746   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14747   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14748   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14749   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14750   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14751   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14752   }
14753
14754   DebugLoc dl = MI->getDebugLoc();
14755   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14756
14757   unsigned NumArgs = MI->getNumOperands();
14758   for (unsigned i = 1; i < NumArgs; ++i) {
14759     MachineOperand &Op = MI->getOperand(i);
14760     if (!(Op.isReg() && Op.isImplicit()))
14761       MIB.addOperand(Op);
14762   }
14763   if (MI->hasOneMemOperand())
14764     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14765
14766   BuildMI(*BB, MI, dl,
14767     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14768     .addReg(X86::XMM0);
14769
14770   MI->eraseFromParent();
14771   return BB;
14772 }
14773
14774 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14775 // defs in an instruction pattern
14776 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14777                                        const TargetInstrInfo *TII) {
14778   unsigned Opc;
14779   switch (MI->getOpcode()) {
14780   default: llvm_unreachable("illegal opcode!");
14781   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14782   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14783   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14784   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14785   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14786   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14787   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14788   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14789   }
14790
14791   DebugLoc dl = MI->getDebugLoc();
14792   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14793
14794   unsigned NumArgs = MI->getNumOperands(); // remove the results
14795   for (unsigned i = 1; i < NumArgs; ++i) {
14796     MachineOperand &Op = MI->getOperand(i);
14797     if (!(Op.isReg() && Op.isImplicit()))
14798       MIB.addOperand(Op);
14799   }
14800   if (MI->hasOneMemOperand())
14801     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14802
14803   BuildMI(*BB, MI, dl,
14804     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14805     .addReg(X86::ECX);
14806
14807   MI->eraseFromParent();
14808   return BB;
14809 }
14810
14811 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14812                                        const TargetInstrInfo *TII,
14813                                        const X86Subtarget* Subtarget) {
14814   DebugLoc dl = MI->getDebugLoc();
14815
14816   // Address into RAX/EAX, other two args into ECX, EDX.
14817   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14818   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14819   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14820   for (int i = 0; i < X86::AddrNumOperands; ++i)
14821     MIB.addOperand(MI->getOperand(i));
14822
14823   unsigned ValOps = X86::AddrNumOperands;
14824   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14825     .addReg(MI->getOperand(ValOps).getReg());
14826   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14827     .addReg(MI->getOperand(ValOps+1).getReg());
14828
14829   // The instruction doesn't actually take any operands though.
14830   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14831
14832   MI->eraseFromParent(); // The pseudo is gone now.
14833   return BB;
14834 }
14835
14836 MachineBasicBlock *
14837 X86TargetLowering::EmitVAARG64WithCustomInserter(
14838                    MachineInstr *MI,
14839                    MachineBasicBlock *MBB) const {
14840   // Emit va_arg instruction on X86-64.
14841
14842   // Operands to this pseudo-instruction:
14843   // 0  ) Output        : destination address (reg)
14844   // 1-5) Input         : va_list address (addr, i64mem)
14845   // 6  ) ArgSize       : Size (in bytes) of vararg type
14846   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14847   // 8  ) Align         : Alignment of type
14848   // 9  ) EFLAGS (implicit-def)
14849
14850   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14851   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14852
14853   unsigned DestReg = MI->getOperand(0).getReg();
14854   MachineOperand &Base = MI->getOperand(1);
14855   MachineOperand &Scale = MI->getOperand(2);
14856   MachineOperand &Index = MI->getOperand(3);
14857   MachineOperand &Disp = MI->getOperand(4);
14858   MachineOperand &Segment = MI->getOperand(5);
14859   unsigned ArgSize = MI->getOperand(6).getImm();
14860   unsigned ArgMode = MI->getOperand(7).getImm();
14861   unsigned Align = MI->getOperand(8).getImm();
14862
14863   // Memory Reference
14864   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14865   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14866   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14867
14868   // Machine Information
14869   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14870   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14871   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14872   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14873   DebugLoc DL = MI->getDebugLoc();
14874
14875   // struct va_list {
14876   //   i32   gp_offset
14877   //   i32   fp_offset
14878   //   i64   overflow_area (address)
14879   //   i64   reg_save_area (address)
14880   // }
14881   // sizeof(va_list) = 24
14882   // alignment(va_list) = 8
14883
14884   unsigned TotalNumIntRegs = 6;
14885   unsigned TotalNumXMMRegs = 8;
14886   bool UseGPOffset = (ArgMode == 1);
14887   bool UseFPOffset = (ArgMode == 2);
14888   unsigned MaxOffset = TotalNumIntRegs * 8 +
14889                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14890
14891   /* Align ArgSize to a multiple of 8 */
14892   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14893   bool NeedsAlign = (Align > 8);
14894
14895   MachineBasicBlock *thisMBB = MBB;
14896   MachineBasicBlock *overflowMBB;
14897   MachineBasicBlock *offsetMBB;
14898   MachineBasicBlock *endMBB;
14899
14900   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14901   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14902   unsigned OffsetReg = 0;
14903
14904   if (!UseGPOffset && !UseFPOffset) {
14905     // If we only pull from the overflow region, we don't create a branch.
14906     // We don't need to alter control flow.
14907     OffsetDestReg = 0; // unused
14908     OverflowDestReg = DestReg;
14909
14910     offsetMBB = NULL;
14911     overflowMBB = thisMBB;
14912     endMBB = thisMBB;
14913   } else {
14914     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14915     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14916     // If not, pull from overflow_area. (branch to overflowMBB)
14917     //
14918     //       thisMBB
14919     //         |     .
14920     //         |        .
14921     //     offsetMBB   overflowMBB
14922     //         |        .
14923     //         |     .
14924     //        endMBB
14925
14926     // Registers for the PHI in endMBB
14927     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14928     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14929
14930     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14931     MachineFunction *MF = MBB->getParent();
14932     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14933     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14934     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14935
14936     MachineFunction::iterator MBBIter = MBB;
14937     ++MBBIter;
14938
14939     // Insert the new basic blocks
14940     MF->insert(MBBIter, offsetMBB);
14941     MF->insert(MBBIter, overflowMBB);
14942     MF->insert(MBBIter, endMBB);
14943
14944     // Transfer the remainder of MBB and its successor edges to endMBB.
14945     endMBB->splice(endMBB->begin(), thisMBB,
14946                     llvm::next(MachineBasicBlock::iterator(MI)),
14947                     thisMBB->end());
14948     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14949
14950     // Make offsetMBB and overflowMBB successors of thisMBB
14951     thisMBB->addSuccessor(offsetMBB);
14952     thisMBB->addSuccessor(overflowMBB);
14953
14954     // endMBB is a successor of both offsetMBB and overflowMBB
14955     offsetMBB->addSuccessor(endMBB);
14956     overflowMBB->addSuccessor(endMBB);
14957
14958     // Load the offset value into a register
14959     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14960     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14961       .addOperand(Base)
14962       .addOperand(Scale)
14963       .addOperand(Index)
14964       .addDisp(Disp, UseFPOffset ? 4 : 0)
14965       .addOperand(Segment)
14966       .setMemRefs(MMOBegin, MMOEnd);
14967
14968     // Check if there is enough room left to pull this argument.
14969     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14970       .addReg(OffsetReg)
14971       .addImm(MaxOffset + 8 - ArgSizeA8);
14972
14973     // Branch to "overflowMBB" if offset >= max
14974     // Fall through to "offsetMBB" otherwise
14975     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14976       .addMBB(overflowMBB);
14977   }
14978
14979   // In offsetMBB, emit code to use the reg_save_area.
14980   if (offsetMBB) {
14981     assert(OffsetReg != 0);
14982
14983     // Read the reg_save_area address.
14984     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14985     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14986       .addOperand(Base)
14987       .addOperand(Scale)
14988       .addOperand(Index)
14989       .addDisp(Disp, 16)
14990       .addOperand(Segment)
14991       .setMemRefs(MMOBegin, MMOEnd);
14992
14993     // Zero-extend the offset
14994     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14995       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14996         .addImm(0)
14997         .addReg(OffsetReg)
14998         .addImm(X86::sub_32bit);
14999
15000     // Add the offset to the reg_save_area to get the final address.
15001     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15002       .addReg(OffsetReg64)
15003       .addReg(RegSaveReg);
15004
15005     // Compute the offset for the next argument
15006     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15007     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15008       .addReg(OffsetReg)
15009       .addImm(UseFPOffset ? 16 : 8);
15010
15011     // Store it back into the va_list.
15012     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15013       .addOperand(Base)
15014       .addOperand(Scale)
15015       .addOperand(Index)
15016       .addDisp(Disp, UseFPOffset ? 4 : 0)
15017       .addOperand(Segment)
15018       .addReg(NextOffsetReg)
15019       .setMemRefs(MMOBegin, MMOEnd);
15020
15021     // Jump to endMBB
15022     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15023       .addMBB(endMBB);
15024   }
15025
15026   //
15027   // Emit code to use overflow area
15028   //
15029
15030   // Load the overflow_area address into a register.
15031   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15032   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15033     .addOperand(Base)
15034     .addOperand(Scale)
15035     .addOperand(Index)
15036     .addDisp(Disp, 8)
15037     .addOperand(Segment)
15038     .setMemRefs(MMOBegin, MMOEnd);
15039
15040   // If we need to align it, do so. Otherwise, just copy the address
15041   // to OverflowDestReg.
15042   if (NeedsAlign) {
15043     // Align the overflow address
15044     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15045     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15046
15047     // aligned_addr = (addr + (align-1)) & ~(align-1)
15048     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15049       .addReg(OverflowAddrReg)
15050       .addImm(Align-1);
15051
15052     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15053       .addReg(TmpReg)
15054       .addImm(~(uint64_t)(Align-1));
15055   } else {
15056     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15057       .addReg(OverflowAddrReg);
15058   }
15059
15060   // Compute the next overflow address after this argument.
15061   // (the overflow address should be kept 8-byte aligned)
15062   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15063   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15064     .addReg(OverflowDestReg)
15065     .addImm(ArgSizeA8);
15066
15067   // Store the new overflow address.
15068   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15069     .addOperand(Base)
15070     .addOperand(Scale)
15071     .addOperand(Index)
15072     .addDisp(Disp, 8)
15073     .addOperand(Segment)
15074     .addReg(NextAddrReg)
15075     .setMemRefs(MMOBegin, MMOEnd);
15076
15077   // If we branched, emit the PHI to the front of endMBB.
15078   if (offsetMBB) {
15079     BuildMI(*endMBB, endMBB->begin(), DL,
15080             TII->get(X86::PHI), DestReg)
15081       .addReg(OffsetDestReg).addMBB(offsetMBB)
15082       .addReg(OverflowDestReg).addMBB(overflowMBB);
15083   }
15084
15085   // Erase the pseudo instruction
15086   MI->eraseFromParent();
15087
15088   return endMBB;
15089 }
15090
15091 MachineBasicBlock *
15092 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15093                                                  MachineInstr *MI,
15094                                                  MachineBasicBlock *MBB) const {
15095   // Emit code to save XMM registers to the stack. The ABI says that the
15096   // number of registers to save is given in %al, so it's theoretically
15097   // possible to do an indirect jump trick to avoid saving all of them,
15098   // however this code takes a simpler approach and just executes all
15099   // of the stores if %al is non-zero. It's less code, and it's probably
15100   // easier on the hardware branch predictor, and stores aren't all that
15101   // expensive anyway.
15102
15103   // Create the new basic blocks. One block contains all the XMM stores,
15104   // and one block is the final destination regardless of whether any
15105   // stores were performed.
15106   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15107   MachineFunction *F = MBB->getParent();
15108   MachineFunction::iterator MBBIter = MBB;
15109   ++MBBIter;
15110   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15111   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15112   F->insert(MBBIter, XMMSaveMBB);
15113   F->insert(MBBIter, EndMBB);
15114
15115   // Transfer the remainder of MBB and its successor edges to EndMBB.
15116   EndMBB->splice(EndMBB->begin(), MBB,
15117                  llvm::next(MachineBasicBlock::iterator(MI)),
15118                  MBB->end());
15119   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15120
15121   // The original block will now fall through to the XMM save block.
15122   MBB->addSuccessor(XMMSaveMBB);
15123   // The XMMSaveMBB will fall through to the end block.
15124   XMMSaveMBB->addSuccessor(EndMBB);
15125
15126   // Now add the instructions.
15127   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15128   DebugLoc DL = MI->getDebugLoc();
15129
15130   unsigned CountReg = MI->getOperand(0).getReg();
15131   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15132   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15133
15134   if (!Subtarget->isTargetWin64()) {
15135     // If %al is 0, branch around the XMM save block.
15136     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15137     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15138     MBB->addSuccessor(EndMBB);
15139   }
15140
15141   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15142   // In the XMM save block, save all the XMM argument registers.
15143   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15144     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15145     MachineMemOperand *MMO =
15146       F->getMachineMemOperand(
15147           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15148         MachineMemOperand::MOStore,
15149         /*Size=*/16, /*Align=*/16);
15150     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15151       .addFrameIndex(RegSaveFrameIndex)
15152       .addImm(/*Scale=*/1)
15153       .addReg(/*IndexReg=*/0)
15154       .addImm(/*Disp=*/Offset)
15155       .addReg(/*Segment=*/0)
15156       .addReg(MI->getOperand(i).getReg())
15157       .addMemOperand(MMO);
15158   }
15159
15160   MI->eraseFromParent();   // The pseudo instruction is gone now.
15161
15162   return EndMBB;
15163 }
15164
15165 // The EFLAGS operand of SelectItr might be missing a kill marker
15166 // because there were multiple uses of EFLAGS, and ISel didn't know
15167 // which to mark. Figure out whether SelectItr should have had a
15168 // kill marker, and set it if it should. Returns the correct kill
15169 // marker value.
15170 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15171                                      MachineBasicBlock* BB,
15172                                      const TargetRegisterInfo* TRI) {
15173   // Scan forward through BB for a use/def of EFLAGS.
15174   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15175   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15176     const MachineInstr& mi = *miI;
15177     if (mi.readsRegister(X86::EFLAGS))
15178       return false;
15179     if (mi.definesRegister(X86::EFLAGS))
15180       break; // Should have kill-flag - update below.
15181   }
15182
15183   // If we hit the end of the block, check whether EFLAGS is live into a
15184   // successor.
15185   if (miI == BB->end()) {
15186     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15187                                           sEnd = BB->succ_end();
15188          sItr != sEnd; ++sItr) {
15189       MachineBasicBlock* succ = *sItr;
15190       if (succ->isLiveIn(X86::EFLAGS))
15191         return false;
15192     }
15193   }
15194
15195   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15196   // out. SelectMI should have a kill flag on EFLAGS.
15197   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15198   return true;
15199 }
15200
15201 MachineBasicBlock *
15202 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15203                                      MachineBasicBlock *BB) const {
15204   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15205   DebugLoc DL = MI->getDebugLoc();
15206
15207   // To "insert" a SELECT_CC instruction, we actually have to insert the
15208   // diamond control-flow pattern.  The incoming instruction knows the
15209   // destination vreg to set, the condition code register to branch on, the
15210   // true/false values to select between, and a branch opcode to use.
15211   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15212   MachineFunction::iterator It = BB;
15213   ++It;
15214
15215   //  thisMBB:
15216   //  ...
15217   //   TrueVal = ...
15218   //   cmpTY ccX, r1, r2
15219   //   bCC copy1MBB
15220   //   fallthrough --> copy0MBB
15221   MachineBasicBlock *thisMBB = BB;
15222   MachineFunction *F = BB->getParent();
15223   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15224   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15225   F->insert(It, copy0MBB);
15226   F->insert(It, sinkMBB);
15227
15228   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15229   // live into the sink and copy blocks.
15230   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15231   if (!MI->killsRegister(X86::EFLAGS) &&
15232       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15233     copy0MBB->addLiveIn(X86::EFLAGS);
15234     sinkMBB->addLiveIn(X86::EFLAGS);
15235   }
15236
15237   // Transfer the remainder of BB and its successor edges to sinkMBB.
15238   sinkMBB->splice(sinkMBB->begin(), BB,
15239                   llvm::next(MachineBasicBlock::iterator(MI)),
15240                   BB->end());
15241   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15242
15243   // Add the true and fallthrough blocks as its successors.
15244   BB->addSuccessor(copy0MBB);
15245   BB->addSuccessor(sinkMBB);
15246
15247   // Create the conditional branch instruction.
15248   unsigned Opc =
15249     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15250   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15251
15252   //  copy0MBB:
15253   //   %FalseValue = ...
15254   //   # fallthrough to sinkMBB
15255   copy0MBB->addSuccessor(sinkMBB);
15256
15257   //  sinkMBB:
15258   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15259   //  ...
15260   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15261           TII->get(X86::PHI), MI->getOperand(0).getReg())
15262     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15263     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15264
15265   MI->eraseFromParent();   // The pseudo instruction is gone now.
15266   return sinkMBB;
15267 }
15268
15269 MachineBasicBlock *
15270 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15271                                         bool Is64Bit) const {
15272   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15273   DebugLoc DL = MI->getDebugLoc();
15274   MachineFunction *MF = BB->getParent();
15275   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15276
15277   assert(getTargetMachine().Options.EnableSegmentedStacks);
15278
15279   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15280   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15281
15282   // BB:
15283   //  ... [Till the alloca]
15284   // If stacklet is not large enough, jump to mallocMBB
15285   //
15286   // bumpMBB:
15287   //  Allocate by subtracting from RSP
15288   //  Jump to continueMBB
15289   //
15290   // mallocMBB:
15291   //  Allocate by call to runtime
15292   //
15293   // continueMBB:
15294   //  ...
15295   //  [rest of original BB]
15296   //
15297
15298   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15299   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15300   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15301
15302   MachineRegisterInfo &MRI = MF->getRegInfo();
15303   const TargetRegisterClass *AddrRegClass =
15304     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15305
15306   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15307     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15308     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15309     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15310     sizeVReg = MI->getOperand(1).getReg(),
15311     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15312
15313   MachineFunction::iterator MBBIter = BB;
15314   ++MBBIter;
15315
15316   MF->insert(MBBIter, bumpMBB);
15317   MF->insert(MBBIter, mallocMBB);
15318   MF->insert(MBBIter, continueMBB);
15319
15320   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15321                       (MachineBasicBlock::iterator(MI)), BB->end());
15322   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15323
15324   // Add code to the main basic block to check if the stack limit has been hit,
15325   // and if so, jump to mallocMBB otherwise to bumpMBB.
15326   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15327   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15328     .addReg(tmpSPVReg).addReg(sizeVReg);
15329   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15330     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15331     .addReg(SPLimitVReg);
15332   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15333
15334   // bumpMBB simply decreases the stack pointer, since we know the current
15335   // stacklet has enough space.
15336   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15337     .addReg(SPLimitVReg);
15338   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15339     .addReg(SPLimitVReg);
15340   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15341
15342   // Calls into a routine in libgcc to allocate more space from the heap.
15343   const uint32_t *RegMask =
15344     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15345   if (Is64Bit) {
15346     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15347       .addReg(sizeVReg);
15348     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15349       .addExternalSymbol("__morestack_allocate_stack_space")
15350       .addRegMask(RegMask)
15351       .addReg(X86::RDI, RegState::Implicit)
15352       .addReg(X86::RAX, RegState::ImplicitDefine);
15353   } else {
15354     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15355       .addImm(12);
15356     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15357     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15358       .addExternalSymbol("__morestack_allocate_stack_space")
15359       .addRegMask(RegMask)
15360       .addReg(X86::EAX, RegState::ImplicitDefine);
15361   }
15362
15363   if (!Is64Bit)
15364     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15365       .addImm(16);
15366
15367   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15368     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15369   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15370
15371   // Set up the CFG correctly.
15372   BB->addSuccessor(bumpMBB);
15373   BB->addSuccessor(mallocMBB);
15374   mallocMBB->addSuccessor(continueMBB);
15375   bumpMBB->addSuccessor(continueMBB);
15376
15377   // Take care of the PHI nodes.
15378   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15379           MI->getOperand(0).getReg())
15380     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15381     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15382
15383   // Delete the original pseudo instruction.
15384   MI->eraseFromParent();
15385
15386   // And we're done.
15387   return continueMBB;
15388 }
15389
15390 MachineBasicBlock *
15391 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15392                                           MachineBasicBlock *BB) const {
15393   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15394   DebugLoc DL = MI->getDebugLoc();
15395
15396   assert(!Subtarget->isTargetEnvMacho());
15397
15398   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15399   // non-trivial part is impdef of ESP.
15400
15401   if (Subtarget->isTargetWin64()) {
15402     if (Subtarget->isTargetCygMing()) {
15403       // ___chkstk(Mingw64):
15404       // Clobbers R10, R11, RAX and EFLAGS.
15405       // Updates RSP.
15406       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15407         .addExternalSymbol("___chkstk")
15408         .addReg(X86::RAX, RegState::Implicit)
15409         .addReg(X86::RSP, RegState::Implicit)
15410         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15411         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15412         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15413     } else {
15414       // __chkstk(MSVCRT): does not update stack pointer.
15415       // Clobbers R10, R11 and EFLAGS.
15416       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15417         .addExternalSymbol("__chkstk")
15418         .addReg(X86::RAX, RegState::Implicit)
15419         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15420       // RAX has the offset to be subtracted from RSP.
15421       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15422         .addReg(X86::RSP)
15423         .addReg(X86::RAX);
15424     }
15425   } else {
15426     const char *StackProbeSymbol =
15427       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15428
15429     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15430       .addExternalSymbol(StackProbeSymbol)
15431       .addReg(X86::EAX, RegState::Implicit)
15432       .addReg(X86::ESP, RegState::Implicit)
15433       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15434       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15435       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15436   }
15437
15438   MI->eraseFromParent();   // The pseudo instruction is gone now.
15439   return BB;
15440 }
15441
15442 MachineBasicBlock *
15443 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15444                                       MachineBasicBlock *BB) const {
15445   // This is pretty easy.  We're taking the value that we received from
15446   // our load from the relocation, sticking it in either RDI (x86-64)
15447   // or EAX and doing an indirect call.  The return value will then
15448   // be in the normal return register.
15449   const X86InstrInfo *TII
15450     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15451   DebugLoc DL = MI->getDebugLoc();
15452   MachineFunction *F = BB->getParent();
15453
15454   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15455   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15456
15457   // Get a register mask for the lowered call.
15458   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15459   // proper register mask.
15460   const uint32_t *RegMask =
15461     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15462   if (Subtarget->is64Bit()) {
15463     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15464                                       TII->get(X86::MOV64rm), X86::RDI)
15465     .addReg(X86::RIP)
15466     .addImm(0).addReg(0)
15467     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15468                       MI->getOperand(3).getTargetFlags())
15469     .addReg(0);
15470     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15471     addDirectMem(MIB, X86::RDI);
15472     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15473   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15474     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15475                                       TII->get(X86::MOV32rm), X86::EAX)
15476     .addReg(0)
15477     .addImm(0).addReg(0)
15478     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15479                       MI->getOperand(3).getTargetFlags())
15480     .addReg(0);
15481     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15482     addDirectMem(MIB, X86::EAX);
15483     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15484   } else {
15485     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15486                                       TII->get(X86::MOV32rm), X86::EAX)
15487     .addReg(TII->getGlobalBaseReg(F))
15488     .addImm(0).addReg(0)
15489     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15490                       MI->getOperand(3).getTargetFlags())
15491     .addReg(0);
15492     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15493     addDirectMem(MIB, X86::EAX);
15494     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15495   }
15496
15497   MI->eraseFromParent(); // The pseudo instruction is gone now.
15498   return BB;
15499 }
15500
15501 MachineBasicBlock *
15502 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15503                                     MachineBasicBlock *MBB) const {
15504   DebugLoc DL = MI->getDebugLoc();
15505   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15506
15507   MachineFunction *MF = MBB->getParent();
15508   MachineRegisterInfo &MRI = MF->getRegInfo();
15509
15510   const BasicBlock *BB = MBB->getBasicBlock();
15511   MachineFunction::iterator I = MBB;
15512   ++I;
15513
15514   // Memory Reference
15515   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15516   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15517
15518   unsigned DstReg;
15519   unsigned MemOpndSlot = 0;
15520
15521   unsigned CurOp = 0;
15522
15523   DstReg = MI->getOperand(CurOp++).getReg();
15524   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15525   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15526   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15527   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15528
15529   MemOpndSlot = CurOp;
15530
15531   MVT PVT = getPointerTy();
15532   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15533          "Invalid Pointer Size!");
15534
15535   // For v = setjmp(buf), we generate
15536   //
15537   // thisMBB:
15538   //  buf[LabelOffset] = restoreMBB
15539   //  SjLjSetup restoreMBB
15540   //
15541   // mainMBB:
15542   //  v_main = 0
15543   //
15544   // sinkMBB:
15545   //  v = phi(main, restore)
15546   //
15547   // restoreMBB:
15548   //  v_restore = 1
15549
15550   MachineBasicBlock *thisMBB = MBB;
15551   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15552   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15553   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15554   MF->insert(I, mainMBB);
15555   MF->insert(I, sinkMBB);
15556   MF->push_back(restoreMBB);
15557
15558   MachineInstrBuilder MIB;
15559
15560   // Transfer the remainder of BB and its successor edges to sinkMBB.
15561   sinkMBB->splice(sinkMBB->begin(), MBB,
15562                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15563   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15564
15565   // thisMBB:
15566   unsigned PtrStoreOpc = 0;
15567   unsigned LabelReg = 0;
15568   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15569   Reloc::Model RM = getTargetMachine().getRelocationModel();
15570   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15571                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15572
15573   // Prepare IP either in reg or imm.
15574   if (!UseImmLabel) {
15575     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15576     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15577     LabelReg = MRI.createVirtualRegister(PtrRC);
15578     if (Subtarget->is64Bit()) {
15579       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15580               .addReg(X86::RIP)
15581               .addImm(0)
15582               .addReg(0)
15583               .addMBB(restoreMBB)
15584               .addReg(0);
15585     } else {
15586       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15587       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15588               .addReg(XII->getGlobalBaseReg(MF))
15589               .addImm(0)
15590               .addReg(0)
15591               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15592               .addReg(0);
15593     }
15594   } else
15595     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15596   // Store IP
15597   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15598   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15599     if (i == X86::AddrDisp)
15600       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15601     else
15602       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15603   }
15604   if (!UseImmLabel)
15605     MIB.addReg(LabelReg);
15606   else
15607     MIB.addMBB(restoreMBB);
15608   MIB.setMemRefs(MMOBegin, MMOEnd);
15609   // Setup
15610   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15611           .addMBB(restoreMBB);
15612
15613   const X86RegisterInfo *RegInfo =
15614     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15615   MIB.addRegMask(RegInfo->getNoPreservedMask());
15616   thisMBB->addSuccessor(mainMBB);
15617   thisMBB->addSuccessor(restoreMBB);
15618
15619   // mainMBB:
15620   //  EAX = 0
15621   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15622   mainMBB->addSuccessor(sinkMBB);
15623
15624   // sinkMBB:
15625   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15626           TII->get(X86::PHI), DstReg)
15627     .addReg(mainDstReg).addMBB(mainMBB)
15628     .addReg(restoreDstReg).addMBB(restoreMBB);
15629
15630   // restoreMBB:
15631   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15632   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15633   restoreMBB->addSuccessor(sinkMBB);
15634
15635   MI->eraseFromParent();
15636   return sinkMBB;
15637 }
15638
15639 MachineBasicBlock *
15640 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15641                                      MachineBasicBlock *MBB) const {
15642   DebugLoc DL = MI->getDebugLoc();
15643   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15644
15645   MachineFunction *MF = MBB->getParent();
15646   MachineRegisterInfo &MRI = MF->getRegInfo();
15647
15648   // Memory Reference
15649   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15650   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15651
15652   MVT PVT = getPointerTy();
15653   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15654          "Invalid Pointer Size!");
15655
15656   const TargetRegisterClass *RC =
15657     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15658   unsigned Tmp = MRI.createVirtualRegister(RC);
15659   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15660   const X86RegisterInfo *RegInfo =
15661     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15662   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15663   unsigned SP = RegInfo->getStackRegister();
15664
15665   MachineInstrBuilder MIB;
15666
15667   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15668   const int64_t SPOffset = 2 * PVT.getStoreSize();
15669
15670   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15671   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15672
15673   // Reload FP
15674   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15675   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15676     MIB.addOperand(MI->getOperand(i));
15677   MIB.setMemRefs(MMOBegin, MMOEnd);
15678   // Reload IP
15679   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15680   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15681     if (i == X86::AddrDisp)
15682       MIB.addDisp(MI->getOperand(i), LabelOffset);
15683     else
15684       MIB.addOperand(MI->getOperand(i));
15685   }
15686   MIB.setMemRefs(MMOBegin, MMOEnd);
15687   // Reload SP
15688   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15689   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15690     if (i == X86::AddrDisp)
15691       MIB.addDisp(MI->getOperand(i), SPOffset);
15692     else
15693       MIB.addOperand(MI->getOperand(i));
15694   }
15695   MIB.setMemRefs(MMOBegin, MMOEnd);
15696   // Jump
15697   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15698
15699   MI->eraseFromParent();
15700   return MBB;
15701 }
15702
15703 MachineBasicBlock *
15704 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15705                                                MachineBasicBlock *BB) const {
15706   switch (MI->getOpcode()) {
15707   default: llvm_unreachable("Unexpected instr type to insert");
15708   case X86::TAILJMPd64:
15709   case X86::TAILJMPr64:
15710   case X86::TAILJMPm64:
15711     llvm_unreachable("TAILJMP64 would not be touched here.");
15712   case X86::TCRETURNdi64:
15713   case X86::TCRETURNri64:
15714   case X86::TCRETURNmi64:
15715     return BB;
15716   case X86::WIN_ALLOCA:
15717     return EmitLoweredWinAlloca(MI, BB);
15718   case X86::SEG_ALLOCA_32:
15719     return EmitLoweredSegAlloca(MI, BB, false);
15720   case X86::SEG_ALLOCA_64:
15721     return EmitLoweredSegAlloca(MI, BB, true);
15722   case X86::TLSCall_32:
15723   case X86::TLSCall_64:
15724     return EmitLoweredTLSCall(MI, BB);
15725   case X86::CMOV_GR8:
15726   case X86::CMOV_FR32:
15727   case X86::CMOV_FR64:
15728   case X86::CMOV_V4F32:
15729   case X86::CMOV_V2F64:
15730   case X86::CMOV_V2I64:
15731   case X86::CMOV_V8F32:
15732   case X86::CMOV_V4F64:
15733   case X86::CMOV_V4I64:
15734   case X86::CMOV_GR16:
15735   case X86::CMOV_GR32:
15736   case X86::CMOV_RFP32:
15737   case X86::CMOV_RFP64:
15738   case X86::CMOV_RFP80:
15739     return EmitLoweredSelect(MI, BB);
15740
15741   case X86::FP32_TO_INT16_IN_MEM:
15742   case X86::FP32_TO_INT32_IN_MEM:
15743   case X86::FP32_TO_INT64_IN_MEM:
15744   case X86::FP64_TO_INT16_IN_MEM:
15745   case X86::FP64_TO_INT32_IN_MEM:
15746   case X86::FP64_TO_INT64_IN_MEM:
15747   case X86::FP80_TO_INT16_IN_MEM:
15748   case X86::FP80_TO_INT32_IN_MEM:
15749   case X86::FP80_TO_INT64_IN_MEM: {
15750     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15751     DebugLoc DL = MI->getDebugLoc();
15752
15753     // Change the floating point control register to use "round towards zero"
15754     // mode when truncating to an integer value.
15755     MachineFunction *F = BB->getParent();
15756     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15757     addFrameReference(BuildMI(*BB, MI, DL,
15758                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15759
15760     // Load the old value of the high byte of the control word...
15761     unsigned OldCW =
15762       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15763     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15764                       CWFrameIdx);
15765
15766     // Set the high part to be round to zero...
15767     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15768       .addImm(0xC7F);
15769
15770     // Reload the modified control word now...
15771     addFrameReference(BuildMI(*BB, MI, DL,
15772                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15773
15774     // Restore the memory image of control word to original value
15775     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15776       .addReg(OldCW);
15777
15778     // Get the X86 opcode to use.
15779     unsigned Opc;
15780     switch (MI->getOpcode()) {
15781     default: llvm_unreachable("illegal opcode!");
15782     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15783     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15784     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15785     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15786     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15787     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15788     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15789     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15790     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15791     }
15792
15793     X86AddressMode AM;
15794     MachineOperand &Op = MI->getOperand(0);
15795     if (Op.isReg()) {
15796       AM.BaseType = X86AddressMode::RegBase;
15797       AM.Base.Reg = Op.getReg();
15798     } else {
15799       AM.BaseType = X86AddressMode::FrameIndexBase;
15800       AM.Base.FrameIndex = Op.getIndex();
15801     }
15802     Op = MI->getOperand(1);
15803     if (Op.isImm())
15804       AM.Scale = Op.getImm();
15805     Op = MI->getOperand(2);
15806     if (Op.isImm())
15807       AM.IndexReg = Op.getImm();
15808     Op = MI->getOperand(3);
15809     if (Op.isGlobal()) {
15810       AM.GV = Op.getGlobal();
15811     } else {
15812       AM.Disp = Op.getImm();
15813     }
15814     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15815                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15816
15817     // Reload the original control word now.
15818     addFrameReference(BuildMI(*BB, MI, DL,
15819                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15820
15821     MI->eraseFromParent();   // The pseudo instruction is gone now.
15822     return BB;
15823   }
15824     // String/text processing lowering.
15825   case X86::PCMPISTRM128REG:
15826   case X86::VPCMPISTRM128REG:
15827   case X86::PCMPISTRM128MEM:
15828   case X86::VPCMPISTRM128MEM:
15829   case X86::PCMPESTRM128REG:
15830   case X86::VPCMPESTRM128REG:
15831   case X86::PCMPESTRM128MEM:
15832   case X86::VPCMPESTRM128MEM:
15833     assert(Subtarget->hasSSE42() &&
15834            "Target must have SSE4.2 or AVX features enabled");
15835     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15836
15837   // String/text processing lowering.
15838   case X86::PCMPISTRIREG:
15839   case X86::VPCMPISTRIREG:
15840   case X86::PCMPISTRIMEM:
15841   case X86::VPCMPISTRIMEM:
15842   case X86::PCMPESTRIREG:
15843   case X86::VPCMPESTRIREG:
15844   case X86::PCMPESTRIMEM:
15845   case X86::VPCMPESTRIMEM:
15846     assert(Subtarget->hasSSE42() &&
15847            "Target must have SSE4.2 or AVX features enabled");
15848     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15849
15850   // Thread synchronization.
15851   case X86::MONITOR:
15852     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15853
15854   // xbegin
15855   case X86::XBEGIN:
15856     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15857
15858   // Atomic Lowering.
15859   case X86::ATOMAND8:
15860   case X86::ATOMAND16:
15861   case X86::ATOMAND32:
15862   case X86::ATOMAND64:
15863     // Fall through
15864   case X86::ATOMOR8:
15865   case X86::ATOMOR16:
15866   case X86::ATOMOR32:
15867   case X86::ATOMOR64:
15868     // Fall through
15869   case X86::ATOMXOR16:
15870   case X86::ATOMXOR8:
15871   case X86::ATOMXOR32:
15872   case X86::ATOMXOR64:
15873     // Fall through
15874   case X86::ATOMNAND8:
15875   case X86::ATOMNAND16:
15876   case X86::ATOMNAND32:
15877   case X86::ATOMNAND64:
15878     // Fall through
15879   case X86::ATOMMAX8:
15880   case X86::ATOMMAX16:
15881   case X86::ATOMMAX32:
15882   case X86::ATOMMAX64:
15883     // Fall through
15884   case X86::ATOMMIN8:
15885   case X86::ATOMMIN16:
15886   case X86::ATOMMIN32:
15887   case X86::ATOMMIN64:
15888     // Fall through
15889   case X86::ATOMUMAX8:
15890   case X86::ATOMUMAX16:
15891   case X86::ATOMUMAX32:
15892   case X86::ATOMUMAX64:
15893     // Fall through
15894   case X86::ATOMUMIN8:
15895   case X86::ATOMUMIN16:
15896   case X86::ATOMUMIN32:
15897   case X86::ATOMUMIN64:
15898     return EmitAtomicLoadArith(MI, BB);
15899
15900   // This group does 64-bit operations on a 32-bit host.
15901   case X86::ATOMAND6432:
15902   case X86::ATOMOR6432:
15903   case X86::ATOMXOR6432:
15904   case X86::ATOMNAND6432:
15905   case X86::ATOMADD6432:
15906   case X86::ATOMSUB6432:
15907   case X86::ATOMMAX6432:
15908   case X86::ATOMMIN6432:
15909   case X86::ATOMUMAX6432:
15910   case X86::ATOMUMIN6432:
15911   case X86::ATOMSWAP6432:
15912     return EmitAtomicLoadArith6432(MI, BB);
15913
15914   case X86::VASTART_SAVE_XMM_REGS:
15915     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15916
15917   case X86::VAARG_64:
15918     return EmitVAARG64WithCustomInserter(MI, BB);
15919
15920   case X86::EH_SjLj_SetJmp32:
15921   case X86::EH_SjLj_SetJmp64:
15922     return emitEHSjLjSetJmp(MI, BB);
15923
15924   case X86::EH_SjLj_LongJmp32:
15925   case X86::EH_SjLj_LongJmp64:
15926     return emitEHSjLjLongJmp(MI, BB);
15927   }
15928 }
15929
15930 //===----------------------------------------------------------------------===//
15931 //                           X86 Optimization Hooks
15932 //===----------------------------------------------------------------------===//
15933
15934 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15935                                                        APInt &KnownZero,
15936                                                        APInt &KnownOne,
15937                                                        const SelectionDAG &DAG,
15938                                                        unsigned Depth) const {
15939   unsigned BitWidth = KnownZero.getBitWidth();
15940   unsigned Opc = Op.getOpcode();
15941   assert((Opc >= ISD::BUILTIN_OP_END ||
15942           Opc == ISD::INTRINSIC_WO_CHAIN ||
15943           Opc == ISD::INTRINSIC_W_CHAIN ||
15944           Opc == ISD::INTRINSIC_VOID) &&
15945          "Should use MaskedValueIsZero if you don't know whether Op"
15946          " is a target node!");
15947
15948   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15949   switch (Opc) {
15950   default: break;
15951   case X86ISD::ADD:
15952   case X86ISD::SUB:
15953   case X86ISD::ADC:
15954   case X86ISD::SBB:
15955   case X86ISD::SMUL:
15956   case X86ISD::UMUL:
15957   case X86ISD::INC:
15958   case X86ISD::DEC:
15959   case X86ISD::OR:
15960   case X86ISD::XOR:
15961   case X86ISD::AND:
15962     // These nodes' second result is a boolean.
15963     if (Op.getResNo() == 0)
15964       break;
15965     // Fallthrough
15966   case X86ISD::SETCC:
15967     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15968     break;
15969   case ISD::INTRINSIC_WO_CHAIN: {
15970     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15971     unsigned NumLoBits = 0;
15972     switch (IntId) {
15973     default: break;
15974     case Intrinsic::x86_sse_movmsk_ps:
15975     case Intrinsic::x86_avx_movmsk_ps_256:
15976     case Intrinsic::x86_sse2_movmsk_pd:
15977     case Intrinsic::x86_avx_movmsk_pd_256:
15978     case Intrinsic::x86_mmx_pmovmskb:
15979     case Intrinsic::x86_sse2_pmovmskb_128:
15980     case Intrinsic::x86_avx2_pmovmskb: {
15981       // High bits of movmskp{s|d}, pmovmskb are known zero.
15982       switch (IntId) {
15983         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15984         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
15985         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
15986         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
15987         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
15988         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
15989         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
15990         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
15991       }
15992       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
15993       break;
15994     }
15995     }
15996     break;
15997   }
15998   }
15999 }
16000
16001 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16002                                                          unsigned Depth) const {
16003   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16004   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16005     return Op.getValueType().getScalarType().getSizeInBits();
16006
16007   // Fallback case.
16008   return 1;
16009 }
16010
16011 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16012 /// node is a GlobalAddress + offset.
16013 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16014                                        const GlobalValue* &GA,
16015                                        int64_t &Offset) const {
16016   if (N->getOpcode() == X86ISD::Wrapper) {
16017     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16018       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16019       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16020       return true;
16021     }
16022   }
16023   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16024 }
16025
16026 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16027 /// same as extracting the high 128-bit part of 256-bit vector and then
16028 /// inserting the result into the low part of a new 256-bit vector
16029 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16030   EVT VT = SVOp->getValueType(0);
16031   unsigned NumElems = VT.getVectorNumElements();
16032
16033   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16034   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16035     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16036         SVOp->getMaskElt(j) >= 0)
16037       return false;
16038
16039   return true;
16040 }
16041
16042 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16043 /// same as extracting the low 128-bit part of 256-bit vector and then
16044 /// inserting the result into the high part of a new 256-bit vector
16045 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16046   EVT VT = SVOp->getValueType(0);
16047   unsigned NumElems = VT.getVectorNumElements();
16048
16049   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16050   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16051     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16052         SVOp->getMaskElt(j) >= 0)
16053       return false;
16054
16055   return true;
16056 }
16057
16058 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16059 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16060                                         TargetLowering::DAGCombinerInfo &DCI,
16061                                         const X86Subtarget* Subtarget) {
16062   SDLoc dl(N);
16063   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16064   SDValue V1 = SVOp->getOperand(0);
16065   SDValue V2 = SVOp->getOperand(1);
16066   EVT VT = SVOp->getValueType(0);
16067   unsigned NumElems = VT.getVectorNumElements();
16068
16069   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16070       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16071     //
16072     //                   0,0,0,...
16073     //                      |
16074     //    V      UNDEF    BUILD_VECTOR    UNDEF
16075     //     \      /           \           /
16076     //  CONCAT_VECTOR         CONCAT_VECTOR
16077     //         \                  /
16078     //          \                /
16079     //          RESULT: V + zero extended
16080     //
16081     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16082         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16083         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16084       return SDValue();
16085
16086     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16087       return SDValue();
16088
16089     // To match the shuffle mask, the first half of the mask should
16090     // be exactly the first vector, and all the rest a splat with the
16091     // first element of the second one.
16092     for (unsigned i = 0; i != NumElems/2; ++i)
16093       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16094           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16095         return SDValue();
16096
16097     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16098     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16099       if (Ld->hasNUsesOfValue(1, 0)) {
16100         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16101         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16102         SDValue ResNode =
16103           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16104                                   array_lengthof(Ops),
16105                                   Ld->getMemoryVT(),
16106                                   Ld->getPointerInfo(),
16107                                   Ld->getAlignment(),
16108                                   false/*isVolatile*/, true/*ReadMem*/,
16109                                   false/*WriteMem*/);
16110
16111         // Make sure the newly-created LOAD is in the same position as Ld in
16112         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16113         // and update uses of Ld's output chain to use the TokenFactor.
16114         if (Ld->hasAnyUseOfValue(1)) {
16115           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16116                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16117           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16118           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16119                                  SDValue(ResNode.getNode(), 1));
16120         }
16121
16122         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16123       }
16124     }
16125
16126     // Emit a zeroed vector and insert the desired subvector on its
16127     // first half.
16128     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16129     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16130     return DCI.CombineTo(N, InsV);
16131   }
16132
16133   //===--------------------------------------------------------------------===//
16134   // Combine some shuffles into subvector extracts and inserts:
16135   //
16136
16137   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16138   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16139     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16140     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16141     return DCI.CombineTo(N, InsV);
16142   }
16143
16144   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16145   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16146     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16147     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16148     return DCI.CombineTo(N, InsV);
16149   }
16150
16151   return SDValue();
16152 }
16153
16154 /// PerformShuffleCombine - Performs several different shuffle combines.
16155 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16156                                      TargetLowering::DAGCombinerInfo &DCI,
16157                                      const X86Subtarget *Subtarget) {
16158   SDLoc dl(N);
16159   EVT VT = N->getValueType(0);
16160
16161   // Don't create instructions with illegal types after legalize types has run.
16162   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16163   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16164     return SDValue();
16165
16166   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16167   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16168       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16169     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16170
16171   // Only handle 128 wide vector from here on.
16172   if (!VT.is128BitVector())
16173     return SDValue();
16174
16175   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16176   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16177   // consecutive, non-overlapping, and in the right order.
16178   SmallVector<SDValue, 16> Elts;
16179   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16180     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16181
16182   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
16183 }
16184
16185 /// PerformTruncateCombine - Converts truncate operation to
16186 /// a sequence of vector shuffle operations.
16187 /// It is possible when we truncate 256-bit vector to 128-bit vector
16188 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16189                                       TargetLowering::DAGCombinerInfo &DCI,
16190                                       const X86Subtarget *Subtarget)  {
16191   return SDValue();
16192 }
16193
16194 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16195 /// specific shuffle of a load can be folded into a single element load.
16196 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16197 /// shuffles have been customed lowered so we need to handle those here.
16198 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16199                                          TargetLowering::DAGCombinerInfo &DCI) {
16200   if (DCI.isBeforeLegalizeOps())
16201     return SDValue();
16202
16203   SDValue InVec = N->getOperand(0);
16204   SDValue EltNo = N->getOperand(1);
16205
16206   if (!isa<ConstantSDNode>(EltNo))
16207     return SDValue();
16208
16209   EVT VT = InVec.getValueType();
16210
16211   bool HasShuffleIntoBitcast = false;
16212   if (InVec.getOpcode() == ISD::BITCAST) {
16213     // Don't duplicate a load with other uses.
16214     if (!InVec.hasOneUse())
16215       return SDValue();
16216     EVT BCVT = InVec.getOperand(0).getValueType();
16217     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16218       return SDValue();
16219     InVec = InVec.getOperand(0);
16220     HasShuffleIntoBitcast = true;
16221   }
16222
16223   if (!isTargetShuffle(InVec.getOpcode()))
16224     return SDValue();
16225
16226   // Don't duplicate a load with other uses.
16227   if (!InVec.hasOneUse())
16228     return SDValue();
16229
16230   SmallVector<int, 16> ShuffleMask;
16231   bool UnaryShuffle;
16232   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16233                             UnaryShuffle))
16234     return SDValue();
16235
16236   // Select the input vector, guarding against out of range extract vector.
16237   unsigned NumElems = VT.getVectorNumElements();
16238   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16239   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16240   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16241                                          : InVec.getOperand(1);
16242
16243   // If inputs to shuffle are the same for both ops, then allow 2 uses
16244   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16245
16246   if (LdNode.getOpcode() == ISD::BITCAST) {
16247     // Don't duplicate a load with other uses.
16248     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16249       return SDValue();
16250
16251     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16252     LdNode = LdNode.getOperand(0);
16253   }
16254
16255   if (!ISD::isNormalLoad(LdNode.getNode()))
16256     return SDValue();
16257
16258   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16259
16260   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16261     return SDValue();
16262
16263   if (HasShuffleIntoBitcast) {
16264     // If there's a bitcast before the shuffle, check if the load type and
16265     // alignment is valid.
16266     unsigned Align = LN0->getAlignment();
16267     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16268     unsigned NewAlign = TLI.getDataLayout()->
16269       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16270
16271     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16272       return SDValue();
16273   }
16274
16275   // All checks match so transform back to vector_shuffle so that DAG combiner
16276   // can finish the job
16277   SDLoc dl(N);
16278
16279   // Create shuffle node taking into account the case that its a unary shuffle
16280   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16281   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16282                                  InVec.getOperand(0), Shuffle,
16283                                  &ShuffleMask[0]);
16284   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16285   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16286                      EltNo);
16287 }
16288
16289 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16290 /// generation and convert it from being a bunch of shuffles and extracts
16291 /// to a simple store and scalar loads to extract the elements.
16292 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16293                                          TargetLowering::DAGCombinerInfo &DCI) {
16294   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16295   if (NewOp.getNode())
16296     return NewOp;
16297
16298   SDValue InputVector = N->getOperand(0);
16299   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16300   // from mmx to v2i32 has a single usage.
16301   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16302       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16303       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16304     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16305                        N->getValueType(0),
16306                        InputVector.getNode()->getOperand(0));
16307
16308   // Only operate on vectors of 4 elements, where the alternative shuffling
16309   // gets to be more expensive.
16310   if (InputVector.getValueType() != MVT::v4i32)
16311     return SDValue();
16312
16313   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16314   // single use which is a sign-extend or zero-extend, and all elements are
16315   // used.
16316   SmallVector<SDNode *, 4> Uses;
16317   unsigned ExtractedElements = 0;
16318   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16319        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16320     if (UI.getUse().getResNo() != InputVector.getResNo())
16321       return SDValue();
16322
16323     SDNode *Extract = *UI;
16324     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16325       return SDValue();
16326
16327     if (Extract->getValueType(0) != MVT::i32)
16328       return SDValue();
16329     if (!Extract->hasOneUse())
16330       return SDValue();
16331     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16332         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16333       return SDValue();
16334     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16335       return SDValue();
16336
16337     // Record which element was extracted.
16338     ExtractedElements |=
16339       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16340
16341     Uses.push_back(Extract);
16342   }
16343
16344   // If not all the elements were used, this may not be worthwhile.
16345   if (ExtractedElements != 15)
16346     return SDValue();
16347
16348   // Ok, we've now decided to do the transformation.
16349   SDLoc dl(InputVector);
16350
16351   // Store the value to a temporary stack slot.
16352   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16353   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16354                             MachinePointerInfo(), false, false, 0);
16355
16356   // Replace each use (extract) with a load of the appropriate element.
16357   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16358        UE = Uses.end(); UI != UE; ++UI) {
16359     SDNode *Extract = *UI;
16360
16361     // cOMpute the element's address.
16362     SDValue Idx = Extract->getOperand(1);
16363     unsigned EltSize =
16364         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16365     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16366     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16367     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16368
16369     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16370                                      StackPtr, OffsetVal);
16371
16372     // Load the scalar.
16373     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16374                                      ScalarAddr, MachinePointerInfo(),
16375                                      false, false, false, 0);
16376
16377     // Replace the exact with the load.
16378     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16379   }
16380
16381   // The replacement was made in place; don't return anything.
16382   return SDValue();
16383 }
16384
16385 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16386 static std::pair<unsigned, bool>
16387 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16388                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16389   if (!VT.isVector())
16390     return std::make_pair(0, false);
16391
16392   bool NeedSplit = false;
16393   switch (VT.getSimpleVT().SimpleTy) {
16394   default: return std::make_pair(0, false);
16395   case MVT::v32i8:
16396   case MVT::v16i16:
16397   case MVT::v8i32:
16398     if (!Subtarget->hasAVX2())
16399       NeedSplit = true;
16400     if (!Subtarget->hasAVX())
16401       return std::make_pair(0, false);
16402     break;
16403   case MVT::v16i8:
16404   case MVT::v8i16:
16405   case MVT::v4i32:
16406     if (!Subtarget->hasSSE2())
16407       return std::make_pair(0, false);
16408   }
16409
16410   // SSE2 has only a small subset of the operations.
16411   bool hasUnsigned = Subtarget->hasSSE41() ||
16412                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16413   bool hasSigned = Subtarget->hasSSE41() ||
16414                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16415
16416   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16417
16418   unsigned Opc = 0;
16419   // Check for x CC y ? x : y.
16420   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16421       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16422     switch (CC) {
16423     default: break;
16424     case ISD::SETULT:
16425     case ISD::SETULE:
16426       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16427     case ISD::SETUGT:
16428     case ISD::SETUGE:
16429       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16430     case ISD::SETLT:
16431     case ISD::SETLE:
16432       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16433     case ISD::SETGT:
16434     case ISD::SETGE:
16435       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16436     }
16437   // Check for x CC y ? y : x -- a min/max with reversed arms.
16438   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16439              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16440     switch (CC) {
16441     default: break;
16442     case ISD::SETULT:
16443     case ISD::SETULE:
16444       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16445     case ISD::SETUGT:
16446     case ISD::SETUGE:
16447       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16448     case ISD::SETLT:
16449     case ISD::SETLE:
16450       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16451     case ISD::SETGT:
16452     case ISD::SETGE:
16453       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16454     }
16455   }
16456
16457   return std::make_pair(Opc, NeedSplit);
16458 }
16459
16460 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16461 /// nodes.
16462 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16463                                     TargetLowering::DAGCombinerInfo &DCI,
16464                                     const X86Subtarget *Subtarget) {
16465   SDLoc DL(N);
16466   SDValue Cond = N->getOperand(0);
16467   // Get the LHS/RHS of the select.
16468   SDValue LHS = N->getOperand(1);
16469   SDValue RHS = N->getOperand(2);
16470   EVT VT = LHS.getValueType();
16471   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16472
16473   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16474   // instructions match the semantics of the common C idiom x<y?x:y but not
16475   // x<=y?x:y, because of how they handle negative zero (which can be
16476   // ignored in unsafe-math mode).
16477   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16478       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16479       (Subtarget->hasSSE2() ||
16480        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16481     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16482
16483     unsigned Opcode = 0;
16484     // Check for x CC y ? x : y.
16485     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16486         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16487       switch (CC) {
16488       default: break;
16489       case ISD::SETULT:
16490         // Converting this to a min would handle NaNs incorrectly, and swapping
16491         // the operands would cause it to handle comparisons between positive
16492         // and negative zero incorrectly.
16493         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16494           if (!DAG.getTarget().Options.UnsafeFPMath &&
16495               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16496             break;
16497           std::swap(LHS, RHS);
16498         }
16499         Opcode = X86ISD::FMIN;
16500         break;
16501       case ISD::SETOLE:
16502         // Converting this to a min would handle comparisons between positive
16503         // and negative zero incorrectly.
16504         if (!DAG.getTarget().Options.UnsafeFPMath &&
16505             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16506           break;
16507         Opcode = X86ISD::FMIN;
16508         break;
16509       case ISD::SETULE:
16510         // Converting this to a min would handle both negative zeros and NaNs
16511         // incorrectly, but we can swap the operands to fix both.
16512         std::swap(LHS, RHS);
16513       case ISD::SETOLT:
16514       case ISD::SETLT:
16515       case ISD::SETLE:
16516         Opcode = X86ISD::FMIN;
16517         break;
16518
16519       case ISD::SETOGE:
16520         // Converting this to a max would handle comparisons between positive
16521         // and negative zero incorrectly.
16522         if (!DAG.getTarget().Options.UnsafeFPMath &&
16523             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16524           break;
16525         Opcode = X86ISD::FMAX;
16526         break;
16527       case ISD::SETUGT:
16528         // Converting this to a max would handle NaNs incorrectly, and swapping
16529         // the operands would cause it to handle comparisons between positive
16530         // and negative zero incorrectly.
16531         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16532           if (!DAG.getTarget().Options.UnsafeFPMath &&
16533               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16534             break;
16535           std::swap(LHS, RHS);
16536         }
16537         Opcode = X86ISD::FMAX;
16538         break;
16539       case ISD::SETUGE:
16540         // Converting this to a max would handle both negative zeros and NaNs
16541         // incorrectly, but we can swap the operands to fix both.
16542         std::swap(LHS, RHS);
16543       case ISD::SETOGT:
16544       case ISD::SETGT:
16545       case ISD::SETGE:
16546         Opcode = X86ISD::FMAX;
16547         break;
16548       }
16549     // Check for x CC y ? y : x -- a min/max with reversed arms.
16550     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16551                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16552       switch (CC) {
16553       default: break;
16554       case ISD::SETOGE:
16555         // Converting this to a min would handle comparisons between positive
16556         // and negative zero incorrectly, and swapping the operands would
16557         // cause it to handle NaNs incorrectly.
16558         if (!DAG.getTarget().Options.UnsafeFPMath &&
16559             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16560           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16561             break;
16562           std::swap(LHS, RHS);
16563         }
16564         Opcode = X86ISD::FMIN;
16565         break;
16566       case ISD::SETUGT:
16567         // Converting this to a min would handle NaNs incorrectly.
16568         if (!DAG.getTarget().Options.UnsafeFPMath &&
16569             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16570           break;
16571         Opcode = X86ISD::FMIN;
16572         break;
16573       case ISD::SETUGE:
16574         // Converting this to a min would handle both negative zeros and NaNs
16575         // incorrectly, but we can swap the operands to fix both.
16576         std::swap(LHS, RHS);
16577       case ISD::SETOGT:
16578       case ISD::SETGT:
16579       case ISD::SETGE:
16580         Opcode = X86ISD::FMIN;
16581         break;
16582
16583       case ISD::SETULT:
16584         // Converting this to a max would handle NaNs incorrectly.
16585         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16586           break;
16587         Opcode = X86ISD::FMAX;
16588         break;
16589       case ISD::SETOLE:
16590         // Converting this to a max would handle comparisons between positive
16591         // and negative zero incorrectly, and swapping the operands would
16592         // cause it to handle NaNs incorrectly.
16593         if (!DAG.getTarget().Options.UnsafeFPMath &&
16594             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16595           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16596             break;
16597           std::swap(LHS, RHS);
16598         }
16599         Opcode = X86ISD::FMAX;
16600         break;
16601       case ISD::SETULE:
16602         // Converting this to a max would handle both negative zeros and NaNs
16603         // incorrectly, but we can swap the operands to fix both.
16604         std::swap(LHS, RHS);
16605       case ISD::SETOLT:
16606       case ISD::SETLT:
16607       case ISD::SETLE:
16608         Opcode = X86ISD::FMAX;
16609         break;
16610       }
16611     }
16612
16613     if (Opcode)
16614       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16615   }
16616
16617   if (Subtarget->hasAVX512() && VT.isVector() &&
16618       Cond.getValueType().getVectorElementType() == MVT::i1) {
16619     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16620     // lowering on AVX-512. In this case we convert it to
16621     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16622     // The same situation for all 128 and 256-bit vectors of i8 and i16
16623     EVT OpVT = LHS.getValueType();
16624     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16625         (OpVT.getVectorElementType() == MVT::i8 ||
16626          OpVT.getVectorElementType() == MVT::i16)) {
16627       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16628       DCI.AddToWorklist(Cond.getNode());
16629       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16630     }
16631   }
16632   // If this is a select between two integer constants, try to do some
16633   // optimizations.
16634   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16635     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16636       // Don't do this for crazy integer types.
16637       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16638         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16639         // so that TrueC (the true value) is larger than FalseC.
16640         bool NeedsCondInvert = false;
16641
16642         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16643             // Efficiently invertible.
16644             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16645              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16646               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16647           NeedsCondInvert = true;
16648           std::swap(TrueC, FalseC);
16649         }
16650
16651         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16652         if (FalseC->getAPIntValue() == 0 &&
16653             TrueC->getAPIntValue().isPowerOf2()) {
16654           if (NeedsCondInvert) // Invert the condition if needed.
16655             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16656                                DAG.getConstant(1, Cond.getValueType()));
16657
16658           // Zero extend the condition if needed.
16659           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16660
16661           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16662           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16663                              DAG.getConstant(ShAmt, MVT::i8));
16664         }
16665
16666         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16667         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16668           if (NeedsCondInvert) // Invert the condition if needed.
16669             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16670                                DAG.getConstant(1, Cond.getValueType()));
16671
16672           // Zero extend the condition if needed.
16673           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16674                              FalseC->getValueType(0), Cond);
16675           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16676                              SDValue(FalseC, 0));
16677         }
16678
16679         // Optimize cases that will turn into an LEA instruction.  This requires
16680         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16681         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16682           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16683           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16684
16685           bool isFastMultiplier = false;
16686           if (Diff < 10) {
16687             switch ((unsigned char)Diff) {
16688               default: break;
16689               case 1:  // result = add base, cond
16690               case 2:  // result = lea base(    , cond*2)
16691               case 3:  // result = lea base(cond, cond*2)
16692               case 4:  // result = lea base(    , cond*4)
16693               case 5:  // result = lea base(cond, cond*4)
16694               case 8:  // result = lea base(    , cond*8)
16695               case 9:  // result = lea base(cond, cond*8)
16696                 isFastMultiplier = true;
16697                 break;
16698             }
16699           }
16700
16701           if (isFastMultiplier) {
16702             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16703             if (NeedsCondInvert) // Invert the condition if needed.
16704               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16705                                  DAG.getConstant(1, Cond.getValueType()));
16706
16707             // Zero extend the condition if needed.
16708             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16709                                Cond);
16710             // Scale the condition by the difference.
16711             if (Diff != 1)
16712               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16713                                  DAG.getConstant(Diff, Cond.getValueType()));
16714
16715             // Add the base if non-zero.
16716             if (FalseC->getAPIntValue() != 0)
16717               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16718                                  SDValue(FalseC, 0));
16719             return Cond;
16720           }
16721         }
16722       }
16723   }
16724
16725   // Canonicalize max and min:
16726   // (x > y) ? x : y -> (x >= y) ? x : y
16727   // (x < y) ? x : y -> (x <= y) ? x : y
16728   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16729   // the need for an extra compare
16730   // against zero. e.g.
16731   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16732   // subl   %esi, %edi
16733   // testl  %edi, %edi
16734   // movl   $0, %eax
16735   // cmovgl %edi, %eax
16736   // =>
16737   // xorl   %eax, %eax
16738   // subl   %esi, $edi
16739   // cmovsl %eax, %edi
16740   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16741       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16742       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16743     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16744     switch (CC) {
16745     default: break;
16746     case ISD::SETLT:
16747     case ISD::SETGT: {
16748       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16749       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16750                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16751       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16752     }
16753     }
16754   }
16755
16756   // Early exit check
16757   if (!TLI.isTypeLegal(VT))
16758     return SDValue();
16759
16760   // Match VSELECTs into subs with unsigned saturation.
16761   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16762       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16763       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16764        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16765     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16766
16767     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16768     // left side invert the predicate to simplify logic below.
16769     SDValue Other;
16770     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16771       Other = RHS;
16772       CC = ISD::getSetCCInverse(CC, true);
16773     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16774       Other = LHS;
16775     }
16776
16777     if (Other.getNode() && Other->getNumOperands() == 2 &&
16778         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16779       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16780       SDValue CondRHS = Cond->getOperand(1);
16781
16782       // Look for a general sub with unsigned saturation first.
16783       // x >= y ? x-y : 0 --> subus x, y
16784       // x >  y ? x-y : 0 --> subus x, y
16785       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16786           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16787         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16788
16789       // If the RHS is a constant we have to reverse the const canonicalization.
16790       // x > C-1 ? x+-C : 0 --> subus x, C
16791       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16792           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16793         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16794         if (CondRHS.getConstantOperandVal(0) == -A-1)
16795           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16796                              DAG.getConstant(-A, VT));
16797       }
16798
16799       // Another special case: If C was a sign bit, the sub has been
16800       // canonicalized into a xor.
16801       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16802       //        it's safe to decanonicalize the xor?
16803       // x s< 0 ? x^C : 0 --> subus x, C
16804       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16805           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16806           isSplatVector(OpRHS.getNode())) {
16807         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16808         if (A.isSignBit())
16809           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16810       }
16811     }
16812   }
16813
16814   // Try to match a min/max vector operation.
16815   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
16816     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16817     unsigned Opc = ret.first;
16818     bool NeedSplit = ret.second;
16819
16820     if (Opc && NeedSplit) {
16821       unsigned NumElems = VT.getVectorNumElements();
16822       // Extract the LHS vectors
16823       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16824       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16825
16826       // Extract the RHS vectors
16827       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16828       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16829
16830       // Create min/max for each subvector
16831       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16832       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16833
16834       // Merge the result
16835       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16836     } else if (Opc)
16837       return DAG.getNode(Opc, DL, VT, LHS, RHS);
16838   }
16839
16840   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16841   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16842       // Check if SETCC has already been promoted
16843       TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
16844
16845     assert(Cond.getValueType().isVector() &&
16846            "vector select expects a vector selector!");
16847
16848     EVT IntVT = Cond.getValueType();
16849     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16850     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16851
16852     if (!TValIsAllOnes && !FValIsAllZeros) {
16853       // Try invert the condition if true value is not all 1s and false value
16854       // is not all 0s.
16855       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16856       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16857
16858       if (TValIsAllZeros || FValIsAllOnes) {
16859         SDValue CC = Cond.getOperand(2);
16860         ISD::CondCode NewCC =
16861           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16862                                Cond.getOperand(0).getValueType().isInteger());
16863         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16864         std::swap(LHS, RHS);
16865         TValIsAllOnes = FValIsAllOnes;
16866         FValIsAllZeros = TValIsAllZeros;
16867       }
16868     }
16869
16870     if (TValIsAllOnes || FValIsAllZeros) {
16871       SDValue Ret;
16872
16873       if (TValIsAllOnes && FValIsAllZeros)
16874         Ret = Cond;
16875       else if (TValIsAllOnes)
16876         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16877                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16878       else if (FValIsAllZeros)
16879         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16880                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16881
16882       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16883     }
16884   }
16885
16886   // If we know that this node is legal then we know that it is going to be
16887   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16888   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16889   // to simplify previous instructions.
16890   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16891       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16892     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16893
16894     // Don't optimize vector selects that map to mask-registers.
16895     if (BitWidth == 1)
16896       return SDValue();
16897
16898     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16899     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16900
16901     APInt KnownZero, KnownOne;
16902     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16903                                           DCI.isBeforeLegalizeOps());
16904     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16905         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16906       DCI.CommitTargetLoweringOpt(TLO);
16907   }
16908
16909   return SDValue();
16910 }
16911
16912 // Check whether a boolean test is testing a boolean value generated by
16913 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16914 // code.
16915 //
16916 // Simplify the following patterns:
16917 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16918 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16919 // to (Op EFLAGS Cond)
16920 //
16921 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16922 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16923 // to (Op EFLAGS !Cond)
16924 //
16925 // where Op could be BRCOND or CMOV.
16926 //
16927 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16928   // Quit if not CMP and SUB with its value result used.
16929   if (Cmp.getOpcode() != X86ISD::CMP &&
16930       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16931       return SDValue();
16932
16933   // Quit if not used as a boolean value.
16934   if (CC != X86::COND_E && CC != X86::COND_NE)
16935     return SDValue();
16936
16937   // Check CMP operands. One of them should be 0 or 1 and the other should be
16938   // an SetCC or extended from it.
16939   SDValue Op1 = Cmp.getOperand(0);
16940   SDValue Op2 = Cmp.getOperand(1);
16941
16942   SDValue SetCC;
16943   const ConstantSDNode* C = 0;
16944   bool needOppositeCond = (CC == X86::COND_E);
16945   bool checkAgainstTrue = false; // Is it a comparison against 1?
16946
16947   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16948     SetCC = Op2;
16949   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16950     SetCC = Op1;
16951   else // Quit if all operands are not constants.
16952     return SDValue();
16953
16954   if (C->getZExtValue() == 1) {
16955     needOppositeCond = !needOppositeCond;
16956     checkAgainstTrue = true;
16957   } else if (C->getZExtValue() != 0)
16958     // Quit if the constant is neither 0 or 1.
16959     return SDValue();
16960
16961   bool truncatedToBoolWithAnd = false;
16962   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16963   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16964          SetCC.getOpcode() == ISD::TRUNCATE ||
16965          SetCC.getOpcode() == ISD::AND) {
16966     if (SetCC.getOpcode() == ISD::AND) {
16967       int OpIdx = -1;
16968       ConstantSDNode *CS;
16969       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16970           CS->getZExtValue() == 1)
16971         OpIdx = 1;
16972       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16973           CS->getZExtValue() == 1)
16974         OpIdx = 0;
16975       if (OpIdx == -1)
16976         break;
16977       SetCC = SetCC.getOperand(OpIdx);
16978       truncatedToBoolWithAnd = true;
16979     } else
16980       SetCC = SetCC.getOperand(0);
16981   }
16982
16983   switch (SetCC.getOpcode()) {
16984   case X86ISD::SETCC_CARRY:
16985     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16986     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16987     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16988     // truncated to i1 using 'and'.
16989     if (checkAgainstTrue && !truncatedToBoolWithAnd)
16990       break;
16991     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16992            "Invalid use of SETCC_CARRY!");
16993     // FALL THROUGH
16994   case X86ISD::SETCC:
16995     // Set the condition code or opposite one if necessary.
16996     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
16997     if (needOppositeCond)
16998       CC = X86::GetOppositeBranchCondition(CC);
16999     return SetCC.getOperand(1);
17000   case X86ISD::CMOV: {
17001     // Check whether false/true value has canonical one, i.e. 0 or 1.
17002     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17003     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17004     // Quit if true value is not a constant.
17005     if (!TVal)
17006       return SDValue();
17007     // Quit if false value is not a constant.
17008     if (!FVal) {
17009       SDValue Op = SetCC.getOperand(0);
17010       // Skip 'zext' or 'trunc' node.
17011       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17012           Op.getOpcode() == ISD::TRUNCATE)
17013         Op = Op.getOperand(0);
17014       // A special case for rdrand/rdseed, where 0 is set if false cond is
17015       // found.
17016       if ((Op.getOpcode() != X86ISD::RDRAND &&
17017            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17018         return SDValue();
17019     }
17020     // Quit if false value is not the constant 0 or 1.
17021     bool FValIsFalse = true;
17022     if (FVal && FVal->getZExtValue() != 0) {
17023       if (FVal->getZExtValue() != 1)
17024         return SDValue();
17025       // If FVal is 1, opposite cond is needed.
17026       needOppositeCond = !needOppositeCond;
17027       FValIsFalse = false;
17028     }
17029     // Quit if TVal is not the constant opposite of FVal.
17030     if (FValIsFalse && TVal->getZExtValue() != 1)
17031       return SDValue();
17032     if (!FValIsFalse && TVal->getZExtValue() != 0)
17033       return SDValue();
17034     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17035     if (needOppositeCond)
17036       CC = X86::GetOppositeBranchCondition(CC);
17037     return SetCC.getOperand(3);
17038   }
17039   }
17040
17041   return SDValue();
17042 }
17043
17044 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17045 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17046                                   TargetLowering::DAGCombinerInfo &DCI,
17047                                   const X86Subtarget *Subtarget) {
17048   SDLoc DL(N);
17049
17050   // If the flag operand isn't dead, don't touch this CMOV.
17051   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17052     return SDValue();
17053
17054   SDValue FalseOp = N->getOperand(0);
17055   SDValue TrueOp = N->getOperand(1);
17056   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17057   SDValue Cond = N->getOperand(3);
17058
17059   if (CC == X86::COND_E || CC == X86::COND_NE) {
17060     switch (Cond.getOpcode()) {
17061     default: break;
17062     case X86ISD::BSR:
17063     case X86ISD::BSF:
17064       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17065       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17066         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17067     }
17068   }
17069
17070   SDValue Flags;
17071
17072   Flags = checkBoolTestSetCCCombine(Cond, CC);
17073   if (Flags.getNode() &&
17074       // Extra check as FCMOV only supports a subset of X86 cond.
17075       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17076     SDValue Ops[] = { FalseOp, TrueOp,
17077                       DAG.getConstant(CC, MVT::i8), Flags };
17078     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17079                        Ops, array_lengthof(Ops));
17080   }
17081
17082   // If this is a select between two integer constants, try to do some
17083   // optimizations.  Note that the operands are ordered the opposite of SELECT
17084   // operands.
17085   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17086     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17087       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17088       // larger than FalseC (the false value).
17089       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17090         CC = X86::GetOppositeBranchCondition(CC);
17091         std::swap(TrueC, FalseC);
17092         std::swap(TrueOp, FalseOp);
17093       }
17094
17095       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17096       // This is efficient for any integer data type (including i8/i16) and
17097       // shift amount.
17098       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17099         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17100                            DAG.getConstant(CC, MVT::i8), Cond);
17101
17102         // Zero extend the condition if needed.
17103         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17104
17105         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17106         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17107                            DAG.getConstant(ShAmt, MVT::i8));
17108         if (N->getNumValues() == 2)  // Dead flag value?
17109           return DCI.CombineTo(N, Cond, SDValue());
17110         return Cond;
17111       }
17112
17113       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17114       // for any integer data type, including i8/i16.
17115       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17116         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17117                            DAG.getConstant(CC, MVT::i8), Cond);
17118
17119         // Zero extend the condition if needed.
17120         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17121                            FalseC->getValueType(0), Cond);
17122         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17123                            SDValue(FalseC, 0));
17124
17125         if (N->getNumValues() == 2)  // Dead flag value?
17126           return DCI.CombineTo(N, Cond, SDValue());
17127         return Cond;
17128       }
17129
17130       // Optimize cases that will turn into an LEA instruction.  This requires
17131       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17132       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17133         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17134         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17135
17136         bool isFastMultiplier = false;
17137         if (Diff < 10) {
17138           switch ((unsigned char)Diff) {
17139           default: break;
17140           case 1:  // result = add base, cond
17141           case 2:  // result = lea base(    , cond*2)
17142           case 3:  // result = lea base(cond, cond*2)
17143           case 4:  // result = lea base(    , cond*4)
17144           case 5:  // result = lea base(cond, cond*4)
17145           case 8:  // result = lea base(    , cond*8)
17146           case 9:  // result = lea base(cond, cond*8)
17147             isFastMultiplier = true;
17148             break;
17149           }
17150         }
17151
17152         if (isFastMultiplier) {
17153           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17154           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17155                              DAG.getConstant(CC, MVT::i8), Cond);
17156           // Zero extend the condition if needed.
17157           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17158                              Cond);
17159           // Scale the condition by the difference.
17160           if (Diff != 1)
17161             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17162                                DAG.getConstant(Diff, Cond.getValueType()));
17163
17164           // Add the base if non-zero.
17165           if (FalseC->getAPIntValue() != 0)
17166             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17167                                SDValue(FalseC, 0));
17168           if (N->getNumValues() == 2)  // Dead flag value?
17169             return DCI.CombineTo(N, Cond, SDValue());
17170           return Cond;
17171         }
17172       }
17173     }
17174   }
17175
17176   // Handle these cases:
17177   //   (select (x != c), e, c) -> select (x != c), e, x),
17178   //   (select (x == c), c, e) -> select (x == c), x, e)
17179   // where the c is an integer constant, and the "select" is the combination
17180   // of CMOV and CMP.
17181   //
17182   // The rationale for this change is that the conditional-move from a constant
17183   // needs two instructions, however, conditional-move from a register needs
17184   // only one instruction.
17185   //
17186   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17187   //  some instruction-combining opportunities. This opt needs to be
17188   //  postponed as late as possible.
17189   //
17190   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17191     // the DCI.xxxx conditions are provided to postpone the optimization as
17192     // late as possible.
17193
17194     ConstantSDNode *CmpAgainst = 0;
17195     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17196         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17197         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17198
17199       if (CC == X86::COND_NE &&
17200           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17201         CC = X86::GetOppositeBranchCondition(CC);
17202         std::swap(TrueOp, FalseOp);
17203       }
17204
17205       if (CC == X86::COND_E &&
17206           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17207         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17208                           DAG.getConstant(CC, MVT::i8), Cond };
17209         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17210                            array_lengthof(Ops));
17211       }
17212     }
17213   }
17214
17215   return SDValue();
17216 }
17217
17218 /// PerformMulCombine - Optimize a single multiply with constant into two
17219 /// in order to implement it with two cheaper instructions, e.g.
17220 /// LEA + SHL, LEA + LEA.
17221 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17222                                  TargetLowering::DAGCombinerInfo &DCI) {
17223   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17224     return SDValue();
17225
17226   EVT VT = N->getValueType(0);
17227   if (VT != MVT::i64)
17228     return SDValue();
17229
17230   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17231   if (!C)
17232     return SDValue();
17233   uint64_t MulAmt = C->getZExtValue();
17234   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17235     return SDValue();
17236
17237   uint64_t MulAmt1 = 0;
17238   uint64_t MulAmt2 = 0;
17239   if ((MulAmt % 9) == 0) {
17240     MulAmt1 = 9;
17241     MulAmt2 = MulAmt / 9;
17242   } else if ((MulAmt % 5) == 0) {
17243     MulAmt1 = 5;
17244     MulAmt2 = MulAmt / 5;
17245   } else if ((MulAmt % 3) == 0) {
17246     MulAmt1 = 3;
17247     MulAmt2 = MulAmt / 3;
17248   }
17249   if (MulAmt2 &&
17250       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17251     SDLoc DL(N);
17252
17253     if (isPowerOf2_64(MulAmt2) &&
17254         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17255       // If second multiplifer is pow2, issue it first. We want the multiply by
17256       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17257       // is an add.
17258       std::swap(MulAmt1, MulAmt2);
17259
17260     SDValue NewMul;
17261     if (isPowerOf2_64(MulAmt1))
17262       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17263                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17264     else
17265       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17266                            DAG.getConstant(MulAmt1, VT));
17267
17268     if (isPowerOf2_64(MulAmt2))
17269       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17270                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17271     else
17272       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17273                            DAG.getConstant(MulAmt2, VT));
17274
17275     // Do not add new nodes to DAG combiner worklist.
17276     DCI.CombineTo(N, NewMul, false);
17277   }
17278   return SDValue();
17279 }
17280
17281 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17282   SDValue N0 = N->getOperand(0);
17283   SDValue N1 = N->getOperand(1);
17284   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17285   EVT VT = N0.getValueType();
17286
17287   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17288   // since the result of setcc_c is all zero's or all ones.
17289   if (VT.isInteger() && !VT.isVector() &&
17290       N1C && N0.getOpcode() == ISD::AND &&
17291       N0.getOperand(1).getOpcode() == ISD::Constant) {
17292     SDValue N00 = N0.getOperand(0);
17293     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17294         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17295           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17296          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17297       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17298       APInt ShAmt = N1C->getAPIntValue();
17299       Mask = Mask.shl(ShAmt);
17300       if (Mask != 0)
17301         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17302                            N00, DAG.getConstant(Mask, VT));
17303     }
17304   }
17305
17306   // Hardware support for vector shifts is sparse which makes us scalarize the
17307   // vector operations in many cases. Also, on sandybridge ADD is faster than
17308   // shl.
17309   // (shl V, 1) -> add V,V
17310   if (isSplatVector(N1.getNode())) {
17311     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17312     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17313     // We shift all of the values by one. In many cases we do not have
17314     // hardware support for this operation. This is better expressed as an ADD
17315     // of two values.
17316     if (N1C && (1 == N1C->getZExtValue())) {
17317       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17318     }
17319   }
17320
17321   return SDValue();
17322 }
17323
17324 /// \brief Returns a vector of 0s if the node in input is a vector logical
17325 /// shift by a constant amount which is known to be bigger than or equal 
17326 /// to the vector element size in bits.
17327 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17328                                       const X86Subtarget *Subtarget) {
17329   EVT VT = N->getValueType(0);
17330
17331   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17332       (!Subtarget->hasInt256() ||
17333        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17334     return SDValue();
17335
17336   SDValue Amt = N->getOperand(1);
17337   SDLoc DL(N);
17338   if (isSplatVector(Amt.getNode())) {
17339     SDValue SclrAmt = Amt->getOperand(0);
17340     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17341       APInt ShiftAmt = C->getAPIntValue();
17342       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17343
17344       // SSE2/AVX2 logical shifts always return a vector of 0s
17345       // if the shift amount is bigger than or equal to 
17346       // the element size. The constant shift amount will be
17347       // encoded as a 8-bit immediate.
17348       if (ShiftAmt.trunc(8).uge(MaxAmount))
17349         return getZeroVector(VT, Subtarget, DAG, DL);
17350     }
17351   }
17352
17353   return SDValue();
17354 }
17355
17356 /// PerformShiftCombine - Combine shifts.
17357 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17358                                    TargetLowering::DAGCombinerInfo &DCI,
17359                                    const X86Subtarget *Subtarget) {
17360   if (N->getOpcode() == ISD::SHL) {
17361     SDValue V = PerformSHLCombine(N, DAG);
17362     if (V.getNode()) return V;
17363   }
17364
17365   if (N->getOpcode() != ISD::SRA) {
17366     // Try to fold this logical shift into a zero vector.
17367     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17368     if (V.getNode()) return V;
17369   }
17370
17371   return SDValue();
17372 }
17373
17374 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17375 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17376 // and friends.  Likewise for OR -> CMPNEQSS.
17377 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17378                             TargetLowering::DAGCombinerInfo &DCI,
17379                             const X86Subtarget *Subtarget) {
17380   unsigned opcode;
17381
17382   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17383   // we're requiring SSE2 for both.
17384   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17385     SDValue N0 = N->getOperand(0);
17386     SDValue N1 = N->getOperand(1);
17387     SDValue CMP0 = N0->getOperand(1);
17388     SDValue CMP1 = N1->getOperand(1);
17389     SDLoc DL(N);
17390
17391     // The SETCCs should both refer to the same CMP.
17392     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17393       return SDValue();
17394
17395     SDValue CMP00 = CMP0->getOperand(0);
17396     SDValue CMP01 = CMP0->getOperand(1);
17397     EVT     VT    = CMP00.getValueType();
17398
17399     if (VT == MVT::f32 || VT == MVT::f64) {
17400       bool ExpectingFlags = false;
17401       // Check for any users that want flags:
17402       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17403            !ExpectingFlags && UI != UE; ++UI)
17404         switch (UI->getOpcode()) {
17405         default:
17406         case ISD::BR_CC:
17407         case ISD::BRCOND:
17408         case ISD::SELECT:
17409           ExpectingFlags = true;
17410           break;
17411         case ISD::CopyToReg:
17412         case ISD::SIGN_EXTEND:
17413         case ISD::ZERO_EXTEND:
17414         case ISD::ANY_EXTEND:
17415           break;
17416         }
17417
17418       if (!ExpectingFlags) {
17419         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17420         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17421
17422         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17423           X86::CondCode tmp = cc0;
17424           cc0 = cc1;
17425           cc1 = tmp;
17426         }
17427
17428         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17429             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17430           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17431           X86ISD::NodeType NTOperator = is64BitFP ?
17432             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17433           // FIXME: need symbolic constants for these magic numbers.
17434           // See X86ATTInstPrinter.cpp:printSSECC().
17435           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17436           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17437                                               DAG.getConstant(x86cc, MVT::i8));
17438           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17439                                               OnesOrZeroesF);
17440           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17441                                       DAG.getConstant(1, MVT::i32));
17442           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17443           return OneBitOfTruth;
17444         }
17445       }
17446     }
17447   }
17448   return SDValue();
17449 }
17450
17451 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17452 /// so it can be folded inside ANDNP.
17453 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17454   EVT VT = N->getValueType(0);
17455
17456   // Match direct AllOnes for 128 and 256-bit vectors
17457   if (ISD::isBuildVectorAllOnes(N))
17458     return true;
17459
17460   // Look through a bit convert.
17461   if (N->getOpcode() == ISD::BITCAST)
17462     N = N->getOperand(0).getNode();
17463
17464   // Sometimes the operand may come from a insert_subvector building a 256-bit
17465   // allones vector
17466   if (VT.is256BitVector() &&
17467       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17468     SDValue V1 = N->getOperand(0);
17469     SDValue V2 = N->getOperand(1);
17470
17471     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17472         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17473         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17474         ISD::isBuildVectorAllOnes(V2.getNode()))
17475       return true;
17476   }
17477
17478   return false;
17479 }
17480
17481 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17482 // register. In most cases we actually compare or select YMM-sized registers
17483 // and mixing the two types creates horrible code. This method optimizes
17484 // some of the transition sequences.
17485 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17486                                  TargetLowering::DAGCombinerInfo &DCI,
17487                                  const X86Subtarget *Subtarget) {
17488   EVT VT = N->getValueType(0);
17489   if (!VT.is256BitVector())
17490     return SDValue();
17491
17492   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17493           N->getOpcode() == ISD::ZERO_EXTEND ||
17494           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17495
17496   SDValue Narrow = N->getOperand(0);
17497   EVT NarrowVT = Narrow->getValueType(0);
17498   if (!NarrowVT.is128BitVector())
17499     return SDValue();
17500
17501   if (Narrow->getOpcode() != ISD::XOR &&
17502       Narrow->getOpcode() != ISD::AND &&
17503       Narrow->getOpcode() != ISD::OR)
17504     return SDValue();
17505
17506   SDValue N0  = Narrow->getOperand(0);
17507   SDValue N1  = Narrow->getOperand(1);
17508   SDLoc DL(Narrow);
17509
17510   // The Left side has to be a trunc.
17511   if (N0.getOpcode() != ISD::TRUNCATE)
17512     return SDValue();
17513
17514   // The type of the truncated inputs.
17515   EVT WideVT = N0->getOperand(0)->getValueType(0);
17516   if (WideVT != VT)
17517     return SDValue();
17518
17519   // The right side has to be a 'trunc' or a constant vector.
17520   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17521   bool RHSConst = (isSplatVector(N1.getNode()) &&
17522                    isa<ConstantSDNode>(N1->getOperand(0)));
17523   if (!RHSTrunc && !RHSConst)
17524     return SDValue();
17525
17526   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17527
17528   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17529     return SDValue();
17530
17531   // Set N0 and N1 to hold the inputs to the new wide operation.
17532   N0 = N0->getOperand(0);
17533   if (RHSConst) {
17534     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17535                      N1->getOperand(0));
17536     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17537     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17538   } else if (RHSTrunc) {
17539     N1 = N1->getOperand(0);
17540   }
17541
17542   // Generate the wide operation.
17543   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17544   unsigned Opcode = N->getOpcode();
17545   switch (Opcode) {
17546   case ISD::ANY_EXTEND:
17547     return Op;
17548   case ISD::ZERO_EXTEND: {
17549     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17550     APInt Mask = APInt::getAllOnesValue(InBits);
17551     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17552     return DAG.getNode(ISD::AND, DL, VT,
17553                        Op, DAG.getConstant(Mask, VT));
17554   }
17555   case ISD::SIGN_EXTEND:
17556     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17557                        Op, DAG.getValueType(NarrowVT));
17558   default:
17559     llvm_unreachable("Unexpected opcode");
17560   }
17561 }
17562
17563 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17564                                  TargetLowering::DAGCombinerInfo &DCI,
17565                                  const X86Subtarget *Subtarget) {
17566   EVT VT = N->getValueType(0);
17567   if (DCI.isBeforeLegalizeOps())
17568     return SDValue();
17569
17570   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17571   if (R.getNode())
17572     return R;
17573
17574   // Create BLSI, BLSR, and BZHI instructions
17575   // BLSI is X & (-X)
17576   // BLSR is X & (X-1)
17577   // BZHI is X & ((1 << Y) - 1)
17578   // BEXTR is ((X >> imm) & (2**size-1))
17579   if (VT == MVT::i32 || VT == MVT::i64) {
17580     SDValue N0 = N->getOperand(0);
17581     SDValue N1 = N->getOperand(1);
17582     SDLoc DL(N);
17583
17584     if (Subtarget->hasBMI()) {
17585       // Check LHS for neg
17586       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17587           isZero(N0.getOperand(0)))
17588         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17589
17590       // Check RHS for neg
17591       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17592           isZero(N1.getOperand(0)))
17593         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17594
17595       // Check LHS for X-1
17596       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17597           isAllOnes(N0.getOperand(1)))
17598         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17599
17600       // Check RHS for X-1
17601       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17602           isAllOnes(N1.getOperand(1)))
17603         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17604     }
17605
17606     if (Subtarget->hasBMI2()) {
17607       // Check for (and (add (shl 1, Y), -1), X)
17608       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17609         SDValue N00 = N0.getOperand(0);
17610         if (N00.getOpcode() == ISD::SHL) {
17611           SDValue N001 = N00.getOperand(1);
17612           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17613           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17614           if (C && C->getZExtValue() == 1)
17615             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17616         }
17617       }
17618
17619       // Check for (and X, (add (shl 1, Y), -1))
17620       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17621         SDValue N10 = N1.getOperand(0);
17622         if (N10.getOpcode() == ISD::SHL) {
17623           SDValue N101 = N10.getOperand(1);
17624           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17625           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17626           if (C && C->getZExtValue() == 1)
17627             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17628         }
17629       }
17630     }
17631
17632     // Check for BEXTR.
17633     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17634         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17635       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17636       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17637       if (MaskNode && ShiftNode) {
17638         uint64_t Mask = MaskNode->getZExtValue();
17639         uint64_t Shift = ShiftNode->getZExtValue();
17640         if (isMask_64(Mask)) {
17641           uint64_t MaskSize = CountPopulation_64(Mask);
17642           if (Shift + MaskSize <= VT.getSizeInBits())
17643             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17644                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17645         }
17646       }
17647     } // BEXTR
17648
17649     return SDValue();
17650   }
17651
17652   // Want to form ANDNP nodes:
17653   // 1) In the hopes of then easily combining them with OR and AND nodes
17654   //    to form PBLEND/PSIGN.
17655   // 2) To match ANDN packed intrinsics
17656   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17657     return SDValue();
17658
17659   SDValue N0 = N->getOperand(0);
17660   SDValue N1 = N->getOperand(1);
17661   SDLoc DL(N);
17662
17663   // Check LHS for vnot
17664   if (N0.getOpcode() == ISD::XOR &&
17665       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17666       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17667     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17668
17669   // Check RHS for vnot
17670   if (N1.getOpcode() == ISD::XOR &&
17671       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17672       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17673     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17674
17675   return SDValue();
17676 }
17677
17678 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17679                                 TargetLowering::DAGCombinerInfo &DCI,
17680                                 const X86Subtarget *Subtarget) {
17681   EVT VT = N->getValueType(0);
17682   if (DCI.isBeforeLegalizeOps())
17683     return SDValue();
17684
17685   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17686   if (R.getNode())
17687     return R;
17688
17689   SDValue N0 = N->getOperand(0);
17690   SDValue N1 = N->getOperand(1);
17691
17692   // look for psign/blend
17693   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17694     if (!Subtarget->hasSSSE3() ||
17695         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17696       return SDValue();
17697
17698     // Canonicalize pandn to RHS
17699     if (N0.getOpcode() == X86ISD::ANDNP)
17700       std::swap(N0, N1);
17701     // or (and (m, y), (pandn m, x))
17702     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17703       SDValue Mask = N1.getOperand(0);
17704       SDValue X    = N1.getOperand(1);
17705       SDValue Y;
17706       if (N0.getOperand(0) == Mask)
17707         Y = N0.getOperand(1);
17708       if (N0.getOperand(1) == Mask)
17709         Y = N0.getOperand(0);
17710
17711       // Check to see if the mask appeared in both the AND and ANDNP and
17712       if (!Y.getNode())
17713         return SDValue();
17714
17715       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17716       // Look through mask bitcast.
17717       if (Mask.getOpcode() == ISD::BITCAST)
17718         Mask = Mask.getOperand(0);
17719       if (X.getOpcode() == ISD::BITCAST)
17720         X = X.getOperand(0);
17721       if (Y.getOpcode() == ISD::BITCAST)
17722         Y = Y.getOperand(0);
17723
17724       EVT MaskVT = Mask.getValueType();
17725
17726       // Validate that the Mask operand is a vector sra node.
17727       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17728       // there is no psrai.b
17729       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17730       unsigned SraAmt = ~0;
17731       if (Mask.getOpcode() == ISD::SRA) {
17732         SDValue Amt = Mask.getOperand(1);
17733         if (isSplatVector(Amt.getNode())) {
17734           SDValue SclrAmt = Amt->getOperand(0);
17735           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17736             SraAmt = C->getZExtValue();
17737         }
17738       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17739         SDValue SraC = Mask.getOperand(1);
17740         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17741       }
17742       if ((SraAmt + 1) != EltBits)
17743         return SDValue();
17744
17745       SDLoc DL(N);
17746
17747       // Now we know we at least have a plendvb with the mask val.  See if
17748       // we can form a psignb/w/d.
17749       // psign = x.type == y.type == mask.type && y = sub(0, x);
17750       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17751           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17752           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17753         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17754                "Unsupported VT for PSIGN");
17755         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17756         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17757       }
17758       // PBLENDVB only available on SSE 4.1
17759       if (!Subtarget->hasSSE41())
17760         return SDValue();
17761
17762       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17763
17764       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17765       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17766       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17767       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17768       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17769     }
17770   }
17771
17772   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17773     return SDValue();
17774
17775   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17776   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17777     std::swap(N0, N1);
17778   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17779     return SDValue();
17780   if (!N0.hasOneUse() || !N1.hasOneUse())
17781     return SDValue();
17782
17783   SDValue ShAmt0 = N0.getOperand(1);
17784   if (ShAmt0.getValueType() != MVT::i8)
17785     return SDValue();
17786   SDValue ShAmt1 = N1.getOperand(1);
17787   if (ShAmt1.getValueType() != MVT::i8)
17788     return SDValue();
17789   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17790     ShAmt0 = ShAmt0.getOperand(0);
17791   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17792     ShAmt1 = ShAmt1.getOperand(0);
17793
17794   SDLoc DL(N);
17795   unsigned Opc = X86ISD::SHLD;
17796   SDValue Op0 = N0.getOperand(0);
17797   SDValue Op1 = N1.getOperand(0);
17798   if (ShAmt0.getOpcode() == ISD::SUB) {
17799     Opc = X86ISD::SHRD;
17800     std::swap(Op0, Op1);
17801     std::swap(ShAmt0, ShAmt1);
17802   }
17803
17804   unsigned Bits = VT.getSizeInBits();
17805   if (ShAmt1.getOpcode() == ISD::SUB) {
17806     SDValue Sum = ShAmt1.getOperand(0);
17807     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17808       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17809       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17810         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17811       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17812         return DAG.getNode(Opc, DL, VT,
17813                            Op0, Op1,
17814                            DAG.getNode(ISD::TRUNCATE, DL,
17815                                        MVT::i8, ShAmt0));
17816     }
17817   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17818     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17819     if (ShAmt0C &&
17820         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17821       return DAG.getNode(Opc, DL, VT,
17822                          N0.getOperand(0), N1.getOperand(0),
17823                          DAG.getNode(ISD::TRUNCATE, DL,
17824                                        MVT::i8, ShAmt0));
17825   }
17826
17827   return SDValue();
17828 }
17829
17830 // Generate NEG and CMOV for integer abs.
17831 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17832   EVT VT = N->getValueType(0);
17833
17834   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17835   // 8-bit integer abs to NEG and CMOV.
17836   if (VT.isInteger() && VT.getSizeInBits() == 8)
17837     return SDValue();
17838
17839   SDValue N0 = N->getOperand(0);
17840   SDValue N1 = N->getOperand(1);
17841   SDLoc DL(N);
17842
17843   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17844   // and change it to SUB and CMOV.
17845   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17846       N0.getOpcode() == ISD::ADD &&
17847       N0.getOperand(1) == N1 &&
17848       N1.getOpcode() == ISD::SRA &&
17849       N1.getOperand(0) == N0.getOperand(0))
17850     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17851       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17852         // Generate SUB & CMOV.
17853         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17854                                   DAG.getConstant(0, VT), N0.getOperand(0));
17855
17856         SDValue Ops[] = { N0.getOperand(0), Neg,
17857                           DAG.getConstant(X86::COND_GE, MVT::i8),
17858                           SDValue(Neg.getNode(), 1) };
17859         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17860                            Ops, array_lengthof(Ops));
17861       }
17862   return SDValue();
17863 }
17864
17865 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17866 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17867                                  TargetLowering::DAGCombinerInfo &DCI,
17868                                  const X86Subtarget *Subtarget) {
17869   EVT VT = N->getValueType(0);
17870   if (DCI.isBeforeLegalizeOps())
17871     return SDValue();
17872
17873   if (Subtarget->hasCMov()) {
17874     SDValue RV = performIntegerAbsCombine(N, DAG);
17875     if (RV.getNode())
17876       return RV;
17877   }
17878
17879   // Try forming BMI if it is available.
17880   if (!Subtarget->hasBMI())
17881     return SDValue();
17882
17883   if (VT != MVT::i32 && VT != MVT::i64)
17884     return SDValue();
17885
17886   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17887
17888   // Create BLSMSK instructions by finding X ^ (X-1)
17889   SDValue N0 = N->getOperand(0);
17890   SDValue N1 = N->getOperand(1);
17891   SDLoc DL(N);
17892
17893   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17894       isAllOnes(N0.getOperand(1)))
17895     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17896
17897   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17898       isAllOnes(N1.getOperand(1)))
17899     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17900
17901   return SDValue();
17902 }
17903
17904 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17905 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17906                                   TargetLowering::DAGCombinerInfo &DCI,
17907                                   const X86Subtarget *Subtarget) {
17908   LoadSDNode *Ld = cast<LoadSDNode>(N);
17909   EVT RegVT = Ld->getValueType(0);
17910   EVT MemVT = Ld->getMemoryVT();
17911   SDLoc dl(Ld);
17912   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17913   unsigned RegSz = RegVT.getSizeInBits();
17914
17915   // On Sandybridge unaligned 256bit loads are inefficient.
17916   ISD::LoadExtType Ext = Ld->getExtensionType();
17917   unsigned Alignment = Ld->getAlignment();
17918   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17919   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17920       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17921     unsigned NumElems = RegVT.getVectorNumElements();
17922     if (NumElems < 2)
17923       return SDValue();
17924
17925     SDValue Ptr = Ld->getBasePtr();
17926     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17927
17928     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17929                                   NumElems/2);
17930     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17931                                 Ld->getPointerInfo(), Ld->isVolatile(),
17932                                 Ld->isNonTemporal(), Ld->isInvariant(),
17933                                 Alignment);
17934     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17935     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17936                                 Ld->getPointerInfo(), Ld->isVolatile(),
17937                                 Ld->isNonTemporal(), Ld->isInvariant(),
17938                                 std::min(16U, Alignment));
17939     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17940                              Load1.getValue(1),
17941                              Load2.getValue(1));
17942
17943     SDValue NewVec = DAG.getUNDEF(RegVT);
17944     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17945     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17946     return DCI.CombineTo(N, NewVec, TF, true);
17947   }
17948
17949   // If this is a vector EXT Load then attempt to optimize it using a
17950   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17951   // expansion is still better than scalar code.
17952   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17953   // emit a shuffle and a arithmetic shift.
17954   // TODO: It is possible to support ZExt by zeroing the undef values
17955   // during the shuffle phase or after the shuffle.
17956   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17957       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17958     assert(MemVT != RegVT && "Cannot extend to the same type");
17959     assert(MemVT.isVector() && "Must load a vector from memory");
17960
17961     unsigned NumElems = RegVT.getVectorNumElements();
17962     unsigned MemSz = MemVT.getSizeInBits();
17963     assert(RegSz > MemSz && "Register size must be greater than the mem size");
17964
17965     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17966       return SDValue();
17967
17968     // All sizes must be a power of two.
17969     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17970       return SDValue();
17971
17972     // Attempt to load the original value using scalar loads.
17973     // Find the largest scalar type that divides the total loaded size.
17974     MVT SclrLoadTy = MVT::i8;
17975     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17976          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17977       MVT Tp = (MVT::SimpleValueType)tp;
17978       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
17979         SclrLoadTy = Tp;
17980       }
17981     }
17982
17983     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17984     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17985         (64 <= MemSz))
17986       SclrLoadTy = MVT::f64;
17987
17988     // Calculate the number of scalar loads that we need to perform
17989     // in order to load our vector from memory.
17990     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
17991     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17992       return SDValue();
17993
17994     unsigned loadRegZize = RegSz;
17995     if (Ext == ISD::SEXTLOAD && RegSz == 256)
17996       loadRegZize /= 2;
17997
17998     // Represent our vector as a sequence of elements which are the
17999     // largest scalar that we can load.
18000     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18001       loadRegZize/SclrLoadTy.getSizeInBits());
18002
18003     // Represent the data using the same element type that is stored in
18004     // memory. In practice, we ''widen'' MemVT.
18005     EVT WideVecVT =
18006           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18007                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18008
18009     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18010       "Invalid vector type");
18011
18012     // We can't shuffle using an illegal type.
18013     if (!TLI.isTypeLegal(WideVecVT))
18014       return SDValue();
18015
18016     SmallVector<SDValue, 8> Chains;
18017     SDValue Ptr = Ld->getBasePtr();
18018     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18019                                         TLI.getPointerTy());
18020     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18021
18022     for (unsigned i = 0; i < NumLoads; ++i) {
18023       // Perform a single load.
18024       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18025                                        Ptr, Ld->getPointerInfo(),
18026                                        Ld->isVolatile(), Ld->isNonTemporal(),
18027                                        Ld->isInvariant(), Ld->getAlignment());
18028       Chains.push_back(ScalarLoad.getValue(1));
18029       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18030       // another round of DAGCombining.
18031       if (i == 0)
18032         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18033       else
18034         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18035                           ScalarLoad, DAG.getIntPtrConstant(i));
18036
18037       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18038     }
18039
18040     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18041                                Chains.size());
18042
18043     // Bitcast the loaded value to a vector of the original element type, in
18044     // the size of the target vector type.
18045     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18046     unsigned SizeRatio = RegSz/MemSz;
18047
18048     if (Ext == ISD::SEXTLOAD) {
18049       // If we have SSE4.1 we can directly emit a VSEXT node.
18050       if (Subtarget->hasSSE41()) {
18051         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18052         return DCI.CombineTo(N, Sext, TF, true);
18053       }
18054
18055       // Otherwise we'll shuffle the small elements in the high bits of the
18056       // larger type and perform an arithmetic shift. If the shift is not legal
18057       // it's better to scalarize.
18058       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18059         return SDValue();
18060
18061       // Redistribute the loaded elements into the different locations.
18062       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18063       for (unsigned i = 0; i != NumElems; ++i)
18064         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18065
18066       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18067                                            DAG.getUNDEF(WideVecVT),
18068                                            &ShuffleVec[0]);
18069
18070       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18071
18072       // Build the arithmetic shift.
18073       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18074                      MemVT.getVectorElementType().getSizeInBits();
18075       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18076                           DAG.getConstant(Amt, RegVT));
18077
18078       return DCI.CombineTo(N, Shuff, TF, true);
18079     }
18080
18081     // Redistribute the loaded elements into the different locations.
18082     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18083     for (unsigned i = 0; i != NumElems; ++i)
18084       ShuffleVec[i*SizeRatio] = i;
18085
18086     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18087                                          DAG.getUNDEF(WideVecVT),
18088                                          &ShuffleVec[0]);
18089
18090     // Bitcast to the requested type.
18091     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18092     // Replace the original load with the new sequence
18093     // and return the new chain.
18094     return DCI.CombineTo(N, Shuff, TF, true);
18095   }
18096
18097   return SDValue();
18098 }
18099
18100 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18101 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18102                                    const X86Subtarget *Subtarget) {
18103   StoreSDNode *St = cast<StoreSDNode>(N);
18104   EVT VT = St->getValue().getValueType();
18105   EVT StVT = St->getMemoryVT();
18106   SDLoc dl(St);
18107   SDValue StoredVal = St->getOperand(1);
18108   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18109
18110   // If we are saving a concatenation of two XMM registers, perform two stores.
18111   // On Sandy Bridge, 256-bit memory operations are executed by two
18112   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18113   // memory  operation.
18114   unsigned Alignment = St->getAlignment();
18115   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18116   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18117       StVT == VT && !IsAligned) {
18118     unsigned NumElems = VT.getVectorNumElements();
18119     if (NumElems < 2)
18120       return SDValue();
18121
18122     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18123     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18124
18125     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18126     SDValue Ptr0 = St->getBasePtr();
18127     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18128
18129     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18130                                 St->getPointerInfo(), St->isVolatile(),
18131                                 St->isNonTemporal(), Alignment);
18132     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18133                                 St->getPointerInfo(), St->isVolatile(),
18134                                 St->isNonTemporal(),
18135                                 std::min(16U, Alignment));
18136     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18137   }
18138
18139   // Optimize trunc store (of multiple scalars) to shuffle and store.
18140   // First, pack all of the elements in one place. Next, store to memory
18141   // in fewer chunks.
18142   if (St->isTruncatingStore() && VT.isVector()) {
18143     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18144     unsigned NumElems = VT.getVectorNumElements();
18145     assert(StVT != VT && "Cannot truncate to the same type");
18146     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18147     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18148
18149     // From, To sizes and ElemCount must be pow of two
18150     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18151     // We are going to use the original vector elt for storing.
18152     // Accumulated smaller vector elements must be a multiple of the store size.
18153     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18154
18155     unsigned SizeRatio  = FromSz / ToSz;
18156
18157     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18158
18159     // Create a type on which we perform the shuffle
18160     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18161             StVT.getScalarType(), NumElems*SizeRatio);
18162
18163     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18164
18165     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18166     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18167     for (unsigned i = 0; i != NumElems; ++i)
18168       ShuffleVec[i] = i * SizeRatio;
18169
18170     // Can't shuffle using an illegal type.
18171     if (!TLI.isTypeLegal(WideVecVT))
18172       return SDValue();
18173
18174     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18175                                          DAG.getUNDEF(WideVecVT),
18176                                          &ShuffleVec[0]);
18177     // At this point all of the data is stored at the bottom of the
18178     // register. We now need to save it to mem.
18179
18180     // Find the largest store unit
18181     MVT StoreType = MVT::i8;
18182     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18183          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18184       MVT Tp = (MVT::SimpleValueType)tp;
18185       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18186         StoreType = Tp;
18187     }
18188
18189     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18190     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18191         (64 <= NumElems * ToSz))
18192       StoreType = MVT::f64;
18193
18194     // Bitcast the original vector into a vector of store-size units
18195     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18196             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18197     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18198     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18199     SmallVector<SDValue, 8> Chains;
18200     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18201                                         TLI.getPointerTy());
18202     SDValue Ptr = St->getBasePtr();
18203
18204     // Perform one or more big stores into memory.
18205     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18206       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18207                                    StoreType, ShuffWide,
18208                                    DAG.getIntPtrConstant(i));
18209       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18210                                 St->getPointerInfo(), St->isVolatile(),
18211                                 St->isNonTemporal(), St->getAlignment());
18212       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18213       Chains.push_back(Ch);
18214     }
18215
18216     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18217                                Chains.size());
18218   }
18219
18220   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18221   // the FP state in cases where an emms may be missing.
18222   // A preferable solution to the general problem is to figure out the right
18223   // places to insert EMMS.  This qualifies as a quick hack.
18224
18225   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18226   if (VT.getSizeInBits() != 64)
18227     return SDValue();
18228
18229   const Function *F = DAG.getMachineFunction().getFunction();
18230   bool NoImplicitFloatOps = F->getAttributes().
18231     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18232   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18233                      && Subtarget->hasSSE2();
18234   if ((VT.isVector() ||
18235        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18236       isa<LoadSDNode>(St->getValue()) &&
18237       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18238       St->getChain().hasOneUse() && !St->isVolatile()) {
18239     SDNode* LdVal = St->getValue().getNode();
18240     LoadSDNode *Ld = 0;
18241     int TokenFactorIndex = -1;
18242     SmallVector<SDValue, 8> Ops;
18243     SDNode* ChainVal = St->getChain().getNode();
18244     // Must be a store of a load.  We currently handle two cases:  the load
18245     // is a direct child, and it's under an intervening TokenFactor.  It is
18246     // possible to dig deeper under nested TokenFactors.
18247     if (ChainVal == LdVal)
18248       Ld = cast<LoadSDNode>(St->getChain());
18249     else if (St->getValue().hasOneUse() &&
18250              ChainVal->getOpcode() == ISD::TokenFactor) {
18251       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18252         if (ChainVal->getOperand(i).getNode() == LdVal) {
18253           TokenFactorIndex = i;
18254           Ld = cast<LoadSDNode>(St->getValue());
18255         } else
18256           Ops.push_back(ChainVal->getOperand(i));
18257       }
18258     }
18259
18260     if (!Ld || !ISD::isNormalLoad(Ld))
18261       return SDValue();
18262
18263     // If this is not the MMX case, i.e. we are just turning i64 load/store
18264     // into f64 load/store, avoid the transformation if there are multiple
18265     // uses of the loaded value.
18266     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18267       return SDValue();
18268
18269     SDLoc LdDL(Ld);
18270     SDLoc StDL(N);
18271     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18272     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18273     // pair instead.
18274     if (Subtarget->is64Bit() || F64IsLegal) {
18275       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18276       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18277                                   Ld->getPointerInfo(), Ld->isVolatile(),
18278                                   Ld->isNonTemporal(), Ld->isInvariant(),
18279                                   Ld->getAlignment());
18280       SDValue NewChain = NewLd.getValue(1);
18281       if (TokenFactorIndex != -1) {
18282         Ops.push_back(NewChain);
18283         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18284                                Ops.size());
18285       }
18286       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18287                           St->getPointerInfo(),
18288                           St->isVolatile(), St->isNonTemporal(),
18289                           St->getAlignment());
18290     }
18291
18292     // Otherwise, lower to two pairs of 32-bit loads / stores.
18293     SDValue LoAddr = Ld->getBasePtr();
18294     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18295                                  DAG.getConstant(4, MVT::i32));
18296
18297     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18298                                Ld->getPointerInfo(),
18299                                Ld->isVolatile(), Ld->isNonTemporal(),
18300                                Ld->isInvariant(), Ld->getAlignment());
18301     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18302                                Ld->getPointerInfo().getWithOffset(4),
18303                                Ld->isVolatile(), Ld->isNonTemporal(),
18304                                Ld->isInvariant(),
18305                                MinAlign(Ld->getAlignment(), 4));
18306
18307     SDValue NewChain = LoLd.getValue(1);
18308     if (TokenFactorIndex != -1) {
18309       Ops.push_back(LoLd);
18310       Ops.push_back(HiLd);
18311       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18312                              Ops.size());
18313     }
18314
18315     LoAddr = St->getBasePtr();
18316     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18317                          DAG.getConstant(4, MVT::i32));
18318
18319     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18320                                 St->getPointerInfo(),
18321                                 St->isVolatile(), St->isNonTemporal(),
18322                                 St->getAlignment());
18323     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18324                                 St->getPointerInfo().getWithOffset(4),
18325                                 St->isVolatile(),
18326                                 St->isNonTemporal(),
18327                                 MinAlign(St->getAlignment(), 4));
18328     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18329   }
18330   return SDValue();
18331 }
18332
18333 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18334 /// and return the operands for the horizontal operation in LHS and RHS.  A
18335 /// horizontal operation performs the binary operation on successive elements
18336 /// of its first operand, then on successive elements of its second operand,
18337 /// returning the resulting values in a vector.  For example, if
18338 ///   A = < float a0, float a1, float a2, float a3 >
18339 /// and
18340 ///   B = < float b0, float b1, float b2, float b3 >
18341 /// then the result of doing a horizontal operation on A and B is
18342 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18343 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18344 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18345 /// set to A, RHS to B, and the routine returns 'true'.
18346 /// Note that the binary operation should have the property that if one of the
18347 /// operands is UNDEF then the result is UNDEF.
18348 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18349   // Look for the following pattern: if
18350   //   A = < float a0, float a1, float a2, float a3 >
18351   //   B = < float b0, float b1, float b2, float b3 >
18352   // and
18353   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18354   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18355   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18356   // which is A horizontal-op B.
18357
18358   // At least one of the operands should be a vector shuffle.
18359   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18360       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18361     return false;
18362
18363   MVT VT = LHS.getSimpleValueType();
18364
18365   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18366          "Unsupported vector type for horizontal add/sub");
18367
18368   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18369   // operate independently on 128-bit lanes.
18370   unsigned NumElts = VT.getVectorNumElements();
18371   unsigned NumLanes = VT.getSizeInBits()/128;
18372   unsigned NumLaneElts = NumElts / NumLanes;
18373   assert((NumLaneElts % 2 == 0) &&
18374          "Vector type should have an even number of elements in each lane");
18375   unsigned HalfLaneElts = NumLaneElts/2;
18376
18377   // View LHS in the form
18378   //   LHS = VECTOR_SHUFFLE A, B, LMask
18379   // If LHS is not a shuffle then pretend it is the shuffle
18380   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18381   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18382   // type VT.
18383   SDValue A, B;
18384   SmallVector<int, 16> LMask(NumElts);
18385   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18386     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18387       A = LHS.getOperand(0);
18388     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18389       B = LHS.getOperand(1);
18390     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18391     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18392   } else {
18393     if (LHS.getOpcode() != ISD::UNDEF)
18394       A = LHS;
18395     for (unsigned i = 0; i != NumElts; ++i)
18396       LMask[i] = i;
18397   }
18398
18399   // Likewise, view RHS in the form
18400   //   RHS = VECTOR_SHUFFLE C, D, RMask
18401   SDValue C, D;
18402   SmallVector<int, 16> RMask(NumElts);
18403   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18404     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18405       C = RHS.getOperand(0);
18406     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18407       D = RHS.getOperand(1);
18408     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18409     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18410   } else {
18411     if (RHS.getOpcode() != ISD::UNDEF)
18412       C = RHS;
18413     for (unsigned i = 0; i != NumElts; ++i)
18414       RMask[i] = i;
18415   }
18416
18417   // Check that the shuffles are both shuffling the same vectors.
18418   if (!(A == C && B == D) && !(A == D && B == C))
18419     return false;
18420
18421   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18422   if (!A.getNode() && !B.getNode())
18423     return false;
18424
18425   // If A and B occur in reverse order in RHS, then "swap" them (which means
18426   // rewriting the mask).
18427   if (A != C)
18428     CommuteVectorShuffleMask(RMask, NumElts);
18429
18430   // At this point LHS and RHS are equivalent to
18431   //   LHS = VECTOR_SHUFFLE A, B, LMask
18432   //   RHS = VECTOR_SHUFFLE A, B, RMask
18433   // Check that the masks correspond to performing a horizontal operation.
18434   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18435     for (unsigned i = 0; i != NumLaneElts; ++i) {
18436       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18437
18438       // Ignore any UNDEF components.
18439       if (LIdx < 0 || RIdx < 0 ||
18440           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18441           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18442         continue;
18443
18444       // Check that successive elements are being operated on.  If not, this is
18445       // not a horizontal operation.
18446       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18447       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18448       if (!(LIdx == Index && RIdx == Index + 1) &&
18449           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18450         return false;
18451     }
18452   }
18453
18454   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18455   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18456   return true;
18457 }
18458
18459 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18460 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18461                                   const X86Subtarget *Subtarget) {
18462   EVT VT = N->getValueType(0);
18463   SDValue LHS = N->getOperand(0);
18464   SDValue RHS = N->getOperand(1);
18465
18466   // Try to synthesize horizontal adds from adds of shuffles.
18467   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18468        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18469       isHorizontalBinOp(LHS, RHS, true))
18470     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18471   return SDValue();
18472 }
18473
18474 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18475 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18476                                   const X86Subtarget *Subtarget) {
18477   EVT VT = N->getValueType(0);
18478   SDValue LHS = N->getOperand(0);
18479   SDValue RHS = N->getOperand(1);
18480
18481   // Try to synthesize horizontal subs from subs of shuffles.
18482   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18483        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18484       isHorizontalBinOp(LHS, RHS, false))
18485     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18486   return SDValue();
18487 }
18488
18489 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18490 /// X86ISD::FXOR nodes.
18491 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18492   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18493   // F[X]OR(0.0, x) -> x
18494   // F[X]OR(x, 0.0) -> x
18495   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18496     if (C->getValueAPF().isPosZero())
18497       return N->getOperand(1);
18498   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18499     if (C->getValueAPF().isPosZero())
18500       return N->getOperand(0);
18501   return SDValue();
18502 }
18503
18504 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18505 /// X86ISD::FMAX nodes.
18506 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18507   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18508
18509   // Only perform optimizations if UnsafeMath is used.
18510   if (!DAG.getTarget().Options.UnsafeFPMath)
18511     return SDValue();
18512
18513   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18514   // into FMINC and FMAXC, which are Commutative operations.
18515   unsigned NewOp = 0;
18516   switch (N->getOpcode()) {
18517     default: llvm_unreachable("unknown opcode");
18518     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18519     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18520   }
18521
18522   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18523                      N->getOperand(0), N->getOperand(1));
18524 }
18525
18526 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18527 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18528   // FAND(0.0, x) -> 0.0
18529   // FAND(x, 0.0) -> 0.0
18530   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18531     if (C->getValueAPF().isPosZero())
18532       return N->getOperand(0);
18533   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18534     if (C->getValueAPF().isPosZero())
18535       return N->getOperand(1);
18536   return SDValue();
18537 }
18538
18539 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18540 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18541   // FANDN(x, 0.0) -> 0.0
18542   // FANDN(0.0, x) -> x
18543   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18544     if (C->getValueAPF().isPosZero())
18545       return N->getOperand(1);
18546   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18547     if (C->getValueAPF().isPosZero())
18548       return N->getOperand(1);
18549   return SDValue();
18550 }
18551
18552 static SDValue PerformBTCombine(SDNode *N,
18553                                 SelectionDAG &DAG,
18554                                 TargetLowering::DAGCombinerInfo &DCI) {
18555   // BT ignores high bits in the bit index operand.
18556   SDValue Op1 = N->getOperand(1);
18557   if (Op1.hasOneUse()) {
18558     unsigned BitWidth = Op1.getValueSizeInBits();
18559     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18560     APInt KnownZero, KnownOne;
18561     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18562                                           !DCI.isBeforeLegalizeOps());
18563     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18564     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18565         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18566       DCI.CommitTargetLoweringOpt(TLO);
18567   }
18568   return SDValue();
18569 }
18570
18571 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18572   SDValue Op = N->getOperand(0);
18573   if (Op.getOpcode() == ISD::BITCAST)
18574     Op = Op.getOperand(0);
18575   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18576   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18577       VT.getVectorElementType().getSizeInBits() ==
18578       OpVT.getVectorElementType().getSizeInBits()) {
18579     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18580   }
18581   return SDValue();
18582 }
18583
18584 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18585                                                const X86Subtarget *Subtarget) {
18586   EVT VT = N->getValueType(0);
18587   if (!VT.isVector())
18588     return SDValue();
18589
18590   SDValue N0 = N->getOperand(0);
18591   SDValue N1 = N->getOperand(1);
18592   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18593   SDLoc dl(N);
18594
18595   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18596   // both SSE and AVX2 since there is no sign-extended shift right
18597   // operation on a vector with 64-bit elements.
18598   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18599   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18600   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18601       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18602     SDValue N00 = N0.getOperand(0);
18603
18604     // EXTLOAD has a better solution on AVX2,
18605     // it may be replaced with X86ISD::VSEXT node.
18606     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18607       if (!ISD::isNormalLoad(N00.getNode()))
18608         return SDValue();
18609
18610     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18611         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18612                                   N00, N1);
18613       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18614     }
18615   }
18616   return SDValue();
18617 }
18618
18619 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18620                                   TargetLowering::DAGCombinerInfo &DCI,
18621                                   const X86Subtarget *Subtarget) {
18622   if (!DCI.isBeforeLegalizeOps())
18623     return SDValue();
18624
18625   if (!Subtarget->hasFp256())
18626     return SDValue();
18627
18628   EVT VT = N->getValueType(0);
18629   if (VT.isVector() && VT.getSizeInBits() == 256) {
18630     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18631     if (R.getNode())
18632       return R;
18633   }
18634
18635   return SDValue();
18636 }
18637
18638 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18639                                  const X86Subtarget* Subtarget) {
18640   SDLoc dl(N);
18641   EVT VT = N->getValueType(0);
18642
18643   // Let legalize expand this if it isn't a legal type yet.
18644   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18645     return SDValue();
18646
18647   EVT ScalarVT = VT.getScalarType();
18648   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18649       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18650     return SDValue();
18651
18652   SDValue A = N->getOperand(0);
18653   SDValue B = N->getOperand(1);
18654   SDValue C = N->getOperand(2);
18655
18656   bool NegA = (A.getOpcode() == ISD::FNEG);
18657   bool NegB = (B.getOpcode() == ISD::FNEG);
18658   bool NegC = (C.getOpcode() == ISD::FNEG);
18659
18660   // Negative multiplication when NegA xor NegB
18661   bool NegMul = (NegA != NegB);
18662   if (NegA)
18663     A = A.getOperand(0);
18664   if (NegB)
18665     B = B.getOperand(0);
18666   if (NegC)
18667     C = C.getOperand(0);
18668
18669   unsigned Opcode;
18670   if (!NegMul)
18671     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18672   else
18673     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18674
18675   return DAG.getNode(Opcode, dl, VT, A, B, C);
18676 }
18677
18678 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18679                                   TargetLowering::DAGCombinerInfo &DCI,
18680                                   const X86Subtarget *Subtarget) {
18681   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18682   //           (and (i32 x86isd::setcc_carry), 1)
18683   // This eliminates the zext. This transformation is necessary because
18684   // ISD::SETCC is always legalized to i8.
18685   SDLoc dl(N);
18686   SDValue N0 = N->getOperand(0);
18687   EVT VT = N->getValueType(0);
18688
18689   if (N0.getOpcode() == ISD::AND &&
18690       N0.hasOneUse() &&
18691       N0.getOperand(0).hasOneUse()) {
18692     SDValue N00 = N0.getOperand(0);
18693     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18694       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18695       if (!C || C->getZExtValue() != 1)
18696         return SDValue();
18697       return DAG.getNode(ISD::AND, dl, VT,
18698                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18699                                      N00.getOperand(0), N00.getOperand(1)),
18700                          DAG.getConstant(1, VT));
18701     }
18702   }
18703
18704   if (VT.is256BitVector()) {
18705     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18706     if (R.getNode())
18707       return R;
18708   }
18709
18710   return SDValue();
18711 }
18712
18713 // Optimize x == -y --> x+y == 0
18714 //          x != -y --> x+y != 0
18715 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18716   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18717   SDValue LHS = N->getOperand(0);
18718   SDValue RHS = N->getOperand(1);
18719
18720   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18721     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18722       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18723         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18724                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18725         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18726                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18727       }
18728   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18729     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18730       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18731         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18732                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18733         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18734                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18735       }
18736   return SDValue();
18737 }
18738
18739 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18740 // as "sbb reg,reg", since it can be extended without zext and produces
18741 // an all-ones bit which is more useful than 0/1 in some cases.
18742 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18743   return DAG.getNode(ISD::AND, DL, MVT::i8,
18744                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18745                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18746                      DAG.getConstant(1, MVT::i8));
18747 }
18748
18749 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18750 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18751                                    TargetLowering::DAGCombinerInfo &DCI,
18752                                    const X86Subtarget *Subtarget) {
18753   SDLoc DL(N);
18754   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18755   SDValue EFLAGS = N->getOperand(1);
18756
18757   if (CC == X86::COND_A) {
18758     // Try to convert COND_A into COND_B in an attempt to facilitate
18759     // materializing "setb reg".
18760     //
18761     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18762     // cannot take an immediate as its first operand.
18763     //
18764     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18765         EFLAGS.getValueType().isInteger() &&
18766         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18767       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18768                                    EFLAGS.getNode()->getVTList(),
18769                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18770       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18771       return MaterializeSETB(DL, NewEFLAGS, DAG);
18772     }
18773   }
18774
18775   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18776   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18777   // cases.
18778   if (CC == X86::COND_B)
18779     return MaterializeSETB(DL, EFLAGS, DAG);
18780
18781   SDValue Flags;
18782
18783   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18784   if (Flags.getNode()) {
18785     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18786     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18787   }
18788
18789   return SDValue();
18790 }
18791
18792 // Optimize branch condition evaluation.
18793 //
18794 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18795                                     TargetLowering::DAGCombinerInfo &DCI,
18796                                     const X86Subtarget *Subtarget) {
18797   SDLoc DL(N);
18798   SDValue Chain = N->getOperand(0);
18799   SDValue Dest = N->getOperand(1);
18800   SDValue EFLAGS = N->getOperand(3);
18801   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18802
18803   SDValue Flags;
18804
18805   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18806   if (Flags.getNode()) {
18807     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18808     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18809                        Flags);
18810   }
18811
18812   return SDValue();
18813 }
18814
18815 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18816                                         const X86TargetLowering *XTLI) {
18817   SDValue Op0 = N->getOperand(0);
18818   EVT InVT = Op0->getValueType(0);
18819
18820   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18821   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18822     SDLoc dl(N);
18823     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18824     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18825     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18826   }
18827
18828   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18829   // a 32-bit target where SSE doesn't support i64->FP operations.
18830   if (Op0.getOpcode() == ISD::LOAD) {
18831     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18832     EVT VT = Ld->getValueType(0);
18833     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18834         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18835         !XTLI->getSubtarget()->is64Bit() &&
18836         VT == MVT::i64) {
18837       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18838                                           Ld->getChain(), Op0, DAG);
18839       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18840       return FILDChain;
18841     }
18842   }
18843   return SDValue();
18844 }
18845
18846 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18847 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18848                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18849   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18850   // the result is either zero or one (depending on the input carry bit).
18851   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18852   if (X86::isZeroNode(N->getOperand(0)) &&
18853       X86::isZeroNode(N->getOperand(1)) &&
18854       // We don't have a good way to replace an EFLAGS use, so only do this when
18855       // dead right now.
18856       SDValue(N, 1).use_empty()) {
18857     SDLoc DL(N);
18858     EVT VT = N->getValueType(0);
18859     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18860     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18861                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18862                                            DAG.getConstant(X86::COND_B,MVT::i8),
18863                                            N->getOperand(2)),
18864                                DAG.getConstant(1, VT));
18865     return DCI.CombineTo(N, Res1, CarryOut);
18866   }
18867
18868   return SDValue();
18869 }
18870
18871 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18872 //      (add Y, (setne X, 0)) -> sbb -1, Y
18873 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18874 //      (sub (setne X, 0), Y) -> adc -1, Y
18875 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18876   SDLoc DL(N);
18877
18878   // Look through ZExts.
18879   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18880   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18881     return SDValue();
18882
18883   SDValue SetCC = Ext.getOperand(0);
18884   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18885     return SDValue();
18886
18887   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18888   if (CC != X86::COND_E && CC != X86::COND_NE)
18889     return SDValue();
18890
18891   SDValue Cmp = SetCC.getOperand(1);
18892   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18893       !X86::isZeroNode(Cmp.getOperand(1)) ||
18894       !Cmp.getOperand(0).getValueType().isInteger())
18895     return SDValue();
18896
18897   SDValue CmpOp0 = Cmp.getOperand(0);
18898   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18899                                DAG.getConstant(1, CmpOp0.getValueType()));
18900
18901   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18902   if (CC == X86::COND_NE)
18903     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18904                        DL, OtherVal.getValueType(), OtherVal,
18905                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18906   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18907                      DL, OtherVal.getValueType(), OtherVal,
18908                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18909 }
18910
18911 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18912 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18913                                  const X86Subtarget *Subtarget) {
18914   EVT VT = N->getValueType(0);
18915   SDValue Op0 = N->getOperand(0);
18916   SDValue Op1 = N->getOperand(1);
18917
18918   // Try to synthesize horizontal adds from adds of shuffles.
18919   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18920        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18921       isHorizontalBinOp(Op0, Op1, true))
18922     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18923
18924   return OptimizeConditionalInDecrement(N, DAG);
18925 }
18926
18927 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18928                                  const X86Subtarget *Subtarget) {
18929   SDValue Op0 = N->getOperand(0);
18930   SDValue Op1 = N->getOperand(1);
18931
18932   // X86 can't encode an immediate LHS of a sub. See if we can push the
18933   // negation into a preceding instruction.
18934   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18935     // If the RHS of the sub is a XOR with one use and a constant, invert the
18936     // immediate. Then add one to the LHS of the sub so we can turn
18937     // X-Y -> X+~Y+1, saving one register.
18938     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18939         isa<ConstantSDNode>(Op1.getOperand(1))) {
18940       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18941       EVT VT = Op0.getValueType();
18942       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18943                                    Op1.getOperand(0),
18944                                    DAG.getConstant(~XorC, VT));
18945       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18946                          DAG.getConstant(C->getAPIntValue()+1, VT));
18947     }
18948   }
18949
18950   // Try to synthesize horizontal adds from adds of shuffles.
18951   EVT VT = N->getValueType(0);
18952   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18953        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18954       isHorizontalBinOp(Op0, Op1, true))
18955     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18956
18957   return OptimizeConditionalInDecrement(N, DAG);
18958 }
18959
18960 /// performVZEXTCombine - Performs build vector combines
18961 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18962                                         TargetLowering::DAGCombinerInfo &DCI,
18963                                         const X86Subtarget *Subtarget) {
18964   // (vzext (bitcast (vzext (x)) -> (vzext x)
18965   SDValue In = N->getOperand(0);
18966   while (In.getOpcode() == ISD::BITCAST)
18967     In = In.getOperand(0);
18968
18969   if (In.getOpcode() != X86ISD::VZEXT)
18970     return SDValue();
18971
18972   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
18973                      In.getOperand(0));
18974 }
18975
18976 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
18977                                              DAGCombinerInfo &DCI) const {
18978   SelectionDAG &DAG = DCI.DAG;
18979   switch (N->getOpcode()) {
18980   default: break;
18981   case ISD::EXTRACT_VECTOR_ELT:
18982     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
18983   case ISD::VSELECT:
18984   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
18985   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
18986   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
18987   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
18988   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
18989   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
18990   case ISD::SHL:
18991   case ISD::SRA:
18992   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
18993   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
18994   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
18995   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
18996   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
18997   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
18998   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
18999   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19000   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19001   case X86ISD::FXOR:
19002   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19003   case X86ISD::FMIN:
19004   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19005   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19006   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19007   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19008   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19009   case ISD::ANY_EXTEND:
19010   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19011   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19012   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19013   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19014   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19015   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19016   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19017   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19018   case X86ISD::SHUFP:       // Handle all target specific shuffles
19019   case X86ISD::PALIGNR:
19020   case X86ISD::UNPCKH:
19021   case X86ISD::UNPCKL:
19022   case X86ISD::MOVHLPS:
19023   case X86ISD::MOVLHPS:
19024   case X86ISD::PSHUFD:
19025   case X86ISD::PSHUFHW:
19026   case X86ISD::PSHUFLW:
19027   case X86ISD::MOVSS:
19028   case X86ISD::MOVSD:
19029   case X86ISD::VPERMILP:
19030   case X86ISD::VPERM2X128:
19031   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19032   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19033   }
19034
19035   return SDValue();
19036 }
19037
19038 /// isTypeDesirableForOp - Return true if the target has native support for
19039 /// the specified value type and it is 'desirable' to use the type for the
19040 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19041 /// instruction encodings are longer and some i16 instructions are slow.
19042 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19043   if (!isTypeLegal(VT))
19044     return false;
19045   if (VT != MVT::i16)
19046     return true;
19047
19048   switch (Opc) {
19049   default:
19050     return true;
19051   case ISD::LOAD:
19052   case ISD::SIGN_EXTEND:
19053   case ISD::ZERO_EXTEND:
19054   case ISD::ANY_EXTEND:
19055   case ISD::SHL:
19056   case ISD::SRL:
19057   case ISD::SUB:
19058   case ISD::ADD:
19059   case ISD::MUL:
19060   case ISD::AND:
19061   case ISD::OR:
19062   case ISD::XOR:
19063     return false;
19064   }
19065 }
19066
19067 /// IsDesirableToPromoteOp - This method query the target whether it is
19068 /// beneficial for dag combiner to promote the specified node. If true, it
19069 /// should return the desired promotion type by reference.
19070 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19071   EVT VT = Op.getValueType();
19072   if (VT != MVT::i16)
19073     return false;
19074
19075   bool Promote = false;
19076   bool Commute = false;
19077   switch (Op.getOpcode()) {
19078   default: break;
19079   case ISD::LOAD: {
19080     LoadSDNode *LD = cast<LoadSDNode>(Op);
19081     // If the non-extending load has a single use and it's not live out, then it
19082     // might be folded.
19083     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19084                                                      Op.hasOneUse()*/) {
19085       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19086              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19087         // The only case where we'd want to promote LOAD (rather then it being
19088         // promoted as an operand is when it's only use is liveout.
19089         if (UI->getOpcode() != ISD::CopyToReg)
19090           return false;
19091       }
19092     }
19093     Promote = true;
19094     break;
19095   }
19096   case ISD::SIGN_EXTEND:
19097   case ISD::ZERO_EXTEND:
19098   case ISD::ANY_EXTEND:
19099     Promote = true;
19100     break;
19101   case ISD::SHL:
19102   case ISD::SRL: {
19103     SDValue N0 = Op.getOperand(0);
19104     // Look out for (store (shl (load), x)).
19105     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19106       return false;
19107     Promote = true;
19108     break;
19109   }
19110   case ISD::ADD:
19111   case ISD::MUL:
19112   case ISD::AND:
19113   case ISD::OR:
19114   case ISD::XOR:
19115     Commute = true;
19116     // fallthrough
19117   case ISD::SUB: {
19118     SDValue N0 = Op.getOperand(0);
19119     SDValue N1 = Op.getOperand(1);
19120     if (!Commute && MayFoldLoad(N1))
19121       return false;
19122     // Avoid disabling potential load folding opportunities.
19123     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19124       return false;
19125     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19126       return false;
19127     Promote = true;
19128   }
19129   }
19130
19131   PVT = MVT::i32;
19132   return Promote;
19133 }
19134
19135 //===----------------------------------------------------------------------===//
19136 //                           X86 Inline Assembly Support
19137 //===----------------------------------------------------------------------===//
19138
19139 namespace {
19140   // Helper to match a string separated by whitespace.
19141   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19142     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19143
19144     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19145       StringRef piece(*args[i]);
19146       if (!s.startswith(piece)) // Check if the piece matches.
19147         return false;
19148
19149       s = s.substr(piece.size());
19150       StringRef::size_type pos = s.find_first_not_of(" \t");
19151       if (pos == 0) // We matched a prefix.
19152         return false;
19153
19154       s = s.substr(pos);
19155     }
19156
19157     return s.empty();
19158   }
19159   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19160 }
19161
19162 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19163   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19164
19165   std::string AsmStr = IA->getAsmString();
19166
19167   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19168   if (!Ty || Ty->getBitWidth() % 16 != 0)
19169     return false;
19170
19171   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19172   SmallVector<StringRef, 4> AsmPieces;
19173   SplitString(AsmStr, AsmPieces, ";\n");
19174
19175   switch (AsmPieces.size()) {
19176   default: return false;
19177   case 1:
19178     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19179     // we will turn this bswap into something that will be lowered to logical
19180     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19181     // lower so don't worry about this.
19182     // bswap $0
19183     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19184         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19185         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19186         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19187         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19188         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19189       // No need to check constraints, nothing other than the equivalent of
19190       // "=r,0" would be valid here.
19191       return IntrinsicLowering::LowerToByteSwap(CI);
19192     }
19193
19194     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19195     if (CI->getType()->isIntegerTy(16) &&
19196         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19197         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19198          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19199       AsmPieces.clear();
19200       const std::string &ConstraintsStr = IA->getConstraintString();
19201       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19202       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19203       if (AsmPieces.size() == 4 &&
19204           AsmPieces[0] == "~{cc}" &&
19205           AsmPieces[1] == "~{dirflag}" &&
19206           AsmPieces[2] == "~{flags}" &&
19207           AsmPieces[3] == "~{fpsr}")
19208       return IntrinsicLowering::LowerToByteSwap(CI);
19209     }
19210     break;
19211   case 3:
19212     if (CI->getType()->isIntegerTy(32) &&
19213         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19214         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19215         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19216         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19217       AsmPieces.clear();
19218       const std::string &ConstraintsStr = IA->getConstraintString();
19219       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19220       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19221       if (AsmPieces.size() == 4 &&
19222           AsmPieces[0] == "~{cc}" &&
19223           AsmPieces[1] == "~{dirflag}" &&
19224           AsmPieces[2] == "~{flags}" &&
19225           AsmPieces[3] == "~{fpsr}")
19226         return IntrinsicLowering::LowerToByteSwap(CI);
19227     }
19228
19229     if (CI->getType()->isIntegerTy(64)) {
19230       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19231       if (Constraints.size() >= 2 &&
19232           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19233           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19234         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19235         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19236             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19237             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19238           return IntrinsicLowering::LowerToByteSwap(CI);
19239       }
19240     }
19241     break;
19242   }
19243   return false;
19244 }
19245
19246 /// getConstraintType - Given a constraint letter, return the type of
19247 /// constraint it is for this target.
19248 X86TargetLowering::ConstraintType
19249 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19250   if (Constraint.size() == 1) {
19251     switch (Constraint[0]) {
19252     case 'R':
19253     case 'q':
19254     case 'Q':
19255     case 'f':
19256     case 't':
19257     case 'u':
19258     case 'y':
19259     case 'x':
19260     case 'Y':
19261     case 'l':
19262       return C_RegisterClass;
19263     case 'a':
19264     case 'b':
19265     case 'c':
19266     case 'd':
19267     case 'S':
19268     case 'D':
19269     case 'A':
19270       return C_Register;
19271     case 'I':
19272     case 'J':
19273     case 'K':
19274     case 'L':
19275     case 'M':
19276     case 'N':
19277     case 'G':
19278     case 'C':
19279     case 'e':
19280     case 'Z':
19281       return C_Other;
19282     default:
19283       break;
19284     }
19285   }
19286   return TargetLowering::getConstraintType(Constraint);
19287 }
19288
19289 /// Examine constraint type and operand type and determine a weight value.
19290 /// This object must already have been set up with the operand type
19291 /// and the current alternative constraint selected.
19292 TargetLowering::ConstraintWeight
19293   X86TargetLowering::getSingleConstraintMatchWeight(
19294     AsmOperandInfo &info, const char *constraint) const {
19295   ConstraintWeight weight = CW_Invalid;
19296   Value *CallOperandVal = info.CallOperandVal;
19297     // If we don't have a value, we can't do a match,
19298     // but allow it at the lowest weight.
19299   if (CallOperandVal == NULL)
19300     return CW_Default;
19301   Type *type = CallOperandVal->getType();
19302   // Look at the constraint type.
19303   switch (*constraint) {
19304   default:
19305     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19306   case 'R':
19307   case 'q':
19308   case 'Q':
19309   case 'a':
19310   case 'b':
19311   case 'c':
19312   case 'd':
19313   case 'S':
19314   case 'D':
19315   case 'A':
19316     if (CallOperandVal->getType()->isIntegerTy())
19317       weight = CW_SpecificReg;
19318     break;
19319   case 'f':
19320   case 't':
19321   case 'u':
19322     if (type->isFloatingPointTy())
19323       weight = CW_SpecificReg;
19324     break;
19325   case 'y':
19326     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19327       weight = CW_SpecificReg;
19328     break;
19329   case 'x':
19330   case 'Y':
19331     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19332         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19333       weight = CW_Register;
19334     break;
19335   case 'I':
19336     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19337       if (C->getZExtValue() <= 31)
19338         weight = CW_Constant;
19339     }
19340     break;
19341   case 'J':
19342     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19343       if (C->getZExtValue() <= 63)
19344         weight = CW_Constant;
19345     }
19346     break;
19347   case 'K':
19348     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19349       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19350         weight = CW_Constant;
19351     }
19352     break;
19353   case 'L':
19354     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19355       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19356         weight = CW_Constant;
19357     }
19358     break;
19359   case 'M':
19360     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19361       if (C->getZExtValue() <= 3)
19362         weight = CW_Constant;
19363     }
19364     break;
19365   case 'N':
19366     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19367       if (C->getZExtValue() <= 0xff)
19368         weight = CW_Constant;
19369     }
19370     break;
19371   case 'G':
19372   case 'C':
19373     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19374       weight = CW_Constant;
19375     }
19376     break;
19377   case 'e':
19378     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19379       if ((C->getSExtValue() >= -0x80000000LL) &&
19380           (C->getSExtValue() <= 0x7fffffffLL))
19381         weight = CW_Constant;
19382     }
19383     break;
19384   case 'Z':
19385     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19386       if (C->getZExtValue() <= 0xffffffff)
19387         weight = CW_Constant;
19388     }
19389     break;
19390   }
19391   return weight;
19392 }
19393
19394 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19395 /// with another that has more specific requirements based on the type of the
19396 /// corresponding operand.
19397 const char *X86TargetLowering::
19398 LowerXConstraint(EVT ConstraintVT) const {
19399   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19400   // 'f' like normal targets.
19401   if (ConstraintVT.isFloatingPoint()) {
19402     if (Subtarget->hasSSE2())
19403       return "Y";
19404     if (Subtarget->hasSSE1())
19405       return "x";
19406   }
19407
19408   return TargetLowering::LowerXConstraint(ConstraintVT);
19409 }
19410
19411 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19412 /// vector.  If it is invalid, don't add anything to Ops.
19413 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19414                                                      std::string &Constraint,
19415                                                      std::vector<SDValue>&Ops,
19416                                                      SelectionDAG &DAG) const {
19417   SDValue Result(0, 0);
19418
19419   // Only support length 1 constraints for now.
19420   if (Constraint.length() > 1) return;
19421
19422   char ConstraintLetter = Constraint[0];
19423   switch (ConstraintLetter) {
19424   default: break;
19425   case 'I':
19426     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19427       if (C->getZExtValue() <= 31) {
19428         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19429         break;
19430       }
19431     }
19432     return;
19433   case 'J':
19434     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19435       if (C->getZExtValue() <= 63) {
19436         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19437         break;
19438       }
19439     }
19440     return;
19441   case 'K':
19442     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19443       if (isInt<8>(C->getSExtValue())) {
19444         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19445         break;
19446       }
19447     }
19448     return;
19449   case 'N':
19450     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19451       if (C->getZExtValue() <= 255) {
19452         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19453         break;
19454       }
19455     }
19456     return;
19457   case 'e': {
19458     // 32-bit signed value
19459     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19460       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19461                                            C->getSExtValue())) {
19462         // Widen to 64 bits here to get it sign extended.
19463         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19464         break;
19465       }
19466     // FIXME gcc accepts some relocatable values here too, but only in certain
19467     // memory models; it's complicated.
19468     }
19469     return;
19470   }
19471   case 'Z': {
19472     // 32-bit unsigned value
19473     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19474       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19475                                            C->getZExtValue())) {
19476         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19477         break;
19478       }
19479     }
19480     // FIXME gcc accepts some relocatable values here too, but only in certain
19481     // memory models; it's complicated.
19482     return;
19483   }
19484   case 'i': {
19485     // Literal immediates are always ok.
19486     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19487       // Widen to 64 bits here to get it sign extended.
19488       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19489       break;
19490     }
19491
19492     // In any sort of PIC mode addresses need to be computed at runtime by
19493     // adding in a register or some sort of table lookup.  These can't
19494     // be used as immediates.
19495     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19496       return;
19497
19498     // If we are in non-pic codegen mode, we allow the address of a global (with
19499     // an optional displacement) to be used with 'i'.
19500     GlobalAddressSDNode *GA = 0;
19501     int64_t Offset = 0;
19502
19503     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19504     while (1) {
19505       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19506         Offset += GA->getOffset();
19507         break;
19508       } else if (Op.getOpcode() == ISD::ADD) {
19509         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19510           Offset += C->getZExtValue();
19511           Op = Op.getOperand(0);
19512           continue;
19513         }
19514       } else if (Op.getOpcode() == ISD::SUB) {
19515         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19516           Offset += -C->getZExtValue();
19517           Op = Op.getOperand(0);
19518           continue;
19519         }
19520       }
19521
19522       // Otherwise, this isn't something we can handle, reject it.
19523       return;
19524     }
19525
19526     const GlobalValue *GV = GA->getGlobal();
19527     // If we require an extra load to get this address, as in PIC mode, we
19528     // can't accept it.
19529     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19530                                                         getTargetMachine())))
19531       return;
19532
19533     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19534                                         GA->getValueType(0), Offset);
19535     break;
19536   }
19537   }
19538
19539   if (Result.getNode()) {
19540     Ops.push_back(Result);
19541     return;
19542   }
19543   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19544 }
19545
19546 std::pair<unsigned, const TargetRegisterClass*>
19547 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19548                                                 MVT VT) const {
19549   // First, see if this is a constraint that directly corresponds to an LLVM
19550   // register class.
19551   if (Constraint.size() == 1) {
19552     // GCC Constraint Letters
19553     switch (Constraint[0]) {
19554     default: break;
19555       // TODO: Slight differences here in allocation order and leaving
19556       // RIP in the class. Do they matter any more here than they do
19557       // in the normal allocation?
19558     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19559       if (Subtarget->is64Bit()) {
19560         if (VT == MVT::i32 || VT == MVT::f32)
19561           return std::make_pair(0U, &X86::GR32RegClass);
19562         if (VT == MVT::i16)
19563           return std::make_pair(0U, &X86::GR16RegClass);
19564         if (VT == MVT::i8 || VT == MVT::i1)
19565           return std::make_pair(0U, &X86::GR8RegClass);
19566         if (VT == MVT::i64 || VT == MVT::f64)
19567           return std::make_pair(0U, &X86::GR64RegClass);
19568         break;
19569       }
19570       // 32-bit fallthrough
19571     case 'Q':   // Q_REGS
19572       if (VT == MVT::i32 || VT == MVT::f32)
19573         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19574       if (VT == MVT::i16)
19575         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19576       if (VT == MVT::i8 || VT == MVT::i1)
19577         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19578       if (VT == MVT::i64)
19579         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19580       break;
19581     case 'r':   // GENERAL_REGS
19582     case 'l':   // INDEX_REGS
19583       if (VT == MVT::i8 || VT == MVT::i1)
19584         return std::make_pair(0U, &X86::GR8RegClass);
19585       if (VT == MVT::i16)
19586         return std::make_pair(0U, &X86::GR16RegClass);
19587       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19588         return std::make_pair(0U, &X86::GR32RegClass);
19589       return std::make_pair(0U, &X86::GR64RegClass);
19590     case 'R':   // LEGACY_REGS
19591       if (VT == MVT::i8 || VT == MVT::i1)
19592         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19593       if (VT == MVT::i16)
19594         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19595       if (VT == MVT::i32 || !Subtarget->is64Bit())
19596         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19597       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19598     case 'f':  // FP Stack registers.
19599       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19600       // value to the correct fpstack register class.
19601       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19602         return std::make_pair(0U, &X86::RFP32RegClass);
19603       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19604         return std::make_pair(0U, &X86::RFP64RegClass);
19605       return std::make_pair(0U, &X86::RFP80RegClass);
19606     case 'y':   // MMX_REGS if MMX allowed.
19607       if (!Subtarget->hasMMX()) break;
19608       return std::make_pair(0U, &X86::VR64RegClass);
19609     case 'Y':   // SSE_REGS if SSE2 allowed
19610       if (!Subtarget->hasSSE2()) break;
19611       // FALL THROUGH.
19612     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19613       if (!Subtarget->hasSSE1()) break;
19614
19615       switch (VT.SimpleTy) {
19616       default: break;
19617       // Scalar SSE types.
19618       case MVT::f32:
19619       case MVT::i32:
19620         return std::make_pair(0U, &X86::FR32RegClass);
19621       case MVT::f64:
19622       case MVT::i64:
19623         return std::make_pair(0U, &X86::FR64RegClass);
19624       // Vector types.
19625       case MVT::v16i8:
19626       case MVT::v8i16:
19627       case MVT::v4i32:
19628       case MVT::v2i64:
19629       case MVT::v4f32:
19630       case MVT::v2f64:
19631         return std::make_pair(0U, &X86::VR128RegClass);
19632       // AVX types.
19633       case MVT::v32i8:
19634       case MVT::v16i16:
19635       case MVT::v8i32:
19636       case MVT::v4i64:
19637       case MVT::v8f32:
19638       case MVT::v4f64:
19639         return std::make_pair(0U, &X86::VR256RegClass);
19640       case MVT::v8f64:
19641       case MVT::v16f32:
19642       case MVT::v16i32:
19643       case MVT::v8i64:
19644         return std::make_pair(0U, &X86::VR512RegClass);
19645       }
19646       break;
19647     }
19648   }
19649
19650   // Use the default implementation in TargetLowering to convert the register
19651   // constraint into a member of a register class.
19652   std::pair<unsigned, const TargetRegisterClass*> Res;
19653   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19654
19655   // Not found as a standard register?
19656   if (Res.second == 0) {
19657     // Map st(0) -> st(7) -> ST0
19658     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19659         tolower(Constraint[1]) == 's' &&
19660         tolower(Constraint[2]) == 't' &&
19661         Constraint[3] == '(' &&
19662         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19663         Constraint[5] == ')' &&
19664         Constraint[6] == '}') {
19665
19666       Res.first = X86::ST0+Constraint[4]-'0';
19667       Res.second = &X86::RFP80RegClass;
19668       return Res;
19669     }
19670
19671     // GCC allows "st(0)" to be called just plain "st".
19672     if (StringRef("{st}").equals_lower(Constraint)) {
19673       Res.first = X86::ST0;
19674       Res.second = &X86::RFP80RegClass;
19675       return Res;
19676     }
19677
19678     // flags -> EFLAGS
19679     if (StringRef("{flags}").equals_lower(Constraint)) {
19680       Res.first = X86::EFLAGS;
19681       Res.second = &X86::CCRRegClass;
19682       return Res;
19683     }
19684
19685     // 'A' means EAX + EDX.
19686     if (Constraint == "A") {
19687       Res.first = X86::EAX;
19688       Res.second = &X86::GR32_ADRegClass;
19689       return Res;
19690     }
19691     return Res;
19692   }
19693
19694   // Otherwise, check to see if this is a register class of the wrong value
19695   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19696   // turn into {ax},{dx}.
19697   if (Res.second->hasType(VT))
19698     return Res;   // Correct type already, nothing to do.
19699
19700   // All of the single-register GCC register classes map their values onto
19701   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19702   // really want an 8-bit or 32-bit register, map to the appropriate register
19703   // class and return the appropriate register.
19704   if (Res.second == &X86::GR16RegClass) {
19705     if (VT == MVT::i8 || VT == MVT::i1) {
19706       unsigned DestReg = 0;
19707       switch (Res.first) {
19708       default: break;
19709       case X86::AX: DestReg = X86::AL; break;
19710       case X86::DX: DestReg = X86::DL; break;
19711       case X86::CX: DestReg = X86::CL; break;
19712       case X86::BX: DestReg = X86::BL; break;
19713       }
19714       if (DestReg) {
19715         Res.first = DestReg;
19716         Res.second = &X86::GR8RegClass;
19717       }
19718     } else if (VT == MVT::i32 || VT == MVT::f32) {
19719       unsigned DestReg = 0;
19720       switch (Res.first) {
19721       default: break;
19722       case X86::AX: DestReg = X86::EAX; break;
19723       case X86::DX: DestReg = X86::EDX; break;
19724       case X86::CX: DestReg = X86::ECX; break;
19725       case X86::BX: DestReg = X86::EBX; break;
19726       case X86::SI: DestReg = X86::ESI; break;
19727       case X86::DI: DestReg = X86::EDI; break;
19728       case X86::BP: DestReg = X86::EBP; break;
19729       case X86::SP: DestReg = X86::ESP; break;
19730       }
19731       if (DestReg) {
19732         Res.first = DestReg;
19733         Res.second = &X86::GR32RegClass;
19734       }
19735     } else if (VT == MVT::i64 || VT == MVT::f64) {
19736       unsigned DestReg = 0;
19737       switch (Res.first) {
19738       default: break;
19739       case X86::AX: DestReg = X86::RAX; break;
19740       case X86::DX: DestReg = X86::RDX; break;
19741       case X86::CX: DestReg = X86::RCX; break;
19742       case X86::BX: DestReg = X86::RBX; break;
19743       case X86::SI: DestReg = X86::RSI; break;
19744       case X86::DI: DestReg = X86::RDI; break;
19745       case X86::BP: DestReg = X86::RBP; break;
19746       case X86::SP: DestReg = X86::RSP; break;
19747       }
19748       if (DestReg) {
19749         Res.first = DestReg;
19750         Res.second = &X86::GR64RegClass;
19751       }
19752     }
19753   } else if (Res.second == &X86::FR32RegClass ||
19754              Res.second == &X86::FR64RegClass ||
19755              Res.second == &X86::VR128RegClass ||
19756              Res.second == &X86::VR256RegClass ||
19757              Res.second == &X86::FR32XRegClass ||
19758              Res.second == &X86::FR64XRegClass ||
19759              Res.second == &X86::VR128XRegClass ||
19760              Res.second == &X86::VR256XRegClass ||
19761              Res.second == &X86::VR512RegClass) {
19762     // Handle references to XMM physical registers that got mapped into the
19763     // wrong class.  This can happen with constraints like {xmm0} where the
19764     // target independent register mapper will just pick the first match it can
19765     // find, ignoring the required type.
19766
19767     if (VT == MVT::f32 || VT == MVT::i32)
19768       Res.second = &X86::FR32RegClass;
19769     else if (VT == MVT::f64 || VT == MVT::i64)
19770       Res.second = &X86::FR64RegClass;
19771     else if (X86::VR128RegClass.hasType(VT))
19772       Res.second = &X86::VR128RegClass;
19773     else if (X86::VR256RegClass.hasType(VT))
19774       Res.second = &X86::VR256RegClass;
19775     else if (X86::VR512RegClass.hasType(VT))
19776       Res.second = &X86::VR512RegClass;
19777   }
19778
19779   return Res;
19780 }