[x86] Implement more aggressive use of PACKUS chains for lowering common
[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 #include "X86ISelLowering.h"
16 #include "Utils/X86ShuffleDecode.h"
17 #include "X86CallingConv.h"
18 #include "X86InstrBuilder.h"
19 #include "X86MachineFunctionInfo.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/StringSwitch.h"
26 #include "llvm/ADT/VariadicFunction.h"
27 #include "llvm/CodeGen/IntrinsicLowering.h"
28 #include "llvm/CodeGen/MachineFrameInfo.h"
29 #include "llvm/CodeGen/MachineFunction.h"
30 #include "llvm/CodeGen/MachineInstrBuilder.h"
31 #include "llvm/CodeGen/MachineJumpTableInfo.h"
32 #include "llvm/CodeGen/MachineModuleInfo.h"
33 #include "llvm/CodeGen/MachineRegisterInfo.h"
34 #include "llvm/IR/CallSite.h"
35 #include "llvm/IR/CallingConv.h"
36 #include "llvm/IR/Constants.h"
37 #include "llvm/IR/DerivedTypes.h"
38 #include "llvm/IR/Function.h"
39 #include "llvm/IR/GlobalAlias.h"
40 #include "llvm/IR/GlobalVariable.h"
41 #include "llvm/IR/Instructions.h"
42 #include "llvm/IR/Intrinsics.h"
43 #include "llvm/MC/MCAsmInfo.h"
44 #include "llvm/MC/MCContext.h"
45 #include "llvm/MC/MCExpr.h"
46 #include "llvm/MC/MCSymbol.h"
47 #include "llvm/Support/CommandLine.h"
48 #include "llvm/Support/Debug.h"
49 #include "llvm/Support/ErrorHandling.h"
50 #include "llvm/Support/MathExtras.h"
51 #include "llvm/Target/TargetOptions.h"
52 #include <bitset>
53 #include <numeric>
54 #include <cctype>
55 using namespace llvm;
56
57 #define DEBUG_TYPE "x86-isel"
58
59 STATISTIC(NumTailCalls, "Number of tail calls");
60
61 static cl::opt<bool> ExperimentalVectorWideningLegalization(
62     "x86-experimental-vector-widening-legalization", cl::init(false),
63     cl::desc("Enable an experimental vector type legalization through widening "
64              "rather than promotion."),
65     cl::Hidden);
66
67 static cl::opt<bool> ExperimentalVectorShuffleLowering(
68     "x86-experimental-vector-shuffle-lowering", cl::init(false),
69     cl::desc("Enable an experimental vector shuffle lowering code path."),
70     cl::Hidden);
71
72 // Forward declarations.
73 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
74                        SDValue V2);
75
76 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
77                                 SelectionDAG &DAG, SDLoc dl,
78                                 unsigned vectorWidth) {
79   assert((vectorWidth == 128 || vectorWidth == 256) &&
80          "Unsupported vector width");
81   EVT VT = Vec.getValueType();
82   EVT ElVT = VT.getVectorElementType();
83   unsigned Factor = VT.getSizeInBits()/vectorWidth;
84   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
85                                   VT.getVectorNumElements()/Factor);
86
87   // Extract from UNDEF is UNDEF.
88   if (Vec.getOpcode() == ISD::UNDEF)
89     return DAG.getUNDEF(ResultVT);
90
91   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
92   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
93
94   // This is the index of the first element of the vectorWidth-bit chunk
95   // we want.
96   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
97                                * ElemsPerChunk);
98
99   // If the input is a buildvector just emit a smaller one.
100   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
101     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
102                        makeArrayRef(Vec->op_begin()+NormalizedIdxVal,
103                                     ElemsPerChunk));
104
105   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
106   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
107                                VecIdx);
108
109   return Result;
110
111 }
112 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
113 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
114 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
115 /// instructions or a simple subregister reference. Idx is an index in the
116 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
117 /// lowering EXTRACT_VECTOR_ELT operations easier.
118 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
119                                    SelectionDAG &DAG, SDLoc dl) {
120   assert((Vec.getValueType().is256BitVector() ||
121           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
122   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
123 }
124
125 /// Generate a DAG to grab 256-bits from a 512-bit vector.
126 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
127                                    SelectionDAG &DAG, SDLoc dl) {
128   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
129   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
130 }
131
132 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
133                                unsigned IdxVal, SelectionDAG &DAG,
134                                SDLoc dl, unsigned vectorWidth) {
135   assert((vectorWidth == 128 || vectorWidth == 256) &&
136          "Unsupported vector width");
137   // Inserting UNDEF is Result
138   if (Vec.getOpcode() == ISD::UNDEF)
139     return Result;
140   EVT VT = Vec.getValueType();
141   EVT ElVT = VT.getVectorElementType();
142   EVT ResultVT = Result.getValueType();
143
144   // Insert the relevant vectorWidth bits.
145   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
146
147   // This is the index of the first element of the vectorWidth-bit chunk
148   // we want.
149   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
150                                * ElemsPerChunk);
151
152   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
153   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
154                      VecIdx);
155 }
156 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
157 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
158 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
159 /// simple superregister reference.  Idx is an index in the 128 bits
160 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
161 /// lowering INSERT_VECTOR_ELT operations easier.
162 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
163                                   unsigned IdxVal, SelectionDAG &DAG,
164                                   SDLoc dl) {
165   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
166   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
167 }
168
169 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
170                                   unsigned IdxVal, SelectionDAG &DAG,
171                                   SDLoc dl) {
172   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
173   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
174 }
175
176 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
177 /// instructions. This is used because creating CONCAT_VECTOR nodes of
178 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
179 /// large BUILD_VECTORS.
180 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
181                                    unsigned NumElems, SelectionDAG &DAG,
182                                    SDLoc dl) {
183   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
184   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
185 }
186
187 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
188                                    unsigned NumElems, SelectionDAG &DAG,
189                                    SDLoc dl) {
190   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
191   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
192 }
193
194 static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
195   if (TT.isOSBinFormatMachO()) {
196     if (TT.getArch() == Triple::x86_64)
197       return new X86_64MachoTargetObjectFile();
198     return new TargetLoweringObjectFileMachO();
199   }
200
201   if (TT.isOSLinux())
202     return new X86LinuxTargetObjectFile();
203   if (TT.isOSBinFormatELF())
204     return new TargetLoweringObjectFileELF();
205   if (TT.isKnownWindowsMSVCEnvironment())
206     return new X86WindowsTargetObjectFile();
207   if (TT.isOSBinFormatCOFF())
208     return new TargetLoweringObjectFileCOFF();
209   llvm_unreachable("unknown subtarget type");
210 }
211
212 // FIXME: This should stop caching the target machine as soon as
213 // we can remove resetOperationActions et al.
214 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
215   : TargetLowering(TM, createTLOF(Triple(TM.getTargetTriple()))) {
216   Subtarget = &TM.getSubtarget<X86Subtarget>();
217   X86ScalarSSEf64 = Subtarget->hasSSE2();
218   X86ScalarSSEf32 = Subtarget->hasSSE1();
219   TD = getDataLayout();
220
221   resetOperationActions();
222 }
223
224 void X86TargetLowering::resetOperationActions() {
225   const TargetMachine &TM = getTargetMachine();
226   static bool FirstTimeThrough = true;
227
228   // If none of the target options have changed, then we don't need to reset the
229   // operation actions.
230   if (!FirstTimeThrough && TO == TM.Options) return;
231
232   if (!FirstTimeThrough) {
233     // Reinitialize the actions.
234     initActions();
235     FirstTimeThrough = false;
236   }
237
238   TO = TM.Options;
239
240   // Set up the TargetLowering object.
241   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
242
243   // X86 is weird, it always uses i8 for shift amounts and setcc results.
244   setBooleanContents(ZeroOrOneBooleanContent);
245   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
246   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
247
248   // For 64-bit since we have so many registers use the ILP scheduler, for
249   // 32-bit code use the register pressure specific scheduling.
250   // For Atom, always use ILP scheduling.
251   if (Subtarget->isAtom())
252     setSchedulingPreference(Sched::ILP);
253   else if (Subtarget->is64Bit())
254     setSchedulingPreference(Sched::ILP);
255   else
256     setSchedulingPreference(Sched::RegPressure);
257   const X86RegisterInfo *RegInfo =
258     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
259   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
260
261   // Bypass expensive divides on Atom when compiling with O2
262   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
263     addBypassSlowDiv(32, 8);
264     if (Subtarget->is64Bit())
265       addBypassSlowDiv(64, 16);
266   }
267
268   if (Subtarget->isTargetKnownWindowsMSVC()) {
269     // Setup Windows compiler runtime calls.
270     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
271     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
272     setLibcallName(RTLIB::SREM_I64, "_allrem");
273     setLibcallName(RTLIB::UREM_I64, "_aullrem");
274     setLibcallName(RTLIB::MUL_I64, "_allmul");
275     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
276     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
277     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
278     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
279     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
280
281     // The _ftol2 runtime function has an unusual calling conv, which
282     // is modeled by a special pseudo-instruction.
283     setLibcallName(RTLIB::FPTOUINT_F64_I64, nullptr);
284     setLibcallName(RTLIB::FPTOUINT_F32_I64, nullptr);
285     setLibcallName(RTLIB::FPTOUINT_F64_I32, nullptr);
286     setLibcallName(RTLIB::FPTOUINT_F32_I32, nullptr);
287   }
288
289   if (Subtarget->isTargetDarwin()) {
290     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
291     setUseUnderscoreSetJmp(false);
292     setUseUnderscoreLongJmp(false);
293   } else if (Subtarget->isTargetWindowsGNU()) {
294     // MS runtime is weird: it exports _setjmp, but longjmp!
295     setUseUnderscoreSetJmp(true);
296     setUseUnderscoreLongJmp(false);
297   } else {
298     setUseUnderscoreSetJmp(true);
299     setUseUnderscoreLongJmp(true);
300   }
301
302   // Set up the register classes.
303   addRegisterClass(MVT::i8, &X86::GR8RegClass);
304   addRegisterClass(MVT::i16, &X86::GR16RegClass);
305   addRegisterClass(MVT::i32, &X86::GR32RegClass);
306   if (Subtarget->is64Bit())
307     addRegisterClass(MVT::i64, &X86::GR64RegClass);
308
309   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
310
311   // We don't accept any truncstore of integer registers.
312   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
313   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
314   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
315   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
316   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
317   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
318
319   // SETOEQ and SETUNE require checking two conditions.
320   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
321   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
322   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
323   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
324   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
325   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
326
327   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
328   // operation.
329   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
330   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
331   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
332
333   if (Subtarget->is64Bit()) {
334     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
335     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
336   } else if (!TM.Options.UseSoftFloat) {
337     // We have an algorithm for SSE2->double, and we turn this into a
338     // 64-bit FILD followed by conditional FADD for other targets.
339     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
340     // We have an algorithm for SSE2, and we turn this into a 64-bit
341     // FILD for other targets.
342     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
343   }
344
345   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
346   // this operation.
347   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
348   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
349
350   if (!TM.Options.UseSoftFloat) {
351     // SSE has no i16 to fp conversion, only i32
352     if (X86ScalarSSEf32) {
353       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
354       // f32 and f64 cases are Legal, f80 case is not
355       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
356     } else {
357       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
358       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
359     }
360   } else {
361     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
362     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
363   }
364
365   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
366   // are Legal, f80 is custom lowered.
367   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
368   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
369
370   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
371   // this operation.
372   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
373   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
374
375   if (X86ScalarSSEf32) {
376     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
377     // f32 and f64 cases are Legal, f80 case is not
378     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
379   } else {
380     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
381     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
382   }
383
384   // Handle FP_TO_UINT by promoting the destination to a larger signed
385   // conversion.
386   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
387   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
388   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
389
390   if (Subtarget->is64Bit()) {
391     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
392     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
393   } else if (!TM.Options.UseSoftFloat) {
394     // Since AVX is a superset of SSE3, only check for SSE here.
395     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
396       // Expand FP_TO_UINT into a select.
397       // FIXME: We would like to use a Custom expander here eventually to do
398       // the optimal thing for SSE vs. the default expansion in the legalizer.
399       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
400     else
401       // With SSE3 we can use fisttpll to convert to a signed i64; without
402       // SSE, we're stuck with a fistpll.
403       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
404   }
405
406   if (isTargetFTOL()) {
407     // Use the _ftol2 runtime function, which has a pseudo-instruction
408     // to handle its weird calling convention.
409     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
410   }
411
412   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
413   if (!X86ScalarSSEf64) {
414     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
415     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
416     if (Subtarget->is64Bit()) {
417       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
418       // Without SSE, i64->f64 goes through memory.
419       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
420     }
421   }
422
423   // Scalar integer divide and remainder are lowered to use operations that
424   // produce two results, to match the available instructions. This exposes
425   // the two-result form to trivial CSE, which is able to combine x/y and x%y
426   // into a single instruction.
427   //
428   // Scalar integer multiply-high is also lowered to use two-result
429   // operations, to match the available instructions. However, plain multiply
430   // (low) operations are left as Legal, as there are single-result
431   // instructions for this in x86. Using the two-result multiply instructions
432   // when both high and low results are needed must be arranged by dagcombine.
433   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
434     MVT VT = IntVTs[i];
435     setOperationAction(ISD::MULHS, VT, Expand);
436     setOperationAction(ISD::MULHU, VT, Expand);
437     setOperationAction(ISD::SDIV, VT, Expand);
438     setOperationAction(ISD::UDIV, VT, Expand);
439     setOperationAction(ISD::SREM, VT, Expand);
440     setOperationAction(ISD::UREM, VT, Expand);
441
442     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
443     setOperationAction(ISD::ADDC, VT, Custom);
444     setOperationAction(ISD::ADDE, VT, Custom);
445     setOperationAction(ISD::SUBC, VT, Custom);
446     setOperationAction(ISD::SUBE, VT, Custom);
447   }
448
449   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
450   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
451   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
452   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
453   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
454   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
455   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
456   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
457   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
458   setOperationAction(ISD::SELECT_CC        , MVT::f32,   Expand);
459   setOperationAction(ISD::SELECT_CC        , MVT::f64,   Expand);
460   setOperationAction(ISD::SELECT_CC        , MVT::f80,   Expand);
461   setOperationAction(ISD::SELECT_CC        , MVT::i8,    Expand);
462   setOperationAction(ISD::SELECT_CC        , MVT::i16,   Expand);
463   setOperationAction(ISD::SELECT_CC        , MVT::i32,   Expand);
464   setOperationAction(ISD::SELECT_CC        , MVT::i64,   Expand);
465   if (Subtarget->is64Bit())
466     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
467   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
468   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
469   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
470   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
471   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
472   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
473   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
474   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
475
476   // Promote the i8 variants and force them on up to i32 which has a shorter
477   // encoding.
478   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
479   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
480   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
481   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
482   if (Subtarget->hasBMI()) {
483     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
484     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
485     if (Subtarget->is64Bit())
486       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
487   } else {
488     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
489     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
490     if (Subtarget->is64Bit())
491       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
492   }
493
494   if (Subtarget->hasLZCNT()) {
495     // When promoting the i8 variants, force them to i32 for a shorter
496     // encoding.
497     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
498     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
499     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
500     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
501     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
502     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
503     if (Subtarget->is64Bit())
504       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
505   } else {
506     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
507     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
508     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
509     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
510     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
511     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
512     if (Subtarget->is64Bit()) {
513       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
514       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
515     }
516   }
517
518   // Special handling for half-precision floating point conversions.
519   // If we don't have F16C support, then lower half float conversions
520   // into library calls.
521   if (TM.Options.UseSoftFloat || !Subtarget->hasF16C()) {
522     setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
523     setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
524   }
525
526   // There's never any support for operations beyond MVT::f32.
527   setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
528   setOperationAction(ISD::FP16_TO_FP, MVT::f80, Expand);
529   setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
530   setOperationAction(ISD::FP_TO_FP16, MVT::f80, Expand);
531
532   setLoadExtAction(ISD::EXTLOAD, MVT::f16, Expand);
533   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
534   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
535   setTruncStoreAction(MVT::f80, MVT::f16, Expand);
536
537   if (Subtarget->hasPOPCNT()) {
538     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
539   } else {
540     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
541     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
542     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
543     if (Subtarget->is64Bit())
544       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
545   }
546
547   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
548
549   if (!Subtarget->hasMOVBE())
550     setOperationAction(ISD::BSWAP          , MVT::i16  , Expand);
551
552   // These should be promoted to a larger select which is supported.
553   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
554   // X86 wants to expand cmov itself.
555   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
556   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
557   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
558   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
559   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
560   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
561   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
562   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
563   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
564   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
565   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
566   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
567   if (Subtarget->is64Bit()) {
568     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
569     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
570   }
571   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
572   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
573   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
574   // support continuation, user-level threading, and etc.. As a result, no
575   // other SjLj exception interfaces are implemented and please don't build
576   // your own exception handling based on them.
577   // LLVM/Clang supports zero-cost DWARF exception handling.
578   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
579   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
580
581   // Darwin ABI issue.
582   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
583   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
584   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
585   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
586   if (Subtarget->is64Bit())
587     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
588   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
589   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
590   if (Subtarget->is64Bit()) {
591     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
592     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
593     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
594     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
595     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
596   }
597   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
598   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
599   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
600   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
601   if (Subtarget->is64Bit()) {
602     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
603     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
604     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
605   }
606
607   if (Subtarget->hasSSE1())
608     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
609
610   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
611
612   // Expand certain atomics
613   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
614     MVT VT = IntVTs[i];
615     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Custom);
616     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
617     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
618   }
619
620   if (Subtarget->hasCmpxchg16b()) {
621     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i128, Custom);
622   }
623
624   // FIXME - use subtarget debug flags
625   if (!Subtarget->isTargetDarwin() && !Subtarget->isTargetELF() &&
626       !Subtarget->isTargetCygMing() && !Subtarget->isTargetWin64()) {
627     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
628   }
629
630   if (Subtarget->is64Bit()) {
631     setExceptionPointerRegister(X86::RAX);
632     setExceptionSelectorRegister(X86::RDX);
633   } else {
634     setExceptionPointerRegister(X86::EAX);
635     setExceptionSelectorRegister(X86::EDX);
636   }
637   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
638   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
639
640   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
641   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
642
643   setOperationAction(ISD::TRAP, MVT::Other, Legal);
644   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
645
646   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
647   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
648   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
649   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
650     // TargetInfo::X86_64ABIBuiltinVaList
651     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
652     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
653   } else {
654     // TargetInfo::CharPtrBuiltinVaList
655     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
656     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
657   }
658
659   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
660   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
661
662   setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
663                      MVT::i64 : MVT::i32, Custom);
664
665   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
666     // f32 and f64 use SSE.
667     // Set up the FP register classes.
668     addRegisterClass(MVT::f32, &X86::FR32RegClass);
669     addRegisterClass(MVT::f64, &X86::FR64RegClass);
670
671     // Use ANDPD to simulate FABS.
672     setOperationAction(ISD::FABS , MVT::f64, Custom);
673     setOperationAction(ISD::FABS , MVT::f32, Custom);
674
675     // Use XORP to simulate FNEG.
676     setOperationAction(ISD::FNEG , MVT::f64, Custom);
677     setOperationAction(ISD::FNEG , MVT::f32, Custom);
678
679     // Use ANDPD and ORPD to simulate FCOPYSIGN.
680     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
681     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
682
683     // Lower this to FGETSIGNx86 plus an AND.
684     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
685     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
686
687     // We don't support sin/cos/fmod
688     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
689     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
690     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
691     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
692     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
693     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
694
695     // Expand FP immediates into loads from the stack, except for the special
696     // cases we handle.
697     addLegalFPImmediate(APFloat(+0.0)); // xorpd
698     addLegalFPImmediate(APFloat(+0.0f)); // xorps
699   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
700     // Use SSE for f32, x87 for f64.
701     // Set up the FP register classes.
702     addRegisterClass(MVT::f32, &X86::FR32RegClass);
703     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
704
705     // Use ANDPS to simulate FABS.
706     setOperationAction(ISD::FABS , MVT::f32, Custom);
707
708     // Use XORP to simulate FNEG.
709     setOperationAction(ISD::FNEG , MVT::f32, Custom);
710
711     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
712
713     // Use ANDPS and ORPS to simulate FCOPYSIGN.
714     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
715     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
716
717     // We don't support sin/cos/fmod
718     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
719     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
720     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
721
722     // Special cases we handle for FP constants.
723     addLegalFPImmediate(APFloat(+0.0f)); // xorps
724     addLegalFPImmediate(APFloat(+0.0)); // FLD0
725     addLegalFPImmediate(APFloat(+1.0)); // FLD1
726     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
727     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
728
729     if (!TM.Options.UnsafeFPMath) {
730       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
731       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
732       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
733     }
734   } else if (!TM.Options.UseSoftFloat) {
735     // f32 and f64 in x87.
736     // Set up the FP register classes.
737     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
738     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
739
740     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
741     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
742     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
743     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
744
745     if (!TM.Options.UnsafeFPMath) {
746       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
747       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
748       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
749       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
750       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
751       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
752     }
753     addLegalFPImmediate(APFloat(+0.0)); // FLD0
754     addLegalFPImmediate(APFloat(+1.0)); // FLD1
755     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
756     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
757     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
758     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
759     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
760     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
761   }
762
763   // We don't support FMA.
764   setOperationAction(ISD::FMA, MVT::f64, Expand);
765   setOperationAction(ISD::FMA, MVT::f32, Expand);
766
767   // Long double always uses X87.
768   if (!TM.Options.UseSoftFloat) {
769     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
770     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
771     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
772     {
773       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
774       addLegalFPImmediate(TmpFlt);  // FLD0
775       TmpFlt.changeSign();
776       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
777
778       bool ignored;
779       APFloat TmpFlt2(+1.0);
780       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
781                       &ignored);
782       addLegalFPImmediate(TmpFlt2);  // FLD1
783       TmpFlt2.changeSign();
784       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
785     }
786
787     if (!TM.Options.UnsafeFPMath) {
788       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
789       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
790       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
791     }
792
793     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
794     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
795     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
796     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
797     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
798     setOperationAction(ISD::FMA, MVT::f80, Expand);
799   }
800
801   // Always use a library call for pow.
802   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
803   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
804   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
805
806   setOperationAction(ISD::FLOG, MVT::f80, Expand);
807   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
808   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
809   setOperationAction(ISD::FEXP, MVT::f80, Expand);
810   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
811
812   // First set operation action for all vector types to either promote
813   // (for widening) or expand (for scalarization). Then we will selectively
814   // turn on ones that can be effectively codegen'd.
815   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
816            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
817     MVT VT = (MVT::SimpleValueType)i;
818     setOperationAction(ISD::ADD , VT, Expand);
819     setOperationAction(ISD::SUB , VT, Expand);
820     setOperationAction(ISD::FADD, VT, Expand);
821     setOperationAction(ISD::FNEG, VT, Expand);
822     setOperationAction(ISD::FSUB, VT, Expand);
823     setOperationAction(ISD::MUL , VT, Expand);
824     setOperationAction(ISD::FMUL, VT, Expand);
825     setOperationAction(ISD::SDIV, VT, Expand);
826     setOperationAction(ISD::UDIV, VT, Expand);
827     setOperationAction(ISD::FDIV, VT, Expand);
828     setOperationAction(ISD::SREM, VT, Expand);
829     setOperationAction(ISD::UREM, VT, Expand);
830     setOperationAction(ISD::LOAD, VT, Expand);
831     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
832     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
833     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
834     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
835     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
836     setOperationAction(ISD::FABS, VT, Expand);
837     setOperationAction(ISD::FSIN, VT, Expand);
838     setOperationAction(ISD::FSINCOS, VT, Expand);
839     setOperationAction(ISD::FCOS, VT, Expand);
840     setOperationAction(ISD::FSINCOS, VT, Expand);
841     setOperationAction(ISD::FREM, VT, Expand);
842     setOperationAction(ISD::FMA,  VT, Expand);
843     setOperationAction(ISD::FPOWI, VT, Expand);
844     setOperationAction(ISD::FSQRT, VT, Expand);
845     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
846     setOperationAction(ISD::FFLOOR, VT, Expand);
847     setOperationAction(ISD::FCEIL, VT, Expand);
848     setOperationAction(ISD::FTRUNC, VT, Expand);
849     setOperationAction(ISD::FRINT, VT, Expand);
850     setOperationAction(ISD::FNEARBYINT, VT, Expand);
851     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
852     setOperationAction(ISD::MULHS, VT, Expand);
853     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
854     setOperationAction(ISD::MULHU, VT, Expand);
855     setOperationAction(ISD::SDIVREM, VT, Expand);
856     setOperationAction(ISD::UDIVREM, VT, Expand);
857     setOperationAction(ISD::FPOW, VT, Expand);
858     setOperationAction(ISD::CTPOP, VT, Expand);
859     setOperationAction(ISD::CTTZ, VT, Expand);
860     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
861     setOperationAction(ISD::CTLZ, VT, Expand);
862     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
863     setOperationAction(ISD::SHL, VT, Expand);
864     setOperationAction(ISD::SRA, VT, Expand);
865     setOperationAction(ISD::SRL, VT, Expand);
866     setOperationAction(ISD::ROTL, VT, Expand);
867     setOperationAction(ISD::ROTR, VT, Expand);
868     setOperationAction(ISD::BSWAP, VT, Expand);
869     setOperationAction(ISD::SETCC, VT, Expand);
870     setOperationAction(ISD::FLOG, VT, Expand);
871     setOperationAction(ISD::FLOG2, VT, Expand);
872     setOperationAction(ISD::FLOG10, VT, Expand);
873     setOperationAction(ISD::FEXP, VT, Expand);
874     setOperationAction(ISD::FEXP2, VT, Expand);
875     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
876     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
877     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
878     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
879     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
880     setOperationAction(ISD::TRUNCATE, VT, Expand);
881     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
882     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
883     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
884     setOperationAction(ISD::VSELECT, VT, Expand);
885     setOperationAction(ISD::SELECT_CC, VT, Expand);
886     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
887              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
888       setTruncStoreAction(VT,
889                           (MVT::SimpleValueType)InnerVT, Expand);
890     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
891     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
892
893     // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like types,
894     // we have to deal with them whether we ask for Expansion or not. Setting
895     // Expand causes its own optimisation problems though, so leave them legal.
896     if (VT.getVectorElementType() == MVT::i1)
897       setLoadExtAction(ISD::EXTLOAD, VT, Expand);
898   }
899
900   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
901   // with -msoft-float, disable use of MMX as well.
902   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
903     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
904     // No operations on x86mmx supported, everything uses intrinsics.
905   }
906
907   // MMX-sized vectors (other than x86mmx) are expected to be expanded
908   // into smaller operations.
909   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
910   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
911   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
912   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
913   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
914   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
915   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
916   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
917   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
918   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
919   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
920   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
921   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
922   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
923   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
924   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
925   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
926   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
927   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
928   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
929   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
930   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
931   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
932   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
933   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
934   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
935   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
936   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
937   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
938
939   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
940     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
941
942     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
943     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
944     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
945     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
946     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
947     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
948     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
949     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
950     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
951     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
952     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
953     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
954   }
955
956   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
957     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
958
959     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
960     // registers cannot be used even for integer operations.
961     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
962     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
963     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
964     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
965
966     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
967     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
968     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
969     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
970     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
971     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
972     setOperationAction(ISD::UMUL_LOHI,          MVT::v4i32, Custom);
973     setOperationAction(ISD::SMUL_LOHI,          MVT::v4i32, Custom);
974     setOperationAction(ISD::MULHU,              MVT::v8i16, Legal);
975     setOperationAction(ISD::MULHS,              MVT::v8i16, Legal);
976     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
977     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
978     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
979     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
980     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
981     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
982     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
983     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
984     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
985     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
986     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
987     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
988
989     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
990     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
991     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
992     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
993
994     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
995     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
996     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
997     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
998     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
999
1000     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
1001     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
1002       MVT VT = (MVT::SimpleValueType)i;
1003       // Do not attempt to custom lower non-power-of-2 vectors
1004       if (!isPowerOf2_32(VT.getVectorNumElements()))
1005         continue;
1006       // Do not attempt to custom lower non-128-bit vectors
1007       if (!VT.is128BitVector())
1008         continue;
1009       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1010       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1011       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1012     }
1013
1014     // We support custom legalizing of sext and anyext loads for specific
1015     // memory vector types which we can load as a scalar (or sequence of
1016     // scalars) and extend in-register to a legal 128-bit vector type. For sext
1017     // loads these must work with a single scalar load.
1018     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i8, Custom);
1019     if (Subtarget->is64Bit()) {
1020       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i16, Custom);
1021       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i8, Custom);
1022     }
1023     setLoadExtAction(ISD::EXTLOAD, MVT::v2i8, Custom);
1024     setLoadExtAction(ISD::EXTLOAD, MVT::v2i16, Custom);
1025     setLoadExtAction(ISD::EXTLOAD, MVT::v2i32, Custom);
1026     setLoadExtAction(ISD::EXTLOAD, MVT::v4i8, Custom);
1027     setLoadExtAction(ISD::EXTLOAD, MVT::v4i16, Custom);
1028     setLoadExtAction(ISD::EXTLOAD, MVT::v8i8, Custom);
1029
1030     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
1031     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
1032     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
1033     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
1034     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
1035     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
1036
1037     if (Subtarget->is64Bit()) {
1038       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1039       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1040     }
1041
1042     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
1043     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
1044       MVT VT = (MVT::SimpleValueType)i;
1045
1046       // Do not attempt to promote non-128-bit vectors
1047       if (!VT.is128BitVector())
1048         continue;
1049
1050       setOperationAction(ISD::AND,    VT, Promote);
1051       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1052       setOperationAction(ISD::OR,     VT, Promote);
1053       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1054       setOperationAction(ISD::XOR,    VT, Promote);
1055       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1056       setOperationAction(ISD::LOAD,   VT, Promote);
1057       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1058       setOperationAction(ISD::SELECT, VT, Promote);
1059       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1060     }
1061
1062     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1063
1064     // Custom lower v2i64 and v2f64 selects.
1065     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1066     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1067     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1068     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1069
1070     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1071     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1072
1073     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1074     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1075     // As there is no 64-bit GPR available, we need build a special custom
1076     // sequence to convert from v2i32 to v2f32.
1077     if (!Subtarget->is64Bit())
1078       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1079
1080     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1081     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1082
1083     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1084
1085     setOperationAction(ISD::BITCAST,            MVT::v2i32, Custom);
1086     setOperationAction(ISD::BITCAST,            MVT::v4i16, Custom);
1087     setOperationAction(ISD::BITCAST,            MVT::v8i8,  Custom);
1088   }
1089
1090   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1091     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1092     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1093     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1094     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1095     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1096     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1097     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1098     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1099     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1100     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1101
1102     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1103     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1104     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1105     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1106     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1107     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1108     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1109     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1110     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1111     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1112
1113     // FIXME: Do we need to handle scalar-to-vector here?
1114     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1115
1116     setOperationAction(ISD::VSELECT,            MVT::v2f64, Custom);
1117     setOperationAction(ISD::VSELECT,            MVT::v2i64, Custom);
1118     setOperationAction(ISD::VSELECT,            MVT::v4i32, Custom);
1119     setOperationAction(ISD::VSELECT,            MVT::v4f32, Custom);
1120     setOperationAction(ISD::VSELECT,            MVT::v8i16, Custom);
1121     // There is no BLENDI for byte vectors. We don't need to custom lower
1122     // some vselects for now.
1123     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1124
1125     // SSE41 brings specific instructions for doing vector sign extend even in
1126     // cases where we don't have SRA.
1127     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i8, Custom);
1128     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i16, Custom);
1129     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i32, Custom);
1130
1131     // i8 and i16 vectors are custom , because the source register and source
1132     // source memory operand types are not the same width.  f32 vectors are
1133     // custom since the immediate controlling the insert encodes additional
1134     // information.
1135     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1136     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1137     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1138     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1139
1140     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1141     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1142     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1143     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1144
1145     // FIXME: these should be Legal but thats only for the case where
1146     // the index is constant.  For now custom expand to deal with that.
1147     if (Subtarget->is64Bit()) {
1148       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1149       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1150     }
1151   }
1152
1153   if (Subtarget->hasSSE2()) {
1154     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1155     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1156
1157     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1158     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1159
1160     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1161     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1162
1163     // In the customized shift lowering, the legal cases in AVX2 will be
1164     // recognized.
1165     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1166     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1167
1168     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1169     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1170
1171     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1172   }
1173
1174   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1175     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1176     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1177     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1178     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1179     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1180     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1181
1182     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1183     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1184     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1185
1186     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1187     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1188     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1189     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1190     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1191     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1192     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1193     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1194     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1195     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1196     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1197     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1198
1199     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1200     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1201     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1202     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1203     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1204     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1205     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1206     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1207     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1208     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1209     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1210     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1211
1212     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1213     // even though v8i16 is a legal type.
1214     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1215     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1216     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1217
1218     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1219     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1220     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1221
1222     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1223     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1224
1225     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1226
1227     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1228     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1229
1230     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1231     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1232
1233     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1234     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1235
1236     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1237     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1238     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1239     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1240
1241     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1242     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1243     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1244
1245     setOperationAction(ISD::VSELECT,           MVT::v4f64, Custom);
1246     setOperationAction(ISD::VSELECT,           MVT::v4i64, Custom);
1247     setOperationAction(ISD::VSELECT,           MVT::v8i32, Custom);
1248     setOperationAction(ISD::VSELECT,           MVT::v8f32, Custom);
1249
1250     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1251     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1252     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1253     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1254     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1255     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1256     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1257     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1258     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1259     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1260     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1261     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1262
1263     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1264       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1265       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1266       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1267       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1268       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1269       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1270     }
1271
1272     if (Subtarget->hasInt256()) {
1273       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1274       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1275       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1276       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1277
1278       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1279       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1280       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1281       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1282
1283       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1284       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1285       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1286       // Don't lower v32i8 because there is no 128-bit byte mul
1287
1288       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1289       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1290       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1291       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1292
1293       setOperationAction(ISD::VSELECT,         MVT::v16i16, Custom);
1294       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1295     } else {
1296       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1297       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1298       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1299       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1300
1301       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1302       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1303       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1304       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1305
1306       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1307       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1308       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1309       // Don't lower v32i8 because there is no 128-bit byte mul
1310     }
1311
1312     // In the customized shift lowering, the legal cases in AVX2 will be
1313     // recognized.
1314     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1315     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1316
1317     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1318     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1319
1320     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1321
1322     // Custom lower several nodes for 256-bit types.
1323     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1324              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1325       MVT VT = (MVT::SimpleValueType)i;
1326
1327       // Extract subvector is special because the value type
1328       // (result) is 128-bit but the source is 256-bit wide.
1329       if (VT.is128BitVector())
1330         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1331
1332       // Do not attempt to custom lower other non-256-bit vectors
1333       if (!VT.is256BitVector())
1334         continue;
1335
1336       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1337       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1338       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1339       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1340       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1341       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1342       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1343     }
1344
1345     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1346     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1347       MVT VT = (MVT::SimpleValueType)i;
1348
1349       // Do not attempt to promote non-256-bit vectors
1350       if (!VT.is256BitVector())
1351         continue;
1352
1353       setOperationAction(ISD::AND,    VT, Promote);
1354       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1355       setOperationAction(ISD::OR,     VT, Promote);
1356       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1357       setOperationAction(ISD::XOR,    VT, Promote);
1358       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1359       setOperationAction(ISD::LOAD,   VT, Promote);
1360       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1361       setOperationAction(ISD::SELECT, VT, Promote);
1362       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1363     }
1364   }
1365
1366   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1367     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1368     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1369     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1370     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1371
1372     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1373     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1374     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1375
1376     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1377     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1378     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1379     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1380     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1381     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1382     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1383     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1384     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1385     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1386     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1387
1388     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1389     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1390     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1391     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1392     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1393     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1394
1395     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1396     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1397     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1398     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1399     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1400     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1401     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1402     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1403
1404     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1405     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1406     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1407     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1408     if (Subtarget->is64Bit()) {
1409       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1410       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1411       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1412       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1413     }
1414     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1415     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1416     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1417     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1418     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1419     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1420     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1421     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1422     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1423     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1424
1425     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1426     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1427     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1428     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1429     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1430     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1431     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1432     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1433     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1434     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1435     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1436     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1437     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1438
1439     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1440     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1441     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1442     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1443     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1444     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1445
1446     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1447     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1448
1449     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1450
1451     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1452     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1453     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1454     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1455     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1456     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1457     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1458     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1459     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1460
1461     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1462     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1463
1464     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1465     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1466
1467     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1468
1469     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1470     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1471
1472     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1473     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1474
1475     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1476     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1477
1478     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1479     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1480     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1481     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1482     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1483     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1484
1485     if (Subtarget->hasCDI()) {
1486       setOperationAction(ISD::CTLZ,             MVT::v8i64, Legal);
1487       setOperationAction(ISD::CTLZ,             MVT::v16i32, Legal);
1488     }
1489
1490     // Custom lower several nodes.
1491     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1492              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1493       MVT VT = (MVT::SimpleValueType)i;
1494
1495       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1496       // Extract subvector is special because the value type
1497       // (result) is 256/128-bit but the source is 512-bit wide.
1498       if (VT.is128BitVector() || VT.is256BitVector())
1499         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1500
1501       if (VT.getVectorElementType() == MVT::i1)
1502         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1503
1504       // Do not attempt to custom lower other non-512-bit vectors
1505       if (!VT.is512BitVector())
1506         continue;
1507
1508       if ( EltSize >= 32) {
1509         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1510         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1511         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1512         setOperationAction(ISD::VSELECT,             VT, Legal);
1513         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1514         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1515         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1516       }
1517     }
1518     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1519       MVT VT = (MVT::SimpleValueType)i;
1520
1521       // Do not attempt to promote non-256-bit vectors
1522       if (!VT.is512BitVector())
1523         continue;
1524
1525       setOperationAction(ISD::SELECT, VT, Promote);
1526       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1527     }
1528   }// has  AVX-512
1529
1530   if (!TM.Options.UseSoftFloat && Subtarget->hasBWI()) {
1531     addRegisterClass(MVT::v32i1,  &X86::VK32RegClass);
1532     addRegisterClass(MVT::v64i1,  &X86::VK64RegClass);
1533   }
1534
1535   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1536   // of this type with custom code.
1537   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1538            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1539     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1540                        Custom);
1541   }
1542
1543   // We want to custom lower some of our intrinsics.
1544   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1545   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1546   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1547   if (!Subtarget->is64Bit())
1548     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1549
1550   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1551   // handle type legalization for these operations here.
1552   //
1553   // FIXME: We really should do custom legalization for addition and
1554   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1555   // than generic legalization for 64-bit multiplication-with-overflow, though.
1556   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1557     // Add/Sub/Mul with overflow operations are custom lowered.
1558     MVT VT = IntVTs[i];
1559     setOperationAction(ISD::SADDO, VT, Custom);
1560     setOperationAction(ISD::UADDO, VT, Custom);
1561     setOperationAction(ISD::SSUBO, VT, Custom);
1562     setOperationAction(ISD::USUBO, VT, Custom);
1563     setOperationAction(ISD::SMULO, VT, Custom);
1564     setOperationAction(ISD::UMULO, VT, Custom);
1565   }
1566
1567   // There are no 8-bit 3-address imul/mul instructions
1568   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1569   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1570
1571   if (!Subtarget->is64Bit()) {
1572     // These libcalls are not available in 32-bit.
1573     setLibcallName(RTLIB::SHL_I128, nullptr);
1574     setLibcallName(RTLIB::SRL_I128, nullptr);
1575     setLibcallName(RTLIB::SRA_I128, nullptr);
1576   }
1577
1578   // Combine sin / cos into one node or libcall if possible.
1579   if (Subtarget->hasSinCos()) {
1580     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1581     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1582     if (Subtarget->isTargetDarwin()) {
1583       // For MacOSX, we don't want to the normal expansion of a libcall to
1584       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1585       // traffic.
1586       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1587       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1588     }
1589   }
1590
1591   if (Subtarget->isTargetWin64()) {
1592     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1593     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1594     setOperationAction(ISD::SREM, MVT::i128, Custom);
1595     setOperationAction(ISD::UREM, MVT::i128, Custom);
1596     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1597     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1598   }
1599
1600   // We have target-specific dag combine patterns for the following nodes:
1601   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1602   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1603   setTargetDAGCombine(ISD::VSELECT);
1604   setTargetDAGCombine(ISD::SELECT);
1605   setTargetDAGCombine(ISD::SHL);
1606   setTargetDAGCombine(ISD::SRA);
1607   setTargetDAGCombine(ISD::SRL);
1608   setTargetDAGCombine(ISD::OR);
1609   setTargetDAGCombine(ISD::AND);
1610   setTargetDAGCombine(ISD::ADD);
1611   setTargetDAGCombine(ISD::FADD);
1612   setTargetDAGCombine(ISD::FSUB);
1613   setTargetDAGCombine(ISD::FMA);
1614   setTargetDAGCombine(ISD::SUB);
1615   setTargetDAGCombine(ISD::LOAD);
1616   setTargetDAGCombine(ISD::STORE);
1617   setTargetDAGCombine(ISD::ZERO_EXTEND);
1618   setTargetDAGCombine(ISD::ANY_EXTEND);
1619   setTargetDAGCombine(ISD::SIGN_EXTEND);
1620   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1621   setTargetDAGCombine(ISD::TRUNCATE);
1622   setTargetDAGCombine(ISD::SINT_TO_FP);
1623   setTargetDAGCombine(ISD::SETCC);
1624   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
1625   setTargetDAGCombine(ISD::BUILD_VECTOR);
1626   if (Subtarget->is64Bit())
1627     setTargetDAGCombine(ISD::MUL);
1628   setTargetDAGCombine(ISD::XOR);
1629
1630   computeRegisterProperties();
1631
1632   // On Darwin, -Os means optimize for size without hurting performance,
1633   // do not reduce the limit.
1634   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1635   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1636   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1637   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1638   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1639   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1640   setPrefLoopAlignment(4); // 2^4 bytes.
1641
1642   // Predictable cmov don't hurt on atom because it's in-order.
1643   PredictableSelectIsExpensive = !Subtarget->isAtom();
1644
1645   setPrefFunctionAlignment(4); // 2^4 bytes.
1646 }
1647
1648 // This has so far only been implemented for 64-bit MachO.
1649 bool X86TargetLowering::useLoadStackGuardNode() const {
1650   return Subtarget->getTargetTriple().getObjectFormat() == Triple::MachO &&
1651          Subtarget->is64Bit();
1652 }
1653
1654 TargetLoweringBase::LegalizeTypeAction
1655 X86TargetLowering::getPreferredVectorAction(EVT VT) const {
1656   if (ExperimentalVectorWideningLegalization &&
1657       VT.getVectorNumElements() != 1 &&
1658       VT.getVectorElementType().getSimpleVT() != MVT::i1)
1659     return TypeWidenVector;
1660
1661   return TargetLoweringBase::getPreferredVectorAction(VT);
1662 }
1663
1664 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1665   if (!VT.isVector())
1666     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1667
1668   if (Subtarget->hasAVX512())
1669     switch(VT.getVectorNumElements()) {
1670     case  8: return MVT::v8i1;
1671     case 16: return MVT::v16i1;
1672   }
1673
1674   return VT.changeVectorElementTypeToInteger();
1675 }
1676
1677 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1678 /// the desired ByVal argument alignment.
1679 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1680   if (MaxAlign == 16)
1681     return;
1682   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1683     if (VTy->getBitWidth() == 128)
1684       MaxAlign = 16;
1685   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1686     unsigned EltAlign = 0;
1687     getMaxByValAlign(ATy->getElementType(), EltAlign);
1688     if (EltAlign > MaxAlign)
1689       MaxAlign = EltAlign;
1690   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1691     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1692       unsigned EltAlign = 0;
1693       getMaxByValAlign(STy->getElementType(i), EltAlign);
1694       if (EltAlign > MaxAlign)
1695         MaxAlign = EltAlign;
1696       if (MaxAlign == 16)
1697         break;
1698     }
1699   }
1700 }
1701
1702 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1703 /// function arguments in the caller parameter area. For X86, aggregates
1704 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1705 /// are at 4-byte boundaries.
1706 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1707   if (Subtarget->is64Bit()) {
1708     // Max of 8 and alignment of type.
1709     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1710     if (TyAlign > 8)
1711       return TyAlign;
1712     return 8;
1713   }
1714
1715   unsigned Align = 4;
1716   if (Subtarget->hasSSE1())
1717     getMaxByValAlign(Ty, Align);
1718   return Align;
1719 }
1720
1721 /// getOptimalMemOpType - Returns the target specific optimal type for load
1722 /// and store operations as a result of memset, memcpy, and memmove
1723 /// lowering. If DstAlign is zero that means it's safe to destination
1724 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1725 /// means there isn't a need to check it against alignment requirement,
1726 /// probably because the source does not need to be loaded. If 'IsMemset' is
1727 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1728 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1729 /// source is constant so it does not need to be loaded.
1730 /// It returns EVT::Other if the type should be determined using generic
1731 /// target-independent logic.
1732 EVT
1733 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1734                                        unsigned DstAlign, unsigned SrcAlign,
1735                                        bool IsMemset, bool ZeroMemset,
1736                                        bool MemcpyStrSrc,
1737                                        MachineFunction &MF) const {
1738   const Function *F = MF.getFunction();
1739   if ((!IsMemset || ZeroMemset) &&
1740       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1741                                        Attribute::NoImplicitFloat)) {
1742     if (Size >= 16 &&
1743         (Subtarget->isUnalignedMemAccessFast() ||
1744          ((DstAlign == 0 || DstAlign >= 16) &&
1745           (SrcAlign == 0 || SrcAlign >= 16)))) {
1746       if (Size >= 32) {
1747         if (Subtarget->hasInt256())
1748           return MVT::v8i32;
1749         if (Subtarget->hasFp256())
1750           return MVT::v8f32;
1751       }
1752       if (Subtarget->hasSSE2())
1753         return MVT::v4i32;
1754       if (Subtarget->hasSSE1())
1755         return MVT::v4f32;
1756     } else if (!MemcpyStrSrc && Size >= 8 &&
1757                !Subtarget->is64Bit() &&
1758                Subtarget->hasSSE2()) {
1759       // Do not use f64 to lower memcpy if source is string constant. It's
1760       // better to use i32 to avoid the loads.
1761       return MVT::f64;
1762     }
1763   }
1764   if (Subtarget->is64Bit() && Size >= 8)
1765     return MVT::i64;
1766   return MVT::i32;
1767 }
1768
1769 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1770   if (VT == MVT::f32)
1771     return X86ScalarSSEf32;
1772   else if (VT == MVT::f64)
1773     return X86ScalarSSEf64;
1774   return true;
1775 }
1776
1777 bool
1778 X86TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
1779                                                   unsigned,
1780                                                   unsigned,
1781                                                   bool *Fast) const {
1782   if (Fast)
1783     *Fast = Subtarget->isUnalignedMemAccessFast();
1784   return true;
1785 }
1786
1787 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1788 /// current function.  The returned value is a member of the
1789 /// MachineJumpTableInfo::JTEntryKind enum.
1790 unsigned X86TargetLowering::getJumpTableEncoding() const {
1791   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1792   // symbol.
1793   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1794       Subtarget->isPICStyleGOT())
1795     return MachineJumpTableInfo::EK_Custom32;
1796
1797   // Otherwise, use the normal jump table encoding heuristics.
1798   return TargetLowering::getJumpTableEncoding();
1799 }
1800
1801 const MCExpr *
1802 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1803                                              const MachineBasicBlock *MBB,
1804                                              unsigned uid,MCContext &Ctx) const{
1805   assert(MBB->getParent()->getTarget().getRelocationModel() == Reloc::PIC_ &&
1806          Subtarget->isPICStyleGOT());
1807   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1808   // entries.
1809   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1810                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1811 }
1812
1813 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1814 /// jumptable.
1815 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1816                                                     SelectionDAG &DAG) const {
1817   if (!Subtarget->is64Bit())
1818     // This doesn't have SDLoc associated with it, but is not really the
1819     // same as a Register.
1820     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1821   return Table;
1822 }
1823
1824 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1825 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1826 /// MCExpr.
1827 const MCExpr *X86TargetLowering::
1828 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1829                              MCContext &Ctx) const {
1830   // X86-64 uses RIP relative addressing based on the jump table label.
1831   if (Subtarget->isPICStyleRIPRel())
1832     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1833
1834   // Otherwise, the reference is relative to the PIC base.
1835   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1836 }
1837
1838 // FIXME: Why this routine is here? Move to RegInfo!
1839 std::pair<const TargetRegisterClass*, uint8_t>
1840 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1841   const TargetRegisterClass *RRC = nullptr;
1842   uint8_t Cost = 1;
1843   switch (VT.SimpleTy) {
1844   default:
1845     return TargetLowering::findRepresentativeClass(VT);
1846   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1847     RRC = Subtarget->is64Bit() ?
1848       (const TargetRegisterClass*)&X86::GR64RegClass :
1849       (const TargetRegisterClass*)&X86::GR32RegClass;
1850     break;
1851   case MVT::x86mmx:
1852     RRC = &X86::VR64RegClass;
1853     break;
1854   case MVT::f32: case MVT::f64:
1855   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1856   case MVT::v4f32: case MVT::v2f64:
1857   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1858   case MVT::v4f64:
1859     RRC = &X86::VR128RegClass;
1860     break;
1861   }
1862   return std::make_pair(RRC, Cost);
1863 }
1864
1865 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1866                                                unsigned &Offset) const {
1867   if (!Subtarget->isTargetLinux())
1868     return false;
1869
1870   if (Subtarget->is64Bit()) {
1871     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1872     Offset = 0x28;
1873     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1874       AddressSpace = 256;
1875     else
1876       AddressSpace = 257;
1877   } else {
1878     // %gs:0x14 on i386
1879     Offset = 0x14;
1880     AddressSpace = 256;
1881   }
1882   return true;
1883 }
1884
1885 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1886                                             unsigned DestAS) const {
1887   assert(SrcAS != DestAS && "Expected different address spaces!");
1888
1889   return SrcAS < 256 && DestAS < 256;
1890 }
1891
1892 //===----------------------------------------------------------------------===//
1893 //               Return Value Calling Convention Implementation
1894 //===----------------------------------------------------------------------===//
1895
1896 #include "X86GenCallingConv.inc"
1897
1898 bool
1899 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1900                                   MachineFunction &MF, bool isVarArg,
1901                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1902                         LLVMContext &Context) const {
1903   SmallVector<CCValAssign, 16> RVLocs;
1904   CCState CCInfo(CallConv, isVarArg, MF, MF.getTarget(),
1905                  RVLocs, Context);
1906   return CCInfo.CheckReturn(Outs, RetCC_X86);
1907 }
1908
1909 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1910   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
1911   return ScratchRegs;
1912 }
1913
1914 SDValue
1915 X86TargetLowering::LowerReturn(SDValue Chain,
1916                                CallingConv::ID CallConv, bool isVarArg,
1917                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1918                                const SmallVectorImpl<SDValue> &OutVals,
1919                                SDLoc dl, SelectionDAG &DAG) const {
1920   MachineFunction &MF = DAG.getMachineFunction();
1921   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1922
1923   SmallVector<CCValAssign, 16> RVLocs;
1924   CCState CCInfo(CallConv, isVarArg, MF, DAG.getTarget(),
1925                  RVLocs, *DAG.getContext());
1926   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1927
1928   SDValue Flag;
1929   SmallVector<SDValue, 6> RetOps;
1930   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1931   // Operand #1 = Bytes To Pop
1932   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1933                    MVT::i16));
1934
1935   // Copy the result values into the output registers.
1936   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1937     CCValAssign &VA = RVLocs[i];
1938     assert(VA.isRegLoc() && "Can only return in registers!");
1939     SDValue ValToCopy = OutVals[i];
1940     EVT ValVT = ValToCopy.getValueType();
1941
1942     // Promote values to the appropriate types
1943     if (VA.getLocInfo() == CCValAssign::SExt)
1944       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1945     else if (VA.getLocInfo() == CCValAssign::ZExt)
1946       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1947     else if (VA.getLocInfo() == CCValAssign::AExt)
1948       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1949     else if (VA.getLocInfo() == CCValAssign::BCvt)
1950       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1951
1952     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1953            "Unexpected FP-extend for return value.");  
1954
1955     // If this is x86-64, and we disabled SSE, we can't return FP values,
1956     // or SSE or MMX vectors.
1957     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1958          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1959           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1960       report_fatal_error("SSE register return with SSE disabled");
1961     }
1962     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1963     // llvm-gcc has never done it right and no one has noticed, so this
1964     // should be OK for now.
1965     if (ValVT == MVT::f64 &&
1966         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1967       report_fatal_error("SSE2 register return with SSE2 disabled");
1968
1969     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1970     // the RET instruction and handled by the FP Stackifier.
1971     if (VA.getLocReg() == X86::FP0 ||
1972         VA.getLocReg() == X86::FP1) {
1973       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1974       // change the value to the FP stack register class.
1975       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1976         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1977       RetOps.push_back(ValToCopy);
1978       // Don't emit a copytoreg.
1979       continue;
1980     }
1981
1982     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1983     // which is returned in RAX / RDX.
1984     if (Subtarget->is64Bit()) {
1985       if (ValVT == MVT::x86mmx) {
1986         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1987           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1988           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1989                                   ValToCopy);
1990           // If we don't have SSE2 available, convert to v4f32 so the generated
1991           // register is legal.
1992           if (!Subtarget->hasSSE2())
1993             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1994         }
1995       }
1996     }
1997
1998     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1999     Flag = Chain.getValue(1);
2000     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2001   }
2002
2003   // The x86-64 ABIs require that for returning structs by value we copy
2004   // the sret argument into %rax/%eax (depending on ABI) for the return.
2005   // Win32 requires us to put the sret argument to %eax as well.
2006   // We saved the argument into a virtual register in the entry block,
2007   // so now we copy the value out and into %rax/%eax.
2008   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
2009       (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
2010     MachineFunction &MF = DAG.getMachineFunction();
2011     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2012     unsigned Reg = FuncInfo->getSRetReturnReg();
2013     assert(Reg &&
2014            "SRetReturnReg should have been set in LowerFormalArguments().");
2015     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
2016
2017     unsigned RetValReg
2018         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
2019           X86::RAX : X86::EAX;
2020     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
2021     Flag = Chain.getValue(1);
2022
2023     // RAX/EAX now acts like a return value.
2024     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
2025   }
2026
2027   RetOps[0] = Chain;  // Update chain.
2028
2029   // Add the flag if we have it.
2030   if (Flag.getNode())
2031     RetOps.push_back(Flag);
2032
2033   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
2034 }
2035
2036 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2037   if (N->getNumValues() != 1)
2038     return false;
2039   if (!N->hasNUsesOfValue(1, 0))
2040     return false;
2041
2042   SDValue TCChain = Chain;
2043   SDNode *Copy = *N->use_begin();
2044   if (Copy->getOpcode() == ISD::CopyToReg) {
2045     // If the copy has a glue operand, we conservatively assume it isn't safe to
2046     // perform a tail call.
2047     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2048       return false;
2049     TCChain = Copy->getOperand(0);
2050   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
2051     return false;
2052
2053   bool HasRet = false;
2054   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2055        UI != UE; ++UI) {
2056     if (UI->getOpcode() != X86ISD::RET_FLAG)
2057       return false;
2058     HasRet = true;
2059   }
2060
2061   if (!HasRet)
2062     return false;
2063
2064   Chain = TCChain;
2065   return true;
2066 }
2067
2068 MVT
2069 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
2070                                             ISD::NodeType ExtendKind) const {
2071   MVT ReturnMVT;
2072   // TODO: Is this also valid on 32-bit?
2073   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
2074     ReturnMVT = MVT::i8;
2075   else
2076     ReturnMVT = MVT::i32;
2077
2078   MVT MinVT = getRegisterType(ReturnMVT);
2079   return VT.bitsLT(MinVT) ? MinVT : VT;
2080 }
2081
2082 /// LowerCallResult - Lower the result values of a call into the
2083 /// appropriate copies out of appropriate physical registers.
2084 ///
2085 SDValue
2086 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2087                                    CallingConv::ID CallConv, bool isVarArg,
2088                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2089                                    SDLoc dl, SelectionDAG &DAG,
2090                                    SmallVectorImpl<SDValue> &InVals) const {
2091
2092   // Assign locations to each value returned by this call.
2093   SmallVector<CCValAssign, 16> RVLocs;
2094   bool Is64Bit = Subtarget->is64Bit();
2095   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2096                  DAG.getTarget(), RVLocs, *DAG.getContext());
2097   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2098
2099   // Copy all of the result registers out of their specified physreg.
2100   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2101     CCValAssign &VA = RVLocs[i];
2102     EVT CopyVT = VA.getValVT();
2103
2104     // If this is x86-64, and we disabled SSE, we can't return FP values
2105     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2106         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2107       report_fatal_error("SSE register return with SSE disabled");
2108     }
2109
2110     // If we prefer to use the value in xmm registers, copy it out as f80 and
2111     // use a truncate to move it from fp stack reg to xmm reg.
2112     if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
2113         isScalarFPTypeInSSEReg(VA.getValVT()))
2114       CopyVT = MVT::f80;
2115
2116     Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2117                                CopyVT, InFlag).getValue(1);
2118     SDValue Val = Chain.getValue(0);
2119
2120     if (CopyVT != VA.getValVT())
2121       Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2122                         // This truncation won't change the value.
2123                         DAG.getIntPtrConstant(1));
2124
2125     InFlag = Chain.getValue(2);
2126     InVals.push_back(Val);
2127   }
2128
2129   return Chain;
2130 }
2131
2132 //===----------------------------------------------------------------------===//
2133 //                C & StdCall & Fast Calling Convention implementation
2134 //===----------------------------------------------------------------------===//
2135 //  StdCall calling convention seems to be standard for many Windows' API
2136 //  routines and around. It differs from C calling convention just a little:
2137 //  callee should clean up the stack, not caller. Symbols should be also
2138 //  decorated in some fancy way :) It doesn't support any vector arguments.
2139 //  For info on fast calling convention see Fast Calling Convention (tail call)
2140 //  implementation LowerX86_32FastCCCallTo.
2141
2142 /// CallIsStructReturn - Determines whether a call uses struct return
2143 /// semantics.
2144 enum StructReturnType {
2145   NotStructReturn,
2146   RegStructReturn,
2147   StackStructReturn
2148 };
2149 static StructReturnType
2150 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2151   if (Outs.empty())
2152     return NotStructReturn;
2153
2154   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2155   if (!Flags.isSRet())
2156     return NotStructReturn;
2157   if (Flags.isInReg())
2158     return RegStructReturn;
2159   return StackStructReturn;
2160 }
2161
2162 /// ArgsAreStructReturn - Determines whether a function uses struct
2163 /// return semantics.
2164 static StructReturnType
2165 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2166   if (Ins.empty())
2167     return NotStructReturn;
2168
2169   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2170   if (!Flags.isSRet())
2171     return NotStructReturn;
2172   if (Flags.isInReg())
2173     return RegStructReturn;
2174   return StackStructReturn;
2175 }
2176
2177 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2178 /// by "Src" to address "Dst" with size and alignment information specified by
2179 /// the specific parameter attribute. The copy will be passed as a byval
2180 /// function parameter.
2181 static SDValue
2182 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2183                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2184                           SDLoc dl) {
2185   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2186
2187   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2188                        /*isVolatile*/false, /*AlwaysInline=*/true,
2189                        MachinePointerInfo(), MachinePointerInfo());
2190 }
2191
2192 /// IsTailCallConvention - Return true if the calling convention is one that
2193 /// supports tail call optimization.
2194 static bool IsTailCallConvention(CallingConv::ID CC) {
2195   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2196           CC == CallingConv::HiPE);
2197 }
2198
2199 /// \brief Return true if the calling convention is a C calling convention.
2200 static bool IsCCallConvention(CallingConv::ID CC) {
2201   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2202           CC == CallingConv::X86_64_SysV);
2203 }
2204
2205 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2206   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2207     return false;
2208
2209   CallSite CS(CI);
2210   CallingConv::ID CalleeCC = CS.getCallingConv();
2211   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2212     return false;
2213
2214   return true;
2215 }
2216
2217 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2218 /// a tailcall target by changing its ABI.
2219 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2220                                    bool GuaranteedTailCallOpt) {
2221   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2222 }
2223
2224 SDValue
2225 X86TargetLowering::LowerMemArgument(SDValue Chain,
2226                                     CallingConv::ID CallConv,
2227                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2228                                     SDLoc dl, SelectionDAG &DAG,
2229                                     const CCValAssign &VA,
2230                                     MachineFrameInfo *MFI,
2231                                     unsigned i) const {
2232   // Create the nodes corresponding to a load from this parameter slot.
2233   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2234   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(
2235       CallConv, DAG.getTarget().Options.GuaranteedTailCallOpt);
2236   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2237   EVT ValVT;
2238
2239   // If value is passed by pointer we have address passed instead of the value
2240   // itself.
2241   if (VA.getLocInfo() == CCValAssign::Indirect)
2242     ValVT = VA.getLocVT();
2243   else
2244     ValVT = VA.getValVT();
2245
2246   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2247   // changed with more analysis.
2248   // In case of tail call optimization mark all arguments mutable. Since they
2249   // could be overwritten by lowering of arguments in case of a tail call.
2250   if (Flags.isByVal()) {
2251     unsigned Bytes = Flags.getByValSize();
2252     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2253     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2254     return DAG.getFrameIndex(FI, getPointerTy());
2255   } else {
2256     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2257                                     VA.getLocMemOffset(), isImmutable);
2258     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2259     return DAG.getLoad(ValVT, dl, Chain, FIN,
2260                        MachinePointerInfo::getFixedStack(FI),
2261                        false, false, false, 0);
2262   }
2263 }
2264
2265 SDValue
2266 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2267                                         CallingConv::ID CallConv,
2268                                         bool isVarArg,
2269                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2270                                         SDLoc dl,
2271                                         SelectionDAG &DAG,
2272                                         SmallVectorImpl<SDValue> &InVals)
2273                                           const {
2274   MachineFunction &MF = DAG.getMachineFunction();
2275   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2276
2277   const Function* Fn = MF.getFunction();
2278   if (Fn->hasExternalLinkage() &&
2279       Subtarget->isTargetCygMing() &&
2280       Fn->getName() == "main")
2281     FuncInfo->setForceFramePointer(true);
2282
2283   MachineFrameInfo *MFI = MF.getFrameInfo();
2284   bool Is64Bit = Subtarget->is64Bit();
2285   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2286
2287   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2288          "Var args not supported with calling convention fastcc, ghc or hipe");
2289
2290   // Assign locations to all of the incoming arguments.
2291   SmallVector<CCValAssign, 16> ArgLocs;
2292   CCState CCInfo(CallConv, isVarArg, MF, DAG.getTarget(),
2293                  ArgLocs, *DAG.getContext());
2294
2295   // Allocate shadow area for Win64
2296   if (IsWin64)
2297     CCInfo.AllocateStack(32, 8);
2298
2299   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2300
2301   unsigned LastVal = ~0U;
2302   SDValue ArgValue;
2303   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2304     CCValAssign &VA = ArgLocs[i];
2305     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2306     // places.
2307     assert(VA.getValNo() != LastVal &&
2308            "Don't support value assigned to multiple locs yet");
2309     (void)LastVal;
2310     LastVal = VA.getValNo();
2311
2312     if (VA.isRegLoc()) {
2313       EVT RegVT = VA.getLocVT();
2314       const TargetRegisterClass *RC;
2315       if (RegVT == MVT::i32)
2316         RC = &X86::GR32RegClass;
2317       else if (Is64Bit && RegVT == MVT::i64)
2318         RC = &X86::GR64RegClass;
2319       else if (RegVT == MVT::f32)
2320         RC = &X86::FR32RegClass;
2321       else if (RegVT == MVT::f64)
2322         RC = &X86::FR64RegClass;
2323       else if (RegVT.is512BitVector())
2324         RC = &X86::VR512RegClass;
2325       else if (RegVT.is256BitVector())
2326         RC = &X86::VR256RegClass;
2327       else if (RegVT.is128BitVector())
2328         RC = &X86::VR128RegClass;
2329       else if (RegVT == MVT::x86mmx)
2330         RC = &X86::VR64RegClass;
2331       else if (RegVT == MVT::i1)
2332         RC = &X86::VK1RegClass;
2333       else if (RegVT == MVT::v8i1)
2334         RC = &X86::VK8RegClass;
2335       else if (RegVT == MVT::v16i1)
2336         RC = &X86::VK16RegClass;
2337       else if (RegVT == MVT::v32i1)
2338         RC = &X86::VK32RegClass;
2339       else if (RegVT == MVT::v64i1)
2340         RC = &X86::VK64RegClass;
2341       else
2342         llvm_unreachable("Unknown argument type!");
2343
2344       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2345       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2346
2347       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2348       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2349       // right size.
2350       if (VA.getLocInfo() == CCValAssign::SExt)
2351         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2352                                DAG.getValueType(VA.getValVT()));
2353       else if (VA.getLocInfo() == CCValAssign::ZExt)
2354         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2355                                DAG.getValueType(VA.getValVT()));
2356       else if (VA.getLocInfo() == CCValAssign::BCvt)
2357         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2358
2359       if (VA.isExtInLoc()) {
2360         // Handle MMX values passed in XMM regs.
2361         if (RegVT.isVector())
2362           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2363         else
2364           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2365       }
2366     } else {
2367       assert(VA.isMemLoc());
2368       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2369     }
2370
2371     // If value is passed via pointer - do a load.
2372     if (VA.getLocInfo() == CCValAssign::Indirect)
2373       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2374                              MachinePointerInfo(), false, false, false, 0);
2375
2376     InVals.push_back(ArgValue);
2377   }
2378
2379   if (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC()) {
2380     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2381       // The x86-64 ABIs require that for returning structs by value we copy
2382       // the sret argument into %rax/%eax (depending on ABI) for the return.
2383       // Win32 requires us to put the sret argument to %eax as well.
2384       // Save the argument into a virtual register so that we can access it
2385       // from the return points.
2386       if (Ins[i].Flags.isSRet()) {
2387         unsigned Reg = FuncInfo->getSRetReturnReg();
2388         if (!Reg) {
2389           MVT PtrTy = getPointerTy();
2390           Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2391           FuncInfo->setSRetReturnReg(Reg);
2392         }
2393         SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]);
2394         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2395         break;
2396       }
2397     }
2398   }
2399
2400   unsigned StackSize = CCInfo.getNextStackOffset();
2401   // Align stack specially for tail calls.
2402   if (FuncIsMadeTailCallSafe(CallConv,
2403                              MF.getTarget().Options.GuaranteedTailCallOpt))
2404     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2405
2406   // If the function takes variable number of arguments, make a frame index for
2407   // the start of the first vararg value... for expansion of llvm.va_start.
2408   if (isVarArg) {
2409     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2410                     CallConv != CallingConv::X86_ThisCall)) {
2411       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2412     }
2413     if (Is64Bit) {
2414       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2415
2416       // FIXME: We should really autogenerate these arrays
2417       static const MCPhysReg GPR64ArgRegsWin64[] = {
2418         X86::RCX, X86::RDX, X86::R8,  X86::R9
2419       };
2420       static const MCPhysReg GPR64ArgRegs64Bit[] = {
2421         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2422       };
2423       static const MCPhysReg XMMArgRegs64Bit[] = {
2424         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2425         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2426       };
2427       const MCPhysReg *GPR64ArgRegs;
2428       unsigned NumXMMRegs = 0;
2429
2430       if (IsWin64) {
2431         // The XMM registers which might contain var arg parameters are shadowed
2432         // in their paired GPR.  So we only need to save the GPR to their home
2433         // slots.
2434         TotalNumIntRegs = 4;
2435         GPR64ArgRegs = GPR64ArgRegsWin64;
2436       } else {
2437         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2438         GPR64ArgRegs = GPR64ArgRegs64Bit;
2439
2440         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2441                                                 TotalNumXMMRegs);
2442       }
2443       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2444                                                        TotalNumIntRegs);
2445
2446       bool NoImplicitFloatOps = Fn->getAttributes().
2447         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2448       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2449              "SSE register cannot be used when SSE is disabled!");
2450       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2451                NoImplicitFloatOps) &&
2452              "SSE register cannot be used when SSE is disabled!");
2453       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2454           !Subtarget->hasSSE1())
2455         // Kernel mode asks for SSE to be disabled, so don't push them
2456         // on the stack.
2457         TotalNumXMMRegs = 0;
2458
2459       if (IsWin64) {
2460         const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
2461         // Get to the caller-allocated home save location.  Add 8 to account
2462         // for the return address.
2463         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2464         FuncInfo->setRegSaveFrameIndex(
2465           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2466         // Fixup to set vararg frame on shadow area (4 x i64).
2467         if (NumIntRegs < 4)
2468           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2469       } else {
2470         // For X86-64, if there are vararg parameters that are passed via
2471         // registers, then we must store them to their spots on the stack so
2472         // they may be loaded by deferencing the result of va_next.
2473         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2474         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2475         FuncInfo->setRegSaveFrameIndex(
2476           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2477                                false));
2478       }
2479
2480       // Store the integer parameter registers.
2481       SmallVector<SDValue, 8> MemOps;
2482       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2483                                         getPointerTy());
2484       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2485       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2486         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2487                                   DAG.getIntPtrConstant(Offset));
2488         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2489                                      &X86::GR64RegClass);
2490         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2491         SDValue Store =
2492           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2493                        MachinePointerInfo::getFixedStack(
2494                          FuncInfo->getRegSaveFrameIndex(), Offset),
2495                        false, false, 0);
2496         MemOps.push_back(Store);
2497         Offset += 8;
2498       }
2499
2500       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2501         // Now store the XMM (fp + vector) parameter registers.
2502         SmallVector<SDValue, 11> SaveXMMOps;
2503         SaveXMMOps.push_back(Chain);
2504
2505         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2506         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2507         SaveXMMOps.push_back(ALVal);
2508
2509         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2510                                FuncInfo->getRegSaveFrameIndex()));
2511         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2512                                FuncInfo->getVarArgsFPOffset()));
2513
2514         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2515           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2516                                        &X86::VR128RegClass);
2517           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2518           SaveXMMOps.push_back(Val);
2519         }
2520         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2521                                      MVT::Other, SaveXMMOps));
2522       }
2523
2524       if (!MemOps.empty())
2525         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2526     }
2527   }
2528
2529   // Some CCs need callee pop.
2530   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2531                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2532     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2533   } else {
2534     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2535     // If this is an sret function, the return should pop the hidden pointer.
2536     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2537         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2538         argsAreStructReturn(Ins) == StackStructReturn)
2539       FuncInfo->setBytesToPopOnReturn(4);
2540   }
2541
2542   if (!Is64Bit) {
2543     // RegSaveFrameIndex is X86-64 only.
2544     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2545     if (CallConv == CallingConv::X86_FastCall ||
2546         CallConv == CallingConv::X86_ThisCall)
2547       // fastcc functions can't have varargs.
2548       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2549   }
2550
2551   FuncInfo->setArgumentStackSize(StackSize);
2552
2553   return Chain;
2554 }
2555
2556 SDValue
2557 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2558                                     SDValue StackPtr, SDValue Arg,
2559                                     SDLoc dl, SelectionDAG &DAG,
2560                                     const CCValAssign &VA,
2561                                     ISD::ArgFlagsTy Flags) const {
2562   unsigned LocMemOffset = VA.getLocMemOffset();
2563   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2564   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2565   if (Flags.isByVal())
2566     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2567
2568   return DAG.getStore(Chain, dl, Arg, PtrOff,
2569                       MachinePointerInfo::getStack(LocMemOffset),
2570                       false, false, 0);
2571 }
2572
2573 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2574 /// optimization is performed and it is required.
2575 SDValue
2576 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2577                                            SDValue &OutRetAddr, SDValue Chain,
2578                                            bool IsTailCall, bool Is64Bit,
2579                                            int FPDiff, SDLoc dl) const {
2580   // Adjust the Return address stack slot.
2581   EVT VT = getPointerTy();
2582   OutRetAddr = getReturnAddressFrameIndex(DAG);
2583
2584   // Load the "old" Return address.
2585   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2586                            false, false, false, 0);
2587   return SDValue(OutRetAddr.getNode(), 1);
2588 }
2589
2590 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2591 /// optimization is performed and it is required (FPDiff!=0).
2592 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2593                                         SDValue Chain, SDValue RetAddrFrIdx,
2594                                         EVT PtrVT, unsigned SlotSize,
2595                                         int FPDiff, SDLoc dl) {
2596   // Store the return address to the appropriate stack slot.
2597   if (!FPDiff) return Chain;
2598   // Calculate the new stack slot for the return address.
2599   int NewReturnAddrFI =
2600     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2601                                          false);
2602   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2603   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2604                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2605                        false, false, 0);
2606   return Chain;
2607 }
2608
2609 SDValue
2610 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2611                              SmallVectorImpl<SDValue> &InVals) const {
2612   SelectionDAG &DAG                     = CLI.DAG;
2613   SDLoc &dl                             = CLI.DL;
2614   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2615   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2616   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2617   SDValue Chain                         = CLI.Chain;
2618   SDValue Callee                        = CLI.Callee;
2619   CallingConv::ID CallConv              = CLI.CallConv;
2620   bool &isTailCall                      = CLI.IsTailCall;
2621   bool isVarArg                         = CLI.IsVarArg;
2622
2623   MachineFunction &MF = DAG.getMachineFunction();
2624   bool Is64Bit        = Subtarget->is64Bit();
2625   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2626   StructReturnType SR = callIsStructReturn(Outs);
2627   bool IsSibcall      = false;
2628
2629   if (MF.getTarget().Options.DisableTailCalls)
2630     isTailCall = false;
2631
2632   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
2633   if (IsMustTail) {
2634     // Force this to be a tail call.  The verifier rules are enough to ensure
2635     // that we can lower this successfully without moving the return address
2636     // around.
2637     isTailCall = true;
2638   } else if (isTailCall) {
2639     // Check if it's really possible to do a tail call.
2640     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2641                     isVarArg, SR != NotStructReturn,
2642                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2643                     Outs, OutVals, Ins, DAG);
2644
2645     // Sibcalls are automatically detected tailcalls which do not require
2646     // ABI changes.
2647     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2648       IsSibcall = true;
2649
2650     if (isTailCall)
2651       ++NumTailCalls;
2652   }
2653
2654   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2655          "Var args not supported with calling convention fastcc, ghc or hipe");
2656
2657   // Analyze operands of the call, assigning locations to each operand.
2658   SmallVector<CCValAssign, 16> ArgLocs;
2659   CCState CCInfo(CallConv, isVarArg, MF, MF.getTarget(),
2660                  ArgLocs, *DAG.getContext());
2661
2662   // Allocate shadow area for Win64
2663   if (IsWin64)
2664     CCInfo.AllocateStack(32, 8);
2665
2666   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2667
2668   // Get a count of how many bytes are to be pushed on the stack.
2669   unsigned NumBytes = CCInfo.getNextStackOffset();
2670   if (IsSibcall)
2671     // This is a sibcall. The memory operands are available in caller's
2672     // own caller's stack.
2673     NumBytes = 0;
2674   else if (MF.getTarget().Options.GuaranteedTailCallOpt &&
2675            IsTailCallConvention(CallConv))
2676     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2677
2678   int FPDiff = 0;
2679   if (isTailCall && !IsSibcall && !IsMustTail) {
2680     // Lower arguments at fp - stackoffset + fpdiff.
2681     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2682     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2683
2684     FPDiff = NumBytesCallerPushed - NumBytes;
2685
2686     // Set the delta of movement of the returnaddr stackslot.
2687     // But only set if delta is greater than previous delta.
2688     if (FPDiff < X86Info->getTCReturnAddrDelta())
2689       X86Info->setTCReturnAddrDelta(FPDiff);
2690   }
2691
2692   unsigned NumBytesToPush = NumBytes;
2693   unsigned NumBytesToPop = NumBytes;
2694
2695   // If we have an inalloca argument, all stack space has already been allocated
2696   // for us and be right at the top of the stack.  We don't support multiple
2697   // arguments passed in memory when using inalloca.
2698   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2699     NumBytesToPush = 0;
2700     if (!ArgLocs.back().isMemLoc())
2701       report_fatal_error("cannot use inalloca attribute on a register "
2702                          "parameter");
2703     if (ArgLocs.back().getLocMemOffset() != 0)
2704       report_fatal_error("any parameter with the inalloca attribute must be "
2705                          "the only memory argument");
2706   }
2707
2708   if (!IsSibcall)
2709     Chain = DAG.getCALLSEQ_START(
2710         Chain, DAG.getIntPtrConstant(NumBytesToPush, true), dl);
2711
2712   SDValue RetAddrFrIdx;
2713   // Load return address for tail calls.
2714   if (isTailCall && FPDiff)
2715     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2716                                     Is64Bit, FPDiff, dl);
2717
2718   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2719   SmallVector<SDValue, 8> MemOpChains;
2720   SDValue StackPtr;
2721
2722   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2723   // of tail call optimization arguments are handle later.
2724   const X86RegisterInfo *RegInfo =
2725     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
2726   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2727     // Skip inalloca arguments, they have already been written.
2728     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2729     if (Flags.isInAlloca())
2730       continue;
2731
2732     CCValAssign &VA = ArgLocs[i];
2733     EVT RegVT = VA.getLocVT();
2734     SDValue Arg = OutVals[i];
2735     bool isByVal = Flags.isByVal();
2736
2737     // Promote the value if needed.
2738     switch (VA.getLocInfo()) {
2739     default: llvm_unreachable("Unknown loc info!");
2740     case CCValAssign::Full: break;
2741     case CCValAssign::SExt:
2742       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2743       break;
2744     case CCValAssign::ZExt:
2745       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2746       break;
2747     case CCValAssign::AExt:
2748       if (RegVT.is128BitVector()) {
2749         // Special case: passing MMX values in XMM registers.
2750         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2751         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2752         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2753       } else
2754         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2755       break;
2756     case CCValAssign::BCvt:
2757       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2758       break;
2759     case CCValAssign::Indirect: {
2760       // Store the argument.
2761       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2762       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2763       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2764                            MachinePointerInfo::getFixedStack(FI),
2765                            false, false, 0);
2766       Arg = SpillSlot;
2767       break;
2768     }
2769     }
2770
2771     if (VA.isRegLoc()) {
2772       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2773       if (isVarArg && IsWin64) {
2774         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2775         // shadow reg if callee is a varargs function.
2776         unsigned ShadowReg = 0;
2777         switch (VA.getLocReg()) {
2778         case X86::XMM0: ShadowReg = X86::RCX; break;
2779         case X86::XMM1: ShadowReg = X86::RDX; break;
2780         case X86::XMM2: ShadowReg = X86::R8; break;
2781         case X86::XMM3: ShadowReg = X86::R9; break;
2782         }
2783         if (ShadowReg)
2784           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2785       }
2786     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2787       assert(VA.isMemLoc());
2788       if (!StackPtr.getNode())
2789         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2790                                       getPointerTy());
2791       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2792                                              dl, DAG, VA, Flags));
2793     }
2794   }
2795
2796   if (!MemOpChains.empty())
2797     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
2798
2799   if (Subtarget->isPICStyleGOT()) {
2800     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2801     // GOT pointer.
2802     if (!isTailCall) {
2803       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2804                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2805     } else {
2806       // If we are tail calling and generating PIC/GOT style code load the
2807       // address of the callee into ECX. The value in ecx is used as target of
2808       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2809       // for tail calls on PIC/GOT architectures. Normally we would just put the
2810       // address of GOT into ebx and then call target@PLT. But for tail calls
2811       // ebx would be restored (since ebx is callee saved) before jumping to the
2812       // target@PLT.
2813
2814       // Note: The actual moving to ECX is done further down.
2815       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2816       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2817           !G->getGlobal()->hasProtectedVisibility())
2818         Callee = LowerGlobalAddress(Callee, DAG);
2819       else if (isa<ExternalSymbolSDNode>(Callee))
2820         Callee = LowerExternalSymbol(Callee, DAG);
2821     }
2822   }
2823
2824   if (Is64Bit && isVarArg && !IsWin64) {
2825     // From AMD64 ABI document:
2826     // For calls that may call functions that use varargs or stdargs
2827     // (prototype-less calls or calls to functions containing ellipsis (...) in
2828     // the declaration) %al is used as hidden argument to specify the number
2829     // of SSE registers used. The contents of %al do not need to match exactly
2830     // the number of registers, but must be an ubound on the number of SSE
2831     // registers used and is in the range 0 - 8 inclusive.
2832
2833     // Count the number of XMM registers allocated.
2834     static const MCPhysReg XMMArgRegs[] = {
2835       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2836       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2837     };
2838     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2839     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2840            && "SSE registers cannot be used when SSE is disabled");
2841
2842     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2843                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2844   }
2845
2846   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
2847   // don't need this because the eligibility check rejects calls that require
2848   // shuffling arguments passed in memory.
2849   if (!IsSibcall && isTailCall) {
2850     // Force all the incoming stack arguments to be loaded from the stack
2851     // before any new outgoing arguments are stored to the stack, because the
2852     // outgoing stack slots may alias the incoming argument stack slots, and
2853     // the alias isn't otherwise explicit. This is slightly more conservative
2854     // than necessary, because it means that each store effectively depends
2855     // on every argument instead of just those arguments it would clobber.
2856     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2857
2858     SmallVector<SDValue, 8> MemOpChains2;
2859     SDValue FIN;
2860     int FI = 0;
2861     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2862       CCValAssign &VA = ArgLocs[i];
2863       if (VA.isRegLoc())
2864         continue;
2865       assert(VA.isMemLoc());
2866       SDValue Arg = OutVals[i];
2867       ISD::ArgFlagsTy Flags = Outs[i].Flags;
2868       // Skip inalloca arguments.  They don't require any work.
2869       if (Flags.isInAlloca())
2870         continue;
2871       // Create frame index.
2872       int32_t Offset = VA.getLocMemOffset()+FPDiff;
2873       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2874       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2875       FIN = DAG.getFrameIndex(FI, getPointerTy());
2876
2877       if (Flags.isByVal()) {
2878         // Copy relative to framepointer.
2879         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2880         if (!StackPtr.getNode())
2881           StackPtr = DAG.getCopyFromReg(Chain, dl,
2882                                         RegInfo->getStackRegister(),
2883                                         getPointerTy());
2884         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2885
2886         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2887                                                          ArgChain,
2888                                                          Flags, DAG, dl));
2889       } else {
2890         // Store relative to framepointer.
2891         MemOpChains2.push_back(
2892           DAG.getStore(ArgChain, dl, Arg, FIN,
2893                        MachinePointerInfo::getFixedStack(FI),
2894                        false, false, 0));
2895       }
2896     }
2897
2898     if (!MemOpChains2.empty())
2899       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
2900
2901     // Store the return address to the appropriate stack slot.
2902     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2903                                      getPointerTy(), RegInfo->getSlotSize(),
2904                                      FPDiff, dl);
2905   }
2906
2907   // Build a sequence of copy-to-reg nodes chained together with token chain
2908   // and flag operands which copy the outgoing args into registers.
2909   SDValue InFlag;
2910   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2911     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2912                              RegsToPass[i].second, InFlag);
2913     InFlag = Chain.getValue(1);
2914   }
2915
2916   if (DAG.getTarget().getCodeModel() == CodeModel::Large) {
2917     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2918     // In the 64-bit large code model, we have to make all calls
2919     // through a register, since the call instruction's 32-bit
2920     // pc-relative offset may not be large enough to hold the whole
2921     // address.
2922   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2923     // If the callee is a GlobalAddress node (quite common, every direct call
2924     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2925     // it.
2926
2927     // We should use extra load for direct calls to dllimported functions in
2928     // non-JIT mode.
2929     const GlobalValue *GV = G->getGlobal();
2930     if (!GV->hasDLLImportStorageClass()) {
2931       unsigned char OpFlags = 0;
2932       bool ExtraLoad = false;
2933       unsigned WrapperKind = ISD::DELETED_NODE;
2934
2935       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2936       // external symbols most go through the PLT in PIC mode.  If the symbol
2937       // has hidden or protected visibility, or if it is static or local, then
2938       // we don't need to use the PLT - we can directly call it.
2939       if (Subtarget->isTargetELF() &&
2940           DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
2941           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2942         OpFlags = X86II::MO_PLT;
2943       } else if (Subtarget->isPICStyleStubAny() &&
2944                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2945                  (!Subtarget->getTargetTriple().isMacOSX() ||
2946                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2947         // PC-relative references to external symbols should go through $stub,
2948         // unless we're building with the leopard linker or later, which
2949         // automatically synthesizes these stubs.
2950         OpFlags = X86II::MO_DARWIN_STUB;
2951       } else if (Subtarget->isPICStyleRIPRel() &&
2952                  isa<Function>(GV) &&
2953                  cast<Function>(GV)->getAttributes().
2954                    hasAttribute(AttributeSet::FunctionIndex,
2955                                 Attribute::NonLazyBind)) {
2956         // If the function is marked as non-lazy, generate an indirect call
2957         // which loads from the GOT directly. This avoids runtime overhead
2958         // at the cost of eager binding (and one extra byte of encoding).
2959         OpFlags = X86II::MO_GOTPCREL;
2960         WrapperKind = X86ISD::WrapperRIP;
2961         ExtraLoad = true;
2962       }
2963
2964       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2965                                           G->getOffset(), OpFlags);
2966
2967       // Add a wrapper if needed.
2968       if (WrapperKind != ISD::DELETED_NODE)
2969         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2970       // Add extra indirection if needed.
2971       if (ExtraLoad)
2972         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2973                              MachinePointerInfo::getGOT(),
2974                              false, false, false, 0);
2975     }
2976   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2977     unsigned char OpFlags = 0;
2978
2979     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2980     // external symbols should go through the PLT.
2981     if (Subtarget->isTargetELF() &&
2982         DAG.getTarget().getRelocationModel() == Reloc::PIC_) {
2983       OpFlags = X86II::MO_PLT;
2984     } else if (Subtarget->isPICStyleStubAny() &&
2985                (!Subtarget->getTargetTriple().isMacOSX() ||
2986                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2987       // PC-relative references to external symbols should go through $stub,
2988       // unless we're building with the leopard linker or later, which
2989       // automatically synthesizes these stubs.
2990       OpFlags = X86II::MO_DARWIN_STUB;
2991     }
2992
2993     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2994                                          OpFlags);
2995   }
2996
2997   // Returns a chain & a flag for retval copy to use.
2998   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2999   SmallVector<SDValue, 8> Ops;
3000
3001   if (!IsSibcall && isTailCall) {
3002     Chain = DAG.getCALLSEQ_END(Chain,
3003                                DAG.getIntPtrConstant(NumBytesToPop, true),
3004                                DAG.getIntPtrConstant(0, true), InFlag, dl);
3005     InFlag = Chain.getValue(1);
3006   }
3007
3008   Ops.push_back(Chain);
3009   Ops.push_back(Callee);
3010
3011   if (isTailCall)
3012     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
3013
3014   // Add argument registers to the end of the list so that they are known live
3015   // into the call.
3016   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3017     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3018                                   RegsToPass[i].second.getValueType()));
3019
3020   // Add a register mask operand representing the call-preserved registers.
3021   const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
3022   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3023   assert(Mask && "Missing call preserved mask for calling convention");
3024   Ops.push_back(DAG.getRegisterMask(Mask));
3025
3026   if (InFlag.getNode())
3027     Ops.push_back(InFlag);
3028
3029   if (isTailCall) {
3030     // We used to do:
3031     //// If this is the first return lowered for this function, add the regs
3032     //// to the liveout set for the function.
3033     // This isn't right, although it's probably harmless on x86; liveouts
3034     // should be computed from returns not tail calls.  Consider a void
3035     // function making a tail call to a function returning int.
3036     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
3037   }
3038
3039   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
3040   InFlag = Chain.getValue(1);
3041
3042   // Create the CALLSEQ_END node.
3043   unsigned NumBytesForCalleeToPop;
3044   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
3045                        DAG.getTarget().Options.GuaranteedTailCallOpt))
3046     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
3047   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
3048            !Subtarget->getTargetTriple().isOSMSVCRT() &&
3049            SR == StackStructReturn)
3050     // If this is a call to a struct-return function, the callee
3051     // pops the hidden struct pointer, so we have to push it back.
3052     // This is common for Darwin/X86, Linux & Mingw32 targets.
3053     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
3054     NumBytesForCalleeToPop = 4;
3055   else
3056     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
3057
3058   // Returns a flag for retval copy to use.
3059   if (!IsSibcall) {
3060     Chain = DAG.getCALLSEQ_END(Chain,
3061                                DAG.getIntPtrConstant(NumBytesToPop, true),
3062                                DAG.getIntPtrConstant(NumBytesForCalleeToPop,
3063                                                      true),
3064                                InFlag, dl);
3065     InFlag = Chain.getValue(1);
3066   }
3067
3068   // Handle result values, copying them out of physregs into vregs that we
3069   // return.
3070   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3071                          Ins, dl, DAG, InVals);
3072 }
3073
3074 //===----------------------------------------------------------------------===//
3075 //                Fast Calling Convention (tail call) implementation
3076 //===----------------------------------------------------------------------===//
3077
3078 //  Like std call, callee cleans arguments, convention except that ECX is
3079 //  reserved for storing the tail called function address. Only 2 registers are
3080 //  free for argument passing (inreg). Tail call optimization is performed
3081 //  provided:
3082 //                * tailcallopt is enabled
3083 //                * caller/callee are fastcc
3084 //  On X86_64 architecture with GOT-style position independent code only local
3085 //  (within module) calls are supported at the moment.
3086 //  To keep the stack aligned according to platform abi the function
3087 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3088 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3089 //  If a tail called function callee has more arguments than the caller the
3090 //  caller needs to make sure that there is room to move the RETADDR to. This is
3091 //  achieved by reserving an area the size of the argument delta right after the
3092 //  original RETADDR, but before the saved framepointer or the spilled registers
3093 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3094 //  stack layout:
3095 //    arg1
3096 //    arg2
3097 //    RETADDR
3098 //    [ new RETADDR
3099 //      move area ]
3100 //    (possible EBP)
3101 //    ESI
3102 //    EDI
3103 //    local1 ..
3104
3105 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
3106 /// for a 16 byte align requirement.
3107 unsigned
3108 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3109                                                SelectionDAG& DAG) const {
3110   MachineFunction &MF = DAG.getMachineFunction();
3111   const TargetMachine &TM = MF.getTarget();
3112   const X86RegisterInfo *RegInfo =
3113     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
3114   const TargetFrameLowering &TFI = *TM.getFrameLowering();
3115   unsigned StackAlignment = TFI.getStackAlignment();
3116   uint64_t AlignMask = StackAlignment - 1;
3117   int64_t Offset = StackSize;
3118   unsigned SlotSize = RegInfo->getSlotSize();
3119   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3120     // Number smaller than 12 so just add the difference.
3121     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3122   } else {
3123     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3124     Offset = ((~AlignMask) & Offset) + StackAlignment +
3125       (StackAlignment-SlotSize);
3126   }
3127   return Offset;
3128 }
3129
3130 /// MatchingStackOffset - Return true if the given stack call argument is
3131 /// already available in the same position (relatively) of the caller's
3132 /// incoming argument stack.
3133 static
3134 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3135                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3136                          const X86InstrInfo *TII) {
3137   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3138   int FI = INT_MAX;
3139   if (Arg.getOpcode() == ISD::CopyFromReg) {
3140     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3141     if (!TargetRegisterInfo::isVirtualRegister(VR))
3142       return false;
3143     MachineInstr *Def = MRI->getVRegDef(VR);
3144     if (!Def)
3145       return false;
3146     if (!Flags.isByVal()) {
3147       if (!TII->isLoadFromStackSlot(Def, FI))
3148         return false;
3149     } else {
3150       unsigned Opcode = Def->getOpcode();
3151       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3152           Def->getOperand(1).isFI()) {
3153         FI = Def->getOperand(1).getIndex();
3154         Bytes = Flags.getByValSize();
3155       } else
3156         return false;
3157     }
3158   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3159     if (Flags.isByVal())
3160       // ByVal argument is passed in as a pointer but it's now being
3161       // dereferenced. e.g.
3162       // define @foo(%struct.X* %A) {
3163       //   tail call @bar(%struct.X* byval %A)
3164       // }
3165       return false;
3166     SDValue Ptr = Ld->getBasePtr();
3167     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3168     if (!FINode)
3169       return false;
3170     FI = FINode->getIndex();
3171   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3172     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3173     FI = FINode->getIndex();
3174     Bytes = Flags.getByValSize();
3175   } else
3176     return false;
3177
3178   assert(FI != INT_MAX);
3179   if (!MFI->isFixedObjectIndex(FI))
3180     return false;
3181   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3182 }
3183
3184 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3185 /// for tail call optimization. Targets which want to do tail call
3186 /// optimization should implement this function.
3187 bool
3188 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3189                                                      CallingConv::ID CalleeCC,
3190                                                      bool isVarArg,
3191                                                      bool isCalleeStructRet,
3192                                                      bool isCallerStructRet,
3193                                                      Type *RetTy,
3194                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3195                                     const SmallVectorImpl<SDValue> &OutVals,
3196                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3197                                                      SelectionDAG &DAG) const {
3198   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3199     return false;
3200
3201   // If -tailcallopt is specified, make fastcc functions tail-callable.
3202   const MachineFunction &MF = DAG.getMachineFunction();
3203   const Function *CallerF = MF.getFunction();
3204
3205   // If the function return type is x86_fp80 and the callee return type is not,
3206   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3207   // perform a tailcall optimization here.
3208   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3209     return false;
3210
3211   CallingConv::ID CallerCC = CallerF->getCallingConv();
3212   bool CCMatch = CallerCC == CalleeCC;
3213   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3214   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3215
3216   if (DAG.getTarget().Options.GuaranteedTailCallOpt) {
3217     if (IsTailCallConvention(CalleeCC) && CCMatch)
3218       return true;
3219     return false;
3220   }
3221
3222   // Look for obvious safe cases to perform tail call optimization that do not
3223   // require ABI changes. This is what gcc calls sibcall.
3224
3225   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3226   // emit a special epilogue.
3227   const X86RegisterInfo *RegInfo =
3228     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
3229   if (RegInfo->needsStackRealignment(MF))
3230     return false;
3231
3232   // Also avoid sibcall optimization if either caller or callee uses struct
3233   // return semantics.
3234   if (isCalleeStructRet || isCallerStructRet)
3235     return false;
3236
3237   // An stdcall/thiscall caller is expected to clean up its arguments; the
3238   // callee isn't going to do that.
3239   // FIXME: this is more restrictive than needed. We could produce a tailcall
3240   // when the stack adjustment matches. For example, with a thiscall that takes
3241   // only one argument.
3242   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3243                    CallerCC == CallingConv::X86_ThisCall))
3244     return false;
3245
3246   // Do not sibcall optimize vararg calls unless all arguments are passed via
3247   // registers.
3248   if (isVarArg && !Outs.empty()) {
3249
3250     // Optimizing for varargs on Win64 is unlikely to be safe without
3251     // additional testing.
3252     if (IsCalleeWin64 || IsCallerWin64)
3253       return false;
3254
3255     SmallVector<CCValAssign, 16> ArgLocs;
3256     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3257                    DAG.getTarget(), ArgLocs, *DAG.getContext());
3258
3259     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3260     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3261       if (!ArgLocs[i].isRegLoc())
3262         return false;
3263   }
3264
3265   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3266   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3267   // this into a sibcall.
3268   bool Unused = false;
3269   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3270     if (!Ins[i].Used) {
3271       Unused = true;
3272       break;
3273     }
3274   }
3275   if (Unused) {
3276     SmallVector<CCValAssign, 16> RVLocs;
3277     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3278                    DAG.getTarget(), RVLocs, *DAG.getContext());
3279     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3280     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3281       CCValAssign &VA = RVLocs[i];
3282       if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1)
3283         return false;
3284     }
3285   }
3286
3287   // If the calling conventions do not match, then we'd better make sure the
3288   // results are returned in the same way as what the caller expects.
3289   if (!CCMatch) {
3290     SmallVector<CCValAssign, 16> RVLocs1;
3291     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3292                     DAG.getTarget(), RVLocs1, *DAG.getContext());
3293     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3294
3295     SmallVector<CCValAssign, 16> RVLocs2;
3296     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3297                     DAG.getTarget(), RVLocs2, *DAG.getContext());
3298     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3299
3300     if (RVLocs1.size() != RVLocs2.size())
3301       return false;
3302     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3303       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3304         return false;
3305       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3306         return false;
3307       if (RVLocs1[i].isRegLoc()) {
3308         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3309           return false;
3310       } else {
3311         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3312           return false;
3313       }
3314     }
3315   }
3316
3317   // If the callee takes no arguments then go on to check the results of the
3318   // call.
3319   if (!Outs.empty()) {
3320     // Check if stack adjustment is needed. For now, do not do this if any
3321     // argument is passed on the stack.
3322     SmallVector<CCValAssign, 16> ArgLocs;
3323     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3324                    DAG.getTarget(), ArgLocs, *DAG.getContext());
3325
3326     // Allocate shadow area for Win64
3327     if (IsCalleeWin64)
3328       CCInfo.AllocateStack(32, 8);
3329
3330     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3331     if (CCInfo.getNextStackOffset()) {
3332       MachineFunction &MF = DAG.getMachineFunction();
3333       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3334         return false;
3335
3336       // Check if the arguments are already laid out in the right way as
3337       // the caller's fixed stack objects.
3338       MachineFrameInfo *MFI = MF.getFrameInfo();
3339       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3340       const X86InstrInfo *TII =
3341           static_cast<const X86InstrInfo *>(DAG.getTarget().getInstrInfo());
3342       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3343         CCValAssign &VA = ArgLocs[i];
3344         SDValue Arg = OutVals[i];
3345         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3346         if (VA.getLocInfo() == CCValAssign::Indirect)
3347           return false;
3348         if (!VA.isRegLoc()) {
3349           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3350                                    MFI, MRI, TII))
3351             return false;
3352         }
3353       }
3354     }
3355
3356     // If the tailcall address may be in a register, then make sure it's
3357     // possible to register allocate for it. In 32-bit, the call address can
3358     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3359     // callee-saved registers are restored. These happen to be the same
3360     // registers used to pass 'inreg' arguments so watch out for those.
3361     if (!Subtarget->is64Bit() &&
3362         ((!isa<GlobalAddressSDNode>(Callee) &&
3363           !isa<ExternalSymbolSDNode>(Callee)) ||
3364          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3365       unsigned NumInRegs = 0;
3366       // In PIC we need an extra register to formulate the address computation
3367       // for the callee.
3368       unsigned MaxInRegs =
3369         (DAG.getTarget().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3370
3371       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3372         CCValAssign &VA = ArgLocs[i];
3373         if (!VA.isRegLoc())
3374           continue;
3375         unsigned Reg = VA.getLocReg();
3376         switch (Reg) {
3377         default: break;
3378         case X86::EAX: case X86::EDX: case X86::ECX:
3379           if (++NumInRegs == MaxInRegs)
3380             return false;
3381           break;
3382         }
3383       }
3384     }
3385   }
3386
3387   return true;
3388 }
3389
3390 FastISel *
3391 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3392                                   const TargetLibraryInfo *libInfo) const {
3393   return X86::createFastISel(funcInfo, libInfo);
3394 }
3395
3396 //===----------------------------------------------------------------------===//
3397 //                           Other Lowering Hooks
3398 //===----------------------------------------------------------------------===//
3399
3400 static bool MayFoldLoad(SDValue Op) {
3401   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3402 }
3403
3404 static bool MayFoldIntoStore(SDValue Op) {
3405   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3406 }
3407
3408 static bool isTargetShuffle(unsigned Opcode) {
3409   switch(Opcode) {
3410   default: return false;
3411   case X86ISD::PSHUFB:
3412   case X86ISD::PSHUFD:
3413   case X86ISD::PSHUFHW:
3414   case X86ISD::PSHUFLW:
3415   case X86ISD::SHUFP:
3416   case X86ISD::PALIGNR:
3417   case X86ISD::MOVLHPS:
3418   case X86ISD::MOVLHPD:
3419   case X86ISD::MOVHLPS:
3420   case X86ISD::MOVLPS:
3421   case X86ISD::MOVLPD:
3422   case X86ISD::MOVSHDUP:
3423   case X86ISD::MOVSLDUP:
3424   case X86ISD::MOVDDUP:
3425   case X86ISD::MOVSS:
3426   case X86ISD::MOVSD:
3427   case X86ISD::UNPCKL:
3428   case X86ISD::UNPCKH:
3429   case X86ISD::VPERMILP:
3430   case X86ISD::VPERM2X128:
3431   case X86ISD::VPERMI:
3432     return true;
3433   }
3434 }
3435
3436 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3437                                     SDValue V1, SelectionDAG &DAG) {
3438   switch(Opc) {
3439   default: llvm_unreachable("Unknown x86 shuffle node");
3440   case X86ISD::MOVSHDUP:
3441   case X86ISD::MOVSLDUP:
3442   case X86ISD::MOVDDUP:
3443     return DAG.getNode(Opc, dl, VT, V1);
3444   }
3445 }
3446
3447 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3448                                     SDValue V1, unsigned TargetMask,
3449                                     SelectionDAG &DAG) {
3450   switch(Opc) {
3451   default: llvm_unreachable("Unknown x86 shuffle node");
3452   case X86ISD::PSHUFD:
3453   case X86ISD::PSHUFHW:
3454   case X86ISD::PSHUFLW:
3455   case X86ISD::VPERMILP:
3456   case X86ISD::VPERMI:
3457     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3458   }
3459 }
3460
3461 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3462                                     SDValue V1, SDValue V2, unsigned TargetMask,
3463                                     SelectionDAG &DAG) {
3464   switch(Opc) {
3465   default: llvm_unreachable("Unknown x86 shuffle node");
3466   case X86ISD::PALIGNR:
3467   case X86ISD::SHUFP:
3468   case X86ISD::VPERM2X128:
3469     return DAG.getNode(Opc, dl, VT, V1, V2,
3470                        DAG.getConstant(TargetMask, MVT::i8));
3471   }
3472 }
3473
3474 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3475                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3476   switch(Opc) {
3477   default: llvm_unreachable("Unknown x86 shuffle node");
3478   case X86ISD::MOVLHPS:
3479   case X86ISD::MOVLHPD:
3480   case X86ISD::MOVHLPS:
3481   case X86ISD::MOVLPS:
3482   case X86ISD::MOVLPD:
3483   case X86ISD::MOVSS:
3484   case X86ISD::MOVSD:
3485   case X86ISD::UNPCKL:
3486   case X86ISD::UNPCKH:
3487     return DAG.getNode(Opc, dl, VT, V1, V2);
3488   }
3489 }
3490
3491 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3492   MachineFunction &MF = DAG.getMachineFunction();
3493   const X86RegisterInfo *RegInfo =
3494     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
3495   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3496   int ReturnAddrIndex = FuncInfo->getRAIndex();
3497
3498   if (ReturnAddrIndex == 0) {
3499     // Set up a frame object for the return address.
3500     unsigned SlotSize = RegInfo->getSlotSize();
3501     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3502                                                            -(int64_t)SlotSize,
3503                                                            false);
3504     FuncInfo->setRAIndex(ReturnAddrIndex);
3505   }
3506
3507   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3508 }
3509
3510 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3511                                        bool hasSymbolicDisplacement) {
3512   // Offset should fit into 32 bit immediate field.
3513   if (!isInt<32>(Offset))
3514     return false;
3515
3516   // If we don't have a symbolic displacement - we don't have any extra
3517   // restrictions.
3518   if (!hasSymbolicDisplacement)
3519     return true;
3520
3521   // FIXME: Some tweaks might be needed for medium code model.
3522   if (M != CodeModel::Small && M != CodeModel::Kernel)
3523     return false;
3524
3525   // For small code model we assume that latest object is 16MB before end of 31
3526   // bits boundary. We may also accept pretty large negative constants knowing
3527   // that all objects are in the positive half of address space.
3528   if (M == CodeModel::Small && Offset < 16*1024*1024)
3529     return true;
3530
3531   // For kernel code model we know that all object resist in the negative half
3532   // of 32bits address space. We may not accept negative offsets, since they may
3533   // be just off and we may accept pretty large positive ones.
3534   if (M == CodeModel::Kernel && Offset > 0)
3535     return true;
3536
3537   return false;
3538 }
3539
3540 /// isCalleePop - Determines whether the callee is required to pop its
3541 /// own arguments. Callee pop is necessary to support tail calls.
3542 bool X86::isCalleePop(CallingConv::ID CallingConv,
3543                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3544   if (IsVarArg)
3545     return false;
3546
3547   switch (CallingConv) {
3548   default:
3549     return false;
3550   case CallingConv::X86_StdCall:
3551     return !is64Bit;
3552   case CallingConv::X86_FastCall:
3553     return !is64Bit;
3554   case CallingConv::X86_ThisCall:
3555     return !is64Bit;
3556   case CallingConv::Fast:
3557     return TailCallOpt;
3558   case CallingConv::GHC:
3559     return TailCallOpt;
3560   case CallingConv::HiPE:
3561     return TailCallOpt;
3562   }
3563 }
3564
3565 /// \brief Return true if the condition is an unsigned comparison operation.
3566 static bool isX86CCUnsigned(unsigned X86CC) {
3567   switch (X86CC) {
3568   default: llvm_unreachable("Invalid integer condition!");
3569   case X86::COND_E:     return true;
3570   case X86::COND_G:     return false;
3571   case X86::COND_GE:    return false;
3572   case X86::COND_L:     return false;
3573   case X86::COND_LE:    return false;
3574   case X86::COND_NE:    return true;
3575   case X86::COND_B:     return true;
3576   case X86::COND_A:     return true;
3577   case X86::COND_BE:    return true;
3578   case X86::COND_AE:    return true;
3579   }
3580   llvm_unreachable("covered switch fell through?!");
3581 }
3582
3583 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3584 /// specific condition code, returning the condition code and the LHS/RHS of the
3585 /// comparison to make.
3586 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3587                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3588   if (!isFP) {
3589     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3590       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3591         // X > -1   -> X == 0, jump !sign.
3592         RHS = DAG.getConstant(0, RHS.getValueType());
3593         return X86::COND_NS;
3594       }
3595       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3596         // X < 0   -> X == 0, jump on sign.
3597         return X86::COND_S;
3598       }
3599       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3600         // X < 1   -> X <= 0
3601         RHS = DAG.getConstant(0, RHS.getValueType());
3602         return X86::COND_LE;
3603       }
3604     }
3605
3606     switch (SetCCOpcode) {
3607     default: llvm_unreachable("Invalid integer condition!");
3608     case ISD::SETEQ:  return X86::COND_E;
3609     case ISD::SETGT:  return X86::COND_G;
3610     case ISD::SETGE:  return X86::COND_GE;
3611     case ISD::SETLT:  return X86::COND_L;
3612     case ISD::SETLE:  return X86::COND_LE;
3613     case ISD::SETNE:  return X86::COND_NE;
3614     case ISD::SETULT: return X86::COND_B;
3615     case ISD::SETUGT: return X86::COND_A;
3616     case ISD::SETULE: return X86::COND_BE;
3617     case ISD::SETUGE: return X86::COND_AE;
3618     }
3619   }
3620
3621   // First determine if it is required or is profitable to flip the operands.
3622
3623   // If LHS is a foldable load, but RHS is not, flip the condition.
3624   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3625       !ISD::isNON_EXTLoad(RHS.getNode())) {
3626     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3627     std::swap(LHS, RHS);
3628   }
3629
3630   switch (SetCCOpcode) {
3631   default: break;
3632   case ISD::SETOLT:
3633   case ISD::SETOLE:
3634   case ISD::SETUGT:
3635   case ISD::SETUGE:
3636     std::swap(LHS, RHS);
3637     break;
3638   }
3639
3640   // On a floating point condition, the flags are set as follows:
3641   // ZF  PF  CF   op
3642   //  0 | 0 | 0 | X > Y
3643   //  0 | 0 | 1 | X < Y
3644   //  1 | 0 | 0 | X == Y
3645   //  1 | 1 | 1 | unordered
3646   switch (SetCCOpcode) {
3647   default: llvm_unreachable("Condcode should be pre-legalized away");
3648   case ISD::SETUEQ:
3649   case ISD::SETEQ:   return X86::COND_E;
3650   case ISD::SETOLT:              // flipped
3651   case ISD::SETOGT:
3652   case ISD::SETGT:   return X86::COND_A;
3653   case ISD::SETOLE:              // flipped
3654   case ISD::SETOGE:
3655   case ISD::SETGE:   return X86::COND_AE;
3656   case ISD::SETUGT:              // flipped
3657   case ISD::SETULT:
3658   case ISD::SETLT:   return X86::COND_B;
3659   case ISD::SETUGE:              // flipped
3660   case ISD::SETULE:
3661   case ISD::SETLE:   return X86::COND_BE;
3662   case ISD::SETONE:
3663   case ISD::SETNE:   return X86::COND_NE;
3664   case ISD::SETUO:   return X86::COND_P;
3665   case ISD::SETO:    return X86::COND_NP;
3666   case ISD::SETOEQ:
3667   case ISD::SETUNE:  return X86::COND_INVALID;
3668   }
3669 }
3670
3671 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3672 /// code. Current x86 isa includes the following FP cmov instructions:
3673 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3674 static bool hasFPCMov(unsigned X86CC) {
3675   switch (X86CC) {
3676   default:
3677     return false;
3678   case X86::COND_B:
3679   case X86::COND_BE:
3680   case X86::COND_E:
3681   case X86::COND_P:
3682   case X86::COND_A:
3683   case X86::COND_AE:
3684   case X86::COND_NE:
3685   case X86::COND_NP:
3686     return true;
3687   }
3688 }
3689
3690 /// isFPImmLegal - Returns true if the target can instruction select the
3691 /// specified FP immediate natively. If false, the legalizer will
3692 /// materialize the FP immediate as a load from a constant pool.
3693 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3694   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3695     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3696       return true;
3697   }
3698   return false;
3699 }
3700
3701 /// \brief Returns true if it is beneficial to convert a load of a constant
3702 /// to just the constant itself.
3703 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3704                                                           Type *Ty) const {
3705   assert(Ty->isIntegerTy());
3706
3707   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3708   if (BitSize == 0 || BitSize > 64)
3709     return false;
3710   return true;
3711 }
3712
3713 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3714 /// the specified range (L, H].
3715 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3716   return (Val < 0) || (Val >= Low && Val < Hi);
3717 }
3718
3719 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3720 /// specified value.
3721 static bool isUndefOrEqual(int Val, int CmpVal) {
3722   return (Val < 0 || Val == CmpVal);
3723 }
3724
3725 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3726 /// from position Pos and ending in Pos+Size, falls within the specified
3727 /// sequential range (L, L+Pos]. or is undef.
3728 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3729                                        unsigned Pos, unsigned Size, int Low) {
3730   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3731     if (!isUndefOrEqual(Mask[i], Low))
3732       return false;
3733   return true;
3734 }
3735
3736 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3737 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3738 /// the second operand.
3739 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3740   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3741     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3742   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3743     return (Mask[0] < 2 && Mask[1] < 2);
3744   return false;
3745 }
3746
3747 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3748 /// is suitable for input to PSHUFHW.
3749 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3750   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3751     return false;
3752
3753   // Lower quadword copied in order or undef.
3754   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3755     return false;
3756
3757   // Upper quadword shuffled.
3758   for (unsigned i = 4; i != 8; ++i)
3759     if (!isUndefOrInRange(Mask[i], 4, 8))
3760       return false;
3761
3762   if (VT == MVT::v16i16) {
3763     // Lower quadword copied in order or undef.
3764     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3765       return false;
3766
3767     // Upper quadword shuffled.
3768     for (unsigned i = 12; i != 16; ++i)
3769       if (!isUndefOrInRange(Mask[i], 12, 16))
3770         return false;
3771   }
3772
3773   return true;
3774 }
3775
3776 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3777 /// is suitable for input to PSHUFLW.
3778 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3779   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3780     return false;
3781
3782   // Upper quadword copied in order.
3783   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3784     return false;
3785
3786   // Lower quadword shuffled.
3787   for (unsigned i = 0; i != 4; ++i)
3788     if (!isUndefOrInRange(Mask[i], 0, 4))
3789       return false;
3790
3791   if (VT == MVT::v16i16) {
3792     // Upper quadword copied in order.
3793     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3794       return false;
3795
3796     // Lower quadword shuffled.
3797     for (unsigned i = 8; i != 12; ++i)
3798       if (!isUndefOrInRange(Mask[i], 8, 12))
3799         return false;
3800   }
3801
3802   return true;
3803 }
3804
3805 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3806 /// is suitable for input to PALIGNR.
3807 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3808                           const X86Subtarget *Subtarget) {
3809   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3810       (VT.is256BitVector() && !Subtarget->hasInt256()))
3811     return false;
3812
3813   unsigned NumElts = VT.getVectorNumElements();
3814   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3815   unsigned NumLaneElts = NumElts/NumLanes;
3816
3817   // Do not handle 64-bit element shuffles with palignr.
3818   if (NumLaneElts == 2)
3819     return false;
3820
3821   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3822     unsigned i;
3823     for (i = 0; i != NumLaneElts; ++i) {
3824       if (Mask[i+l] >= 0)
3825         break;
3826     }
3827
3828     // Lane is all undef, go to next lane
3829     if (i == NumLaneElts)
3830       continue;
3831
3832     int Start = Mask[i+l];
3833
3834     // Make sure its in this lane in one of the sources
3835     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3836         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3837       return false;
3838
3839     // If not lane 0, then we must match lane 0
3840     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3841       return false;
3842
3843     // Correct second source to be contiguous with first source
3844     if (Start >= (int)NumElts)
3845       Start -= NumElts - NumLaneElts;
3846
3847     // Make sure we're shifting in the right direction.
3848     if (Start <= (int)(i+l))
3849       return false;
3850
3851     Start -= i;
3852
3853     // Check the rest of the elements to see if they are consecutive.
3854     for (++i; i != NumLaneElts; ++i) {
3855       int Idx = Mask[i+l];
3856
3857       // Make sure its in this lane
3858       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3859           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3860         return false;
3861
3862       // If not lane 0, then we must match lane 0
3863       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3864         return false;
3865
3866       if (Idx >= (int)NumElts)
3867         Idx -= NumElts - NumLaneElts;
3868
3869       if (!isUndefOrEqual(Idx, Start+i))
3870         return false;
3871
3872     }
3873   }
3874
3875   return true;
3876 }
3877
3878 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3879 /// the two vector operands have swapped position.
3880 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3881                                      unsigned NumElems) {
3882   for (unsigned i = 0; i != NumElems; ++i) {
3883     int idx = Mask[i];
3884     if (idx < 0)
3885       continue;
3886     else if (idx < (int)NumElems)
3887       Mask[i] = idx + NumElems;
3888     else
3889       Mask[i] = idx - NumElems;
3890   }
3891 }
3892
3893 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3894 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3895 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3896 /// reverse of what x86 shuffles want.
3897 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3898
3899   unsigned NumElems = VT.getVectorNumElements();
3900   unsigned NumLanes = VT.getSizeInBits()/128;
3901   unsigned NumLaneElems = NumElems/NumLanes;
3902
3903   if (NumLaneElems != 2 && NumLaneElems != 4)
3904     return false;
3905
3906   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3907   bool symetricMaskRequired =
3908     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3909
3910   // VSHUFPSY divides the resulting vector into 4 chunks.
3911   // The sources are also splitted into 4 chunks, and each destination
3912   // chunk must come from a different source chunk.
3913   //
3914   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3915   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3916   //
3917   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3918   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3919   //
3920   // VSHUFPDY divides the resulting vector into 4 chunks.
3921   // The sources are also splitted into 4 chunks, and each destination
3922   // chunk must come from a different source chunk.
3923   //
3924   //  SRC1 =>      X3       X2       X1       X0
3925   //  SRC2 =>      Y3       Y2       Y1       Y0
3926   //
3927   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3928   //
3929   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3930   unsigned HalfLaneElems = NumLaneElems/2;
3931   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3932     for (unsigned i = 0; i != NumLaneElems; ++i) {
3933       int Idx = Mask[i+l];
3934       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3935       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3936         return false;
3937       // For VSHUFPSY, the mask of the second half must be the same as the
3938       // first but with the appropriate offsets. This works in the same way as
3939       // VPERMILPS works with masks.
3940       if (!symetricMaskRequired || Idx < 0)
3941         continue;
3942       if (MaskVal[i] < 0) {
3943         MaskVal[i] = Idx - l;
3944         continue;
3945       }
3946       if ((signed)(Idx - l) != MaskVal[i])
3947         return false;
3948     }
3949   }
3950
3951   return true;
3952 }
3953
3954 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3955 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3956 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3957   if (!VT.is128BitVector())
3958     return false;
3959
3960   unsigned NumElems = VT.getVectorNumElements();
3961
3962   if (NumElems != 4)
3963     return false;
3964
3965   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3966   return isUndefOrEqual(Mask[0], 6) &&
3967          isUndefOrEqual(Mask[1], 7) &&
3968          isUndefOrEqual(Mask[2], 2) &&
3969          isUndefOrEqual(Mask[3], 3);
3970 }
3971
3972 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3973 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3974 /// <2, 3, 2, 3>
3975 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3976   if (!VT.is128BitVector())
3977     return false;
3978
3979   unsigned NumElems = VT.getVectorNumElements();
3980
3981   if (NumElems != 4)
3982     return false;
3983
3984   return isUndefOrEqual(Mask[0], 2) &&
3985          isUndefOrEqual(Mask[1], 3) &&
3986          isUndefOrEqual(Mask[2], 2) &&
3987          isUndefOrEqual(Mask[3], 3);
3988 }
3989
3990 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3991 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3992 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3993   if (!VT.is128BitVector())
3994     return false;
3995
3996   unsigned NumElems = VT.getVectorNumElements();
3997
3998   if (NumElems != 2 && NumElems != 4)
3999     return false;
4000
4001   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4002     if (!isUndefOrEqual(Mask[i], i + NumElems))
4003       return false;
4004
4005   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4006     if (!isUndefOrEqual(Mask[i], i))
4007       return false;
4008
4009   return true;
4010 }
4011
4012 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
4013 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
4014 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
4015   if (!VT.is128BitVector())
4016     return false;
4017
4018   unsigned NumElems = VT.getVectorNumElements();
4019
4020   if (NumElems != 2 && NumElems != 4)
4021     return false;
4022
4023   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4024     if (!isUndefOrEqual(Mask[i], i))
4025       return false;
4026
4027   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4028     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
4029       return false;
4030
4031   return true;
4032 }
4033
4034 /// isINSERTPSMask - Return true if the specified VECTOR_SHUFFLE operand
4035 /// specifies a shuffle of elements that is suitable for input to INSERTPS.
4036 /// i. e: If all but one element come from the same vector.
4037 static bool isINSERTPSMask(ArrayRef<int> Mask, MVT VT) {
4038   // TODO: Deal with AVX's VINSERTPS
4039   if (!VT.is128BitVector() || (VT != MVT::v4f32 && VT != MVT::v4i32))
4040     return false;
4041
4042   unsigned CorrectPosV1 = 0;
4043   unsigned CorrectPosV2 = 0;
4044   for (int i = 0, e = (int)VT.getVectorNumElements(); i != e; ++i) {
4045     if (Mask[i] == -1) {
4046       ++CorrectPosV1;
4047       ++CorrectPosV2;
4048       continue;
4049     }
4050
4051     if (Mask[i] == i)
4052       ++CorrectPosV1;
4053     else if (Mask[i] == i + 4)
4054       ++CorrectPosV2;
4055   }
4056
4057   if (CorrectPosV1 == 3 || CorrectPosV2 == 3)
4058     // We have 3 elements (undefs count as elements from any vector) from one
4059     // vector, and one from another.
4060     return true;
4061
4062   return false;
4063 }
4064
4065 //
4066 // Some special combinations that can be optimized.
4067 //
4068 static
4069 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
4070                                SelectionDAG &DAG) {
4071   MVT VT = SVOp->getSimpleValueType(0);
4072   SDLoc dl(SVOp);
4073
4074   if (VT != MVT::v8i32 && VT != MVT::v8f32)
4075     return SDValue();
4076
4077   ArrayRef<int> Mask = SVOp->getMask();
4078
4079   // These are the special masks that may be optimized.
4080   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
4081   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
4082   bool MatchEvenMask = true;
4083   bool MatchOddMask  = true;
4084   for (int i=0; i<8; ++i) {
4085     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
4086       MatchEvenMask = false;
4087     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
4088       MatchOddMask = false;
4089   }
4090
4091   if (!MatchEvenMask && !MatchOddMask)
4092     return SDValue();
4093
4094   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
4095
4096   SDValue Op0 = SVOp->getOperand(0);
4097   SDValue Op1 = SVOp->getOperand(1);
4098
4099   if (MatchEvenMask) {
4100     // Shift the second operand right to 32 bits.
4101     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
4102     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
4103   } else {
4104     // Shift the first operand left to 32 bits.
4105     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
4106     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
4107   }
4108   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
4109   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
4110 }
4111
4112 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
4113 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
4114 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
4115                          bool HasInt256, bool V2IsSplat = false) {
4116
4117   assert(VT.getSizeInBits() >= 128 &&
4118          "Unsupported vector type for unpckl");
4119
4120   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4121   unsigned NumLanes;
4122   unsigned NumOf256BitLanes;
4123   unsigned NumElts = VT.getVectorNumElements();
4124   if (VT.is256BitVector()) {
4125     if (NumElts != 4 && NumElts != 8 &&
4126         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4127     return false;
4128     NumLanes = 2;
4129     NumOf256BitLanes = 1;
4130   } else if (VT.is512BitVector()) {
4131     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4132            "Unsupported vector type for unpckh");
4133     NumLanes = 2;
4134     NumOf256BitLanes = 2;
4135   } else {
4136     NumLanes = 1;
4137     NumOf256BitLanes = 1;
4138   }
4139
4140   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4141   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4142
4143   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4144     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4145       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4146         int BitI  = Mask[l256*NumEltsInStride+l+i];
4147         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4148         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4149           return false;
4150         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4151           return false;
4152         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4153           return false;
4154       }
4155     }
4156   }
4157   return true;
4158 }
4159
4160 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
4161 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
4162 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
4163                          bool HasInt256, bool V2IsSplat = false) {
4164   assert(VT.getSizeInBits() >= 128 &&
4165          "Unsupported vector type for unpckh");
4166
4167   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4168   unsigned NumLanes;
4169   unsigned NumOf256BitLanes;
4170   unsigned NumElts = VT.getVectorNumElements();
4171   if (VT.is256BitVector()) {
4172     if (NumElts != 4 && NumElts != 8 &&
4173         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4174     return false;
4175     NumLanes = 2;
4176     NumOf256BitLanes = 1;
4177   } else if (VT.is512BitVector()) {
4178     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4179            "Unsupported vector type for unpckh");
4180     NumLanes = 2;
4181     NumOf256BitLanes = 2;
4182   } else {
4183     NumLanes = 1;
4184     NumOf256BitLanes = 1;
4185   }
4186
4187   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4188   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4189
4190   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4191     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4192       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4193         int BitI  = Mask[l256*NumEltsInStride+l+i];
4194         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4195         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4196           return false;
4197         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4198           return false;
4199         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4200           return false;
4201       }
4202     }
4203   }
4204   return true;
4205 }
4206
4207 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4208 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4209 /// <0, 0, 1, 1>
4210 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4211   unsigned NumElts = VT.getVectorNumElements();
4212   bool Is256BitVec = VT.is256BitVector();
4213
4214   if (VT.is512BitVector())
4215     return false;
4216   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4217          "Unsupported vector type for unpckh");
4218
4219   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4220       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4221     return false;
4222
4223   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4224   // FIXME: Need a better way to get rid of this, there's no latency difference
4225   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4226   // the former later. We should also remove the "_undef" special mask.
4227   if (NumElts == 4 && Is256BitVec)
4228     return false;
4229
4230   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4231   // independently on 128-bit lanes.
4232   unsigned NumLanes = VT.getSizeInBits()/128;
4233   unsigned NumLaneElts = NumElts/NumLanes;
4234
4235   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4236     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4237       int BitI  = Mask[l+i];
4238       int BitI1 = Mask[l+i+1];
4239
4240       if (!isUndefOrEqual(BitI, j))
4241         return false;
4242       if (!isUndefOrEqual(BitI1, j))
4243         return false;
4244     }
4245   }
4246
4247   return true;
4248 }
4249
4250 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4251 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4252 /// <2, 2, 3, 3>
4253 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4254   unsigned NumElts = VT.getVectorNumElements();
4255
4256   if (VT.is512BitVector())
4257     return false;
4258
4259   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4260          "Unsupported vector type for unpckh");
4261
4262   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4263       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4264     return false;
4265
4266   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4267   // independently on 128-bit lanes.
4268   unsigned NumLanes = VT.getSizeInBits()/128;
4269   unsigned NumLaneElts = NumElts/NumLanes;
4270
4271   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4272     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4273       int BitI  = Mask[l+i];
4274       int BitI1 = Mask[l+i+1];
4275       if (!isUndefOrEqual(BitI, j))
4276         return false;
4277       if (!isUndefOrEqual(BitI1, j))
4278         return false;
4279     }
4280   }
4281   return true;
4282 }
4283
4284 // Match for INSERTI64x4 INSERTF64x4 instructions (src0[0], src1[0]) or
4285 // (src1[0], src0[1]), manipulation with 256-bit sub-vectors
4286 static bool isINSERT64x4Mask(ArrayRef<int> Mask, MVT VT, unsigned int *Imm) {
4287   if (!VT.is512BitVector())
4288     return false;
4289
4290   unsigned NumElts = VT.getVectorNumElements();
4291   unsigned HalfSize = NumElts/2;
4292   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, 0)) {
4293     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, NumElts)) {
4294       *Imm = 1;
4295       return true;
4296     }
4297   }
4298   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, NumElts)) {
4299     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, HalfSize)) {
4300       *Imm = 0;
4301       return true;
4302     }
4303   }
4304   return false;
4305 }
4306
4307 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4308 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4309 /// MOVSD, and MOVD, i.e. setting the lowest element.
4310 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4311   if (VT.getVectorElementType().getSizeInBits() < 32)
4312     return false;
4313   if (!VT.is128BitVector())
4314     return false;
4315
4316   unsigned NumElts = VT.getVectorNumElements();
4317
4318   if (!isUndefOrEqual(Mask[0], NumElts))
4319     return false;
4320
4321   for (unsigned i = 1; i != NumElts; ++i)
4322     if (!isUndefOrEqual(Mask[i], i))
4323       return false;
4324
4325   return true;
4326 }
4327
4328 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4329 /// as permutations between 128-bit chunks or halves. As an example: this
4330 /// shuffle bellow:
4331 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4332 /// The first half comes from the second half of V1 and the second half from the
4333 /// the second half of V2.
4334 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4335   if (!HasFp256 || !VT.is256BitVector())
4336     return false;
4337
4338   // The shuffle result is divided into half A and half B. In total the two
4339   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4340   // B must come from C, D, E or F.
4341   unsigned HalfSize = VT.getVectorNumElements()/2;
4342   bool MatchA = false, MatchB = false;
4343
4344   // Check if A comes from one of C, D, E, F.
4345   for (unsigned Half = 0; Half != 4; ++Half) {
4346     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4347       MatchA = true;
4348       break;
4349     }
4350   }
4351
4352   // Check if B comes from one of C, D, E, F.
4353   for (unsigned Half = 0; Half != 4; ++Half) {
4354     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4355       MatchB = true;
4356       break;
4357     }
4358   }
4359
4360   return MatchA && MatchB;
4361 }
4362
4363 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4364 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4365 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4366   MVT VT = SVOp->getSimpleValueType(0);
4367
4368   unsigned HalfSize = VT.getVectorNumElements()/2;
4369
4370   unsigned FstHalf = 0, SndHalf = 0;
4371   for (unsigned i = 0; i < HalfSize; ++i) {
4372     if (SVOp->getMaskElt(i) > 0) {
4373       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4374       break;
4375     }
4376   }
4377   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4378     if (SVOp->getMaskElt(i) > 0) {
4379       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4380       break;
4381     }
4382   }
4383
4384   return (FstHalf | (SndHalf << 4));
4385 }
4386
4387 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4388 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4389   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4390   if (EltSize < 32)
4391     return false;
4392
4393   unsigned NumElts = VT.getVectorNumElements();
4394   Imm8 = 0;
4395   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4396     for (unsigned i = 0; i != NumElts; ++i) {
4397       if (Mask[i] < 0)
4398         continue;
4399       Imm8 |= Mask[i] << (i*2);
4400     }
4401     return true;
4402   }
4403
4404   unsigned LaneSize = 4;
4405   SmallVector<int, 4> MaskVal(LaneSize, -1);
4406
4407   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4408     for (unsigned i = 0; i != LaneSize; ++i) {
4409       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4410         return false;
4411       if (Mask[i+l] < 0)
4412         continue;
4413       if (MaskVal[i] < 0) {
4414         MaskVal[i] = Mask[i+l] - l;
4415         Imm8 |= MaskVal[i] << (i*2);
4416         continue;
4417       }
4418       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4419         return false;
4420     }
4421   }
4422   return true;
4423 }
4424
4425 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4426 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4427 /// Note that VPERMIL mask matching is different depending whether theunderlying
4428 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4429 /// to the same elements of the low, but to the higher half of the source.
4430 /// In VPERMILPD the two lanes could be shuffled independently of each other
4431 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4432 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4433   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4434   if (VT.getSizeInBits() < 256 || EltSize < 32)
4435     return false;
4436   bool symetricMaskRequired = (EltSize == 32);
4437   unsigned NumElts = VT.getVectorNumElements();
4438
4439   unsigned NumLanes = VT.getSizeInBits()/128;
4440   unsigned LaneSize = NumElts/NumLanes;
4441   // 2 or 4 elements in one lane
4442
4443   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4444   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4445     for (unsigned i = 0; i != LaneSize; ++i) {
4446       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4447         return false;
4448       if (symetricMaskRequired) {
4449         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4450           ExpectedMaskVal[i] = Mask[i+l] - l;
4451           continue;
4452         }
4453         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4454           return false;
4455       }
4456     }
4457   }
4458   return true;
4459 }
4460
4461 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4462 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4463 /// element of vector 2 and the other elements to come from vector 1 in order.
4464 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4465                                bool V2IsSplat = false, bool V2IsUndef = false) {
4466   if (!VT.is128BitVector())
4467     return false;
4468
4469   unsigned NumOps = VT.getVectorNumElements();
4470   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4471     return false;
4472
4473   if (!isUndefOrEqual(Mask[0], 0))
4474     return false;
4475
4476   for (unsigned i = 1; i != NumOps; ++i)
4477     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4478           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4479           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4480       return false;
4481
4482   return true;
4483 }
4484
4485 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4486 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4487 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4488 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4489                            const X86Subtarget *Subtarget) {
4490   if (!Subtarget->hasSSE3())
4491     return false;
4492
4493   unsigned NumElems = VT.getVectorNumElements();
4494
4495   if ((VT.is128BitVector() && NumElems != 4) ||
4496       (VT.is256BitVector() && NumElems != 8) ||
4497       (VT.is512BitVector() && NumElems != 16))
4498     return false;
4499
4500   // "i+1" is the value the indexed mask element must have
4501   for (unsigned i = 0; i != NumElems; i += 2)
4502     if (!isUndefOrEqual(Mask[i], i+1) ||
4503         !isUndefOrEqual(Mask[i+1], i+1))
4504       return false;
4505
4506   return true;
4507 }
4508
4509 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4510 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4511 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4512 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4513                            const X86Subtarget *Subtarget) {
4514   if (!Subtarget->hasSSE3())
4515     return false;
4516
4517   unsigned NumElems = VT.getVectorNumElements();
4518
4519   if ((VT.is128BitVector() && NumElems != 4) ||
4520       (VT.is256BitVector() && NumElems != 8) ||
4521       (VT.is512BitVector() && NumElems != 16))
4522     return false;
4523
4524   // "i" is the value the indexed mask element must have
4525   for (unsigned i = 0; i != NumElems; i += 2)
4526     if (!isUndefOrEqual(Mask[i], i) ||
4527         !isUndefOrEqual(Mask[i+1], i))
4528       return false;
4529
4530   return true;
4531 }
4532
4533 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4534 /// specifies a shuffle of elements that is suitable for input to 256-bit
4535 /// version of MOVDDUP.
4536 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4537   if (!HasFp256 || !VT.is256BitVector())
4538     return false;
4539
4540   unsigned NumElts = VT.getVectorNumElements();
4541   if (NumElts != 4)
4542     return false;
4543
4544   for (unsigned i = 0; i != NumElts/2; ++i)
4545     if (!isUndefOrEqual(Mask[i], 0))
4546       return false;
4547   for (unsigned i = NumElts/2; i != NumElts; ++i)
4548     if (!isUndefOrEqual(Mask[i], NumElts/2))
4549       return false;
4550   return true;
4551 }
4552
4553 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4554 /// specifies a shuffle of elements that is suitable for input to 128-bit
4555 /// version of MOVDDUP.
4556 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4557   if (!VT.is128BitVector())
4558     return false;
4559
4560   unsigned e = VT.getVectorNumElements() / 2;
4561   for (unsigned i = 0; i != e; ++i)
4562     if (!isUndefOrEqual(Mask[i], i))
4563       return false;
4564   for (unsigned i = 0; i != e; ++i)
4565     if (!isUndefOrEqual(Mask[e+i], i))
4566       return false;
4567   return true;
4568 }
4569
4570 /// isVEXTRACTIndex - Return true if the specified
4571 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4572 /// suitable for instruction that extract 128 or 256 bit vectors
4573 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4574   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4575   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4576     return false;
4577
4578   // The index should be aligned on a vecWidth-bit boundary.
4579   uint64_t Index =
4580     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4581
4582   MVT VT = N->getSimpleValueType(0);
4583   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4584   bool Result = (Index * ElSize) % vecWidth == 0;
4585
4586   return Result;
4587 }
4588
4589 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4590 /// operand specifies a subvector insert that is suitable for input to
4591 /// insertion of 128 or 256-bit subvectors
4592 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4593   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4594   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4595     return false;
4596   // The index should be aligned on a vecWidth-bit boundary.
4597   uint64_t Index =
4598     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4599
4600   MVT VT = N->getSimpleValueType(0);
4601   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4602   bool Result = (Index * ElSize) % vecWidth == 0;
4603
4604   return Result;
4605 }
4606
4607 bool X86::isVINSERT128Index(SDNode *N) {
4608   return isVINSERTIndex(N, 128);
4609 }
4610
4611 bool X86::isVINSERT256Index(SDNode *N) {
4612   return isVINSERTIndex(N, 256);
4613 }
4614
4615 bool X86::isVEXTRACT128Index(SDNode *N) {
4616   return isVEXTRACTIndex(N, 128);
4617 }
4618
4619 bool X86::isVEXTRACT256Index(SDNode *N) {
4620   return isVEXTRACTIndex(N, 256);
4621 }
4622
4623 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4624 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4625 /// Handles 128-bit and 256-bit.
4626 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4627   MVT VT = N->getSimpleValueType(0);
4628
4629   assert((VT.getSizeInBits() >= 128) &&
4630          "Unsupported vector type for PSHUF/SHUFP");
4631
4632   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4633   // independently on 128-bit lanes.
4634   unsigned NumElts = VT.getVectorNumElements();
4635   unsigned NumLanes = VT.getSizeInBits()/128;
4636   unsigned NumLaneElts = NumElts/NumLanes;
4637
4638   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4639          "Only supports 2, 4 or 8 elements per lane");
4640
4641   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4642   unsigned Mask = 0;
4643   for (unsigned i = 0; i != NumElts; ++i) {
4644     int Elt = N->getMaskElt(i);
4645     if (Elt < 0) continue;
4646     Elt &= NumLaneElts - 1;
4647     unsigned ShAmt = (i << Shift) % 8;
4648     Mask |= Elt << ShAmt;
4649   }
4650
4651   return Mask;
4652 }
4653
4654 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4655 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4656 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4657   MVT VT = N->getSimpleValueType(0);
4658
4659   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4660          "Unsupported vector type for PSHUFHW");
4661
4662   unsigned NumElts = VT.getVectorNumElements();
4663
4664   unsigned Mask = 0;
4665   for (unsigned l = 0; l != NumElts; l += 8) {
4666     // 8 nodes per lane, but we only care about the last 4.
4667     for (unsigned i = 0; i < 4; ++i) {
4668       int Elt = N->getMaskElt(l+i+4);
4669       if (Elt < 0) continue;
4670       Elt &= 0x3; // only 2-bits.
4671       Mask |= Elt << (i * 2);
4672     }
4673   }
4674
4675   return Mask;
4676 }
4677
4678 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4679 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4680 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4681   MVT VT = N->getSimpleValueType(0);
4682
4683   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4684          "Unsupported vector type for PSHUFHW");
4685
4686   unsigned NumElts = VT.getVectorNumElements();
4687
4688   unsigned Mask = 0;
4689   for (unsigned l = 0; l != NumElts; l += 8) {
4690     // 8 nodes per lane, but we only care about the first 4.
4691     for (unsigned i = 0; i < 4; ++i) {
4692       int Elt = N->getMaskElt(l+i);
4693       if (Elt < 0) continue;
4694       Elt &= 0x3; // only 2-bits
4695       Mask |= Elt << (i * 2);
4696     }
4697   }
4698
4699   return Mask;
4700 }
4701
4702 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4703 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4704 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4705   MVT VT = SVOp->getSimpleValueType(0);
4706   unsigned EltSize = VT.is512BitVector() ? 1 :
4707     VT.getVectorElementType().getSizeInBits() >> 3;
4708
4709   unsigned NumElts = VT.getVectorNumElements();
4710   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4711   unsigned NumLaneElts = NumElts/NumLanes;
4712
4713   int Val = 0;
4714   unsigned i;
4715   for (i = 0; i != NumElts; ++i) {
4716     Val = SVOp->getMaskElt(i);
4717     if (Val >= 0)
4718       break;
4719   }
4720   if (Val >= (int)NumElts)
4721     Val -= NumElts - NumLaneElts;
4722
4723   assert(Val - i > 0 && "PALIGNR imm should be positive");
4724   return (Val - i) * EltSize;
4725 }
4726
4727 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4728   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4729   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4730     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4731
4732   uint64_t Index =
4733     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4734
4735   MVT VecVT = N->getOperand(0).getSimpleValueType();
4736   MVT ElVT = VecVT.getVectorElementType();
4737
4738   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4739   return Index / NumElemsPerChunk;
4740 }
4741
4742 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4743   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4744   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4745     llvm_unreachable("Illegal insert subvector for VINSERT");
4746
4747   uint64_t Index =
4748     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4749
4750   MVT VecVT = N->getSimpleValueType(0);
4751   MVT ElVT = VecVT.getVectorElementType();
4752
4753   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4754   return Index / NumElemsPerChunk;
4755 }
4756
4757 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4758 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4759 /// and VINSERTI128 instructions.
4760 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4761   return getExtractVEXTRACTImmediate(N, 128);
4762 }
4763
4764 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4765 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4766 /// and VINSERTI64x4 instructions.
4767 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4768   return getExtractVEXTRACTImmediate(N, 256);
4769 }
4770
4771 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4772 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4773 /// and VINSERTI128 instructions.
4774 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4775   return getInsertVINSERTImmediate(N, 128);
4776 }
4777
4778 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4779 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4780 /// and VINSERTI64x4 instructions.
4781 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4782   return getInsertVINSERTImmediate(N, 256);
4783 }
4784
4785 /// isZero - Returns true if Elt is a constant integer zero
4786 static bool isZero(SDValue V) {
4787   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
4788   return C && C->isNullValue();
4789 }
4790
4791 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4792 /// constant +0.0.
4793 bool X86::isZeroNode(SDValue Elt) {
4794   if (isZero(Elt))
4795     return true;
4796   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4797     return CFP->getValueAPF().isPosZero();
4798   return false;
4799 }
4800
4801 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4802 /// match movhlps. The lower half elements should come from upper half of
4803 /// V1 (and in order), and the upper half elements should come from the upper
4804 /// half of V2 (and in order).
4805 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4806   if (!VT.is128BitVector())
4807     return false;
4808   if (VT.getVectorNumElements() != 4)
4809     return false;
4810   for (unsigned i = 0, e = 2; i != e; ++i)
4811     if (!isUndefOrEqual(Mask[i], i+2))
4812       return false;
4813   for (unsigned i = 2; i != 4; ++i)
4814     if (!isUndefOrEqual(Mask[i], i+4))
4815       return false;
4816   return true;
4817 }
4818
4819 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4820 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4821 /// required.
4822 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = nullptr) {
4823   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4824     return false;
4825   N = N->getOperand(0).getNode();
4826   if (!ISD::isNON_EXTLoad(N))
4827     return false;
4828   if (LD)
4829     *LD = cast<LoadSDNode>(N);
4830   return true;
4831 }
4832
4833 // Test whether the given value is a vector value which will be legalized
4834 // into a load.
4835 static bool WillBeConstantPoolLoad(SDNode *N) {
4836   if (N->getOpcode() != ISD::BUILD_VECTOR)
4837     return false;
4838
4839   // Check for any non-constant elements.
4840   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4841     switch (N->getOperand(i).getNode()->getOpcode()) {
4842     case ISD::UNDEF:
4843     case ISD::ConstantFP:
4844     case ISD::Constant:
4845       break;
4846     default:
4847       return false;
4848     }
4849
4850   // Vectors of all-zeros and all-ones are materialized with special
4851   // instructions rather than being loaded.
4852   return !ISD::isBuildVectorAllZeros(N) &&
4853          !ISD::isBuildVectorAllOnes(N);
4854 }
4855
4856 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4857 /// match movlp{s|d}. The lower half elements should come from lower half of
4858 /// V1 (and in order), and the upper half elements should come from the upper
4859 /// half of V2 (and in order). And since V1 will become the source of the
4860 /// MOVLP, it must be either a vector load or a scalar load to vector.
4861 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4862                                ArrayRef<int> Mask, MVT VT) {
4863   if (!VT.is128BitVector())
4864     return false;
4865
4866   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4867     return false;
4868   // Is V2 is a vector load, don't do this transformation. We will try to use
4869   // load folding shufps op.
4870   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4871     return false;
4872
4873   unsigned NumElems = VT.getVectorNumElements();
4874
4875   if (NumElems != 2 && NumElems != 4)
4876     return false;
4877   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4878     if (!isUndefOrEqual(Mask[i], i))
4879       return false;
4880   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4881     if (!isUndefOrEqual(Mask[i], i+NumElems))
4882       return false;
4883   return true;
4884 }
4885
4886 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4887 /// to an zero vector.
4888 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4889 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4890   SDValue V1 = N->getOperand(0);
4891   SDValue V2 = N->getOperand(1);
4892   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4893   for (unsigned i = 0; i != NumElems; ++i) {
4894     int Idx = N->getMaskElt(i);
4895     if (Idx >= (int)NumElems) {
4896       unsigned Opc = V2.getOpcode();
4897       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4898         continue;
4899       if (Opc != ISD::BUILD_VECTOR ||
4900           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4901         return false;
4902     } else if (Idx >= 0) {
4903       unsigned Opc = V1.getOpcode();
4904       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4905         continue;
4906       if (Opc != ISD::BUILD_VECTOR ||
4907           !X86::isZeroNode(V1.getOperand(Idx)))
4908         return false;
4909     }
4910   }
4911   return true;
4912 }
4913
4914 /// getZeroVector - Returns a vector of specified type with all zero elements.
4915 ///
4916 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4917                              SelectionDAG &DAG, SDLoc dl) {
4918   assert(VT.isVector() && "Expected a vector type");
4919
4920   // Always build SSE zero vectors as <4 x i32> bitcasted
4921   // to their dest type. This ensures they get CSE'd.
4922   SDValue Vec;
4923   if (VT.is128BitVector()) {  // SSE
4924     if (Subtarget->hasSSE2()) {  // SSE2
4925       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4926       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4927     } else { // SSE1
4928       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4929       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4930     }
4931   } else if (VT.is256BitVector()) { // AVX
4932     if (Subtarget->hasInt256()) { // AVX2
4933       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4934       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4935       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4936     } else {
4937       // 256-bit logic and arithmetic instructions in AVX are all
4938       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4939       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4940       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4941       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4942     }
4943   } else if (VT.is512BitVector()) { // AVX-512
4944       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4945       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4946                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4947       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4948   } else if (VT.getScalarType() == MVT::i1) {
4949     assert(VT.getVectorNumElements() <= 16 && "Unexpected vector type");
4950     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
4951     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
4952     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4953   } else
4954     llvm_unreachable("Unexpected vector type");
4955
4956   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4957 }
4958
4959 /// getOnesVector - Returns a vector of specified type with all bits set.
4960 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4961 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4962 /// Then bitcast to their original type, ensuring they get CSE'd.
4963 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4964                              SDLoc dl) {
4965   assert(VT.isVector() && "Expected a vector type");
4966
4967   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4968   SDValue Vec;
4969   if (VT.is256BitVector()) {
4970     if (HasInt256) { // AVX2
4971       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4972       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4973     } else { // AVX
4974       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4975       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4976     }
4977   } else if (VT.is128BitVector()) {
4978     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4979   } else
4980     llvm_unreachable("Unexpected vector type");
4981
4982   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4983 }
4984
4985 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4986 /// that point to V2 points to its first element.
4987 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4988   for (unsigned i = 0; i != NumElems; ++i) {
4989     if (Mask[i] > (int)NumElems) {
4990       Mask[i] = NumElems;
4991     }
4992   }
4993 }
4994
4995 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4996 /// operation of specified width.
4997 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4998                        SDValue V2) {
4999   unsigned NumElems = VT.getVectorNumElements();
5000   SmallVector<int, 8> Mask;
5001   Mask.push_back(NumElems);
5002   for (unsigned i = 1; i != NumElems; ++i)
5003     Mask.push_back(i);
5004   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
5005 }
5006
5007 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
5008 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
5009                           SDValue V2) {
5010   unsigned NumElems = VT.getVectorNumElements();
5011   SmallVector<int, 8> Mask;
5012   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
5013     Mask.push_back(i);
5014     Mask.push_back(i + NumElems);
5015   }
5016   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
5017 }
5018
5019 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
5020 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
5021                           SDValue V2) {
5022   unsigned NumElems = VT.getVectorNumElements();
5023   SmallVector<int, 8> Mask;
5024   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
5025     Mask.push_back(i + Half);
5026     Mask.push_back(i + NumElems + Half);
5027   }
5028   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
5029 }
5030
5031 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
5032 // a generic shuffle instruction because the target has no such instructions.
5033 // Generate shuffles which repeat i16 and i8 several times until they can be
5034 // represented by v4f32 and then be manipulated by target suported shuffles.
5035 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
5036   MVT VT = V.getSimpleValueType();
5037   int NumElems = VT.getVectorNumElements();
5038   SDLoc dl(V);
5039
5040   while (NumElems > 4) {
5041     if (EltNo < NumElems/2) {
5042       V = getUnpackl(DAG, dl, VT, V, V);
5043     } else {
5044       V = getUnpackh(DAG, dl, VT, V, V);
5045       EltNo -= NumElems/2;
5046     }
5047     NumElems >>= 1;
5048   }
5049   return V;
5050 }
5051
5052 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
5053 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
5054   MVT VT = V.getSimpleValueType();
5055   SDLoc dl(V);
5056
5057   if (VT.is128BitVector()) {
5058     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
5059     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
5060     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
5061                              &SplatMask[0]);
5062   } else if (VT.is256BitVector()) {
5063     // To use VPERMILPS to splat scalars, the second half of indicies must
5064     // refer to the higher part, which is a duplication of the lower one,
5065     // because VPERMILPS can only handle in-lane permutations.
5066     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
5067                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
5068
5069     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
5070     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
5071                              &SplatMask[0]);
5072   } else
5073     llvm_unreachable("Vector size not supported");
5074
5075   return DAG.getNode(ISD::BITCAST, dl, VT, V);
5076 }
5077
5078 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
5079 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
5080   MVT SrcVT = SV->getSimpleValueType(0);
5081   SDValue V1 = SV->getOperand(0);
5082   SDLoc dl(SV);
5083
5084   int EltNo = SV->getSplatIndex();
5085   int NumElems = SrcVT.getVectorNumElements();
5086   bool Is256BitVec = SrcVT.is256BitVector();
5087
5088   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
5089          "Unknown how to promote splat for type");
5090
5091   // Extract the 128-bit part containing the splat element and update
5092   // the splat element index when it refers to the higher register.
5093   if (Is256BitVec) {
5094     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
5095     if (EltNo >= NumElems/2)
5096       EltNo -= NumElems/2;
5097   }
5098
5099   // All i16 and i8 vector types can't be used directly by a generic shuffle
5100   // instruction because the target has no such instruction. Generate shuffles
5101   // which repeat i16 and i8 several times until they fit in i32, and then can
5102   // be manipulated by target suported shuffles.
5103   MVT EltVT = SrcVT.getVectorElementType();
5104   if (EltVT == MVT::i8 || EltVT == MVT::i16)
5105     V1 = PromoteSplati8i16(V1, DAG, EltNo);
5106
5107   // Recreate the 256-bit vector and place the same 128-bit vector
5108   // into the low and high part. This is necessary because we want
5109   // to use VPERM* to shuffle the vectors
5110   if (Is256BitVec) {
5111     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
5112   }
5113
5114   return getLegalSplat(DAG, V1, EltNo);
5115 }
5116
5117 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
5118 /// vector of zero or undef vector.  This produces a shuffle where the low
5119 /// element of V2 is swizzled into the zero/undef vector, landing at element
5120 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
5121 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
5122                                            bool IsZero,
5123                                            const X86Subtarget *Subtarget,
5124                                            SelectionDAG &DAG) {
5125   MVT VT = V2.getSimpleValueType();
5126   SDValue V1 = IsZero
5127     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
5128   unsigned NumElems = VT.getVectorNumElements();
5129   SmallVector<int, 16> MaskVec;
5130   for (unsigned i = 0; i != NumElems; ++i)
5131     // If this is the insertion idx, put the low elt of V2 here.
5132     MaskVec.push_back(i == Idx ? NumElems : i);
5133   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
5134 }
5135
5136 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
5137 /// target specific opcode. Returns true if the Mask could be calculated. Sets
5138 /// IsUnary to true if only uses one source. Note that this will set IsUnary for
5139 /// shuffles which use a single input multiple times, and in those cases it will
5140 /// adjust the mask to only have indices within that single input.
5141 static bool getTargetShuffleMask(SDNode *N, MVT VT,
5142                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
5143   unsigned NumElems = VT.getVectorNumElements();
5144   SDValue ImmN;
5145
5146   IsUnary = false;
5147   bool IsFakeUnary = false;
5148   switch(N->getOpcode()) {
5149   case X86ISD::SHUFP:
5150     ImmN = N->getOperand(N->getNumOperands()-1);
5151     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5152     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
5153     break;
5154   case X86ISD::UNPCKH:
5155     DecodeUNPCKHMask(VT, Mask);
5156     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
5157     break;
5158   case X86ISD::UNPCKL:
5159     DecodeUNPCKLMask(VT, Mask);
5160     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
5161     break;
5162   case X86ISD::MOVHLPS:
5163     DecodeMOVHLPSMask(NumElems, Mask);
5164     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
5165     break;
5166   case X86ISD::MOVLHPS:
5167     DecodeMOVLHPSMask(NumElems, Mask);
5168     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
5169     break;
5170   case X86ISD::PALIGNR:
5171     ImmN = N->getOperand(N->getNumOperands()-1);
5172     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5173     break;
5174   case X86ISD::PSHUFD:
5175   case X86ISD::VPERMILP:
5176     ImmN = N->getOperand(N->getNumOperands()-1);
5177     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5178     IsUnary = true;
5179     break;
5180   case X86ISD::PSHUFHW:
5181     ImmN = N->getOperand(N->getNumOperands()-1);
5182     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5183     IsUnary = true;
5184     break;
5185   case X86ISD::PSHUFLW:
5186     ImmN = N->getOperand(N->getNumOperands()-1);
5187     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5188     IsUnary = true;
5189     break;
5190   case X86ISD::PSHUFB: {
5191     IsUnary = true;
5192     SDValue MaskNode = N->getOperand(1);
5193     while (MaskNode->getOpcode() == ISD::BITCAST)
5194       MaskNode = MaskNode->getOperand(0);
5195
5196     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
5197       // If we have a build-vector, then things are easy.
5198       EVT VT = MaskNode.getValueType();
5199       assert(VT.isVector() &&
5200              "Can't produce a non-vector with a build_vector!");
5201       if (!VT.isInteger())
5202         return false;
5203
5204       int NumBytesPerElement = VT.getVectorElementType().getSizeInBits() / 8;
5205
5206       SmallVector<uint64_t, 32> RawMask;
5207       for (int i = 0, e = MaskNode->getNumOperands(); i < e; ++i) {
5208         auto *CN = dyn_cast<ConstantSDNode>(MaskNode->getOperand(i));
5209         if (!CN)
5210           return false;
5211         APInt MaskElement = CN->getAPIntValue();
5212
5213         // We now have to decode the element which could be any integer size and
5214         // extract each byte of it.
5215         for (int j = 0; j < NumBytesPerElement; ++j) {
5216           // Note that this is x86 and so always little endian: the low byte is
5217           // the first byte of the mask.
5218           RawMask.push_back(MaskElement.getLoBits(8).getZExtValue());
5219           MaskElement = MaskElement.lshr(8);
5220         }
5221       }
5222       DecodePSHUFBMask(RawMask, Mask);
5223       break;
5224     }
5225
5226     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
5227     if (!MaskLoad)
5228       return false;
5229
5230     SDValue Ptr = MaskLoad->getBasePtr();
5231     if (Ptr->getOpcode() == X86ISD::Wrapper)
5232       Ptr = Ptr->getOperand(0);
5233
5234     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
5235     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
5236       return false;
5237
5238     if (auto *C = dyn_cast<ConstantDataSequential>(MaskCP->getConstVal())) {
5239       // FIXME: Support AVX-512 here.
5240       if (!C->getType()->isVectorTy() ||
5241           (C->getNumElements() != 16 && C->getNumElements() != 32))
5242         return false;
5243
5244       assert(C->getType()->isVectorTy() && "Expected a vector constant.");
5245       DecodePSHUFBMask(C, Mask);
5246       break;
5247     }
5248
5249     return false;
5250   }
5251   case X86ISD::VPERMI:
5252     ImmN = N->getOperand(N->getNumOperands()-1);
5253     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5254     IsUnary = true;
5255     break;
5256   case X86ISD::MOVSS:
5257   case X86ISD::MOVSD: {
5258     // The index 0 always comes from the first element of the second source,
5259     // this is why MOVSS and MOVSD are used in the first place. The other
5260     // elements come from the other positions of the first source vector
5261     Mask.push_back(NumElems);
5262     for (unsigned i = 1; i != NumElems; ++i) {
5263       Mask.push_back(i);
5264     }
5265     break;
5266   }
5267   case X86ISD::VPERM2X128:
5268     ImmN = N->getOperand(N->getNumOperands()-1);
5269     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5270     if (Mask.empty()) return false;
5271     break;
5272   case X86ISD::MOVDDUP:
5273   case X86ISD::MOVLHPD:
5274   case X86ISD::MOVLPD:
5275   case X86ISD::MOVLPS:
5276   case X86ISD::MOVSHDUP:
5277   case X86ISD::MOVSLDUP:
5278     // Not yet implemented
5279     return false;
5280   default: llvm_unreachable("unknown target shuffle node");
5281   }
5282
5283   // If we have a fake unary shuffle, the shuffle mask is spread across two
5284   // inputs that are actually the same node. Re-map the mask to always point
5285   // into the first input.
5286   if (IsFakeUnary)
5287     for (int &M : Mask)
5288       if (M >= (int)Mask.size())
5289         M -= Mask.size();
5290
5291   return true;
5292 }
5293
5294 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5295 /// element of the result of the vector shuffle.
5296 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5297                                    unsigned Depth) {
5298   if (Depth == 6)
5299     return SDValue();  // Limit search depth.
5300
5301   SDValue V = SDValue(N, 0);
5302   EVT VT = V.getValueType();
5303   unsigned Opcode = V.getOpcode();
5304
5305   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5306   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5307     int Elt = SV->getMaskElt(Index);
5308
5309     if (Elt < 0)
5310       return DAG.getUNDEF(VT.getVectorElementType());
5311
5312     unsigned NumElems = VT.getVectorNumElements();
5313     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5314                                          : SV->getOperand(1);
5315     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5316   }
5317
5318   // Recurse into target specific vector shuffles to find scalars.
5319   if (isTargetShuffle(Opcode)) {
5320     MVT ShufVT = V.getSimpleValueType();
5321     unsigned NumElems = ShufVT.getVectorNumElements();
5322     SmallVector<int, 16> ShuffleMask;
5323     bool IsUnary;
5324
5325     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5326       return SDValue();
5327
5328     int Elt = ShuffleMask[Index];
5329     if (Elt < 0)
5330       return DAG.getUNDEF(ShufVT.getVectorElementType());
5331
5332     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5333                                          : N->getOperand(1);
5334     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5335                                Depth+1);
5336   }
5337
5338   // Actual nodes that may contain scalar elements
5339   if (Opcode == ISD::BITCAST) {
5340     V = V.getOperand(0);
5341     EVT SrcVT = V.getValueType();
5342     unsigned NumElems = VT.getVectorNumElements();
5343
5344     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5345       return SDValue();
5346   }
5347
5348   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5349     return (Index == 0) ? V.getOperand(0)
5350                         : DAG.getUNDEF(VT.getVectorElementType());
5351
5352   if (V.getOpcode() == ISD::BUILD_VECTOR)
5353     return V.getOperand(Index);
5354
5355   return SDValue();
5356 }
5357
5358 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5359 /// shuffle operation which come from a consecutively from a zero. The
5360 /// search can start in two different directions, from left or right.
5361 /// We count undefs as zeros until PreferredNum is reached.
5362 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5363                                          unsigned NumElems, bool ZerosFromLeft,
5364                                          SelectionDAG &DAG,
5365                                          unsigned PreferredNum = -1U) {
5366   unsigned NumZeros = 0;
5367   for (unsigned i = 0; i != NumElems; ++i) {
5368     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5369     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5370     if (!Elt.getNode())
5371       break;
5372
5373     if (X86::isZeroNode(Elt))
5374       ++NumZeros;
5375     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5376       NumZeros = std::min(NumZeros + 1, PreferredNum);
5377     else
5378       break;
5379   }
5380
5381   return NumZeros;
5382 }
5383
5384 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5385 /// correspond consecutively to elements from one of the vector operands,
5386 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5387 static
5388 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5389                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5390                               unsigned NumElems, unsigned &OpNum) {
5391   bool SeenV1 = false;
5392   bool SeenV2 = false;
5393
5394   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5395     int Idx = SVOp->getMaskElt(i);
5396     // Ignore undef indicies
5397     if (Idx < 0)
5398       continue;
5399
5400     if (Idx < (int)NumElems)
5401       SeenV1 = true;
5402     else
5403       SeenV2 = true;
5404
5405     // Only accept consecutive elements from the same vector
5406     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5407       return false;
5408   }
5409
5410   OpNum = SeenV1 ? 0 : 1;
5411   return true;
5412 }
5413
5414 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5415 /// logical left shift of a vector.
5416 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5417                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5418   unsigned NumElems =
5419     SVOp->getSimpleValueType(0).getVectorNumElements();
5420   unsigned NumZeros = getNumOfConsecutiveZeros(
5421       SVOp, NumElems, false /* check zeros from right */, DAG,
5422       SVOp->getMaskElt(0));
5423   unsigned OpSrc;
5424
5425   if (!NumZeros)
5426     return false;
5427
5428   // Considering the elements in the mask that are not consecutive zeros,
5429   // check if they consecutively come from only one of the source vectors.
5430   //
5431   //               V1 = {X, A, B, C}     0
5432   //                         \  \  \    /
5433   //   vector_shuffle V1, V2 <1, 2, 3, X>
5434   //
5435   if (!isShuffleMaskConsecutive(SVOp,
5436             0,                   // Mask Start Index
5437             NumElems-NumZeros,   // Mask End Index(exclusive)
5438             NumZeros,            // Where to start looking in the src vector
5439             NumElems,            // Number of elements in vector
5440             OpSrc))              // Which source operand ?
5441     return false;
5442
5443   isLeft = false;
5444   ShAmt = NumZeros;
5445   ShVal = SVOp->getOperand(OpSrc);
5446   return true;
5447 }
5448
5449 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5450 /// logical left shift of a vector.
5451 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5452                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5453   unsigned NumElems =
5454     SVOp->getSimpleValueType(0).getVectorNumElements();
5455   unsigned NumZeros = getNumOfConsecutiveZeros(
5456       SVOp, NumElems, true /* check zeros from left */, DAG,
5457       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5458   unsigned OpSrc;
5459
5460   if (!NumZeros)
5461     return false;
5462
5463   // Considering the elements in the mask that are not consecutive zeros,
5464   // check if they consecutively come from only one of the source vectors.
5465   //
5466   //                           0    { A, B, X, X } = V2
5467   //                          / \    /  /
5468   //   vector_shuffle V1, V2 <X, X, 4, 5>
5469   //
5470   if (!isShuffleMaskConsecutive(SVOp,
5471             NumZeros,     // Mask Start Index
5472             NumElems,     // Mask End Index(exclusive)
5473             0,            // Where to start looking in the src vector
5474             NumElems,     // Number of elements in vector
5475             OpSrc))       // Which source operand ?
5476     return false;
5477
5478   isLeft = true;
5479   ShAmt = NumZeros;
5480   ShVal = SVOp->getOperand(OpSrc);
5481   return true;
5482 }
5483
5484 /// isVectorShift - Returns true if the shuffle can be implemented as a
5485 /// logical left or right shift of a vector.
5486 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5487                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5488   // Although the logic below support any bitwidth size, there are no
5489   // shift instructions which handle more than 128-bit vectors.
5490   if (!SVOp->getSimpleValueType(0).is128BitVector())
5491     return false;
5492
5493   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5494       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5495     return true;
5496
5497   return false;
5498 }
5499
5500 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5501 ///
5502 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5503                                        unsigned NumNonZero, unsigned NumZero,
5504                                        SelectionDAG &DAG,
5505                                        const X86Subtarget* Subtarget,
5506                                        const TargetLowering &TLI) {
5507   if (NumNonZero > 8)
5508     return SDValue();
5509
5510   SDLoc dl(Op);
5511   SDValue V;
5512   bool First = true;
5513   for (unsigned i = 0; i < 16; ++i) {
5514     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5515     if (ThisIsNonZero && First) {
5516       if (NumZero)
5517         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5518       else
5519         V = DAG.getUNDEF(MVT::v8i16);
5520       First = false;
5521     }
5522
5523     if ((i & 1) != 0) {
5524       SDValue ThisElt, LastElt;
5525       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5526       if (LastIsNonZero) {
5527         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5528                               MVT::i16, Op.getOperand(i-1));
5529       }
5530       if (ThisIsNonZero) {
5531         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5532         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5533                               ThisElt, DAG.getConstant(8, MVT::i8));
5534         if (LastIsNonZero)
5535           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5536       } else
5537         ThisElt = LastElt;
5538
5539       if (ThisElt.getNode())
5540         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5541                         DAG.getIntPtrConstant(i/2));
5542     }
5543   }
5544
5545   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5546 }
5547
5548 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5549 ///
5550 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5551                                      unsigned NumNonZero, unsigned NumZero,
5552                                      SelectionDAG &DAG,
5553                                      const X86Subtarget* Subtarget,
5554                                      const TargetLowering &TLI) {
5555   if (NumNonZero > 4)
5556     return SDValue();
5557
5558   SDLoc dl(Op);
5559   SDValue V;
5560   bool First = true;
5561   for (unsigned i = 0; i < 8; ++i) {
5562     bool isNonZero = (NonZeros & (1 << i)) != 0;
5563     if (isNonZero) {
5564       if (First) {
5565         if (NumZero)
5566           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5567         else
5568           V = DAG.getUNDEF(MVT::v8i16);
5569         First = false;
5570       }
5571       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5572                       MVT::v8i16, V, Op.getOperand(i),
5573                       DAG.getIntPtrConstant(i));
5574     }
5575   }
5576
5577   return V;
5578 }
5579
5580 /// LowerBuildVectorv4x32 - Custom lower build_vector of v4i32 or v4f32.
5581 static SDValue LowerBuildVectorv4x32(SDValue Op, unsigned NumElems,
5582                                      unsigned NonZeros, unsigned NumNonZero,
5583                                      unsigned NumZero, SelectionDAG &DAG,
5584                                      const X86Subtarget *Subtarget,
5585                                      const TargetLowering &TLI) {
5586   // We know there's at least one non-zero element
5587   unsigned FirstNonZeroIdx = 0;
5588   SDValue FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5589   while (FirstNonZero.getOpcode() == ISD::UNDEF ||
5590          X86::isZeroNode(FirstNonZero)) {
5591     ++FirstNonZeroIdx;
5592     FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5593   }
5594
5595   if (FirstNonZero.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5596       !isa<ConstantSDNode>(FirstNonZero.getOperand(1)))
5597     return SDValue();
5598
5599   SDValue V = FirstNonZero.getOperand(0);
5600   MVT VVT = V.getSimpleValueType();
5601   if (!Subtarget->hasSSE41() || (VVT != MVT::v4f32 && VVT != MVT::v4i32))
5602     return SDValue();
5603
5604   unsigned FirstNonZeroDst =
5605       cast<ConstantSDNode>(FirstNonZero.getOperand(1))->getZExtValue();
5606   unsigned CorrectIdx = FirstNonZeroDst == FirstNonZeroIdx;
5607   unsigned IncorrectIdx = CorrectIdx ? -1U : FirstNonZeroIdx;
5608   unsigned IncorrectDst = CorrectIdx ? -1U : FirstNonZeroDst;
5609
5610   for (unsigned Idx = FirstNonZeroIdx + 1; Idx < NumElems; ++Idx) {
5611     SDValue Elem = Op.getOperand(Idx);
5612     if (Elem.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elem))
5613       continue;
5614
5615     // TODO: What else can be here? Deal with it.
5616     if (Elem.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5617       return SDValue();
5618
5619     // TODO: Some optimizations are still possible here
5620     // ex: Getting one element from a vector, and the rest from another.
5621     if (Elem.getOperand(0) != V)
5622       return SDValue();
5623
5624     unsigned Dst = cast<ConstantSDNode>(Elem.getOperand(1))->getZExtValue();
5625     if (Dst == Idx)
5626       ++CorrectIdx;
5627     else if (IncorrectIdx == -1U) {
5628       IncorrectIdx = Idx;
5629       IncorrectDst = Dst;
5630     } else
5631       // There was already one element with an incorrect index.
5632       // We can't optimize this case to an insertps.
5633       return SDValue();
5634   }
5635
5636   if (NumNonZero == CorrectIdx || NumNonZero == CorrectIdx + 1) {
5637     SDLoc dl(Op);
5638     EVT VT = Op.getSimpleValueType();
5639     unsigned ElementMoveMask = 0;
5640     if (IncorrectIdx == -1U)
5641       ElementMoveMask = FirstNonZeroIdx << 6 | FirstNonZeroIdx << 4;
5642     else
5643       ElementMoveMask = IncorrectDst << 6 | IncorrectIdx << 4;
5644
5645     SDValue InsertpsMask =
5646         DAG.getIntPtrConstant(ElementMoveMask | (~NonZeros & 0xf));
5647     return DAG.getNode(X86ISD::INSERTPS, dl, VT, V, V, InsertpsMask);
5648   }
5649
5650   return SDValue();
5651 }
5652
5653 /// getVShift - Return a vector logical shift node.
5654 ///
5655 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5656                          unsigned NumBits, SelectionDAG &DAG,
5657                          const TargetLowering &TLI, SDLoc dl) {
5658   assert(VT.is128BitVector() && "Unknown type for VShift");
5659   EVT ShVT = MVT::v2i64;
5660   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5661   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5662   return DAG.getNode(ISD::BITCAST, dl, VT,
5663                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5664                              DAG.getConstant(NumBits,
5665                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5666 }
5667
5668 static SDValue
5669 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5670
5671   // Check if the scalar load can be widened into a vector load. And if
5672   // the address is "base + cst" see if the cst can be "absorbed" into
5673   // the shuffle mask.
5674   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5675     SDValue Ptr = LD->getBasePtr();
5676     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5677       return SDValue();
5678     EVT PVT = LD->getValueType(0);
5679     if (PVT != MVT::i32 && PVT != MVT::f32)
5680       return SDValue();
5681
5682     int FI = -1;
5683     int64_t Offset = 0;
5684     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5685       FI = FINode->getIndex();
5686       Offset = 0;
5687     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5688                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5689       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5690       Offset = Ptr.getConstantOperandVal(1);
5691       Ptr = Ptr.getOperand(0);
5692     } else {
5693       return SDValue();
5694     }
5695
5696     // FIXME: 256-bit vector instructions don't require a strict alignment,
5697     // improve this code to support it better.
5698     unsigned RequiredAlign = VT.getSizeInBits()/8;
5699     SDValue Chain = LD->getChain();
5700     // Make sure the stack object alignment is at least 16 or 32.
5701     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5702     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5703       if (MFI->isFixedObjectIndex(FI)) {
5704         // Can't change the alignment. FIXME: It's possible to compute
5705         // the exact stack offset and reference FI + adjust offset instead.
5706         // If someone *really* cares about this. That's the way to implement it.
5707         return SDValue();
5708       } else {
5709         MFI->setObjectAlignment(FI, RequiredAlign);
5710       }
5711     }
5712
5713     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5714     // Ptr + (Offset & ~15).
5715     if (Offset < 0)
5716       return SDValue();
5717     if ((Offset % RequiredAlign) & 3)
5718       return SDValue();
5719     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5720     if (StartOffset)
5721       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5722                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5723
5724     int EltNo = (Offset - StartOffset) >> 2;
5725     unsigned NumElems = VT.getVectorNumElements();
5726
5727     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5728     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5729                              LD->getPointerInfo().getWithOffset(StartOffset),
5730                              false, false, false, 0);
5731
5732     SmallVector<int, 8> Mask;
5733     for (unsigned i = 0; i != NumElems; ++i)
5734       Mask.push_back(EltNo);
5735
5736     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5737   }
5738
5739   return SDValue();
5740 }
5741
5742 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5743 /// vector of type 'VT', see if the elements can be replaced by a single large
5744 /// load which has the same value as a build_vector whose operands are 'elts'.
5745 ///
5746 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5747 ///
5748 /// FIXME: we'd also like to handle the case where the last elements are zero
5749 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5750 /// There's even a handy isZeroNode for that purpose.
5751 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5752                                         SDLoc &DL, SelectionDAG &DAG,
5753                                         bool isAfterLegalize) {
5754   EVT EltVT = VT.getVectorElementType();
5755   unsigned NumElems = Elts.size();
5756
5757   LoadSDNode *LDBase = nullptr;
5758   unsigned LastLoadedElt = -1U;
5759
5760   // For each element in the initializer, see if we've found a load or an undef.
5761   // If we don't find an initial load element, or later load elements are
5762   // non-consecutive, bail out.
5763   for (unsigned i = 0; i < NumElems; ++i) {
5764     SDValue Elt = Elts[i];
5765
5766     if (!Elt.getNode() ||
5767         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5768       return SDValue();
5769     if (!LDBase) {
5770       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5771         return SDValue();
5772       LDBase = cast<LoadSDNode>(Elt.getNode());
5773       LastLoadedElt = i;
5774       continue;
5775     }
5776     if (Elt.getOpcode() == ISD::UNDEF)
5777       continue;
5778
5779     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5780     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5781       return SDValue();
5782     LastLoadedElt = i;
5783   }
5784
5785   // If we have found an entire vector of loads and undefs, then return a large
5786   // load of the entire vector width starting at the base pointer.  If we found
5787   // consecutive loads for the low half, generate a vzext_load node.
5788   if (LastLoadedElt == NumElems - 1) {
5789
5790     if (isAfterLegalize &&
5791         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5792       return SDValue();
5793
5794     SDValue NewLd = SDValue();
5795
5796     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5797       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5798                           LDBase->getPointerInfo(),
5799                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5800                           LDBase->isInvariant(), 0);
5801     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5802                         LDBase->getPointerInfo(),
5803                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5804                         LDBase->isInvariant(), LDBase->getAlignment());
5805
5806     if (LDBase->hasAnyUseOfValue(1)) {
5807       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5808                                      SDValue(LDBase, 1),
5809                                      SDValue(NewLd.getNode(), 1));
5810       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5811       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5812                              SDValue(NewLd.getNode(), 1));
5813     }
5814
5815     return NewLd;
5816   }
5817   if (NumElems == 4 && LastLoadedElt == 1 &&
5818       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5819     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5820     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5821     SDValue ResNode =
5822         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
5823                                 LDBase->getPointerInfo(),
5824                                 LDBase->getAlignment(),
5825                                 false/*isVolatile*/, true/*ReadMem*/,
5826                                 false/*WriteMem*/);
5827
5828     // Make sure the newly-created LOAD is in the same position as LDBase in
5829     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5830     // update uses of LDBase's output chain to use the TokenFactor.
5831     if (LDBase->hasAnyUseOfValue(1)) {
5832       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5833                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5834       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5835       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5836                              SDValue(ResNode.getNode(), 1));
5837     }
5838
5839     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5840   }
5841   return SDValue();
5842 }
5843
5844 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5845 /// to generate a splat value for the following cases:
5846 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5847 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5848 /// a scalar load, or a constant.
5849 /// The VBROADCAST node is returned when a pattern is found,
5850 /// or SDValue() otherwise.
5851 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5852                                     SelectionDAG &DAG) {
5853   if (!Subtarget->hasFp256())
5854     return SDValue();
5855
5856   MVT VT = Op.getSimpleValueType();
5857   SDLoc dl(Op);
5858
5859   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5860          "Unsupported vector type for broadcast.");
5861
5862   SDValue Ld;
5863   bool ConstSplatVal;
5864
5865   switch (Op.getOpcode()) {
5866     default:
5867       // Unknown pattern found.
5868       return SDValue();
5869
5870     case ISD::BUILD_VECTOR: {
5871       auto *BVOp = cast<BuildVectorSDNode>(Op.getNode());
5872       BitVector UndefElements;
5873       SDValue Splat = BVOp->getSplatValue(&UndefElements);
5874
5875       // We need a splat of a single value to use broadcast, and it doesn't
5876       // make any sense if the value is only in one element of the vector.
5877       if (!Splat || (VT.getVectorNumElements() - UndefElements.count()) <= 1)
5878         return SDValue();
5879
5880       Ld = Splat;
5881       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5882                        Ld.getOpcode() == ISD::ConstantFP);
5883
5884       // Make sure that all of the users of a non-constant load are from the
5885       // BUILD_VECTOR node.
5886       if (!ConstSplatVal && !BVOp->isOnlyUserOf(Ld.getNode()))
5887         return SDValue();
5888       break;
5889     }
5890
5891     case ISD::VECTOR_SHUFFLE: {
5892       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5893
5894       // Shuffles must have a splat mask where the first element is
5895       // broadcasted.
5896       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5897         return SDValue();
5898
5899       SDValue Sc = Op.getOperand(0);
5900       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5901           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5902
5903         if (!Subtarget->hasInt256())
5904           return SDValue();
5905
5906         // Use the register form of the broadcast instruction available on AVX2.
5907         if (VT.getSizeInBits() >= 256)
5908           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5909         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5910       }
5911
5912       Ld = Sc.getOperand(0);
5913       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5914                        Ld.getOpcode() == ISD::ConstantFP);
5915
5916       // The scalar_to_vector node and the suspected
5917       // load node must have exactly one user.
5918       // Constants may have multiple users.
5919
5920       // AVX-512 has register version of the broadcast
5921       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5922         Ld.getValueType().getSizeInBits() >= 32;
5923       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5924           !hasRegVer))
5925         return SDValue();
5926       break;
5927     }
5928   }
5929
5930   bool IsGE256 = (VT.getSizeInBits() >= 256);
5931
5932   // Handle the broadcasting a single constant scalar from the constant pool
5933   // into a vector. On Sandybridge it is still better to load a constant vector
5934   // from the constant pool and not to broadcast it from a scalar.
5935   if (ConstSplatVal && Subtarget->hasInt256()) {
5936     EVT CVT = Ld.getValueType();
5937     assert(!CVT.isVector() && "Must not broadcast a vector type");
5938     unsigned ScalarSize = CVT.getSizeInBits();
5939
5940     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5941       const Constant *C = nullptr;
5942       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5943         C = CI->getConstantIntValue();
5944       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5945         C = CF->getConstantFPValue();
5946
5947       assert(C && "Invalid constant type");
5948
5949       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5950       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5951       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5952       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5953                        MachinePointerInfo::getConstantPool(),
5954                        false, false, false, Alignment);
5955
5956       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5957     }
5958   }
5959
5960   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5961   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5962
5963   // Handle AVX2 in-register broadcasts.
5964   if (!IsLoad && Subtarget->hasInt256() &&
5965       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5966     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5967
5968   // The scalar source must be a normal load.
5969   if (!IsLoad)
5970     return SDValue();
5971
5972   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5973     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5974
5975   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5976   // double since there is no vbroadcastsd xmm
5977   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5978     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5979       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5980   }
5981
5982   // Unsupported broadcast.
5983   return SDValue();
5984 }
5985
5986 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5987 /// underlying vector and index.
5988 ///
5989 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5990 /// index.
5991 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5992                                          SDValue ExtIdx) {
5993   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5994   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5995     return Idx;
5996
5997   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5998   // lowered this:
5999   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
6000   // to:
6001   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
6002   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
6003   //                           undef)
6004   //                       Constant<0>)
6005   // In this case the vector is the extract_subvector expression and the index
6006   // is 2, as specified by the shuffle.
6007   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
6008   SDValue ShuffleVec = SVOp->getOperand(0);
6009   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
6010   assert(ShuffleVecVT.getVectorElementType() ==
6011          ExtractedFromVec.getSimpleValueType().getVectorElementType());
6012
6013   int ShuffleIdx = SVOp->getMaskElt(Idx);
6014   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
6015     ExtractedFromVec = ShuffleVec;
6016     return ShuffleIdx;
6017   }
6018   return Idx;
6019 }
6020
6021 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
6022   MVT VT = Op.getSimpleValueType();
6023
6024   // Skip if insert_vec_elt is not supported.
6025   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6026   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
6027     return SDValue();
6028
6029   SDLoc DL(Op);
6030   unsigned NumElems = Op.getNumOperands();
6031
6032   SDValue VecIn1;
6033   SDValue VecIn2;
6034   SmallVector<unsigned, 4> InsertIndices;
6035   SmallVector<int, 8> Mask(NumElems, -1);
6036
6037   for (unsigned i = 0; i != NumElems; ++i) {
6038     unsigned Opc = Op.getOperand(i).getOpcode();
6039
6040     if (Opc == ISD::UNDEF)
6041       continue;
6042
6043     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
6044       // Quit if more than 1 elements need inserting.
6045       if (InsertIndices.size() > 1)
6046         return SDValue();
6047
6048       InsertIndices.push_back(i);
6049       continue;
6050     }
6051
6052     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
6053     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
6054     // Quit if non-constant index.
6055     if (!isa<ConstantSDNode>(ExtIdx))
6056       return SDValue();
6057     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
6058
6059     // Quit if extracted from vector of different type.
6060     if (ExtractedFromVec.getValueType() != VT)
6061       return SDValue();
6062
6063     if (!VecIn1.getNode())
6064       VecIn1 = ExtractedFromVec;
6065     else if (VecIn1 != ExtractedFromVec) {
6066       if (!VecIn2.getNode())
6067         VecIn2 = ExtractedFromVec;
6068       else if (VecIn2 != ExtractedFromVec)
6069         // Quit if more than 2 vectors to shuffle
6070         return SDValue();
6071     }
6072
6073     if (ExtractedFromVec == VecIn1)
6074       Mask[i] = Idx;
6075     else if (ExtractedFromVec == VecIn2)
6076       Mask[i] = Idx + NumElems;
6077   }
6078
6079   if (!VecIn1.getNode())
6080     return SDValue();
6081
6082   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
6083   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
6084   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
6085     unsigned Idx = InsertIndices[i];
6086     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
6087                      DAG.getIntPtrConstant(Idx));
6088   }
6089
6090   return NV;
6091 }
6092
6093 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
6094 SDValue
6095 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
6096
6097   MVT VT = Op.getSimpleValueType();
6098   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
6099          "Unexpected type in LowerBUILD_VECTORvXi1!");
6100
6101   SDLoc dl(Op);
6102   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6103     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
6104     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
6105     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
6106   }
6107
6108   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
6109     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
6110     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
6111     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
6112   }
6113
6114   bool AllContants = true;
6115   uint64_t Immediate = 0;
6116   int NonConstIdx = -1;
6117   bool IsSplat = true;
6118   unsigned NumNonConsts = 0;
6119   unsigned NumConsts = 0;
6120   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
6121     SDValue In = Op.getOperand(idx);
6122     if (In.getOpcode() == ISD::UNDEF)
6123       continue;
6124     if (!isa<ConstantSDNode>(In)) {
6125       AllContants = false;
6126       NonConstIdx = idx;
6127       NumNonConsts++;
6128     }
6129     else {
6130       NumConsts++;
6131       if (cast<ConstantSDNode>(In)->getZExtValue())
6132       Immediate |= (1ULL << idx);
6133     }
6134     if (In != Op.getOperand(0))
6135       IsSplat = false;
6136   }
6137
6138   if (AllContants) {
6139     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
6140       DAG.getConstant(Immediate, MVT::i16));
6141     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
6142                        DAG.getIntPtrConstant(0));
6143   }
6144
6145   if (NumNonConsts == 1 && NonConstIdx != 0) {
6146     SDValue DstVec;
6147     if (NumConsts) {
6148       SDValue VecAsImm = DAG.getConstant(Immediate,
6149                                          MVT::getIntegerVT(VT.getSizeInBits()));
6150       DstVec = DAG.getNode(ISD::BITCAST, dl, VT, VecAsImm);
6151     }
6152     else 
6153       DstVec = DAG.getUNDEF(VT);
6154     return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
6155                        Op.getOperand(NonConstIdx),
6156                        DAG.getIntPtrConstant(NonConstIdx));
6157   }
6158   if (!IsSplat && (NonConstIdx != 0))
6159     llvm_unreachable("Unsupported BUILD_VECTOR operation");
6160   MVT SelectVT = (VT == MVT::v16i1)? MVT::i16 : MVT::i8;
6161   SDValue Select;
6162   if (IsSplat)
6163     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6164                           DAG.getConstant(-1, SelectVT),
6165                           DAG.getConstant(0, SelectVT));
6166   else
6167     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6168                          DAG.getConstant((Immediate | 1), SelectVT),
6169                          DAG.getConstant(Immediate, SelectVT));
6170   return DAG.getNode(ISD::BITCAST, dl, VT, Select);
6171 }
6172
6173 /// \brief Return true if \p N implements a horizontal binop and return the
6174 /// operands for the horizontal binop into V0 and V1.
6175 /// 
6176 /// This is a helper function of PerformBUILD_VECTORCombine.
6177 /// This function checks that the build_vector \p N in input implements a
6178 /// horizontal operation. Parameter \p Opcode defines the kind of horizontal
6179 /// operation to match.
6180 /// For example, if \p Opcode is equal to ISD::ADD, then this function
6181 /// checks if \p N implements a horizontal arithmetic add; if instead \p Opcode
6182 /// is equal to ISD::SUB, then this function checks if this is a horizontal
6183 /// arithmetic sub.
6184 ///
6185 /// This function only analyzes elements of \p N whose indices are
6186 /// in range [BaseIdx, LastIdx).
6187 static bool isHorizontalBinOp(const BuildVectorSDNode *N, unsigned Opcode,
6188                               SelectionDAG &DAG,
6189                               unsigned BaseIdx, unsigned LastIdx,
6190                               SDValue &V0, SDValue &V1) {
6191   EVT VT = N->getValueType(0);
6192
6193   assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!");
6194   assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx &&
6195          "Invalid Vector in input!");
6196   
6197   bool IsCommutable = (Opcode == ISD::ADD || Opcode == ISD::FADD);
6198   bool CanFold = true;
6199   unsigned ExpectedVExtractIdx = BaseIdx;
6200   unsigned NumElts = LastIdx - BaseIdx;
6201   V0 = DAG.getUNDEF(VT);
6202   V1 = DAG.getUNDEF(VT);
6203
6204   // Check if N implements a horizontal binop.
6205   for (unsigned i = 0, e = NumElts; i != e && CanFold; ++i) {
6206     SDValue Op = N->getOperand(i + BaseIdx);
6207
6208     // Skip UNDEFs.
6209     if (Op->getOpcode() == ISD::UNDEF) {
6210       // Update the expected vector extract index.
6211       if (i * 2 == NumElts)
6212         ExpectedVExtractIdx = BaseIdx;
6213       ExpectedVExtractIdx += 2;
6214       continue;
6215     }
6216
6217     CanFold = Op->getOpcode() == Opcode && Op->hasOneUse();
6218
6219     if (!CanFold)
6220       break;
6221
6222     SDValue Op0 = Op.getOperand(0);
6223     SDValue Op1 = Op.getOperand(1);
6224
6225     // Try to match the following pattern:
6226     // (BINOP (extract_vector_elt A, I), (extract_vector_elt A, I+1))
6227     CanFold = (Op0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
6228         Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
6229         Op0.getOperand(0) == Op1.getOperand(0) &&
6230         isa<ConstantSDNode>(Op0.getOperand(1)) &&
6231         isa<ConstantSDNode>(Op1.getOperand(1)));
6232     if (!CanFold)
6233       break;
6234
6235     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
6236     unsigned I1 = cast<ConstantSDNode>(Op1.getOperand(1))->getZExtValue();
6237
6238     if (i * 2 < NumElts) {
6239       if (V0.getOpcode() == ISD::UNDEF)
6240         V0 = Op0.getOperand(0);
6241     } else {
6242       if (V1.getOpcode() == ISD::UNDEF)
6243         V1 = Op0.getOperand(0);
6244       if (i * 2 == NumElts)
6245         ExpectedVExtractIdx = BaseIdx;
6246     }
6247
6248     SDValue Expected = (i * 2 < NumElts) ? V0 : V1;
6249     if (I0 == ExpectedVExtractIdx)
6250       CanFold = I1 == I0 + 1 && Op0.getOperand(0) == Expected;
6251     else if (IsCommutable && I1 == ExpectedVExtractIdx) {
6252       // Try to match the following dag sequence:
6253       // (BINOP (extract_vector_elt A, I+1), (extract_vector_elt A, I))
6254       CanFold = I0 == I1 + 1 && Op1.getOperand(0) == Expected;
6255     } else
6256       CanFold = false;
6257
6258     ExpectedVExtractIdx += 2;
6259   }
6260
6261   return CanFold;
6262 }
6263
6264 /// \brief Emit a sequence of two 128-bit horizontal add/sub followed by
6265 /// a concat_vector. 
6266 ///
6267 /// This is a helper function of PerformBUILD_VECTORCombine.
6268 /// This function expects two 256-bit vectors called V0 and V1.
6269 /// At first, each vector is split into two separate 128-bit vectors.
6270 /// Then, the resulting 128-bit vectors are used to implement two
6271 /// horizontal binary operations. 
6272 ///
6273 /// The kind of horizontal binary operation is defined by \p X86Opcode.
6274 ///
6275 /// \p Mode specifies how the 128-bit parts of V0 and V1 are passed in input to
6276 /// the two new horizontal binop.
6277 /// When Mode is set, the first horizontal binop dag node would take as input
6278 /// the lower 128-bit of V0 and the upper 128-bit of V0. The second
6279 /// horizontal binop dag node would take as input the lower 128-bit of V1
6280 /// and the upper 128-bit of V1.
6281 ///   Example:
6282 ///     HADD V0_LO, V0_HI
6283 ///     HADD V1_LO, V1_HI
6284 ///
6285 /// Otherwise, the first horizontal binop dag node takes as input the lower
6286 /// 128-bit of V0 and the lower 128-bit of V1, and the second horizontal binop
6287 /// dag node takes the the upper 128-bit of V0 and the upper 128-bit of V1.
6288 ///   Example:
6289 ///     HADD V0_LO, V1_LO
6290 ///     HADD V0_HI, V1_HI
6291 ///
6292 /// If \p isUndefLO is set, then the algorithm propagates UNDEF to the lower
6293 /// 128-bits of the result. If \p isUndefHI is set, then UNDEF is propagated to
6294 /// the upper 128-bits of the result.
6295 static SDValue ExpandHorizontalBinOp(const SDValue &V0, const SDValue &V1,
6296                                      SDLoc DL, SelectionDAG &DAG,
6297                                      unsigned X86Opcode, bool Mode,
6298                                      bool isUndefLO, bool isUndefHI) {
6299   EVT VT = V0.getValueType();
6300   assert(VT.is256BitVector() && VT == V1.getValueType() &&
6301          "Invalid nodes in input!");
6302
6303   unsigned NumElts = VT.getVectorNumElements();
6304   SDValue V0_LO = Extract128BitVector(V0, 0, DAG, DL);
6305   SDValue V0_HI = Extract128BitVector(V0, NumElts/2, DAG, DL);
6306   SDValue V1_LO = Extract128BitVector(V1, 0, DAG, DL);
6307   SDValue V1_HI = Extract128BitVector(V1, NumElts/2, DAG, DL);
6308   EVT NewVT = V0_LO.getValueType();
6309
6310   SDValue LO = DAG.getUNDEF(NewVT);
6311   SDValue HI = DAG.getUNDEF(NewVT);
6312
6313   if (Mode) {
6314     // Don't emit a horizontal binop if the result is expected to be UNDEF.
6315     if (!isUndefLO && V0->getOpcode() != ISD::UNDEF)
6316       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V0_HI);
6317     if (!isUndefHI && V1->getOpcode() != ISD::UNDEF)
6318       HI = DAG.getNode(X86Opcode, DL, NewVT, V1_LO, V1_HI);
6319   } else {
6320     // Don't emit a horizontal binop if the result is expected to be UNDEF.
6321     if (!isUndefLO && (V0_LO->getOpcode() != ISD::UNDEF ||
6322                        V1_LO->getOpcode() != ISD::UNDEF))
6323       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V1_LO);
6324
6325     if (!isUndefHI && (V0_HI->getOpcode() != ISD::UNDEF ||
6326                        V1_HI->getOpcode() != ISD::UNDEF))
6327       HI = DAG.getNode(X86Opcode, DL, NewVT, V0_HI, V1_HI);
6328   }
6329
6330   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LO, HI);
6331 }
6332
6333 /// \brief Try to fold a build_vector that performs an 'addsub' into the
6334 /// sequence of 'vadd + vsub + blendi'.
6335 static SDValue matchAddSub(const BuildVectorSDNode *BV, SelectionDAG &DAG,
6336                            const X86Subtarget *Subtarget) {
6337   SDLoc DL(BV);
6338   EVT VT = BV->getValueType(0);
6339   unsigned NumElts = VT.getVectorNumElements();
6340   SDValue InVec0 = DAG.getUNDEF(VT);
6341   SDValue InVec1 = DAG.getUNDEF(VT);
6342
6343   assert((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v4f32 ||
6344           VT == MVT::v2f64) && "build_vector with an invalid type found!");
6345
6346   // Don't try to emit a VSELECT that cannot be lowered into a blend.
6347   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6348   if (!TLI.isOperationLegalOrCustom(ISD::VSELECT, VT))
6349     return SDValue();
6350
6351   // Odd-numbered elements in the input build vector are obtained from
6352   // adding two integer/float elements.
6353   // Even-numbered elements in the input build vector are obtained from
6354   // subtracting two integer/float elements.
6355   unsigned ExpectedOpcode = ISD::FSUB;
6356   unsigned NextExpectedOpcode = ISD::FADD;
6357   bool AddFound = false;
6358   bool SubFound = false;
6359
6360   for (unsigned i = 0, e = NumElts; i != e; i++) {
6361     SDValue Op = BV->getOperand(i);
6362       
6363     // Skip 'undef' values.
6364     unsigned Opcode = Op.getOpcode();
6365     if (Opcode == ISD::UNDEF) {
6366       std::swap(ExpectedOpcode, NextExpectedOpcode);
6367       continue;
6368     }
6369       
6370     // Early exit if we found an unexpected opcode.
6371     if (Opcode != ExpectedOpcode)
6372       return SDValue();
6373
6374     SDValue Op0 = Op.getOperand(0);
6375     SDValue Op1 = Op.getOperand(1);
6376
6377     // Try to match the following pattern:
6378     // (BINOP (extract_vector_elt A, i), (extract_vector_elt B, i))
6379     // Early exit if we cannot match that sequence.
6380     if (Op0.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6381         Op1.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6382         !isa<ConstantSDNode>(Op0.getOperand(1)) ||
6383         !isa<ConstantSDNode>(Op1.getOperand(1)) ||
6384         Op0.getOperand(1) != Op1.getOperand(1))
6385       return SDValue();
6386
6387     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
6388     if (I0 != i)
6389       return SDValue();
6390
6391     // We found a valid add/sub node. Update the information accordingly.
6392     if (i & 1)
6393       AddFound = true;
6394     else
6395       SubFound = true;
6396
6397     // Update InVec0 and InVec1.
6398     if (InVec0.getOpcode() == ISD::UNDEF)
6399       InVec0 = Op0.getOperand(0);
6400     if (InVec1.getOpcode() == ISD::UNDEF)
6401       InVec1 = Op1.getOperand(0);
6402
6403     // Make sure that operands in input to each add/sub node always
6404     // come from a same pair of vectors.
6405     if (InVec0 != Op0.getOperand(0)) {
6406       if (ExpectedOpcode == ISD::FSUB)
6407         return SDValue();
6408
6409       // FADD is commutable. Try to commute the operands
6410       // and then test again.
6411       std::swap(Op0, Op1);
6412       if (InVec0 != Op0.getOperand(0))
6413         return SDValue();
6414     }
6415
6416     if (InVec1 != Op1.getOperand(0))
6417       return SDValue();
6418
6419     // Update the pair of expected opcodes.
6420     std::swap(ExpectedOpcode, NextExpectedOpcode);
6421   }
6422
6423   // Don't try to fold this build_vector into a VSELECT if it has
6424   // too many UNDEF operands.
6425   if (AddFound && SubFound && InVec0.getOpcode() != ISD::UNDEF &&
6426       InVec1.getOpcode() != ISD::UNDEF) {
6427     // Emit a sequence of vector add and sub followed by a VSELECT.
6428     // The new VSELECT will be lowered into a BLENDI.
6429     // At ISel stage, we pattern-match the sequence 'add + sub + BLENDI'
6430     // and emit a single ADDSUB instruction.
6431     SDValue Sub = DAG.getNode(ExpectedOpcode, DL, VT, InVec0, InVec1);
6432     SDValue Add = DAG.getNode(NextExpectedOpcode, DL, VT, InVec0, InVec1);
6433
6434     // Construct the VSELECT mask.
6435     EVT MaskVT = VT.changeVectorElementTypeToInteger();
6436     EVT SVT = MaskVT.getVectorElementType();
6437     unsigned SVTBits = SVT.getSizeInBits();
6438     SmallVector<SDValue, 8> Ops;
6439
6440     for (unsigned i = 0, e = NumElts; i != e; ++i) {
6441       APInt Value = i & 1 ? APInt::getNullValue(SVTBits) :
6442                             APInt::getAllOnesValue(SVTBits);
6443       SDValue Constant = DAG.getConstant(Value, SVT);
6444       Ops.push_back(Constant);
6445     }
6446
6447     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVT, Ops);
6448     return DAG.getSelect(DL, VT, Mask, Sub, Add);
6449   }
6450   
6451   return SDValue();
6452 }
6453
6454 static SDValue PerformBUILD_VECTORCombine(SDNode *N, SelectionDAG &DAG,
6455                                           const X86Subtarget *Subtarget) {
6456   SDLoc DL(N);
6457   EVT VT = N->getValueType(0);
6458   unsigned NumElts = VT.getVectorNumElements();
6459   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
6460   SDValue InVec0, InVec1;
6461
6462   // Try to match an ADDSUB.
6463   if ((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
6464       (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) {
6465     SDValue Value = matchAddSub(BV, DAG, Subtarget);
6466     if (Value.getNode())
6467       return Value;
6468   }
6469
6470   // Try to match horizontal ADD/SUB.
6471   unsigned NumUndefsLO = 0;
6472   unsigned NumUndefsHI = 0;
6473   unsigned Half = NumElts/2;
6474
6475   // Count the number of UNDEF operands in the build_vector in input.
6476   for (unsigned i = 0, e = Half; i != e; ++i)
6477     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
6478       NumUndefsLO++;
6479
6480   for (unsigned i = Half, e = NumElts; i != e; ++i)
6481     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
6482       NumUndefsHI++;
6483
6484   // Early exit if this is either a build_vector of all UNDEFs or all the
6485   // operands but one are UNDEF.
6486   if (NumUndefsLO + NumUndefsHI + 1 >= NumElts)
6487     return SDValue();
6488
6489   if ((VT == MVT::v4f32 || VT == MVT::v2f64) && Subtarget->hasSSE3()) {
6490     // Try to match an SSE3 float HADD/HSUB.
6491     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6492       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
6493     
6494     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6495       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
6496   } else if ((VT == MVT::v4i32 || VT == MVT::v8i16) && Subtarget->hasSSSE3()) {
6497     // Try to match an SSSE3 integer HADD/HSUB.
6498     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6499       return DAG.getNode(X86ISD::HADD, DL, VT, InVec0, InVec1);
6500     
6501     if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6502       return DAG.getNode(X86ISD::HSUB, DL, VT, InVec0, InVec1);
6503   }
6504   
6505   if (!Subtarget->hasAVX())
6506     return SDValue();
6507
6508   if ((VT == MVT::v8f32 || VT == MVT::v4f64)) {
6509     // Try to match an AVX horizontal add/sub of packed single/double
6510     // precision floating point values from 256-bit vectors.
6511     SDValue InVec2, InVec3;
6512     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, Half, InVec0, InVec1) &&
6513         isHorizontalBinOp(BV, ISD::FADD, DAG, Half, NumElts, InVec2, InVec3) &&
6514         ((InVec0.getOpcode() == ISD::UNDEF ||
6515           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6516         ((InVec1.getOpcode() == ISD::UNDEF ||
6517           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6518       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
6519
6520     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, Half, InVec0, InVec1) &&
6521         isHorizontalBinOp(BV, ISD::FSUB, DAG, Half, NumElts, InVec2, InVec3) &&
6522         ((InVec0.getOpcode() == ISD::UNDEF ||
6523           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6524         ((InVec1.getOpcode() == ISD::UNDEF ||
6525           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6526       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
6527   } else if (VT == MVT::v8i32 || VT == MVT::v16i16) {
6528     // Try to match an AVX2 horizontal add/sub of signed integers.
6529     SDValue InVec2, InVec3;
6530     unsigned X86Opcode;
6531     bool CanFold = true;
6532
6533     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, Half, InVec0, InVec1) &&
6534         isHorizontalBinOp(BV, ISD::ADD, DAG, Half, NumElts, InVec2, InVec3) &&
6535         ((InVec0.getOpcode() == ISD::UNDEF ||
6536           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6537         ((InVec1.getOpcode() == ISD::UNDEF ||
6538           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6539       X86Opcode = X86ISD::HADD;
6540     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, Half, InVec0, InVec1) &&
6541         isHorizontalBinOp(BV, ISD::SUB, DAG, Half, NumElts, InVec2, InVec3) &&
6542         ((InVec0.getOpcode() == ISD::UNDEF ||
6543           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6544         ((InVec1.getOpcode() == ISD::UNDEF ||
6545           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6546       X86Opcode = X86ISD::HSUB;
6547     else
6548       CanFold = false;
6549
6550     if (CanFold) {
6551       // Fold this build_vector into a single horizontal add/sub.
6552       // Do this only if the target has AVX2.
6553       if (Subtarget->hasAVX2())
6554         return DAG.getNode(X86Opcode, DL, VT, InVec0, InVec1);
6555  
6556       // Do not try to expand this build_vector into a pair of horizontal
6557       // add/sub if we can emit a pair of scalar add/sub.
6558       if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6559         return SDValue();
6560
6561       // Convert this build_vector into a pair of horizontal binop followed by
6562       // a concat vector.
6563       bool isUndefLO = NumUndefsLO == Half;
6564       bool isUndefHI = NumUndefsHI == Half;
6565       return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, false,
6566                                    isUndefLO, isUndefHI);
6567     }
6568   }
6569
6570   if ((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v8i32 ||
6571        VT == MVT::v16i16) && Subtarget->hasAVX()) {
6572     unsigned X86Opcode;
6573     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6574       X86Opcode = X86ISD::HADD;
6575     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6576       X86Opcode = X86ISD::HSUB;
6577     else if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6578       X86Opcode = X86ISD::FHADD;
6579     else if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6580       X86Opcode = X86ISD::FHSUB;
6581     else
6582       return SDValue();
6583
6584     // Don't try to expand this build_vector into a pair of horizontal add/sub
6585     // if we can simply emit a pair of scalar add/sub.
6586     if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6587       return SDValue();
6588
6589     // Convert this build_vector into two horizontal add/sub followed by
6590     // a concat vector.
6591     bool isUndefLO = NumUndefsLO == Half;
6592     bool isUndefHI = NumUndefsHI == Half;
6593     return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, true,
6594                                  isUndefLO, isUndefHI);
6595   }
6596
6597   return SDValue();
6598 }
6599
6600 SDValue
6601 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6602   SDLoc dl(Op);
6603
6604   MVT VT = Op.getSimpleValueType();
6605   MVT ExtVT = VT.getVectorElementType();
6606   unsigned NumElems = Op.getNumOperands();
6607
6608   // Generate vectors for predicate vectors.
6609   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
6610     return LowerBUILD_VECTORvXi1(Op, DAG);
6611
6612   // Vectors containing all zeros can be matched by pxor and xorps later
6613   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6614     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
6615     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
6616     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
6617       return Op;
6618
6619     return getZeroVector(VT, Subtarget, DAG, dl);
6620   }
6621
6622   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
6623   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
6624   // vpcmpeqd on 256-bit vectors.
6625   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
6626     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
6627       return Op;
6628
6629     if (!VT.is512BitVector())
6630       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
6631   }
6632
6633   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
6634   if (Broadcast.getNode())
6635     return Broadcast;
6636
6637   unsigned EVTBits = ExtVT.getSizeInBits();
6638
6639   unsigned NumZero  = 0;
6640   unsigned NumNonZero = 0;
6641   unsigned NonZeros = 0;
6642   bool IsAllConstants = true;
6643   SmallSet<SDValue, 8> Values;
6644   for (unsigned i = 0; i < NumElems; ++i) {
6645     SDValue Elt = Op.getOperand(i);
6646     if (Elt.getOpcode() == ISD::UNDEF)
6647       continue;
6648     Values.insert(Elt);
6649     if (Elt.getOpcode() != ISD::Constant &&
6650         Elt.getOpcode() != ISD::ConstantFP)
6651       IsAllConstants = false;
6652     if (X86::isZeroNode(Elt))
6653       NumZero++;
6654     else {
6655       NonZeros |= (1 << i);
6656       NumNonZero++;
6657     }
6658   }
6659
6660   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
6661   if (NumNonZero == 0)
6662     return DAG.getUNDEF(VT);
6663
6664   // Special case for single non-zero, non-undef, element.
6665   if (NumNonZero == 1) {
6666     unsigned Idx = countTrailingZeros(NonZeros);
6667     SDValue Item = Op.getOperand(Idx);
6668
6669     // If this is an insertion of an i64 value on x86-32, and if the top bits of
6670     // the value are obviously zero, truncate the value to i32 and do the
6671     // insertion that way.  Only do this if the value is non-constant or if the
6672     // value is a constant being inserted into element 0.  It is cheaper to do
6673     // a constant pool load than it is to do a movd + shuffle.
6674     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
6675         (!IsAllConstants || Idx == 0)) {
6676       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
6677         // Handle SSE only.
6678         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6679         EVT VecVT = MVT::v4i32;
6680         unsigned VecElts = 4;
6681
6682         // Truncate the value (which may itself be a constant) to i32, and
6683         // convert it to a vector with movd (S2V+shuffle to zero extend).
6684         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
6685         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
6686         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6687
6688         // Now we have our 32-bit value zero extended in the low element of
6689         // a vector.  If Idx != 0, swizzle it into place.
6690         if (Idx != 0) {
6691           SmallVector<int, 4> Mask;
6692           Mask.push_back(Idx);
6693           for (unsigned i = 1; i != VecElts; ++i)
6694             Mask.push_back(i);
6695           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
6696                                       &Mask[0]);
6697         }
6698         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6699       }
6700     }
6701
6702     // If we have a constant or non-constant insertion into the low element of
6703     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
6704     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
6705     // depending on what the source datatype is.
6706     if (Idx == 0) {
6707       if (NumZero == 0)
6708         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6709
6710       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
6711           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
6712         if (VT.is256BitVector() || VT.is512BitVector()) {
6713           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
6714           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
6715                              Item, DAG.getIntPtrConstant(0));
6716         }
6717         assert(VT.is128BitVector() && "Expected an SSE value type!");
6718         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6719         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6720         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6721       }
6722
6723       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6724         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6725         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6726         if (VT.is256BitVector()) {
6727           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6728           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6729         } else {
6730           assert(VT.is128BitVector() && "Expected an SSE value type!");
6731           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6732         }
6733         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6734       }
6735     }
6736
6737     // Is it a vector logical left shift?
6738     if (NumElems == 2 && Idx == 1 &&
6739         X86::isZeroNode(Op.getOperand(0)) &&
6740         !X86::isZeroNode(Op.getOperand(1))) {
6741       unsigned NumBits = VT.getSizeInBits();
6742       return getVShift(true, VT,
6743                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6744                                    VT, Op.getOperand(1)),
6745                        NumBits/2, DAG, *this, dl);
6746     }
6747
6748     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6749       return SDValue();
6750
6751     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6752     // is a non-constant being inserted into an element other than the low one,
6753     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6754     // movd/movss) to move this into the low element, then shuffle it into
6755     // place.
6756     if (EVTBits == 32) {
6757       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6758
6759       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6760       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6761       SmallVector<int, 8> MaskVec;
6762       for (unsigned i = 0; i != NumElems; ++i)
6763         MaskVec.push_back(i == Idx ? 0 : 1);
6764       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6765     }
6766   }
6767
6768   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6769   if (Values.size() == 1) {
6770     if (EVTBits == 32) {
6771       // Instead of a shuffle like this:
6772       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6773       // Check if it's possible to issue this instead.
6774       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6775       unsigned Idx = countTrailingZeros(NonZeros);
6776       SDValue Item = Op.getOperand(Idx);
6777       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6778         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6779     }
6780     return SDValue();
6781   }
6782
6783   // A vector full of immediates; various special cases are already
6784   // handled, so this is best done with a single constant-pool load.
6785   if (IsAllConstants)
6786     return SDValue();
6787
6788   // For AVX-length vectors, build the individual 128-bit pieces and use
6789   // shuffles to put them in place.
6790   if (VT.is256BitVector() || VT.is512BitVector()) {
6791     SmallVector<SDValue, 64> V;
6792     for (unsigned i = 0; i != NumElems; ++i)
6793       V.push_back(Op.getOperand(i));
6794
6795     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6796
6797     // Build both the lower and upper subvector.
6798     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6799                                 makeArrayRef(&V[0], NumElems/2));
6800     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6801                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
6802
6803     // Recreate the wider vector with the lower and upper part.
6804     if (VT.is256BitVector())
6805       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6806     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6807   }
6808
6809   // Let legalizer expand 2-wide build_vectors.
6810   if (EVTBits == 64) {
6811     if (NumNonZero == 1) {
6812       // One half is zero or undef.
6813       unsigned Idx = countTrailingZeros(NonZeros);
6814       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6815                                  Op.getOperand(Idx));
6816       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6817     }
6818     return SDValue();
6819   }
6820
6821   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6822   if (EVTBits == 8 && NumElems == 16) {
6823     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6824                                         Subtarget, *this);
6825     if (V.getNode()) return V;
6826   }
6827
6828   if (EVTBits == 16 && NumElems == 8) {
6829     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6830                                       Subtarget, *this);
6831     if (V.getNode()) return V;
6832   }
6833
6834   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
6835   if (EVTBits == 32 && NumElems == 4) {
6836     SDValue V = LowerBuildVectorv4x32(Op, NumElems, NonZeros, NumNonZero,
6837                                       NumZero, DAG, Subtarget, *this);
6838     if (V.getNode())
6839       return V;
6840   }
6841
6842   // If element VT is == 32 bits, turn it into a number of shuffles.
6843   SmallVector<SDValue, 8> V(NumElems);
6844   if (NumElems == 4 && NumZero > 0) {
6845     for (unsigned i = 0; i < 4; ++i) {
6846       bool isZero = !(NonZeros & (1 << i));
6847       if (isZero)
6848         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6849       else
6850         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6851     }
6852
6853     for (unsigned i = 0; i < 2; ++i) {
6854       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6855         default: break;
6856         case 0:
6857           V[i] = V[i*2];  // Must be a zero vector.
6858           break;
6859         case 1:
6860           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6861           break;
6862         case 2:
6863           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6864           break;
6865         case 3:
6866           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6867           break;
6868       }
6869     }
6870
6871     bool Reverse1 = (NonZeros & 0x3) == 2;
6872     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6873     int MaskVec[] = {
6874       Reverse1 ? 1 : 0,
6875       Reverse1 ? 0 : 1,
6876       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6877       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6878     };
6879     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6880   }
6881
6882   if (Values.size() > 1 && VT.is128BitVector()) {
6883     // Check for a build vector of consecutive loads.
6884     for (unsigned i = 0; i < NumElems; ++i)
6885       V[i] = Op.getOperand(i);
6886
6887     // Check for elements which are consecutive loads.
6888     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6889     if (LD.getNode())
6890       return LD;
6891
6892     // Check for a build vector from mostly shuffle plus few inserting.
6893     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6894     if (Sh.getNode())
6895       return Sh;
6896
6897     // For SSE 4.1, use insertps to put the high elements into the low element.
6898     if (getSubtarget()->hasSSE41()) {
6899       SDValue Result;
6900       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6901         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6902       else
6903         Result = DAG.getUNDEF(VT);
6904
6905       for (unsigned i = 1; i < NumElems; ++i) {
6906         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6907         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6908                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6909       }
6910       return Result;
6911     }
6912
6913     // Otherwise, expand into a number of unpckl*, start by extending each of
6914     // our (non-undef) elements to the full vector width with the element in the
6915     // bottom slot of the vector (which generates no code for SSE).
6916     for (unsigned i = 0; i < NumElems; ++i) {
6917       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6918         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6919       else
6920         V[i] = DAG.getUNDEF(VT);
6921     }
6922
6923     // Next, we iteratively mix elements, e.g. for v4f32:
6924     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6925     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6926     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6927     unsigned EltStride = NumElems >> 1;
6928     while (EltStride != 0) {
6929       for (unsigned i = 0; i < EltStride; ++i) {
6930         // If V[i+EltStride] is undef and this is the first round of mixing,
6931         // then it is safe to just drop this shuffle: V[i] is already in the
6932         // right place, the one element (since it's the first round) being
6933         // inserted as undef can be dropped.  This isn't safe for successive
6934         // rounds because they will permute elements within both vectors.
6935         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6936             EltStride == NumElems/2)
6937           continue;
6938
6939         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6940       }
6941       EltStride >>= 1;
6942     }
6943     return V[0];
6944   }
6945   return SDValue();
6946 }
6947
6948 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6949 // to create 256-bit vectors from two other 128-bit ones.
6950 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6951   SDLoc dl(Op);
6952   MVT ResVT = Op.getSimpleValueType();
6953
6954   assert((ResVT.is256BitVector() ||
6955           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6956
6957   SDValue V1 = Op.getOperand(0);
6958   SDValue V2 = Op.getOperand(1);
6959   unsigned NumElems = ResVT.getVectorNumElements();
6960   if(ResVT.is256BitVector())
6961     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6962
6963   if (Op.getNumOperands() == 4) {
6964     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6965                                 ResVT.getVectorNumElements()/2);
6966     SDValue V3 = Op.getOperand(2);
6967     SDValue V4 = Op.getOperand(3);
6968     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6969       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6970   }
6971   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6972 }
6973
6974 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6975   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6976   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6977          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6978           Op.getNumOperands() == 4)));
6979
6980   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6981   // from two other 128-bit ones.
6982
6983   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6984   return LowerAVXCONCAT_VECTORS(Op, DAG);
6985 }
6986
6987
6988 //===----------------------------------------------------------------------===//
6989 // Vector shuffle lowering
6990 //
6991 // This is an experimental code path for lowering vector shuffles on x86. It is
6992 // designed to handle arbitrary vector shuffles and blends, gracefully
6993 // degrading performance as necessary. It works hard to recognize idiomatic
6994 // shuffles and lower them to optimal instruction patterns without leaving
6995 // a framework that allows reasonably efficient handling of all vector shuffle
6996 // patterns.
6997 //===----------------------------------------------------------------------===//
6998
6999 /// \brief Tiny helper function to identify a no-op mask.
7000 ///
7001 /// This is a somewhat boring predicate function. It checks whether the mask
7002 /// array input, which is assumed to be a single-input shuffle mask of the kind
7003 /// used by the X86 shuffle instructions (not a fully general
7004 /// ShuffleVectorSDNode mask) requires any shuffles to occur. Both undef and an
7005 /// in-place shuffle are 'no-op's.
7006 static bool isNoopShuffleMask(ArrayRef<int> Mask) {
7007   for (int i = 0, Size = Mask.size(); i < Size; ++i)
7008     if (Mask[i] != -1 && Mask[i] != i)
7009       return false;
7010   return true;
7011 }
7012
7013 /// \brief Helper function to classify a mask as a single-input mask.
7014 ///
7015 /// This isn't a generic single-input test because in the vector shuffle
7016 /// lowering we canonicalize single inputs to be the first input operand. This
7017 /// means we can more quickly test for a single input by only checking whether
7018 /// an input from the second operand exists. We also assume that the size of
7019 /// mask corresponds to the size of the input vectors which isn't true in the
7020 /// fully general case.
7021 static bool isSingleInputShuffleMask(ArrayRef<int> Mask) {
7022   for (int M : Mask)
7023     if (M >= (int)Mask.size())
7024       return false;
7025   return true;
7026 }
7027
7028 /// \brief Get a 4-lane 8-bit shuffle immediate for a mask.
7029 ///
7030 /// This helper function produces an 8-bit shuffle immediate corresponding to
7031 /// the ubiquitous shuffle encoding scheme used in x86 instructions for
7032 /// shuffling 4 lanes. It can be used with most of the PSHUF instructions for
7033 /// example.
7034 ///
7035 /// NB: We rely heavily on "undef" masks preserving the input lane.
7036 static SDValue getV4X86ShuffleImm8ForMask(ArrayRef<int> Mask,
7037                                           SelectionDAG &DAG) {
7038   assert(Mask.size() == 4 && "Only 4-lane shuffle masks");
7039   assert(Mask[0] >= -1 && Mask[0] < 4 && "Out of bound mask element!");
7040   assert(Mask[1] >= -1 && Mask[1] < 4 && "Out of bound mask element!");
7041   assert(Mask[2] >= -1 && Mask[2] < 4 && "Out of bound mask element!");
7042   assert(Mask[3] >= -1 && Mask[3] < 4 && "Out of bound mask element!");
7043
7044   unsigned Imm = 0;
7045   Imm |= (Mask[0] == -1 ? 0 : Mask[0]) << 0;
7046   Imm |= (Mask[1] == -1 ? 1 : Mask[1]) << 2;
7047   Imm |= (Mask[2] == -1 ? 2 : Mask[2]) << 4;
7048   Imm |= (Mask[3] == -1 ? 3 : Mask[3]) << 6;
7049   return DAG.getConstant(Imm, MVT::i8);
7050 }
7051
7052 /// \brief Handle lowering of 2-lane 64-bit floating point shuffles.
7053 ///
7054 /// This is the basis function for the 2-lane 64-bit shuffles as we have full
7055 /// support for floating point shuffles but not integer shuffles. These
7056 /// instructions will incur a domain crossing penalty on some chips though so
7057 /// it is better to avoid lowering through this for integer vectors where
7058 /// possible.
7059 static SDValue lowerV2F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7060                                        const X86Subtarget *Subtarget,
7061                                        SelectionDAG &DAG) {
7062   SDLoc DL(Op);
7063   assert(Op.getSimpleValueType() == MVT::v2f64 && "Bad shuffle type!");
7064   assert(V1.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
7065   assert(V2.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
7066   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7067   ArrayRef<int> Mask = SVOp->getMask();
7068   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
7069
7070   if (isSingleInputShuffleMask(Mask)) {
7071     // Straight shuffle of a single input vector. Simulate this by using the
7072     // single input as both of the "inputs" to this instruction..
7073     unsigned SHUFPDMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1);
7074     return DAG.getNode(X86ISD::SHUFP, SDLoc(Op), MVT::v2f64, V1, V1,
7075                        DAG.getConstant(SHUFPDMask, MVT::i8));
7076   }
7077   assert(Mask[0] >= 0 && Mask[0] < 2 && "Non-canonicalized blend!");
7078   assert(Mask[1] >= 2 && "Non-canonicalized blend!");
7079
7080   unsigned SHUFPDMask = (Mask[0] == 1) | (((Mask[1] - 2) == 1) << 1);
7081   return DAG.getNode(X86ISD::SHUFP, SDLoc(Op), MVT::v2f64, V1, V2,
7082                      DAG.getConstant(SHUFPDMask, MVT::i8));
7083 }
7084
7085 /// \brief Handle lowering of 2-lane 64-bit integer shuffles.
7086 ///
7087 /// Tries to lower a 2-lane 64-bit shuffle using shuffle operations provided by
7088 /// the integer unit to minimize domain crossing penalties. However, for blends
7089 /// it falls back to the floating point shuffle operation with appropriate bit
7090 /// casting.
7091 static SDValue lowerV2I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7092                                        const X86Subtarget *Subtarget,
7093                                        SelectionDAG &DAG) {
7094   SDLoc DL(Op);
7095   assert(Op.getSimpleValueType() == MVT::v2i64 && "Bad shuffle type!");
7096   assert(V1.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
7097   assert(V2.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
7098   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7099   ArrayRef<int> Mask = SVOp->getMask();
7100   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
7101
7102   if (isSingleInputShuffleMask(Mask)) {
7103     // Straight shuffle of a single input vector. For everything from SSE2
7104     // onward this has a single fast instruction with no scary immediates.
7105     // We have to map the mask as it is actually a v4i32 shuffle instruction.
7106     V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V1);
7107     int WidenedMask[4] = {
7108         std::max(Mask[0], 0) * 2, std::max(Mask[0], 0) * 2 + 1,
7109         std::max(Mask[1], 0) * 2, std::max(Mask[1], 0) * 2 + 1};
7110     return DAG.getNode(
7111         ISD::BITCAST, DL, MVT::v2i64,
7112         DAG.getNode(X86ISD::PSHUFD, SDLoc(Op), MVT::v4i32, V1,
7113                     getV4X86ShuffleImm8ForMask(WidenedMask, DAG)));
7114   }
7115
7116   // We implement this with SHUFPD which is pretty lame because it will likely
7117   // incur 2 cycles of stall for integer vectors on Nehalem and older chips.
7118   // However, all the alternatives are still more cycles and newer chips don't
7119   // have this problem. It would be really nice if x86 had better shuffles here.
7120   V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, V1);
7121   V2 = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, V2);
7122   return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
7123                      DAG.getVectorShuffle(MVT::v2f64, DL, V1, V2, Mask));
7124 }
7125
7126 /// \brief Lower 4-lane 32-bit floating point shuffles.
7127 ///
7128 /// Uses instructions exclusively from the floating point unit to minimize
7129 /// domain crossing penalties, as these are sufficient to implement all v4f32
7130 /// shuffles.
7131 static SDValue lowerV4F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7132                                        const X86Subtarget *Subtarget,
7133                                        SelectionDAG &DAG) {
7134   SDLoc DL(Op);
7135   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
7136   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7137   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7138   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7139   ArrayRef<int> Mask = SVOp->getMask();
7140   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7141
7142   SDValue LowV = V1, HighV = V2;
7143   int NewMask[4] = {Mask[0], Mask[1], Mask[2], Mask[3]};
7144
7145   int NumV2Elements =
7146       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
7147
7148   if (NumV2Elements == 0)
7149     // Straight shuffle of a single input vector. We pass the input vector to
7150     // both operands to simulate this with a SHUFPS.
7151     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V1,
7152                        getV4X86ShuffleImm8ForMask(Mask, DAG));
7153
7154   if (NumV2Elements == 1) {
7155     int V2Index =
7156         std::find_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; }) -
7157         Mask.begin();
7158     // Compute the index adjacent to V2Index and in the same half by toggling
7159     // the low bit.
7160     int V2AdjIndex = V2Index ^ 1;
7161
7162     if (Mask[V2AdjIndex] == -1) {
7163       // Handles all the cases where we have a single V2 element and an undef.
7164       // This will only ever happen in the high lanes because we commute the
7165       // vector otherwise.
7166       if (V2Index < 2)
7167         std::swap(LowV, HighV);
7168       NewMask[V2Index] -= 4;
7169     } else {
7170       // Handle the case where the V2 element ends up adjacent to a V1 element.
7171       // To make this work, blend them together as the first step.
7172       int V1Index = V2AdjIndex;
7173       int BlendMask[4] = {Mask[V2Index] - 4, 0, Mask[V1Index], 0};
7174       V2 = DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V2, V1,
7175                        getV4X86ShuffleImm8ForMask(BlendMask, DAG));
7176
7177       // Now proceed to reconstruct the final blend as we have the necessary
7178       // high or low half formed.
7179       if (V2Index < 2) {
7180         LowV = V2;
7181         HighV = V1;
7182       } else {
7183         HighV = V2;
7184       }
7185       NewMask[V1Index] = 2; // We put the V1 element in V2[2].
7186       NewMask[V2Index] = 0; // We shifted the V2 element into V2[0].
7187     }
7188   } else if (NumV2Elements == 2) {
7189     if (Mask[0] < 4 && Mask[1] < 4) {
7190       // Handle the easy case where we have V1 in the low lanes and V2 in the
7191       // high lanes. We never see this reversed because we sort the shuffle.
7192       NewMask[2] -= 4;
7193       NewMask[3] -= 4;
7194     } else {
7195       // We have a mixture of V1 and V2 in both low and high lanes. Rather than
7196       // trying to place elements directly, just blend them and set up the final
7197       // shuffle to place them.
7198
7199       // The first two blend mask elements are for V1, the second two are for
7200       // V2.
7201       int BlendMask[4] = {Mask[0] < 4 ? Mask[0] : Mask[1],
7202                           Mask[2] < 4 ? Mask[2] : Mask[3],
7203                           (Mask[0] >= 4 ? Mask[0] : Mask[1]) - 4,
7204                           (Mask[2] >= 4 ? Mask[2] : Mask[3]) - 4};
7205       V1 = DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V2,
7206                        getV4X86ShuffleImm8ForMask(BlendMask, DAG));
7207
7208       // Now we do a normal shuffle of V1 by giving V1 as both operands to
7209       // a blend.
7210       LowV = HighV = V1;
7211       NewMask[0] = Mask[0] < 4 ? 0 : 2;
7212       NewMask[1] = Mask[0] < 4 ? 2 : 0;
7213       NewMask[2] = Mask[2] < 4 ? 1 : 3;
7214       NewMask[3] = Mask[2] < 4 ? 3 : 1;
7215     }
7216   }
7217   return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, LowV, HighV,
7218                      getV4X86ShuffleImm8ForMask(NewMask, DAG));
7219 }
7220
7221 /// \brief Lower 4-lane i32 vector shuffles.
7222 ///
7223 /// We try to handle these with integer-domain shuffles where we can, but for
7224 /// blends we use the floating point domain blend instructions.
7225 static SDValue lowerV4I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7226                                        const X86Subtarget *Subtarget,
7227                                        SelectionDAG &DAG) {
7228   SDLoc DL(Op);
7229   assert(Op.getSimpleValueType() == MVT::v4i32 && "Bad shuffle type!");
7230   assert(V1.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
7231   assert(V2.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
7232   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7233   ArrayRef<int> Mask = SVOp->getMask();
7234   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7235
7236   if (isSingleInputShuffleMask(Mask))
7237     // Straight shuffle of a single input vector. For everything from SSE2
7238     // onward this has a single fast instruction with no scary immediates.
7239     return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
7240                        getV4X86ShuffleImm8ForMask(Mask, DAG));
7241
7242   // We implement this with SHUFPS because it can blend from two vectors.
7243   // Because we're going to eventually use SHUFPS, we use SHUFPS even to build
7244   // up the inputs, bypassing domain shift penalties that we would encur if we
7245   // directly used PSHUFD on Nehalem and older. For newer chips, this isn't
7246   // relevant.
7247   return DAG.getNode(ISD::BITCAST, DL, MVT::v4i32,
7248                      DAG.getVectorShuffle(
7249                          MVT::v4f32, DL,
7250                          DAG.getNode(ISD::BITCAST, DL, MVT::v4f32, V1),
7251                          DAG.getNode(ISD::BITCAST, DL, MVT::v4f32, V2), Mask));
7252 }
7253
7254 /// \brief Lowering of single-input v8i16 shuffles is the cornerstone of SSE2
7255 /// shuffle lowering, and the most complex part.
7256 ///
7257 /// The lowering strategy is to try to form pairs of input lanes which are
7258 /// targeted at the same half of the final vector, and then use a dword shuffle
7259 /// to place them onto the right half, and finally unpack the paired lanes into
7260 /// their final position.
7261 ///
7262 /// The exact breakdown of how to form these dword pairs and align them on the
7263 /// correct sides is really tricky. See the comments within the function for
7264 /// more of the details.
7265 static SDValue lowerV8I16SingleInputVectorShuffle(
7266     SDLoc DL, SDValue V, MutableArrayRef<int> Mask,
7267     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7268   assert(V.getSimpleValueType() == MVT::v8i16 && "Bad input type!");
7269   MutableArrayRef<int> LoMask = Mask.slice(0, 4);
7270   MutableArrayRef<int> HiMask = Mask.slice(4, 4);
7271
7272   SmallVector<int, 4> LoInputs;
7273   std::copy_if(LoMask.begin(), LoMask.end(), std::back_inserter(LoInputs),
7274                [](int M) { return M >= 0; });
7275   std::sort(LoInputs.begin(), LoInputs.end());
7276   LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()), LoInputs.end());
7277   SmallVector<int, 4> HiInputs;
7278   std::copy_if(HiMask.begin(), HiMask.end(), std::back_inserter(HiInputs),
7279                [](int M) { return M >= 0; });
7280   std::sort(HiInputs.begin(), HiInputs.end());
7281   HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end());
7282   int NumLToL =
7283       std::lower_bound(LoInputs.begin(), LoInputs.end(), 4) - LoInputs.begin();
7284   int NumHToL = LoInputs.size() - NumLToL;
7285   int NumLToH =
7286       std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin();
7287   int NumHToH = HiInputs.size() - NumLToH;
7288   MutableArrayRef<int> LToLInputs(LoInputs.data(), NumLToL);
7289   MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH);
7290   MutableArrayRef<int> HToLInputs(LoInputs.data() + NumLToL, NumHToL);
7291   MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH);
7292
7293   // Simplify the 1-into-3 and 3-into-1 cases with a single pshufd. For all
7294   // such inputs we can swap two of the dwords across the half mark and end up
7295   // with <=2 inputs to each half in each half. Once there, we can fall through
7296   // to the generic code below. For example:
7297   //
7298   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
7299   // Mask:  [0, 1, 2, 7, 4, 5, 6, 3] -----------------> [0, 1, 4, 7, 2, 3, 6, 5]
7300   //
7301   // Before we had 3-1 in the low half and 3-1 in the high half. Afterward, 2-2
7302   // and 2-2.
7303   auto balanceSides = [&](ArrayRef<int> ThreeInputs, int OneInput,
7304                           int ThreeInputHalfSum, int OneInputHalfOffset) {
7305     // Compute the index of dword with only one word among the three inputs in
7306     // a half by taking the sum of the half with three inputs and subtracting
7307     // the sum of the actual three inputs. The difference is the remaining
7308     // slot.
7309     int DWordA = (ThreeInputHalfSum -
7310                   std::accumulate(ThreeInputs.begin(), ThreeInputs.end(), 0)) /
7311                  2;
7312     int DWordB = OneInputHalfOffset / 2 + (OneInput / 2 + 1) % 2;
7313
7314     int PSHUFDMask[] = {0, 1, 2, 3};
7315     PSHUFDMask[DWordA] = DWordB;
7316     PSHUFDMask[DWordB] = DWordA;
7317     V = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7318                     DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7319                                 DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V),
7320                                 getV4X86ShuffleImm8ForMask(PSHUFDMask, DAG)));
7321
7322     // Adjust the mask to match the new locations of A and B.
7323     for (int &M : Mask)
7324       if (M != -1 && M/2 == DWordA)
7325         M = 2 * DWordB + M % 2;
7326       else if (M != -1 && M/2 == DWordB)
7327         M = 2 * DWordA + M % 2;
7328
7329     // Recurse back into this routine to re-compute state now that this isn't
7330     // a 3 and 1 problem.
7331     return DAG.getVectorShuffle(MVT::v8i16, DL, V, DAG.getUNDEF(MVT::v8i16),
7332                                 Mask);
7333   };
7334   if (NumLToL == 3 && NumHToL == 1)
7335     return balanceSides(LToLInputs, HToLInputs[0], 0 + 1 + 2 + 3, 4);
7336   else if (NumLToL == 1 && NumHToL == 3)
7337     return balanceSides(HToLInputs, LToLInputs[0], 4 + 5 + 6 + 7, 0);
7338   else if (NumLToH == 1 && NumHToH == 3)
7339     return balanceSides(HToHInputs, LToHInputs[0], 4 + 5 + 6 + 7, 0);
7340   else if (NumLToH == 3 && NumHToH == 1)
7341     return balanceSides(LToHInputs, HToHInputs[0], 0 + 1 + 2 + 3, 4);
7342
7343   // At this point there are at most two inputs to the low and high halves from
7344   // each half. That means the inputs can always be grouped into dwords and
7345   // those dwords can then be moved to the correct half with a dword shuffle.
7346   // We use at most one low and one high word shuffle to collect these paired
7347   // inputs into dwords, and finally a dword shuffle to place them.
7348   int PSHUFLMask[4] = {-1, -1, -1, -1};
7349   int PSHUFHMask[4] = {-1, -1, -1, -1};
7350   int PSHUFDMask[4] = {-1, -1, -1, -1};
7351
7352   // First fix the masks for all the inputs that are staying in their
7353   // original halves. This will then dictate the targets of the cross-half
7354   // shuffles.
7355   auto fixInPlaceInputs = [&PSHUFDMask](
7356       ArrayRef<int> InPlaceInputs, MutableArrayRef<int> SourceHalfMask,
7357       MutableArrayRef<int> HalfMask, int HalfOffset) {
7358     if (InPlaceInputs.empty())
7359       return;
7360     if (InPlaceInputs.size() == 1) {
7361       SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
7362           InPlaceInputs[0] - HalfOffset;
7363       PSHUFDMask[InPlaceInputs[0] / 2] = InPlaceInputs[0] / 2;
7364       return;
7365     }
7366
7367     assert(InPlaceInputs.size() == 2 && "Cannot handle 3 or 4 inputs!");
7368     SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
7369         InPlaceInputs[0] - HalfOffset;
7370     // Put the second input next to the first so that they are packed into
7371     // a dword. We find the adjacent index by toggling the low bit.
7372     int AdjIndex = InPlaceInputs[0] ^ 1;
7373     SourceHalfMask[AdjIndex - HalfOffset] = InPlaceInputs[1] - HalfOffset;
7374     std::replace(HalfMask.begin(), HalfMask.end(), InPlaceInputs[1], AdjIndex);
7375     PSHUFDMask[AdjIndex / 2] = AdjIndex / 2;
7376   };
7377   if (!HToLInputs.empty())
7378     fixInPlaceInputs(LToLInputs, PSHUFLMask, LoMask, 0);
7379   if (!LToHInputs.empty())
7380     fixInPlaceInputs(HToHInputs, PSHUFHMask, HiMask, 4);
7381
7382   // Now gather the cross-half inputs and place them into a free dword of
7383   // their target half.
7384   // FIXME: This operation could almost certainly be simplified dramatically to
7385   // look more like the 3-1 fixing operation.
7386   auto moveInputsToRightHalf = [&PSHUFDMask](
7387       MutableArrayRef<int> IncomingInputs, ArrayRef<int> ExistingInputs,
7388       MutableArrayRef<int> SourceHalfMask, MutableArrayRef<int> HalfMask,
7389       int SourceOffset, int DestOffset) {
7390     auto isWordClobbered = [](ArrayRef<int> SourceHalfMask, int Word) {
7391       return SourceHalfMask[Word] != -1 && SourceHalfMask[Word] != Word;
7392     };
7393     auto isDWordClobbered = [&isWordClobbered](ArrayRef<int> SourceHalfMask,
7394                                                int Word) {
7395       int LowWord = Word & ~1;
7396       int HighWord = Word | 1;
7397       return isWordClobbered(SourceHalfMask, LowWord) ||
7398              isWordClobbered(SourceHalfMask, HighWord);
7399     };
7400
7401     if (IncomingInputs.empty())
7402       return;
7403
7404     if (ExistingInputs.empty()) {
7405       // Map any dwords with inputs from them into the right half.
7406       for (int Input : IncomingInputs) {
7407         // If the source half mask maps over the inputs, turn those into
7408         // swaps and use the swapped lane.
7409         if (isWordClobbered(SourceHalfMask, Input - SourceOffset)) {
7410           if (SourceHalfMask[SourceHalfMask[Input - SourceOffset]] == -1) {
7411             SourceHalfMask[SourceHalfMask[Input - SourceOffset]] =
7412                 Input - SourceOffset;
7413             // We have to swap the uses in our half mask in one sweep.
7414             for (int &M : HalfMask)
7415               if (M == SourceHalfMask[Input - SourceOffset])
7416                 M = Input;
7417               else if (M == Input)
7418                 M = SourceHalfMask[Input - SourceOffset] + SourceOffset;
7419           } else {
7420             assert(SourceHalfMask[SourceHalfMask[Input - SourceOffset]] ==
7421                        Input - SourceOffset &&
7422                    "Previous placement doesn't match!");
7423           }
7424           // Note that this correctly re-maps both when we do a swap and when
7425           // we observe the other side of the swap above. We rely on that to
7426           // avoid swapping the members of the input list directly.
7427           Input = SourceHalfMask[Input - SourceOffset] + SourceOffset;
7428         }
7429
7430         // Map the input's dword into the correct half.
7431         if (PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] == -1)
7432           PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] = Input / 2;
7433         else
7434           assert(PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] ==
7435                      Input / 2 &&
7436                  "Previous placement doesn't match!");
7437       }
7438
7439       // And just directly shift any other-half mask elements to be same-half
7440       // as we will have mirrored the dword containing the element into the
7441       // same position within that half.
7442       for (int &M : HalfMask)
7443         if (M >= SourceOffset && M < SourceOffset + 4) {
7444           M = M - SourceOffset + DestOffset;
7445           assert(M >= 0 && "This should never wrap below zero!");
7446         }
7447       return;
7448     }
7449
7450     // Ensure we have the input in a viable dword of its current half. This
7451     // is particularly tricky because the original position may be clobbered
7452     // by inputs being moved and *staying* in that half.
7453     if (IncomingInputs.size() == 1) {
7454       if (isWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
7455         int InputFixed = std::find(std::begin(SourceHalfMask),
7456                                    std::end(SourceHalfMask), -1) -
7457                          std::begin(SourceHalfMask) + SourceOffset;
7458         SourceHalfMask[InputFixed - SourceOffset] =
7459             IncomingInputs[0] - SourceOffset;
7460         std::replace(HalfMask.begin(), HalfMask.end(), IncomingInputs[0],
7461                      InputFixed);
7462         IncomingInputs[0] = InputFixed;
7463       }
7464     } else if (IncomingInputs.size() == 2) {
7465       if (IncomingInputs[0] / 2 != IncomingInputs[1] / 2 ||
7466           isDWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
7467         int SourceDWordBase = !isDWordClobbered(SourceHalfMask, 0) ? 0 : 2;
7468         assert(!isDWordClobbered(SourceHalfMask, SourceDWordBase) &&
7469                "Not all dwords can be clobbered!");
7470         SourceHalfMask[SourceDWordBase] = IncomingInputs[0] - SourceOffset;
7471         SourceHalfMask[SourceDWordBase + 1] = IncomingInputs[1] - SourceOffset;
7472         for (int &M : HalfMask)
7473           if (M == IncomingInputs[0])
7474             M = SourceDWordBase + SourceOffset;
7475           else if (M == IncomingInputs[1])
7476             M = SourceDWordBase + 1 + SourceOffset;
7477         IncomingInputs[0] = SourceDWordBase + SourceOffset;
7478         IncomingInputs[1] = SourceDWordBase + 1 + SourceOffset;
7479       }
7480     } else {
7481       llvm_unreachable("Unhandled input size!");
7482     }
7483
7484     // Now hoist the DWord down to the right half.
7485     int FreeDWord = (PSHUFDMask[DestOffset / 2] == -1 ? 0 : 1) + DestOffset / 2;
7486     assert(PSHUFDMask[FreeDWord] == -1 && "DWord not free");
7487     PSHUFDMask[FreeDWord] = IncomingInputs[0] / 2;
7488     for (int Input : IncomingInputs)
7489       std::replace(HalfMask.begin(), HalfMask.end(), Input,
7490                    FreeDWord * 2 + Input % 2);
7491   };
7492   moveInputsToRightHalf(HToLInputs, LToLInputs, PSHUFHMask, LoMask,
7493                         /*SourceOffset*/ 4, /*DestOffset*/ 0);
7494   moveInputsToRightHalf(LToHInputs, HToHInputs, PSHUFLMask, HiMask,
7495                         /*SourceOffset*/ 0, /*DestOffset*/ 4);
7496
7497   // Now enact all the shuffles we've computed to move the inputs into their
7498   // target half.
7499   if (!isNoopShuffleMask(PSHUFLMask))
7500     V = DAG.getNode(X86ISD::PSHUFLW, DL, MVT::v8i16, V,
7501                     getV4X86ShuffleImm8ForMask(PSHUFLMask, DAG));
7502   if (!isNoopShuffleMask(PSHUFHMask))
7503     V = DAG.getNode(X86ISD::PSHUFHW, DL, MVT::v8i16, V,
7504                     getV4X86ShuffleImm8ForMask(PSHUFHMask, DAG));
7505   if (!isNoopShuffleMask(PSHUFDMask))
7506     V = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7507                     DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7508                                 DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V),
7509                                 getV4X86ShuffleImm8ForMask(PSHUFDMask, DAG)));
7510
7511   // At this point, each half should contain all its inputs, and we can then
7512   // just shuffle them into their final position.
7513   assert(std::count_if(LoMask.begin(), LoMask.end(),
7514                        [](int M) { return M >= 4; }) == 0 &&
7515          "Failed to lift all the high half inputs to the low mask!");
7516   assert(std::count_if(HiMask.begin(), HiMask.end(),
7517                        [](int M) { return M >= 0 && M < 4; }) == 0 &&
7518          "Failed to lift all the low half inputs to the high mask!");
7519
7520   // Do a half shuffle for the low mask.
7521   if (!isNoopShuffleMask(LoMask))
7522     V = DAG.getNode(X86ISD::PSHUFLW, DL, MVT::v8i16, V,
7523                     getV4X86ShuffleImm8ForMask(LoMask, DAG));
7524
7525   // Do a half shuffle with the high mask after shifting its values down.
7526   for (int &M : HiMask)
7527     if (M >= 0)
7528       M -= 4;
7529   if (!isNoopShuffleMask(HiMask))
7530     V = DAG.getNode(X86ISD::PSHUFHW, DL, MVT::v8i16, V,
7531                     getV4X86ShuffleImm8ForMask(HiMask, DAG));
7532
7533   return V;
7534 }
7535
7536 /// \brief Detect whether the mask pattern should be lowered through
7537 /// interleaving.
7538 ///
7539 /// This essentially tests whether viewing the mask as an interleaving of two
7540 /// sub-sequences reduces the cross-input traffic of a blend operation. If so,
7541 /// lowering it through interleaving is a significantly better strategy.
7542 static bool shouldLowerAsInterleaving(ArrayRef<int> Mask) {
7543   int NumEvenInputs[2] = {0, 0};
7544   int NumOddInputs[2] = {0, 0};
7545   int NumLoInputs[2] = {0, 0};
7546   int NumHiInputs[2] = {0, 0};
7547   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
7548     if (Mask[i] < 0)
7549       continue;
7550
7551     int InputIdx = Mask[i] >= Size;
7552
7553     if (i < Size / 2)
7554       ++NumLoInputs[InputIdx];
7555     else
7556       ++NumHiInputs[InputIdx];
7557
7558     if ((i % 2) == 0)
7559       ++NumEvenInputs[InputIdx];
7560     else
7561       ++NumOddInputs[InputIdx];
7562   }
7563
7564   // The minimum number of cross-input results for both the interleaved and
7565   // split cases. If interleaving results in fewer cross-input results, return
7566   // true.
7567   int InterleavedCrosses = std::min(NumEvenInputs[1] + NumOddInputs[0],
7568                                     NumEvenInputs[0] + NumOddInputs[1]);
7569   int SplitCrosses = std::min(NumLoInputs[1] + NumHiInputs[0],
7570                               NumLoInputs[0] + NumHiInputs[1]);
7571   return InterleavedCrosses < SplitCrosses;
7572 }
7573
7574 /// \brief Blend two v8i16 vectors using a naive unpack strategy.
7575 ///
7576 /// This strategy only works when the inputs from each vector fit into a single
7577 /// half of that vector, and generally there are not so many inputs as to leave
7578 /// the in-place shuffles required highly constrained (and thus expensive). It
7579 /// shifts all the inputs into a single side of both input vectors and then
7580 /// uses an unpack to interleave these inputs in a single vector. At that
7581 /// point, we will fall back on the generic single input shuffle lowering.
7582 static SDValue lowerV8I16BasicBlendVectorShuffle(SDLoc DL, SDValue V1,
7583                                                  SDValue V2,
7584                                                  MutableArrayRef<int> Mask,
7585                                                  const X86Subtarget *Subtarget,
7586                                                  SelectionDAG &DAG) {
7587   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad input type!");
7588   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad input type!");
7589   SmallVector<int, 3> LoV1Inputs, HiV1Inputs, LoV2Inputs, HiV2Inputs;
7590   for (int i = 0; i < 8; ++i)
7591     if (Mask[i] >= 0 && Mask[i] < 4)
7592       LoV1Inputs.push_back(i);
7593     else if (Mask[i] >= 4 && Mask[i] < 8)
7594       HiV1Inputs.push_back(i);
7595     else if (Mask[i] >= 8 && Mask[i] < 12)
7596       LoV2Inputs.push_back(i);
7597     else if (Mask[i] >= 12)
7598       HiV2Inputs.push_back(i);
7599
7600   int NumV1Inputs = LoV1Inputs.size() + HiV1Inputs.size();
7601   int NumV2Inputs = LoV2Inputs.size() + HiV2Inputs.size();
7602   (void)NumV1Inputs;
7603   (void)NumV2Inputs;
7604   assert(NumV1Inputs > 0 && NumV1Inputs <= 3 && "At most 3 inputs supported");
7605   assert(NumV2Inputs > 0 && NumV2Inputs <= 3 && "At most 3 inputs supported");
7606   assert(NumV1Inputs + NumV2Inputs <= 4 && "At most 4 combined inputs");
7607
7608   bool MergeFromLo = LoV1Inputs.size() + LoV2Inputs.size() >=
7609                      HiV1Inputs.size() + HiV2Inputs.size();
7610
7611   auto moveInputsToHalf = [&](SDValue V, ArrayRef<int> LoInputs,
7612                               ArrayRef<int> HiInputs, bool MoveToLo,
7613                               int MaskOffset) {
7614     ArrayRef<int> GoodInputs = MoveToLo ? LoInputs : HiInputs;
7615     ArrayRef<int> BadInputs = MoveToLo ? HiInputs : LoInputs;
7616     if (BadInputs.empty())
7617       return V;
7618
7619     int MoveMask[] = {-1, -1, -1, -1, -1, -1, -1, -1};
7620     int MoveOffset = MoveToLo ? 0 : 4;
7621
7622     if (GoodInputs.empty()) {
7623       for (int BadInput : BadInputs) {
7624         MoveMask[Mask[BadInput] % 4 + MoveOffset] = Mask[BadInput] - MaskOffset;
7625         Mask[BadInput] = Mask[BadInput] % 4 + MoveOffset + MaskOffset;
7626       }
7627     } else {
7628       if (GoodInputs.size() == 2) {
7629         // If the low inputs are spread across two dwords, pack them into
7630         // a single dword.
7631         MoveMask[Mask[GoodInputs[0]] % 2 + MoveOffset] =
7632             Mask[GoodInputs[0]] - MaskOffset;
7633         MoveMask[Mask[GoodInputs[1]] % 2 + MoveOffset] =
7634             Mask[GoodInputs[1]] - MaskOffset;
7635         Mask[GoodInputs[0]] = Mask[GoodInputs[0]] % 2 + MoveOffset + MaskOffset;
7636         Mask[GoodInputs[1]] = Mask[GoodInputs[0]] % 2 + MoveOffset + MaskOffset;
7637       } else {
7638         // Otherwise pin the low inputs.
7639         for (int GoodInput : GoodInputs)
7640           MoveMask[Mask[GoodInput] - MaskOffset] = Mask[GoodInput] - MaskOffset;
7641       }
7642
7643       int MoveMaskIdx =
7644           std::find(std::begin(MoveMask) + MoveOffset, std::end(MoveMask), -1) -
7645           std::begin(MoveMask);
7646       assert(MoveMaskIdx >= MoveOffset && "Established above");
7647
7648       if (BadInputs.size() == 2) {
7649         assert(MoveMask[MoveMaskIdx] == -1 && "Expected empty slot");
7650         assert(MoveMask[MoveMaskIdx + 1] == -1 && "Expected empty slot");
7651         MoveMask[MoveMaskIdx + Mask[BadInputs[0]] % 2] =
7652             Mask[BadInputs[0]] - MaskOffset;
7653         MoveMask[MoveMaskIdx + Mask[BadInputs[1]] % 2] =
7654             Mask[BadInputs[1]] - MaskOffset;
7655         Mask[BadInputs[0]] = MoveMaskIdx + Mask[BadInputs[0]] % 2 + MaskOffset;
7656         Mask[BadInputs[1]] = MoveMaskIdx + Mask[BadInputs[1]] % 2 + MaskOffset;
7657       } else {
7658         assert(BadInputs.size() == 1 && "All sizes handled");
7659         MoveMask[MoveMaskIdx] = Mask[BadInputs[0]] - MaskOffset;
7660         Mask[BadInputs[0]] = MoveMaskIdx + MaskOffset;
7661       }
7662     }
7663
7664     return DAG.getVectorShuffle(MVT::v8i16, DL, V, DAG.getUNDEF(MVT::v8i16),
7665                                 MoveMask);
7666   };
7667   V1 = moveInputsToHalf(V1, LoV1Inputs, HiV1Inputs, MergeFromLo,
7668                         /*MaskOffset*/ 0);
7669   V2 = moveInputsToHalf(V2, LoV2Inputs, HiV2Inputs, MergeFromLo,
7670                         /*MaskOffset*/ 8);
7671
7672   // FIXME: Select an interleaving of the merge of V1 and V2 that minimizes
7673   // cross-half traffic in the final shuffle.
7674
7675   // Munge the mask to be a single-input mask after the unpack merges the
7676   // results.
7677   for (int &M : Mask)
7678     if (M != -1)
7679       M = 2 * (M % 4) + (M / 8);
7680
7681   return DAG.getVectorShuffle(
7682       MVT::v8i16, DL, DAG.getNode(MergeFromLo ? X86ISD::UNPCKL : X86ISD::UNPCKH,
7683                                   DL, MVT::v8i16, V1, V2),
7684       DAG.getUNDEF(MVT::v8i16), Mask);
7685 }
7686
7687 /// \brief Generic lowering of 8-lane i16 shuffles.
7688 ///
7689 /// This handles both single-input shuffles and combined shuffle/blends with
7690 /// two inputs. The single input shuffles are immediately delegated to
7691 /// a dedicated lowering routine.
7692 ///
7693 /// The blends are lowered in one of three fundamental ways. If there are few
7694 /// enough inputs, it delegates to a basic UNPCK-based strategy. If the shuffle
7695 /// of the input is significantly cheaper when lowered as an interleaving of
7696 /// the two inputs, try to interleave them. Otherwise, blend the low and high
7697 /// halves of the inputs separately (making them have relatively few inputs)
7698 /// and then concatenate them.
7699 static SDValue lowerV8I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7700                                        const X86Subtarget *Subtarget,
7701                                        SelectionDAG &DAG) {
7702   SDLoc DL(Op);
7703   assert(Op.getSimpleValueType() == MVT::v8i16 && "Bad shuffle type!");
7704   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
7705   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
7706   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7707   ArrayRef<int> OrigMask = SVOp->getMask();
7708   int MaskStorage[8] = {OrigMask[0], OrigMask[1], OrigMask[2], OrigMask[3],
7709                         OrigMask[4], OrigMask[5], OrigMask[6], OrigMask[7]};
7710   MutableArrayRef<int> Mask(MaskStorage);
7711
7712   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
7713
7714   auto isV1 = [](int M) { return M >= 0 && M < 8; };
7715   auto isV2 = [](int M) { return M >= 8; };
7716
7717   int NumV1Inputs = std::count_if(Mask.begin(), Mask.end(), isV1);
7718   int NumV2Inputs = std::count_if(Mask.begin(), Mask.end(), isV2);
7719
7720   if (NumV2Inputs == 0)
7721     return lowerV8I16SingleInputVectorShuffle(DL, V1, Mask, Subtarget, DAG);
7722
7723   assert(NumV1Inputs > 0 && "All single-input shuffles should be canonicalized "
7724                             "to be V1-input shuffles.");
7725
7726   if (NumV1Inputs + NumV2Inputs <= 4)
7727     return lowerV8I16BasicBlendVectorShuffle(DL, V1, V2, Mask, Subtarget, DAG);
7728
7729   // Check whether an interleaving lowering is likely to be more efficient.
7730   // This isn't perfect but it is a strong heuristic that tends to work well on
7731   // the kinds of shuffles that show up in practice.
7732   //
7733   // FIXME: Handle 1x, 2x, and 4x interleaving.
7734   if (shouldLowerAsInterleaving(Mask)) {
7735     // FIXME: Figure out whether we should pack these into the low or high
7736     // halves.
7737
7738     int EMask[8], OMask[8];
7739     for (int i = 0; i < 4; ++i) {
7740       EMask[i] = Mask[2*i];
7741       OMask[i] = Mask[2*i + 1];
7742       EMask[i + 4] = -1;
7743       OMask[i + 4] = -1;
7744     }
7745
7746     SDValue Evens = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, EMask);
7747     SDValue Odds = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, OMask);
7748
7749     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, Evens, Odds);
7750   }
7751
7752   int LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7753   int HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7754
7755   for (int i = 0; i < 4; ++i) {
7756     LoBlendMask[i] = Mask[i];
7757     HiBlendMask[i] = Mask[i + 4];
7758   }
7759
7760   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, LoBlendMask);
7761   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, HiBlendMask);
7762   LoV = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, LoV);
7763   HiV = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, HiV);
7764
7765   return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7766                      DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, LoV, HiV));
7767 }
7768
7769 /// \brief Check whether a compaction lowering can be done by dropping even
7770 /// elements and compute how many times even elements must be dropped.
7771 ///
7772 /// This handles shuffles which take every Nth element where N is a power of
7773 /// two. Example shuffle masks:
7774 ///
7775 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14,  0,  2,  4,  6,  8, 10, 12, 14
7776 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30
7777 ///  N = 2:  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12
7778 ///  N = 2:  0,  4,  8, 12, 16, 20, 24, 28,  0,  4,  8, 12, 16, 20, 24, 28
7779 ///  N = 3:  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8
7780 ///  N = 3:  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24
7781 ///
7782 /// Any of these lanes can of course be undef.
7783 ///
7784 /// This routine only supports N <= 3.
7785 /// FIXME: Evaluate whether either AVX or AVX-512 have any opportunities here
7786 /// for larger N.
7787 ///
7788 /// \returns N above, or the number of times even elements must be dropped if
7789 /// there is such a number. Otherwise returns zero.
7790 static int canLowerByDroppingEvenElements(ArrayRef<int> Mask) {
7791   // Figure out whether we're looping over two inputs or just one.
7792   bool IsSingleInput = isSingleInputShuffleMask(Mask);
7793
7794   // The modulus for the shuffle vector entries is based on whether this is
7795   // a single input or not.
7796   int ShuffleModulus = Mask.size() * (IsSingleInput ? 1 : 2);
7797   assert(isPowerOf2_32((uint32_t)ShuffleModulus) &&
7798          "We should only be called with masks with a power-of-2 size!");
7799
7800   uint64_t ModMask = (uint64_t)ShuffleModulus - 1;
7801
7802   // We track whether the input is viable for all power-of-2 strides 2^1, 2^2,
7803   // and 2^3 simultaneously. This is because we may have ambiguity with
7804   // partially undef inputs.
7805   bool ViableForN[3] = {true, true, true};
7806
7807   for (int i = 0, e = Mask.size(); i < e; ++i) {
7808     // Ignore undef lanes, we'll optimistically collapse them to the pattern we
7809     // want.
7810     if (Mask[i] == -1)
7811       continue;
7812
7813     bool IsAnyViable = false;
7814     for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
7815       if (ViableForN[j]) {
7816         uint64_t N = j + 1;
7817
7818         // The shuffle mask must be equal to (i * 2^N) % M.
7819         if ((uint64_t)Mask[i] == (((uint64_t)i << N) & ModMask))
7820           IsAnyViable = true;
7821         else
7822           ViableForN[j] = false;
7823       }
7824     // Early exit if we exhaust the possible powers of two.
7825     if (!IsAnyViable)
7826       break;
7827   }
7828
7829   for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
7830     if (ViableForN[j])
7831       return j + 1;
7832
7833   // Return 0 as there is no viable power of two.
7834   return 0;
7835 }
7836
7837 /// \brief Generic lowering of v16i8 shuffles.
7838 ///
7839 /// This is a hybrid strategy to lower v16i8 vectors. It first attempts to
7840 /// detect any complexity reducing interleaving. If that doesn't help, it uses
7841 /// UNPCK to spread the i8 elements across two i16-element vectors, and uses
7842 /// the existing lowering for v8i16 blends on each half, finally PACK-ing them
7843 /// back together.
7844 static SDValue lowerV16I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7845                                        const X86Subtarget *Subtarget,
7846                                        SelectionDAG &DAG) {
7847   SDLoc DL(Op);
7848   assert(Op.getSimpleValueType() == MVT::v16i8 && "Bad shuffle type!");
7849   assert(V1.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
7850   assert(V2.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
7851   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7852   ArrayRef<int> OrigMask = SVOp->getMask();
7853   assert(OrigMask.size() == 16 && "Unexpected mask size for v16 shuffle!");
7854   int MaskStorage[16] = {
7855       OrigMask[0],  OrigMask[1],  OrigMask[2],  OrigMask[3],
7856       OrigMask[4],  OrigMask[5],  OrigMask[6],  OrigMask[7],
7857       OrigMask[8],  OrigMask[9],  OrigMask[10], OrigMask[11],
7858       OrigMask[12], OrigMask[13], OrigMask[14], OrigMask[15]};
7859   MutableArrayRef<int> Mask(MaskStorage);
7860   MutableArrayRef<int> LoMask = Mask.slice(0, 8);
7861   MutableArrayRef<int> HiMask = Mask.slice(8, 8);
7862
7863   // For single-input shuffles, there are some nicer lowering tricks we can use.
7864   if (isSingleInputShuffleMask(Mask)) {
7865     // Check whether we can widen this to an i16 shuffle by duplicating bytes.
7866     // Notably, this handles splat and partial-splat shuffles more efficiently.
7867     // However, it only makes sense if the pre-duplication shuffle simplifies
7868     // things significantly. Currently, this means we need to be able to
7869     // express the pre-duplication shuffle as an i16 shuffle.
7870     //
7871     // FIXME: We should check for other patterns which can be widened into an
7872     // i16 shuffle as well.
7873     auto canWidenViaDuplication = [](ArrayRef<int> Mask) {
7874       for (int i = 0; i < 16; i += 2) {
7875         if (Mask[i] != Mask[i + 1])
7876           return false;
7877       }
7878       return true;
7879     };
7880     auto tryToWidenViaDuplication = [&]() -> SDValue {
7881       if (!canWidenViaDuplication(Mask))
7882         return SDValue();
7883       SmallVector<int, 4> LoInputs;
7884       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(LoInputs),
7885                    [](int M) { return M >= 0 && M < 8; });
7886       std::sort(LoInputs.begin(), LoInputs.end());
7887       LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()),
7888                      LoInputs.end());
7889       SmallVector<int, 4> HiInputs;
7890       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(HiInputs),
7891                    [](int M) { return M >= 8; });
7892       std::sort(HiInputs.begin(), HiInputs.end());
7893       HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()),
7894                      HiInputs.end());
7895
7896       bool TargetLo = LoInputs.size() >= HiInputs.size();
7897       ArrayRef<int> InPlaceInputs = TargetLo ? LoInputs : HiInputs;
7898       ArrayRef<int> MovingInputs = TargetLo ? HiInputs : LoInputs;
7899
7900       int PreDupI16Shuffle[] = {-1, -1, -1, -1, -1, -1, -1, -1};
7901       SmallDenseMap<int, int, 8> LaneMap;
7902       for (int I : InPlaceInputs) {
7903         PreDupI16Shuffle[I/2] = I/2;
7904         LaneMap[I] = I;
7905       }
7906       int j = TargetLo ? 0 : 4, je = j + 4;
7907       for (int i = 0, ie = MovingInputs.size(); i < ie; ++i) {
7908         // Check if j is already a shuffle of this input. This happens when
7909         // there are two adjacent bytes after we move the low one.
7910         if (PreDupI16Shuffle[j] != MovingInputs[i] / 2) {
7911           // If we haven't yet mapped the input, search for a slot into which
7912           // we can map it.
7913           while (j < je && PreDupI16Shuffle[j] != -1)
7914             ++j;
7915
7916           if (j == je)
7917             // We can't place the inputs into a single half with a simple i16 shuffle, so bail.
7918             return SDValue();
7919
7920           // Map this input with the i16 shuffle.
7921           PreDupI16Shuffle[j] = MovingInputs[i] / 2;
7922         }
7923
7924         // Update the lane map based on the mapping we ended up with.
7925         LaneMap[MovingInputs[i]] = 2 * j + MovingInputs[i] % 2;
7926       }
7927       V1 = DAG.getNode(
7928           ISD::BITCAST, DL, MVT::v16i8,
7929           DAG.getVectorShuffle(MVT::v8i16, DL,
7930                                DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V1),
7931                                DAG.getUNDEF(MVT::v8i16), PreDupI16Shuffle));
7932
7933       // Unpack the bytes to form the i16s that will be shuffled into place.
7934       V1 = DAG.getNode(TargetLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
7935                        MVT::v16i8, V1, V1);
7936
7937       int PostDupI16Shuffle[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7938       for (int i = 0; i < 16; i += 2) {
7939         if (Mask[i] != -1)
7940           PostDupI16Shuffle[i / 2] = LaneMap[Mask[i]] - (TargetLo ? 0 : 8);
7941         assert(PostDupI16Shuffle[i / 2] < 8 && "Invalid v8 shuffle mask!");
7942       }
7943       return DAG.getNode(
7944           ISD::BITCAST, DL, MVT::v16i8,
7945           DAG.getVectorShuffle(MVT::v8i16, DL,
7946                                DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V1),
7947                                DAG.getUNDEF(MVT::v8i16), PostDupI16Shuffle));
7948     };
7949     if (SDValue V = tryToWidenViaDuplication())
7950       return V;
7951   }
7952
7953   // Check whether an interleaving lowering is likely to be more efficient.
7954   // This isn't perfect but it is a strong heuristic that tends to work well on
7955   // the kinds of shuffles that show up in practice.
7956   //
7957   // FIXME: We need to handle other interleaving widths (i16, i32, ...).
7958   if (shouldLowerAsInterleaving(Mask)) {
7959     // FIXME: Figure out whether we should pack these into the low or high
7960     // halves.
7961
7962     int EMask[16], OMask[16];
7963     for (int i = 0; i < 8; ++i) {
7964       EMask[i] = Mask[2*i];
7965       OMask[i] = Mask[2*i + 1];
7966       EMask[i + 8] = -1;
7967       OMask[i + 8] = -1;
7968     }
7969
7970     SDValue Evens = DAG.getVectorShuffle(MVT::v16i8, DL, V1, V2, EMask);
7971     SDValue Odds = DAG.getVectorShuffle(MVT::v16i8, DL, V1, V2, OMask);
7972
7973     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, Evens, Odds);
7974   }
7975
7976   // Check whether a compaction lowering can be done. This handles shuffles
7977   // which take every Nth element for some even N. See the helper function for
7978   // details.
7979   //
7980   // We special case these as they can be particularly efficiently handled with
7981   // the PACKUSB instruction on x86 and they show up in common patterns of
7982   // rearranging bytes to truncate wide elements.
7983   if (int NumEvenDrops = canLowerByDroppingEvenElements(Mask)) {
7984     // NumEvenDrops is the power of two stride of the elements. Another way of
7985     // thinking about it is that we need to drop the even elements this many
7986     // times to get the original input.
7987     bool IsSingleInput = isSingleInputShuffleMask(Mask);
7988
7989     // First we need to zero all the dropped bytes.
7990     assert(NumEvenDrops <= 3 &&
7991            "No support for dropping even elements more than 3 times.");
7992     // We use the mask type to pick which bytes are preserved based on how many
7993     // elements are dropped.
7994     MVT MaskVTs[] = { MVT::v8i16, MVT::v4i32, MVT::v2i64 };
7995     SDValue ByteClearMask =
7996         DAG.getNode(ISD::BITCAST, DL, MVT::v16i8,
7997                     DAG.getConstant(0xFF, MaskVTs[NumEvenDrops - 1]));
7998     V1 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V1, ByteClearMask);
7999     if (!IsSingleInput)
8000       V2 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V2, ByteClearMask);
8001
8002     // Now pack things back together.
8003     V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V1);
8004     V2 = IsSingleInput ? V1 : DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V2);
8005     SDValue Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, V1, V2);
8006     for (int i = 1; i < NumEvenDrops; ++i) {
8007       Result = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, Result);
8008       Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, Result, Result);
8009     }
8010
8011     return Result;
8012   }
8013
8014   // Check for SSSE3 which lets us lower all v16i8 shuffles much more directly
8015   // with PSHUFB. It is important to do this before we attempt to generate any
8016   // blends but after all of the single-input lowerings. If the single input
8017   // lowerings can find an instruction sequence that is faster than a PSHUFB, we
8018   // want to preserve that and we can DAG combine any longer sequences into
8019   // a PSHUFB in the end. But once we start blending from multiple inputs,
8020   // the complexity of DAG combining bad patterns back into PSHUFB is too high,
8021   // and there are *very* few patterns that would actually be faster than the
8022   // PSHUFB approach because of its ability to zero lanes.
8023   //
8024   // FIXME: The only exceptions to the above are blends which are exact
8025   // interleavings with direct instructions supporting them. We currently don't
8026   // handle those well here.
8027   if (Subtarget->hasSSSE3()) {
8028     SDValue V1Mask[16];
8029     SDValue V2Mask[16];
8030     for (int i = 0; i < 16; ++i)
8031       if (Mask[i] == -1) {
8032         V1Mask[i] = V2Mask[i] = DAG.getConstant(0x80, MVT::i8);
8033       } else {
8034         V1Mask[i] = DAG.getConstant(Mask[i] < 16 ? Mask[i] : 0x80, MVT::i8);
8035         V2Mask[i] =
8036             DAG.getConstant(Mask[i] < 16 ? 0x80 : Mask[i] - 16, MVT::i8);
8037       }
8038     V1 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8, V1,
8039                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V1Mask));
8040     if (isSingleInputShuffleMask(Mask))
8041       return V1; // Single inputs are easy.
8042
8043     // Otherwise, blend the two.
8044     V2 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8, V2,
8045                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V2Mask));
8046     return DAG.getNode(ISD::OR, DL, MVT::v16i8, V1, V2);
8047   }
8048
8049   int V1LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8050   int V1HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8051   int V2LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8052   int V2HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8053
8054   auto buildBlendMasks = [](MutableArrayRef<int> HalfMask,
8055                             MutableArrayRef<int> V1HalfBlendMask,
8056                             MutableArrayRef<int> V2HalfBlendMask) {
8057     for (int i = 0; i < 8; ++i)
8058       if (HalfMask[i] >= 0 && HalfMask[i] < 16) {
8059         V1HalfBlendMask[i] = HalfMask[i];
8060         HalfMask[i] = i;
8061       } else if (HalfMask[i] >= 16) {
8062         V2HalfBlendMask[i] = HalfMask[i] - 16;
8063         HalfMask[i] = i + 8;
8064       }
8065   };
8066   buildBlendMasks(LoMask, V1LoBlendMask, V2LoBlendMask);
8067   buildBlendMasks(HiMask, V1HiBlendMask, V2HiBlendMask);
8068
8069   SDValue Zero = getZeroVector(MVT::v8i16, Subtarget, DAG, DL);
8070
8071   auto buildLoAndHiV8s = [&](SDValue V, MutableArrayRef<int> LoBlendMask,
8072                              MutableArrayRef<int> HiBlendMask) {
8073     SDValue V1, V2;
8074     // Check if any of the odd lanes in the v16i8 are used. If not, we can mask
8075     // them out and avoid using UNPCK{L,H} to extract the elements of V as
8076     // i16s.
8077     if (std::none_of(LoBlendMask.begin(), LoBlendMask.end(),
8078                      [](int M) { return M >= 0 && M % 2 == 1; }) &&
8079         std::none_of(HiBlendMask.begin(), HiBlendMask.end(),
8080                      [](int M) { return M >= 0 && M % 2 == 1; })) {
8081       // Use a mask to drop the high bytes.
8082       V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V);
8083       V1 = DAG.getNode(ISD::AND, DL, MVT::v8i16, V1,
8084                        DAG.getConstant(0x00FF, MVT::v8i16));
8085
8086       // This will be a single vector shuffle instead of a blend so nuke V2.
8087       V2 = DAG.getUNDEF(MVT::v8i16);
8088
8089       // Squash the masks to point directly into V1.
8090       for (int &M : LoBlendMask)
8091         if (M >= 0)
8092           M /= 2;
8093       for (int &M : HiBlendMask)
8094         if (M >= 0)
8095           M /= 2;
8096     } else {
8097       // Otherwise just unpack the low half of V into V1 and the high half into
8098       // V2 so that we can blend them as i16s.
8099       V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
8100                        DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V, Zero));
8101       V2 = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
8102                        DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V, Zero));
8103     }
8104
8105     SDValue BlendedLo = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, LoBlendMask);
8106     SDValue BlendedHi = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, HiBlendMask);
8107     return std::make_pair(BlendedLo, BlendedHi);
8108   };
8109   SDValue V1Lo, V1Hi, V2Lo, V2Hi;
8110   std::tie(V1Lo, V1Hi) = buildLoAndHiV8s(V1, V1LoBlendMask, V1HiBlendMask);
8111   std::tie(V2Lo, V2Hi) = buildLoAndHiV8s(V2, V2LoBlendMask, V2HiBlendMask);
8112
8113   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, V1Lo, V2Lo, LoMask);
8114   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, V1Hi, V2Hi, HiMask);
8115
8116   return DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, LoV, HiV);
8117 }
8118
8119 /// \brief Dispatching routine to lower various 128-bit x86 vector shuffles.
8120 ///
8121 /// This routine breaks down the specific type of 128-bit shuffle and
8122 /// dispatches to the lowering routines accordingly.
8123 static SDValue lower128BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8124                                         MVT VT, const X86Subtarget *Subtarget,
8125                                         SelectionDAG &DAG) {
8126   switch (VT.SimpleTy) {
8127   case MVT::v2i64:
8128     return lowerV2I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
8129   case MVT::v2f64:
8130     return lowerV2F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
8131   case MVT::v4i32:
8132     return lowerV4I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
8133   case MVT::v4f32:
8134     return lowerV4F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
8135   case MVT::v8i16:
8136     return lowerV8I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
8137   case MVT::v16i8:
8138     return lowerV16I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
8139
8140   default:
8141     llvm_unreachable("Unimplemented!");
8142   }
8143 }
8144
8145 /// \brief Tiny helper function to test whether adjacent masks are sequential.
8146 static bool areAdjacentMasksSequential(ArrayRef<int> Mask) {
8147   for (int i = 0, Size = Mask.size(); i < Size; i += 2)
8148     if (Mask[i] + 1 != Mask[i+1])
8149       return false;
8150
8151   return true;
8152 }
8153
8154 /// \brief Top-level lowering for x86 vector shuffles.
8155 ///
8156 /// This handles decomposition, canonicalization, and lowering of all x86
8157 /// vector shuffles. Most of the specific lowering strategies are encapsulated
8158 /// above in helper routines. The canonicalization attempts to widen shuffles
8159 /// to involve fewer lanes of wider elements, consolidate symmetric patterns
8160 /// s.t. only one of the two inputs needs to be tested, etc.
8161 static SDValue lowerVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
8162                                   SelectionDAG &DAG) {
8163   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8164   ArrayRef<int> Mask = SVOp->getMask();
8165   SDValue V1 = Op.getOperand(0);
8166   SDValue V2 = Op.getOperand(1);
8167   MVT VT = Op.getSimpleValueType();
8168   int NumElements = VT.getVectorNumElements();
8169   SDLoc dl(Op);
8170
8171   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
8172
8173   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
8174   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
8175   if (V1IsUndef && V2IsUndef)
8176     return DAG.getUNDEF(VT);
8177
8178   // When we create a shuffle node we put the UNDEF node to second operand,
8179   // but in some cases the first operand may be transformed to UNDEF.
8180   // In this case we should just commute the node.
8181   if (V1IsUndef)
8182     return DAG.getCommutedVectorShuffle(*SVOp);
8183
8184   // Check for non-undef masks pointing at an undef vector and make the masks
8185   // undef as well. This makes it easier to match the shuffle based solely on
8186   // the mask.
8187   if (V2IsUndef)
8188     for (int M : Mask)
8189       if (M >= NumElements) {
8190         SmallVector<int, 8> NewMask(Mask.begin(), Mask.end());
8191         for (int &M : NewMask)
8192           if (M >= NumElements)
8193             M = -1;
8194         return DAG.getVectorShuffle(VT, dl, V1, V2, NewMask);
8195       }
8196
8197   // For integer vector shuffles, try to collapse them into a shuffle of fewer
8198   // lanes but wider integers. We cap this to not form integers larger than i64
8199   // but it might be interesting to form i128 integers to handle flipping the
8200   // low and high halves of AVX 256-bit vectors.
8201   if (VT.isInteger() && VT.getScalarSizeInBits() < 64 &&
8202       areAdjacentMasksSequential(Mask)) {
8203     SmallVector<int, 8> NewMask;
8204     for (int i = 0, Size = Mask.size(); i < Size; i += 2)
8205       NewMask.push_back(Mask[i] / 2);
8206     MVT NewVT =
8207         MVT::getVectorVT(MVT::getIntegerVT(VT.getScalarSizeInBits() * 2),
8208                          VT.getVectorNumElements() / 2);
8209     V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
8210     V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
8211     return DAG.getNode(ISD::BITCAST, dl, VT,
8212                        DAG.getVectorShuffle(NewVT, dl, V1, V2, NewMask));
8213   }
8214
8215   int NumV1Elements = 0, NumUndefElements = 0, NumV2Elements = 0;
8216   for (int M : SVOp->getMask())
8217     if (M < 0)
8218       ++NumUndefElements;
8219     else if (M < NumElements)
8220       ++NumV1Elements;
8221     else
8222       ++NumV2Elements;
8223
8224   // Commute the shuffle as needed such that more elements come from V1 than
8225   // V2. This allows us to match the shuffle pattern strictly on how many
8226   // elements come from V1 without handling the symmetric cases.
8227   if (NumV2Elements > NumV1Elements)
8228     return DAG.getCommutedVectorShuffle(*SVOp);
8229
8230   // When the number of V1 and V2 elements are the same, try to minimize the
8231   // number of uses of V2 in the low half of the vector.
8232   if (NumV1Elements == NumV2Elements) {
8233     int LowV1Elements = 0, LowV2Elements = 0;
8234     for (int M : SVOp->getMask().slice(0, NumElements / 2))
8235       if (M >= NumElements)
8236         ++LowV2Elements;
8237       else if (M >= 0)
8238         ++LowV1Elements;
8239     if (LowV2Elements > LowV1Elements)
8240       return DAG.getCommutedVectorShuffle(*SVOp);
8241   }
8242
8243   // For each vector width, delegate to a specialized lowering routine.
8244   if (VT.getSizeInBits() == 128)
8245     return lower128BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
8246
8247   llvm_unreachable("Unimplemented!");
8248 }
8249
8250
8251 //===----------------------------------------------------------------------===//
8252 // Legacy vector shuffle lowering
8253 //
8254 // This code is the legacy code handling vector shuffles until the above
8255 // replaces its functionality and performance.
8256 //===----------------------------------------------------------------------===//
8257
8258 static bool isBlendMask(ArrayRef<int> MaskVals, MVT VT, bool hasSSE41,
8259                         bool hasInt256, unsigned *MaskOut = nullptr) {
8260   MVT EltVT = VT.getVectorElementType();
8261
8262   // There is no blend with immediate in AVX-512.
8263   if (VT.is512BitVector())
8264     return false;
8265
8266   if (!hasSSE41 || EltVT == MVT::i8)
8267     return false;
8268   if (!hasInt256 && VT == MVT::v16i16)
8269     return false;
8270
8271   unsigned MaskValue = 0;
8272   unsigned NumElems = VT.getVectorNumElements();
8273   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
8274   unsigned NumLanes = (NumElems - 1) / 8 + 1;
8275   unsigned NumElemsInLane = NumElems / NumLanes;
8276
8277   // Blend for v16i16 should be symetric for the both lanes.
8278   for (unsigned i = 0; i < NumElemsInLane; ++i) {
8279
8280     int SndLaneEltIdx = (NumLanes == 2) ? MaskVals[i + NumElemsInLane] : -1;
8281     int EltIdx = MaskVals[i];
8282
8283     if ((EltIdx < 0 || EltIdx == (int)i) &&
8284         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
8285       continue;
8286
8287     if (((unsigned)EltIdx == (i + NumElems)) &&
8288         (SndLaneEltIdx < 0 ||
8289          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
8290       MaskValue |= (1 << i);
8291     else
8292       return false;
8293   }
8294
8295   if (MaskOut)
8296     *MaskOut = MaskValue;
8297   return true;
8298 }
8299
8300 // Try to lower a shuffle node into a simple blend instruction.
8301 // This function assumes isBlendMask returns true for this
8302 // SuffleVectorSDNode
8303 static SDValue LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
8304                                           unsigned MaskValue,
8305                                           const X86Subtarget *Subtarget,
8306                                           SelectionDAG &DAG) {
8307   MVT VT = SVOp->getSimpleValueType(0);
8308   MVT EltVT = VT.getVectorElementType();
8309   assert(isBlendMask(SVOp->getMask(), VT, Subtarget->hasSSE41(),
8310                      Subtarget->hasInt256() && "Trying to lower a "
8311                                                "VECTOR_SHUFFLE to a Blend but "
8312                                                "with the wrong mask"));
8313   SDValue V1 = SVOp->getOperand(0);
8314   SDValue V2 = SVOp->getOperand(1);
8315   SDLoc dl(SVOp);
8316   unsigned NumElems = VT.getVectorNumElements();
8317
8318   // Convert i32 vectors to floating point if it is not AVX2.
8319   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
8320   MVT BlendVT = VT;
8321   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
8322     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
8323                                NumElems);
8324     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
8325     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
8326   }
8327
8328   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
8329                             DAG.getConstant(MaskValue, MVT::i32));
8330   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
8331 }
8332
8333 /// In vector type \p VT, return true if the element at index \p InputIdx
8334 /// falls on a different 128-bit lane than \p OutputIdx.
8335 static bool ShuffleCrosses128bitLane(MVT VT, unsigned InputIdx,
8336                                      unsigned OutputIdx) {
8337   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
8338   return InputIdx * EltSize / 128 != OutputIdx * EltSize / 128;
8339 }
8340
8341 /// Generate a PSHUFB if possible.  Selects elements from \p V1 according to
8342 /// \p MaskVals.  MaskVals[OutputIdx] = InputIdx specifies that we want to
8343 /// shuffle the element at InputIdx in V1 to OutputIdx in the result.  If \p
8344 /// MaskVals refers to elements outside of \p V1 or is undef (-1), insert a
8345 /// zero.
8346 static SDValue getPSHUFB(ArrayRef<int> MaskVals, SDValue V1, SDLoc &dl,
8347                          SelectionDAG &DAG) {
8348   MVT VT = V1.getSimpleValueType();
8349   assert(VT.is128BitVector() || VT.is256BitVector());
8350
8351   MVT EltVT = VT.getVectorElementType();
8352   unsigned EltSizeInBytes = EltVT.getSizeInBits() / 8;
8353   unsigned NumElts = VT.getVectorNumElements();
8354
8355   SmallVector<SDValue, 32> PshufbMask;
8356   for (unsigned OutputIdx = 0; OutputIdx < NumElts; ++OutputIdx) {
8357     int InputIdx = MaskVals[OutputIdx];
8358     unsigned InputByteIdx;
8359
8360     if (InputIdx < 0 || NumElts <= (unsigned)InputIdx)
8361       InputByteIdx = 0x80;
8362     else {
8363       // Cross lane is not allowed.
8364       if (ShuffleCrosses128bitLane(VT, InputIdx, OutputIdx))
8365         return SDValue();
8366       InputByteIdx = InputIdx * EltSizeInBytes;
8367       // Index is an byte offset within the 128-bit lane.
8368       InputByteIdx &= 0xf;
8369     }
8370
8371     for (unsigned j = 0; j < EltSizeInBytes; ++j) {
8372       PshufbMask.push_back(DAG.getConstant(InputByteIdx, MVT::i8));
8373       if (InputByteIdx != 0x80)
8374         ++InputByteIdx;
8375     }
8376   }
8377
8378   MVT ShufVT = MVT::getVectorVT(MVT::i8, PshufbMask.size());
8379   if (ShufVT != VT)
8380     V1 = DAG.getNode(ISD::BITCAST, dl, ShufVT, V1);
8381   return DAG.getNode(X86ISD::PSHUFB, dl, ShufVT, V1,
8382                      DAG.getNode(ISD::BUILD_VECTOR, dl, ShufVT, PshufbMask));
8383 }
8384
8385 // v8i16 shuffles - Prefer shuffles in the following order:
8386 // 1. [all]   pshuflw, pshufhw, optional move
8387 // 2. [ssse3] 1 x pshufb
8388 // 3. [ssse3] 2 x pshufb + 1 x por
8389 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
8390 static SDValue
8391 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
8392                          SelectionDAG &DAG) {
8393   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8394   SDValue V1 = SVOp->getOperand(0);
8395   SDValue V2 = SVOp->getOperand(1);
8396   SDLoc dl(SVOp);
8397   SmallVector<int, 8> MaskVals;
8398
8399   // Determine if more than 1 of the words in each of the low and high quadwords
8400   // of the result come from the same quadword of one of the two inputs.  Undef
8401   // mask values count as coming from any quadword, for better codegen.
8402   //
8403   // Lo/HiQuad[i] = j indicates how many words from the ith quad of the input
8404   // feeds this quad.  For i, 0 and 1 refer to V1, 2 and 3 refer to V2.
8405   unsigned LoQuad[] = { 0, 0, 0, 0 };
8406   unsigned HiQuad[] = { 0, 0, 0, 0 };
8407   // Indices of quads used.
8408   std::bitset<4> InputQuads;
8409   for (unsigned i = 0; i < 8; ++i) {
8410     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
8411     int EltIdx = SVOp->getMaskElt(i);
8412     MaskVals.push_back(EltIdx);
8413     if (EltIdx < 0) {
8414       ++Quad[0];
8415       ++Quad[1];
8416       ++Quad[2];
8417       ++Quad[3];
8418       continue;
8419     }
8420     ++Quad[EltIdx / 4];
8421     InputQuads.set(EltIdx / 4);
8422   }
8423
8424   int BestLoQuad = -1;
8425   unsigned MaxQuad = 1;
8426   for (unsigned i = 0; i < 4; ++i) {
8427     if (LoQuad[i] > MaxQuad) {
8428       BestLoQuad = i;
8429       MaxQuad = LoQuad[i];
8430     }
8431   }
8432
8433   int BestHiQuad = -1;
8434   MaxQuad = 1;
8435   for (unsigned i = 0; i < 4; ++i) {
8436     if (HiQuad[i] > MaxQuad) {
8437       BestHiQuad = i;
8438       MaxQuad = HiQuad[i];
8439     }
8440   }
8441
8442   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
8443   // of the two input vectors, shuffle them into one input vector so only a
8444   // single pshufb instruction is necessary. If there are more than 2 input
8445   // quads, disable the next transformation since it does not help SSSE3.
8446   bool V1Used = InputQuads[0] || InputQuads[1];
8447   bool V2Used = InputQuads[2] || InputQuads[3];
8448   if (Subtarget->hasSSSE3()) {
8449     if (InputQuads.count() == 2 && V1Used && V2Used) {
8450       BestLoQuad = InputQuads[0] ? 0 : 1;
8451       BestHiQuad = InputQuads[2] ? 2 : 3;
8452     }
8453     if (InputQuads.count() > 2) {
8454       BestLoQuad = -1;
8455       BestHiQuad = -1;
8456     }
8457   }
8458
8459   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
8460   // the shuffle mask.  If a quad is scored as -1, that means that it contains
8461   // words from all 4 input quadwords.
8462   SDValue NewV;
8463   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
8464     int MaskV[] = {
8465       BestLoQuad < 0 ? 0 : BestLoQuad,
8466       BestHiQuad < 0 ? 1 : BestHiQuad
8467     };
8468     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
8469                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
8470                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
8471     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
8472
8473     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
8474     // source words for the shuffle, to aid later transformations.
8475     bool AllWordsInNewV = true;
8476     bool InOrder[2] = { true, true };
8477     for (unsigned i = 0; i != 8; ++i) {
8478       int idx = MaskVals[i];
8479       if (idx != (int)i)
8480         InOrder[i/4] = false;
8481       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
8482         continue;
8483       AllWordsInNewV = false;
8484       break;
8485     }
8486
8487     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
8488     if (AllWordsInNewV) {
8489       for (int i = 0; i != 8; ++i) {
8490         int idx = MaskVals[i];
8491         if (idx < 0)
8492           continue;
8493         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
8494         if ((idx != i) && idx < 4)
8495           pshufhw = false;
8496         if ((idx != i) && idx > 3)
8497           pshuflw = false;
8498       }
8499       V1 = NewV;
8500       V2Used = false;
8501       BestLoQuad = 0;
8502       BestHiQuad = 1;
8503     }
8504
8505     // If we've eliminated the use of V2, and the new mask is a pshuflw or
8506     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
8507     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
8508       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
8509       unsigned TargetMask = 0;
8510       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
8511                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
8512       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
8513       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
8514                              getShufflePSHUFLWImmediate(SVOp);
8515       V1 = NewV.getOperand(0);
8516       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
8517     }
8518   }
8519
8520   // Promote splats to a larger type which usually leads to more efficient code.
8521   // FIXME: Is this true if pshufb is available?
8522   if (SVOp->isSplat())
8523     return PromoteSplat(SVOp, DAG);
8524
8525   // If we have SSSE3, and all words of the result are from 1 input vector,
8526   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
8527   // is present, fall back to case 4.
8528   if (Subtarget->hasSSSE3()) {
8529     SmallVector<SDValue,16> pshufbMask;
8530
8531     // If we have elements from both input vectors, set the high bit of the
8532     // shuffle mask element to zero out elements that come from V2 in the V1
8533     // mask, and elements that come from V1 in the V2 mask, so that the two
8534     // results can be OR'd together.
8535     bool TwoInputs = V1Used && V2Used;
8536     V1 = getPSHUFB(MaskVals, V1, dl, DAG);
8537     if (!TwoInputs)
8538       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
8539
8540     // Calculate the shuffle mask for the second input, shuffle it, and
8541     // OR it with the first shuffled input.
8542     CommuteVectorShuffleMask(MaskVals, 8);
8543     V2 = getPSHUFB(MaskVals, V2, dl, DAG);
8544     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
8545     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
8546   }
8547
8548   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
8549   // and update MaskVals with new element order.
8550   std::bitset<8> InOrder;
8551   if (BestLoQuad >= 0) {
8552     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
8553     for (int i = 0; i != 4; ++i) {
8554       int idx = MaskVals[i];
8555       if (idx < 0) {
8556         InOrder.set(i);
8557       } else if ((idx / 4) == BestLoQuad) {
8558         MaskV[i] = idx & 3;
8559         InOrder.set(i);
8560       }
8561     }
8562     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
8563                                 &MaskV[0]);
8564
8565     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSE2()) {
8566       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
8567       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
8568                                   NewV.getOperand(0),
8569                                   getShufflePSHUFLWImmediate(SVOp), DAG);
8570     }
8571   }
8572
8573   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
8574   // and update MaskVals with the new element order.
8575   if (BestHiQuad >= 0) {
8576     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
8577     for (unsigned i = 4; i != 8; ++i) {
8578       int idx = MaskVals[i];
8579       if (idx < 0) {
8580         InOrder.set(i);
8581       } else if ((idx / 4) == BestHiQuad) {
8582         MaskV[i] = (idx & 3) + 4;
8583         InOrder.set(i);
8584       }
8585     }
8586     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
8587                                 &MaskV[0]);
8588
8589     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSE2()) {
8590       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
8591       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
8592                                   NewV.getOperand(0),
8593                                   getShufflePSHUFHWImmediate(SVOp), DAG);
8594     }
8595   }
8596
8597   // In case BestHi & BestLo were both -1, which means each quadword has a word
8598   // from each of the four input quadwords, calculate the InOrder bitvector now
8599   // before falling through to the insert/extract cleanup.
8600   if (BestLoQuad == -1 && BestHiQuad == -1) {
8601     NewV = V1;
8602     for (int i = 0; i != 8; ++i)
8603       if (MaskVals[i] < 0 || MaskVals[i] == i)
8604         InOrder.set(i);
8605   }
8606
8607   // The other elements are put in the right place using pextrw and pinsrw.
8608   for (unsigned i = 0; i != 8; ++i) {
8609     if (InOrder[i])
8610       continue;
8611     int EltIdx = MaskVals[i];
8612     if (EltIdx < 0)
8613       continue;
8614     SDValue ExtOp = (EltIdx < 8) ?
8615       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
8616                   DAG.getIntPtrConstant(EltIdx)) :
8617       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
8618                   DAG.getIntPtrConstant(EltIdx - 8));
8619     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
8620                        DAG.getIntPtrConstant(i));
8621   }
8622   return NewV;
8623 }
8624
8625 /// \brief v16i16 shuffles
8626 ///
8627 /// FIXME: We only support generation of a single pshufb currently.  We can
8628 /// generalize the other applicable cases from LowerVECTOR_SHUFFLEv8i16 as
8629 /// well (e.g 2 x pshufb + 1 x por).
8630 static SDValue
8631 LowerVECTOR_SHUFFLEv16i16(SDValue Op, SelectionDAG &DAG) {
8632   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8633   SDValue V1 = SVOp->getOperand(0);
8634   SDValue V2 = SVOp->getOperand(1);
8635   SDLoc dl(SVOp);
8636
8637   if (V2.getOpcode() != ISD::UNDEF)
8638     return SDValue();
8639
8640   SmallVector<int, 16> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
8641   return getPSHUFB(MaskVals, V1, dl, DAG);
8642 }
8643
8644 // v16i8 shuffles - Prefer shuffles in the following order:
8645 // 1. [ssse3] 1 x pshufb
8646 // 2. [ssse3] 2 x pshufb + 1 x por
8647 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
8648 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
8649                                         const X86Subtarget* Subtarget,
8650                                         SelectionDAG &DAG) {
8651   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8652   SDValue V1 = SVOp->getOperand(0);
8653   SDValue V2 = SVOp->getOperand(1);
8654   SDLoc dl(SVOp);
8655   ArrayRef<int> MaskVals = SVOp->getMask();
8656
8657   // Promote splats to a larger type which usually leads to more efficient code.
8658   // FIXME: Is this true if pshufb is available?
8659   if (SVOp->isSplat())
8660     return PromoteSplat(SVOp, DAG);
8661
8662   // If we have SSSE3, case 1 is generated when all result bytes come from
8663   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
8664   // present, fall back to case 3.
8665
8666   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
8667   if (Subtarget->hasSSSE3()) {
8668     SmallVector<SDValue,16> pshufbMask;
8669
8670     // If all result elements are from one input vector, then only translate
8671     // undef mask values to 0x80 (zero out result) in the pshufb mask.
8672     //
8673     // Otherwise, we have elements from both input vectors, and must zero out
8674     // elements that come from V2 in the first mask, and V1 in the second mask
8675     // so that we can OR them together.
8676     for (unsigned i = 0; i != 16; ++i) {
8677       int EltIdx = MaskVals[i];
8678       if (EltIdx < 0 || EltIdx >= 16)
8679         EltIdx = 0x80;
8680       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
8681     }
8682     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
8683                      DAG.getNode(ISD::BUILD_VECTOR, dl,
8684                                  MVT::v16i8, pshufbMask));
8685
8686     // As PSHUFB will zero elements with negative indices, it's safe to ignore
8687     // the 2nd operand if it's undefined or zero.
8688     if (V2.getOpcode() == ISD::UNDEF ||
8689         ISD::isBuildVectorAllZeros(V2.getNode()))
8690       return V1;
8691
8692     // Calculate the shuffle mask for the second input, shuffle it, and
8693     // OR it with the first shuffled input.
8694     pshufbMask.clear();
8695     for (unsigned i = 0; i != 16; ++i) {
8696       int EltIdx = MaskVals[i];
8697       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
8698       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
8699     }
8700     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
8701                      DAG.getNode(ISD::BUILD_VECTOR, dl,
8702                                  MVT::v16i8, pshufbMask));
8703     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
8704   }
8705
8706   // No SSSE3 - Calculate in place words and then fix all out of place words
8707   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
8708   // the 16 different words that comprise the two doublequadword input vectors.
8709   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
8710   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
8711   SDValue NewV = V1;
8712   for (int i = 0; i != 8; ++i) {
8713     int Elt0 = MaskVals[i*2];
8714     int Elt1 = MaskVals[i*2+1];
8715
8716     // This word of the result is all undef, skip it.
8717     if (Elt0 < 0 && Elt1 < 0)
8718       continue;
8719
8720     // This word of the result is already in the correct place, skip it.
8721     if ((Elt0 == i*2) && (Elt1 == i*2+1))
8722       continue;
8723
8724     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
8725     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
8726     SDValue InsElt;
8727
8728     // If Elt0 and Elt1 are defined, are consecutive, and can be load
8729     // using a single extract together, load it and store it.
8730     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
8731       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
8732                            DAG.getIntPtrConstant(Elt1 / 2));
8733       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
8734                         DAG.getIntPtrConstant(i));
8735       continue;
8736     }
8737
8738     // If Elt1 is defined, extract it from the appropriate source.  If the
8739     // source byte is not also odd, shift the extracted word left 8 bits
8740     // otherwise clear the bottom 8 bits if we need to do an or.
8741     if (Elt1 >= 0) {
8742       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
8743                            DAG.getIntPtrConstant(Elt1 / 2));
8744       if ((Elt1 & 1) == 0)
8745         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
8746                              DAG.getConstant(8,
8747                                   TLI.getShiftAmountTy(InsElt.getValueType())));
8748       else if (Elt0 >= 0)
8749         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
8750                              DAG.getConstant(0xFF00, MVT::i16));
8751     }
8752     // If Elt0 is defined, extract it from the appropriate source.  If the
8753     // source byte is not also even, shift the extracted word right 8 bits. If
8754     // Elt1 was also defined, OR the extracted values together before
8755     // inserting them in the result.
8756     if (Elt0 >= 0) {
8757       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
8758                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
8759       if ((Elt0 & 1) != 0)
8760         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
8761                               DAG.getConstant(8,
8762                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
8763       else if (Elt1 >= 0)
8764         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
8765                              DAG.getConstant(0x00FF, MVT::i16));
8766       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
8767                          : InsElt0;
8768     }
8769     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
8770                        DAG.getIntPtrConstant(i));
8771   }
8772   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
8773 }
8774
8775 // v32i8 shuffles - Translate to VPSHUFB if possible.
8776 static
8777 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
8778                                  const X86Subtarget *Subtarget,
8779                                  SelectionDAG &DAG) {
8780   MVT VT = SVOp->getSimpleValueType(0);
8781   SDValue V1 = SVOp->getOperand(0);
8782   SDValue V2 = SVOp->getOperand(1);
8783   SDLoc dl(SVOp);
8784   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
8785
8786   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
8787   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
8788   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
8789
8790   // VPSHUFB may be generated if
8791   // (1) one of input vector is undefined or zeroinitializer.
8792   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
8793   // And (2) the mask indexes don't cross the 128-bit lane.
8794   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
8795       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
8796     return SDValue();
8797
8798   if (V1IsAllZero && !V2IsAllZero) {
8799     CommuteVectorShuffleMask(MaskVals, 32);
8800     V1 = V2;
8801   }
8802   return getPSHUFB(MaskVals, V1, dl, DAG);
8803 }
8804
8805 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
8806 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
8807 /// done when every pair / quad of shuffle mask elements point to elements in
8808 /// the right sequence. e.g.
8809 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
8810 static
8811 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
8812                                  SelectionDAG &DAG) {
8813   MVT VT = SVOp->getSimpleValueType(0);
8814   SDLoc dl(SVOp);
8815   unsigned NumElems = VT.getVectorNumElements();
8816   MVT NewVT;
8817   unsigned Scale;
8818   switch (VT.SimpleTy) {
8819   default: llvm_unreachable("Unexpected!");
8820   case MVT::v2i64:
8821   case MVT::v2f64:
8822            return SDValue(SVOp, 0);
8823   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
8824   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
8825   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
8826   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
8827   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
8828   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
8829   }
8830
8831   SmallVector<int, 8> MaskVec;
8832   for (unsigned i = 0; i != NumElems; i += Scale) {
8833     int StartIdx = -1;
8834     for (unsigned j = 0; j != Scale; ++j) {
8835       int EltIdx = SVOp->getMaskElt(i+j);
8836       if (EltIdx < 0)
8837         continue;
8838       if (StartIdx < 0)
8839         StartIdx = (EltIdx / Scale);
8840       if (EltIdx != (int)(StartIdx*Scale + j))
8841         return SDValue();
8842     }
8843     MaskVec.push_back(StartIdx);
8844   }
8845
8846   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
8847   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
8848   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
8849 }
8850
8851 /// getVZextMovL - Return a zero-extending vector move low node.
8852 ///
8853 static SDValue getVZextMovL(MVT VT, MVT OpVT,
8854                             SDValue SrcOp, SelectionDAG &DAG,
8855                             const X86Subtarget *Subtarget, SDLoc dl) {
8856   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
8857     LoadSDNode *LD = nullptr;
8858     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
8859       LD = dyn_cast<LoadSDNode>(SrcOp);
8860     if (!LD) {
8861       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
8862       // instead.
8863       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
8864       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
8865           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
8866           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
8867           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
8868         // PR2108
8869         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
8870         return DAG.getNode(ISD::BITCAST, dl, VT,
8871                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
8872                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8873                                                    OpVT,
8874                                                    SrcOp.getOperand(0)
8875                                                           .getOperand(0))));
8876       }
8877     }
8878   }
8879
8880   return DAG.getNode(ISD::BITCAST, dl, VT,
8881                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
8882                                  DAG.getNode(ISD::BITCAST, dl,
8883                                              OpVT, SrcOp)));
8884 }
8885
8886 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
8887 /// which could not be matched by any known target speficic shuffle
8888 static SDValue
8889 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
8890
8891   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
8892   if (NewOp.getNode())
8893     return NewOp;
8894
8895   MVT VT = SVOp->getSimpleValueType(0);
8896
8897   unsigned NumElems = VT.getVectorNumElements();
8898   unsigned NumLaneElems = NumElems / 2;
8899
8900   SDLoc dl(SVOp);
8901   MVT EltVT = VT.getVectorElementType();
8902   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
8903   SDValue Output[2];
8904
8905   SmallVector<int, 16> Mask;
8906   for (unsigned l = 0; l < 2; ++l) {
8907     // Build a shuffle mask for the output, discovering on the fly which
8908     // input vectors to use as shuffle operands (recorded in InputUsed).
8909     // If building a suitable shuffle vector proves too hard, then bail
8910     // out with UseBuildVector set.
8911     bool UseBuildVector = false;
8912     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
8913     unsigned LaneStart = l * NumLaneElems;
8914     for (unsigned i = 0; i != NumLaneElems; ++i) {
8915       // The mask element.  This indexes into the input.
8916       int Idx = SVOp->getMaskElt(i+LaneStart);
8917       if (Idx < 0) {
8918         // the mask element does not index into any input vector.
8919         Mask.push_back(-1);
8920         continue;
8921       }
8922
8923       // The input vector this mask element indexes into.
8924       int Input = Idx / NumLaneElems;
8925
8926       // Turn the index into an offset from the start of the input vector.
8927       Idx -= Input * NumLaneElems;
8928
8929       // Find or create a shuffle vector operand to hold this input.
8930       unsigned OpNo;
8931       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
8932         if (InputUsed[OpNo] == Input)
8933           // This input vector is already an operand.
8934           break;
8935         if (InputUsed[OpNo] < 0) {
8936           // Create a new operand for this input vector.
8937           InputUsed[OpNo] = Input;
8938           break;
8939         }
8940       }
8941
8942       if (OpNo >= array_lengthof(InputUsed)) {
8943         // More than two input vectors used!  Give up on trying to create a
8944         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
8945         UseBuildVector = true;
8946         break;
8947       }
8948
8949       // Add the mask index for the new shuffle vector.
8950       Mask.push_back(Idx + OpNo * NumLaneElems);
8951     }
8952
8953     if (UseBuildVector) {
8954       SmallVector<SDValue, 16> SVOps;
8955       for (unsigned i = 0; i != NumLaneElems; ++i) {
8956         // The mask element.  This indexes into the input.
8957         int Idx = SVOp->getMaskElt(i+LaneStart);
8958         if (Idx < 0) {
8959           SVOps.push_back(DAG.getUNDEF(EltVT));
8960           continue;
8961         }
8962
8963         // The input vector this mask element indexes into.
8964         int Input = Idx / NumElems;
8965
8966         // Turn the index into an offset from the start of the input vector.
8967         Idx -= Input * NumElems;
8968
8969         // Extract the vector element by hand.
8970         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
8971                                     SVOp->getOperand(Input),
8972                                     DAG.getIntPtrConstant(Idx)));
8973       }
8974
8975       // Construct the output using a BUILD_VECTOR.
8976       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, SVOps);
8977     } else if (InputUsed[0] < 0) {
8978       // No input vectors were used! The result is undefined.
8979       Output[l] = DAG.getUNDEF(NVT);
8980     } else {
8981       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
8982                                         (InputUsed[0] % 2) * NumLaneElems,
8983                                         DAG, dl);
8984       // If only one input was used, use an undefined vector for the other.
8985       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
8986         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
8987                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
8988       // At least one input vector was used. Create a new shuffle vector.
8989       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
8990     }
8991
8992     Mask.clear();
8993   }
8994
8995   // Concatenate the result back
8996   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
8997 }
8998
8999 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
9000 /// 4 elements, and match them with several different shuffle types.
9001 static SDValue
9002 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
9003   SDValue V1 = SVOp->getOperand(0);
9004   SDValue V2 = SVOp->getOperand(1);
9005   SDLoc dl(SVOp);
9006   MVT VT = SVOp->getSimpleValueType(0);
9007
9008   assert(VT.is128BitVector() && "Unsupported vector size");
9009
9010   std::pair<int, int> Locs[4];
9011   int Mask1[] = { -1, -1, -1, -1 };
9012   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
9013
9014   unsigned NumHi = 0;
9015   unsigned NumLo = 0;
9016   for (unsigned i = 0; i != 4; ++i) {
9017     int Idx = PermMask[i];
9018     if (Idx < 0) {
9019       Locs[i] = std::make_pair(-1, -1);
9020     } else {
9021       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
9022       if (Idx < 4) {
9023         Locs[i] = std::make_pair(0, NumLo);
9024         Mask1[NumLo] = Idx;
9025         NumLo++;
9026       } else {
9027         Locs[i] = std::make_pair(1, NumHi);
9028         if (2+NumHi < 4)
9029           Mask1[2+NumHi] = Idx;
9030         NumHi++;
9031       }
9032     }
9033   }
9034
9035   if (NumLo <= 2 && NumHi <= 2) {
9036     // If no more than two elements come from either vector. This can be
9037     // implemented with two shuffles. First shuffle gather the elements.
9038     // The second shuffle, which takes the first shuffle as both of its
9039     // vector operands, put the elements into the right order.
9040     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
9041
9042     int Mask2[] = { -1, -1, -1, -1 };
9043
9044     for (unsigned i = 0; i != 4; ++i)
9045       if (Locs[i].first != -1) {
9046         unsigned Idx = (i < 2) ? 0 : 4;
9047         Idx += Locs[i].first * 2 + Locs[i].second;
9048         Mask2[i] = Idx;
9049       }
9050
9051     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
9052   }
9053
9054   if (NumLo == 3 || NumHi == 3) {
9055     // Otherwise, we must have three elements from one vector, call it X, and
9056     // one element from the other, call it Y.  First, use a shufps to build an
9057     // intermediate vector with the one element from Y and the element from X
9058     // that will be in the same half in the final destination (the indexes don't
9059     // matter). Then, use a shufps to build the final vector, taking the half
9060     // containing the element from Y from the intermediate, and the other half
9061     // from X.
9062     if (NumHi == 3) {
9063       // Normalize it so the 3 elements come from V1.
9064       CommuteVectorShuffleMask(PermMask, 4);
9065       std::swap(V1, V2);
9066     }
9067
9068     // Find the element from V2.
9069     unsigned HiIndex;
9070     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
9071       int Val = PermMask[HiIndex];
9072       if (Val < 0)
9073         continue;
9074       if (Val >= 4)
9075         break;
9076     }
9077
9078     Mask1[0] = PermMask[HiIndex];
9079     Mask1[1] = -1;
9080     Mask1[2] = PermMask[HiIndex^1];
9081     Mask1[3] = -1;
9082     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
9083
9084     if (HiIndex >= 2) {
9085       Mask1[0] = PermMask[0];
9086       Mask1[1] = PermMask[1];
9087       Mask1[2] = HiIndex & 1 ? 6 : 4;
9088       Mask1[3] = HiIndex & 1 ? 4 : 6;
9089       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
9090     }
9091
9092     Mask1[0] = HiIndex & 1 ? 2 : 0;
9093     Mask1[1] = HiIndex & 1 ? 0 : 2;
9094     Mask1[2] = PermMask[2];
9095     Mask1[3] = PermMask[3];
9096     if (Mask1[2] >= 0)
9097       Mask1[2] += 4;
9098     if (Mask1[3] >= 0)
9099       Mask1[3] += 4;
9100     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
9101   }
9102
9103   // Break it into (shuffle shuffle_hi, shuffle_lo).
9104   int LoMask[] = { -1, -1, -1, -1 };
9105   int HiMask[] = { -1, -1, -1, -1 };
9106
9107   int *MaskPtr = LoMask;
9108   unsigned MaskIdx = 0;
9109   unsigned LoIdx = 0;
9110   unsigned HiIdx = 2;
9111   for (unsigned i = 0; i != 4; ++i) {
9112     if (i == 2) {
9113       MaskPtr = HiMask;
9114       MaskIdx = 1;
9115       LoIdx = 0;
9116       HiIdx = 2;
9117     }
9118     int Idx = PermMask[i];
9119     if (Idx < 0) {
9120       Locs[i] = std::make_pair(-1, -1);
9121     } else if (Idx < 4) {
9122       Locs[i] = std::make_pair(MaskIdx, LoIdx);
9123       MaskPtr[LoIdx] = Idx;
9124       LoIdx++;
9125     } else {
9126       Locs[i] = std::make_pair(MaskIdx, HiIdx);
9127       MaskPtr[HiIdx] = Idx;
9128       HiIdx++;
9129     }
9130   }
9131
9132   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
9133   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
9134   int MaskOps[] = { -1, -1, -1, -1 };
9135   for (unsigned i = 0; i != 4; ++i)
9136     if (Locs[i].first != -1)
9137       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
9138   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
9139 }
9140
9141 static bool MayFoldVectorLoad(SDValue V) {
9142   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
9143     V = V.getOperand(0);
9144
9145   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
9146     V = V.getOperand(0);
9147   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
9148       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
9149     // BUILD_VECTOR (load), undef
9150     V = V.getOperand(0);
9151
9152   return MayFoldLoad(V);
9153 }
9154
9155 static
9156 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
9157   MVT VT = Op.getSimpleValueType();
9158
9159   // Canonizalize to v2f64.
9160   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
9161   return DAG.getNode(ISD::BITCAST, dl, VT,
9162                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
9163                                           V1, DAG));
9164 }
9165
9166 static
9167 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
9168                         bool HasSSE2) {
9169   SDValue V1 = Op.getOperand(0);
9170   SDValue V2 = Op.getOperand(1);
9171   MVT VT = Op.getSimpleValueType();
9172
9173   assert(VT != MVT::v2i64 && "unsupported shuffle type");
9174
9175   if (HasSSE2 && VT == MVT::v2f64)
9176     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
9177
9178   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
9179   return DAG.getNode(ISD::BITCAST, dl, VT,
9180                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
9181                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
9182                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
9183 }
9184
9185 static
9186 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
9187   SDValue V1 = Op.getOperand(0);
9188   SDValue V2 = Op.getOperand(1);
9189   MVT VT = Op.getSimpleValueType();
9190
9191   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
9192          "unsupported shuffle type");
9193
9194   if (V2.getOpcode() == ISD::UNDEF)
9195     V2 = V1;
9196
9197   // v4i32 or v4f32
9198   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
9199 }
9200
9201 static
9202 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
9203   SDValue V1 = Op.getOperand(0);
9204   SDValue V2 = Op.getOperand(1);
9205   MVT VT = Op.getSimpleValueType();
9206   unsigned NumElems = VT.getVectorNumElements();
9207
9208   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
9209   // operand of these instructions is only memory, so check if there's a
9210   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
9211   // same masks.
9212   bool CanFoldLoad = false;
9213
9214   // Trivial case, when V2 comes from a load.
9215   if (MayFoldVectorLoad(V2))
9216     CanFoldLoad = true;
9217
9218   // When V1 is a load, it can be folded later into a store in isel, example:
9219   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
9220   //    turns into:
9221   //  (MOVLPSmr addr:$src1, VR128:$src2)
9222   // So, recognize this potential and also use MOVLPS or MOVLPD
9223   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
9224     CanFoldLoad = true;
9225
9226   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9227   if (CanFoldLoad) {
9228     if (HasSSE2 && NumElems == 2)
9229       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
9230
9231     if (NumElems == 4)
9232       // If we don't care about the second element, proceed to use movss.
9233       if (SVOp->getMaskElt(1) != -1)
9234         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
9235   }
9236
9237   // movl and movlp will both match v2i64, but v2i64 is never matched by
9238   // movl earlier because we make it strict to avoid messing with the movlp load
9239   // folding logic (see the code above getMOVLP call). Match it here then,
9240   // this is horrible, but will stay like this until we move all shuffle
9241   // matching to x86 specific nodes. Note that for the 1st condition all
9242   // types are matched with movsd.
9243   if (HasSSE2) {
9244     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
9245     // as to remove this logic from here, as much as possible
9246     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
9247       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
9248     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
9249   }
9250
9251   assert(VT != MVT::v4i32 && "unsupported shuffle type");
9252
9253   // Invert the operand order and use SHUFPS to match it.
9254   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
9255                               getShuffleSHUFImmediate(SVOp), DAG);
9256 }
9257
9258 static SDValue NarrowVectorLoadToElement(LoadSDNode *Load, unsigned Index,
9259                                          SelectionDAG &DAG) {
9260   SDLoc dl(Load);
9261   MVT VT = Load->getSimpleValueType(0);
9262   MVT EVT = VT.getVectorElementType();
9263   SDValue Addr = Load->getOperand(1);
9264   SDValue NewAddr = DAG.getNode(
9265       ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
9266       DAG.getConstant(Index * EVT.getStoreSize(), Addr.getSimpleValueType()));
9267
9268   SDValue NewLoad =
9269       DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
9270                   DAG.getMachineFunction().getMachineMemOperand(
9271                       Load->getMemOperand(), 0, EVT.getStoreSize()));
9272   return NewLoad;
9273 }
9274
9275 // It is only safe to call this function if isINSERTPSMask is true for
9276 // this shufflevector mask.
9277 static SDValue getINSERTPS(ShuffleVectorSDNode *SVOp, SDLoc &dl,
9278                            SelectionDAG &DAG) {
9279   // Generate an insertps instruction when inserting an f32 from memory onto a
9280   // v4f32 or when copying a member from one v4f32 to another.
9281   // We also use it for transferring i32 from one register to another,
9282   // since it simply copies the same bits.
9283   // If we're transferring an i32 from memory to a specific element in a
9284   // register, we output a generic DAG that will match the PINSRD
9285   // instruction.
9286   MVT VT = SVOp->getSimpleValueType(0);
9287   MVT EVT = VT.getVectorElementType();
9288   SDValue V1 = SVOp->getOperand(0);
9289   SDValue V2 = SVOp->getOperand(1);
9290   auto Mask = SVOp->getMask();
9291   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
9292          "unsupported vector type for insertps/pinsrd");
9293
9294   auto FromV1Predicate = [](const int &i) { return i < 4 && i > -1; };
9295   auto FromV2Predicate = [](const int &i) { return i >= 4; };
9296   int FromV1 = std::count_if(Mask.begin(), Mask.end(), FromV1Predicate);
9297
9298   SDValue From;
9299   SDValue To;
9300   unsigned DestIndex;
9301   if (FromV1 == 1) {
9302     From = V1;
9303     To = V2;
9304     DestIndex = std::find_if(Mask.begin(), Mask.end(), FromV1Predicate) -
9305                 Mask.begin();
9306
9307     // If we have 1 element from each vector, we have to check if we're
9308     // changing V1's element's place. If so, we're done. Otherwise, we
9309     // should assume we're changing V2's element's place and behave
9310     // accordingly.
9311     int FromV2 = std::count_if(Mask.begin(), Mask.end(), FromV2Predicate);
9312     assert(DestIndex <= INT32_MAX && "truncated destination index");
9313     if (FromV1 == FromV2 &&
9314         static_cast<int>(DestIndex) == Mask[DestIndex] % 4) {
9315       From = V2;
9316       To = V1;
9317       DestIndex =
9318           std::find_if(Mask.begin(), Mask.end(), FromV2Predicate) - Mask.begin();
9319     }
9320   } else {
9321     assert(std::count_if(Mask.begin(), Mask.end(), FromV2Predicate) == 1 &&
9322            "More than one element from V1 and from V2, or no elements from one "
9323            "of the vectors. This case should not have returned true from "
9324            "isINSERTPSMask");
9325     From = V2;
9326     To = V1;
9327     DestIndex =
9328         std::find_if(Mask.begin(), Mask.end(), FromV2Predicate) - Mask.begin();
9329   }
9330
9331   // Get an index into the source vector in the range [0,4) (the mask is
9332   // in the range [0,8) because it can address V1 and V2)
9333   unsigned SrcIndex = Mask[DestIndex] % 4;
9334   if (MayFoldLoad(From)) {
9335     // Trivial case, when From comes from a load and is only used by the
9336     // shuffle. Make it use insertps from the vector that we need from that
9337     // load.
9338     SDValue NewLoad =
9339         NarrowVectorLoadToElement(cast<LoadSDNode>(From), SrcIndex, DAG);
9340     if (!NewLoad.getNode())
9341       return SDValue();
9342
9343     if (EVT == MVT::f32) {
9344       // Create this as a scalar to vector to match the instruction pattern.
9345       SDValue LoadScalarToVector =
9346           DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, NewLoad);
9347       SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4);
9348       return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, LoadScalarToVector,
9349                          InsertpsMask);
9350     } else { // EVT == MVT::i32
9351       // If we're getting an i32 from memory, use an INSERT_VECTOR_ELT
9352       // instruction, to match the PINSRD instruction, which loads an i32 to a
9353       // certain vector element.
9354       return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, To, NewLoad,
9355                          DAG.getConstant(DestIndex, MVT::i32));
9356     }
9357   }
9358
9359   // Vector-element-to-vector
9360   SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4 | SrcIndex << 6);
9361   return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, From, InsertpsMask);
9362 }
9363
9364 // Reduce a vector shuffle to zext.
9365 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
9366                                     SelectionDAG &DAG) {
9367   // PMOVZX is only available from SSE41.
9368   if (!Subtarget->hasSSE41())
9369     return SDValue();
9370
9371   MVT VT = Op.getSimpleValueType();
9372
9373   // Only AVX2 support 256-bit vector integer extending.
9374   if (!Subtarget->hasInt256() && VT.is256BitVector())
9375     return SDValue();
9376
9377   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9378   SDLoc DL(Op);
9379   SDValue V1 = Op.getOperand(0);
9380   SDValue V2 = Op.getOperand(1);
9381   unsigned NumElems = VT.getVectorNumElements();
9382
9383   // Extending is an unary operation and the element type of the source vector
9384   // won't be equal to or larger than i64.
9385   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
9386       VT.getVectorElementType() == MVT::i64)
9387     return SDValue();
9388
9389   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
9390   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
9391   while ((1U << Shift) < NumElems) {
9392     if (SVOp->getMaskElt(1U << Shift) == 1)
9393       break;
9394     Shift += 1;
9395     // The maximal ratio is 8, i.e. from i8 to i64.
9396     if (Shift > 3)
9397       return SDValue();
9398   }
9399
9400   // Check the shuffle mask.
9401   unsigned Mask = (1U << Shift) - 1;
9402   for (unsigned i = 0; i != NumElems; ++i) {
9403     int EltIdx = SVOp->getMaskElt(i);
9404     if ((i & Mask) != 0 && EltIdx != -1)
9405       return SDValue();
9406     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
9407       return SDValue();
9408   }
9409
9410   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
9411   MVT NeVT = MVT::getIntegerVT(NBits);
9412   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
9413
9414   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
9415     return SDValue();
9416
9417   // Simplify the operand as it's prepared to be fed into shuffle.
9418   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
9419   if (V1.getOpcode() == ISD::BITCAST &&
9420       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
9421       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
9422       V1.getOperand(0).getOperand(0)
9423         .getSimpleValueType().getSizeInBits() == SignificantBits) {
9424     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
9425     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
9426     ConstantSDNode *CIdx =
9427       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
9428     // If it's foldable, i.e. normal load with single use, we will let code
9429     // selection to fold it. Otherwise, we will short the conversion sequence.
9430     if (CIdx && CIdx->getZExtValue() == 0 &&
9431         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
9432       MVT FullVT = V.getSimpleValueType();
9433       MVT V1VT = V1.getSimpleValueType();
9434       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
9435         // The "ext_vec_elt" node is wider than the result node.
9436         // In this case we should extract subvector from V.
9437         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
9438         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
9439         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
9440                                         FullVT.getVectorNumElements()/Ratio);
9441         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
9442                         DAG.getIntPtrConstant(0));
9443       }
9444       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
9445     }
9446   }
9447
9448   return DAG.getNode(ISD::BITCAST, DL, VT,
9449                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
9450 }
9451
9452 static SDValue NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
9453                                       SelectionDAG &DAG) {
9454   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9455   MVT VT = Op.getSimpleValueType();
9456   SDLoc dl(Op);
9457   SDValue V1 = Op.getOperand(0);
9458   SDValue V2 = Op.getOperand(1);
9459
9460   if (isZeroShuffle(SVOp))
9461     return getZeroVector(VT, Subtarget, DAG, dl);
9462
9463   // Handle splat operations
9464   if (SVOp->isSplat()) {
9465     // Use vbroadcast whenever the splat comes from a foldable load
9466     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
9467     if (Broadcast.getNode())
9468       return Broadcast;
9469   }
9470
9471   // Check integer expanding shuffles.
9472   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
9473   if (NewOp.getNode())
9474     return NewOp;
9475
9476   // If the shuffle can be profitably rewritten as a narrower shuffle, then
9477   // do it!
9478   if (VT == MVT::v8i16 || VT == MVT::v16i8 || VT == MVT::v16i16 ||
9479       VT == MVT::v32i8) {
9480     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
9481     if (NewOp.getNode())
9482       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
9483   } else if (VT.is128BitVector() && Subtarget->hasSSE2()) {
9484     // FIXME: Figure out a cleaner way to do this.
9485     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
9486       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
9487       if (NewOp.getNode()) {
9488         MVT NewVT = NewOp.getSimpleValueType();
9489         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
9490                                NewVT, true, false))
9491           return getVZextMovL(VT, NewVT, NewOp.getOperand(0), DAG, Subtarget,
9492                               dl);
9493       }
9494     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
9495       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
9496       if (NewOp.getNode()) {
9497         MVT NewVT = NewOp.getSimpleValueType();
9498         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
9499           return getVZextMovL(VT, NewVT, NewOp.getOperand(1), DAG, Subtarget,
9500                               dl);
9501       }
9502     }
9503   }
9504   return SDValue();
9505 }
9506
9507 SDValue
9508 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
9509   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9510   SDValue V1 = Op.getOperand(0);
9511   SDValue V2 = Op.getOperand(1);
9512   MVT VT = Op.getSimpleValueType();
9513   SDLoc dl(Op);
9514   unsigned NumElems = VT.getVectorNumElements();
9515   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
9516   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
9517   bool V1IsSplat = false;
9518   bool V2IsSplat = false;
9519   bool HasSSE2 = Subtarget->hasSSE2();
9520   bool HasFp256    = Subtarget->hasFp256();
9521   bool HasInt256   = Subtarget->hasInt256();
9522   MachineFunction &MF = DAG.getMachineFunction();
9523   bool OptForSize = MF.getFunction()->getAttributes().
9524     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
9525
9526   // Check if we should use the experimental vector shuffle lowering. If so,
9527   // delegate completely to that code path.
9528   if (ExperimentalVectorShuffleLowering)
9529     return lowerVectorShuffle(Op, Subtarget, DAG);
9530
9531   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
9532
9533   if (V1IsUndef && V2IsUndef)
9534     return DAG.getUNDEF(VT);
9535
9536   // When we create a shuffle node we put the UNDEF node to second operand,
9537   // but in some cases the first operand may be transformed to UNDEF.
9538   // In this case we should just commute the node.
9539   if (V1IsUndef)
9540     return DAG.getCommutedVectorShuffle(*SVOp);
9541
9542   // Vector shuffle lowering takes 3 steps:
9543   //
9544   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
9545   //    narrowing and commutation of operands should be handled.
9546   // 2) Matching of shuffles with known shuffle masks to x86 target specific
9547   //    shuffle nodes.
9548   // 3) Rewriting of unmatched masks into new generic shuffle operations,
9549   //    so the shuffle can be broken into other shuffles and the legalizer can
9550   //    try the lowering again.
9551   //
9552   // The general idea is that no vector_shuffle operation should be left to
9553   // be matched during isel, all of them must be converted to a target specific
9554   // node here.
9555
9556   // Normalize the input vectors. Here splats, zeroed vectors, profitable
9557   // narrowing and commutation of operands should be handled. The actual code
9558   // doesn't include all of those, work in progress...
9559   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
9560   if (NewOp.getNode())
9561     return NewOp;
9562
9563   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
9564
9565   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
9566   // unpckh_undef). Only use pshufd if speed is more important than size.
9567   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
9568     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
9569   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
9570     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
9571
9572   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
9573       V2IsUndef && MayFoldVectorLoad(V1))
9574     return getMOVDDup(Op, dl, V1, DAG);
9575
9576   if (isMOVHLPS_v_undef_Mask(M, VT))
9577     return getMOVHighToLow(Op, dl, DAG);
9578
9579   // Use to match splats
9580   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
9581       (VT == MVT::v2f64 || VT == MVT::v2i64))
9582     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
9583
9584   if (isPSHUFDMask(M, VT)) {
9585     // The actual implementation will match the mask in the if above and then
9586     // during isel it can match several different instructions, not only pshufd
9587     // as its name says, sad but true, emulate the behavior for now...
9588     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
9589       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
9590
9591     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
9592
9593     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
9594       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
9595
9596     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
9597       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
9598                                   DAG);
9599
9600     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
9601                                 TargetMask, DAG);
9602   }
9603
9604   if (isPALIGNRMask(M, VT, Subtarget))
9605     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
9606                                 getShufflePALIGNRImmediate(SVOp),
9607                                 DAG);
9608
9609   // Check if this can be converted into a logical shift.
9610   bool isLeft = false;
9611   unsigned ShAmt = 0;
9612   SDValue ShVal;
9613   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
9614   if (isShift && ShVal.hasOneUse()) {
9615     // If the shifted value has multiple uses, it may be cheaper to use
9616     // v_set0 + movlhps or movhlps, etc.
9617     MVT EltVT = VT.getVectorElementType();
9618     ShAmt *= EltVT.getSizeInBits();
9619     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
9620   }
9621
9622   if (isMOVLMask(M, VT)) {
9623     if (ISD::isBuildVectorAllZeros(V1.getNode()))
9624       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
9625     if (!isMOVLPMask(M, VT)) {
9626       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
9627         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
9628
9629       if (VT == MVT::v4i32 || VT == MVT::v4f32)
9630         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
9631     }
9632   }
9633
9634   // FIXME: fold these into legal mask.
9635   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
9636     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
9637
9638   if (isMOVHLPSMask(M, VT))
9639     return getMOVHighToLow(Op, dl, DAG);
9640
9641   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
9642     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
9643
9644   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
9645     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
9646
9647   if (isMOVLPMask(M, VT))
9648     return getMOVLP(Op, dl, DAG, HasSSE2);
9649
9650   if (ShouldXformToMOVHLPS(M, VT) ||
9651       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
9652     return DAG.getCommutedVectorShuffle(*SVOp);
9653
9654   if (isShift) {
9655     // No better options. Use a vshldq / vsrldq.
9656     MVT EltVT = VT.getVectorElementType();
9657     ShAmt *= EltVT.getSizeInBits();
9658     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
9659   }
9660
9661   bool Commuted = false;
9662   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
9663   // 1,1,1,1 -> v8i16 though.
9664   BitVector UndefElements;
9665   if (auto *BVOp = dyn_cast<BuildVectorSDNode>(V1.getNode()))
9666     if (BVOp->getConstantSplatNode(&UndefElements) && UndefElements.none())
9667       V1IsSplat = true;
9668   if (auto *BVOp = dyn_cast<BuildVectorSDNode>(V2.getNode()))
9669     if (BVOp->getConstantSplatNode(&UndefElements) && UndefElements.none())
9670       V2IsSplat = true;
9671
9672   // Canonicalize the splat or undef, if present, to be on the RHS.
9673   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
9674     CommuteVectorShuffleMask(M, NumElems);
9675     std::swap(V1, V2);
9676     std::swap(V1IsSplat, V2IsSplat);
9677     Commuted = true;
9678   }
9679
9680   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
9681     // Shuffling low element of v1 into undef, just return v1.
9682     if (V2IsUndef)
9683       return V1;
9684     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
9685     // the instruction selector will not match, so get a canonical MOVL with
9686     // swapped operands to undo the commute.
9687     return getMOVL(DAG, dl, VT, V2, V1);
9688   }
9689
9690   if (isUNPCKLMask(M, VT, HasInt256))
9691     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
9692
9693   if (isUNPCKHMask(M, VT, HasInt256))
9694     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
9695
9696   if (V2IsSplat) {
9697     // Normalize mask so all entries that point to V2 points to its first
9698     // element then try to match unpck{h|l} again. If match, return a
9699     // new vector_shuffle with the corrected mask.p
9700     SmallVector<int, 8> NewMask(M.begin(), M.end());
9701     NormalizeMask(NewMask, NumElems);
9702     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
9703       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
9704     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
9705       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
9706   }
9707
9708   if (Commuted) {
9709     // Commute is back and try unpck* again.
9710     // FIXME: this seems wrong.
9711     CommuteVectorShuffleMask(M, NumElems);
9712     std::swap(V1, V2);
9713     std::swap(V1IsSplat, V2IsSplat);
9714
9715     if (isUNPCKLMask(M, VT, HasInt256))
9716       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
9717
9718     if (isUNPCKHMask(M, VT, HasInt256))
9719       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
9720   }
9721
9722   // Normalize the node to match x86 shuffle ops if needed
9723   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
9724     return DAG.getCommutedVectorShuffle(*SVOp);
9725
9726   // The checks below are all present in isShuffleMaskLegal, but they are
9727   // inlined here right now to enable us to directly emit target specific
9728   // nodes, and remove one by one until they don't return Op anymore.
9729
9730   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
9731       SVOp->getSplatIndex() == 0 && V2IsUndef) {
9732     if (VT == MVT::v2f64 || VT == MVT::v2i64)
9733       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
9734   }
9735
9736   if (isPSHUFHWMask(M, VT, HasInt256))
9737     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
9738                                 getShufflePSHUFHWImmediate(SVOp),
9739                                 DAG);
9740
9741   if (isPSHUFLWMask(M, VT, HasInt256))
9742     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
9743                                 getShufflePSHUFLWImmediate(SVOp),
9744                                 DAG);
9745
9746   unsigned MaskValue;
9747   if (isBlendMask(M, VT, Subtarget->hasSSE41(), Subtarget->hasInt256(),
9748                   &MaskValue))
9749     return LowerVECTOR_SHUFFLEtoBlend(SVOp, MaskValue, Subtarget, DAG);
9750
9751   if (isSHUFPMask(M, VT))
9752     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
9753                                 getShuffleSHUFImmediate(SVOp), DAG);
9754
9755   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
9756     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
9757   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
9758     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
9759
9760   //===--------------------------------------------------------------------===//
9761   // Generate target specific nodes for 128 or 256-bit shuffles only
9762   // supported in the AVX instruction set.
9763   //
9764
9765   // Handle VMOVDDUPY permutations
9766   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
9767     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
9768
9769   // Handle VPERMILPS/D* permutations
9770   if (isVPERMILPMask(M, VT)) {
9771     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
9772       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
9773                                   getShuffleSHUFImmediate(SVOp), DAG);
9774     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
9775                                 getShuffleSHUFImmediate(SVOp), DAG);
9776   }
9777
9778   unsigned Idx;
9779   if (VT.is512BitVector() && isINSERT64x4Mask(M, VT, &Idx))
9780     return Insert256BitVector(V1, Extract256BitVector(V2, 0, DAG, dl),
9781                               Idx*(NumElems/2), DAG, dl);
9782
9783   // Handle VPERM2F128/VPERM2I128 permutations
9784   if (isVPERM2X128Mask(M, VT, HasFp256))
9785     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
9786                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
9787
9788   if (Subtarget->hasSSE41() && isINSERTPSMask(M, VT))
9789     return getINSERTPS(SVOp, dl, DAG);
9790
9791   unsigned Imm8;
9792   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
9793     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
9794
9795   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
9796       VT.is512BitVector()) {
9797     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
9798     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
9799     SmallVector<SDValue, 16> permclMask;
9800     for (unsigned i = 0; i != NumElems; ++i) {
9801       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
9802     }
9803
9804     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT, permclMask);
9805     if (V2IsUndef)
9806       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
9807       return DAG.getNode(X86ISD::VPERMV, dl, VT,
9808                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
9809     return DAG.getNode(X86ISD::VPERMV3, dl, VT, V1,
9810                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V2);
9811   }
9812
9813   //===--------------------------------------------------------------------===//
9814   // Since no target specific shuffle was selected for this generic one,
9815   // lower it into other known shuffles. FIXME: this isn't true yet, but
9816   // this is the plan.
9817   //
9818
9819   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
9820   if (VT == MVT::v8i16) {
9821     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
9822     if (NewOp.getNode())
9823       return NewOp;
9824   }
9825
9826   if (VT == MVT::v16i16 && Subtarget->hasInt256()) {
9827     SDValue NewOp = LowerVECTOR_SHUFFLEv16i16(Op, DAG);
9828     if (NewOp.getNode())
9829       return NewOp;
9830   }
9831
9832   if (VT == MVT::v16i8) {
9833     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
9834     if (NewOp.getNode())
9835       return NewOp;
9836   }
9837
9838   if (VT == MVT::v32i8) {
9839     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
9840     if (NewOp.getNode())
9841       return NewOp;
9842   }
9843
9844   // Handle all 128-bit wide vectors with 4 elements, and match them with
9845   // several different shuffle types.
9846   if (NumElems == 4 && VT.is128BitVector())
9847     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
9848
9849   // Handle general 256-bit shuffles
9850   if (VT.is256BitVector())
9851     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
9852
9853   return SDValue();
9854 }
9855
9856 // This function assumes its argument is a BUILD_VECTOR of constants or
9857 // undef SDNodes. i.e: ISD::isBuildVectorOfConstantSDNodes(BuildVector) is
9858 // true.
9859 static bool BUILD_VECTORtoBlendMask(BuildVectorSDNode *BuildVector,
9860                                     unsigned &MaskValue) {
9861   MaskValue = 0;
9862   unsigned NumElems = BuildVector->getNumOperands();
9863   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
9864   unsigned NumLanes = (NumElems - 1) / 8 + 1;
9865   unsigned NumElemsInLane = NumElems / NumLanes;
9866
9867   // Blend for v16i16 should be symetric for the both lanes.
9868   for (unsigned i = 0; i < NumElemsInLane; ++i) {
9869     SDValue EltCond = BuildVector->getOperand(i);
9870     SDValue SndLaneEltCond =
9871         (NumLanes == 2) ? BuildVector->getOperand(i + NumElemsInLane) : EltCond;
9872
9873     int Lane1Cond = -1, Lane2Cond = -1;
9874     if (isa<ConstantSDNode>(EltCond))
9875       Lane1Cond = !isZero(EltCond);
9876     if (isa<ConstantSDNode>(SndLaneEltCond))
9877       Lane2Cond = !isZero(SndLaneEltCond);
9878
9879     if (Lane1Cond == Lane2Cond || Lane2Cond < 0)
9880       // Lane1Cond != 0, means we want the first argument.
9881       // Lane1Cond == 0, means we want the second argument.
9882       // The encoding of this argument is 0 for the first argument, 1
9883       // for the second. Therefore, invert the condition.
9884       MaskValue |= !Lane1Cond << i;
9885     else if (Lane1Cond < 0)
9886       MaskValue |= !Lane2Cond << i;
9887     else
9888       return false;
9889   }
9890   return true;
9891 }
9892
9893 // Try to lower a vselect node into a simple blend instruction.
9894 static SDValue LowerVSELECTtoBlend(SDValue Op, const X86Subtarget *Subtarget,
9895                                    SelectionDAG &DAG) {
9896   SDValue Cond = Op.getOperand(0);
9897   SDValue LHS = Op.getOperand(1);
9898   SDValue RHS = Op.getOperand(2);
9899   SDLoc dl(Op);
9900   MVT VT = Op.getSimpleValueType();
9901   MVT EltVT = VT.getVectorElementType();
9902   unsigned NumElems = VT.getVectorNumElements();
9903
9904   // There is no blend with immediate in AVX-512.
9905   if (VT.is512BitVector())
9906     return SDValue();
9907
9908   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
9909     return SDValue();
9910   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
9911     return SDValue();
9912
9913   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
9914     return SDValue();
9915
9916   // Check the mask for BLEND and build the value.
9917   unsigned MaskValue = 0;
9918   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
9919     return SDValue();
9920
9921   // Convert i32 vectors to floating point if it is not AVX2.
9922   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
9923   MVT BlendVT = VT;
9924   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
9925     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
9926                                NumElems);
9927     LHS = DAG.getNode(ISD::BITCAST, dl, VT, LHS);
9928     RHS = DAG.getNode(ISD::BITCAST, dl, VT, RHS);
9929   }
9930
9931   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, LHS, RHS,
9932                             DAG.getConstant(MaskValue, MVT::i32));
9933   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
9934 }
9935
9936 SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
9937   SDValue BlendOp = LowerVSELECTtoBlend(Op, Subtarget, DAG);
9938   if (BlendOp.getNode())
9939     return BlendOp;
9940
9941   // Some types for vselect were previously set to Expand, not Legal or
9942   // Custom. Return an empty SDValue so we fall-through to Expand, after
9943   // the Custom lowering phase.
9944   MVT VT = Op.getSimpleValueType();
9945   switch (VT.SimpleTy) {
9946   default:
9947     break;
9948   case MVT::v8i16:
9949   case MVT::v16i16:
9950     return SDValue();
9951   }
9952
9953   // We couldn't create a "Blend with immediate" node.
9954   // This node should still be legal, but we'll have to emit a blendv*
9955   // instruction.
9956   return Op;
9957 }
9958
9959 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
9960   MVT VT = Op.getSimpleValueType();
9961   SDLoc dl(Op);
9962
9963   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
9964     return SDValue();
9965
9966   if (VT.getSizeInBits() == 8) {
9967     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
9968                                   Op.getOperand(0), Op.getOperand(1));
9969     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
9970                                   DAG.getValueType(VT));
9971     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
9972   }
9973
9974   if (VT.getSizeInBits() == 16) {
9975     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9976     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
9977     if (Idx == 0)
9978       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
9979                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
9980                                      DAG.getNode(ISD::BITCAST, dl,
9981                                                  MVT::v4i32,
9982                                                  Op.getOperand(0)),
9983                                      Op.getOperand(1)));
9984     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
9985                                   Op.getOperand(0), Op.getOperand(1));
9986     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
9987                                   DAG.getValueType(VT));
9988     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
9989   }
9990
9991   if (VT == MVT::f32) {
9992     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
9993     // the result back to FR32 register. It's only worth matching if the
9994     // result has a single use which is a store or a bitcast to i32.  And in
9995     // the case of a store, it's not worth it if the index is a constant 0,
9996     // because a MOVSSmr can be used instead, which is smaller and faster.
9997     if (!Op.hasOneUse())
9998       return SDValue();
9999     SDNode *User = *Op.getNode()->use_begin();
10000     if ((User->getOpcode() != ISD::STORE ||
10001          (isa<ConstantSDNode>(Op.getOperand(1)) &&
10002           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
10003         (User->getOpcode() != ISD::BITCAST ||
10004          User->getValueType(0) != MVT::i32))
10005       return SDValue();
10006     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
10007                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
10008                                               Op.getOperand(0)),
10009                                               Op.getOperand(1));
10010     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
10011   }
10012
10013   if (VT == MVT::i32 || VT == MVT::i64) {
10014     // ExtractPS/pextrq works with constant index.
10015     if (isa<ConstantSDNode>(Op.getOperand(1)))
10016       return Op;
10017   }
10018   return SDValue();
10019 }
10020
10021 /// Extract one bit from mask vector, like v16i1 or v8i1.
10022 /// AVX-512 feature.
10023 SDValue
10024 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
10025   SDValue Vec = Op.getOperand(0);
10026   SDLoc dl(Vec);
10027   MVT VecVT = Vec.getSimpleValueType();
10028   SDValue Idx = Op.getOperand(1);
10029   MVT EltVT = Op.getSimpleValueType();
10030
10031   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
10032
10033   // variable index can't be handled in mask registers,
10034   // extend vector to VR512
10035   if (!isa<ConstantSDNode>(Idx)) {
10036     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
10037     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
10038     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
10039                               ExtVT.getVectorElementType(), Ext, Idx);
10040     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
10041   }
10042
10043   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10044   const TargetRegisterClass* rc = getRegClassFor(VecVT);
10045   unsigned MaxSift = rc->getSize()*8 - 1;
10046   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
10047                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
10048   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
10049                     DAG.getConstant(MaxSift, MVT::i8));
10050   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
10051                        DAG.getIntPtrConstant(0));
10052 }
10053
10054 SDValue
10055 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
10056                                            SelectionDAG &DAG) const {
10057   SDLoc dl(Op);
10058   SDValue Vec = Op.getOperand(0);
10059   MVT VecVT = Vec.getSimpleValueType();
10060   SDValue Idx = Op.getOperand(1);
10061
10062   if (Op.getSimpleValueType() == MVT::i1)
10063     return ExtractBitFromMaskVector(Op, DAG);
10064
10065   if (!isa<ConstantSDNode>(Idx)) {
10066     if (VecVT.is512BitVector() ||
10067         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
10068          VecVT.getVectorElementType().getSizeInBits() == 32)) {
10069
10070       MVT MaskEltVT =
10071         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
10072       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
10073                                     MaskEltVT.getSizeInBits());
10074
10075       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
10076       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
10077                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
10078                                 Idx, DAG.getConstant(0, getPointerTy()));
10079       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
10080       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
10081                         Perm, DAG.getConstant(0, getPointerTy()));
10082     }
10083     return SDValue();
10084   }
10085
10086   // If this is a 256-bit vector result, first extract the 128-bit vector and
10087   // then extract the element from the 128-bit vector.
10088   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
10089
10090     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10091     // Get the 128-bit vector.
10092     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
10093     MVT EltVT = VecVT.getVectorElementType();
10094
10095     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
10096
10097     //if (IdxVal >= NumElems/2)
10098     //  IdxVal -= NumElems/2;
10099     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
10100     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
10101                        DAG.getConstant(IdxVal, MVT::i32));
10102   }
10103
10104   assert(VecVT.is128BitVector() && "Unexpected vector length");
10105
10106   if (Subtarget->hasSSE41()) {
10107     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
10108     if (Res.getNode())
10109       return Res;
10110   }
10111
10112   MVT VT = Op.getSimpleValueType();
10113   // TODO: handle v16i8.
10114   if (VT.getSizeInBits() == 16) {
10115     SDValue Vec = Op.getOperand(0);
10116     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10117     if (Idx == 0)
10118       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
10119                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
10120                                      DAG.getNode(ISD::BITCAST, dl,
10121                                                  MVT::v4i32, Vec),
10122                                      Op.getOperand(1)));
10123     // Transform it so it match pextrw which produces a 32-bit result.
10124     MVT EltVT = MVT::i32;
10125     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
10126                                   Op.getOperand(0), Op.getOperand(1));
10127     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
10128                                   DAG.getValueType(VT));
10129     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
10130   }
10131
10132   if (VT.getSizeInBits() == 32) {
10133     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10134     if (Idx == 0)
10135       return Op;
10136
10137     // SHUFPS the element to the lowest double word, then movss.
10138     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
10139     MVT VVT = Op.getOperand(0).getSimpleValueType();
10140     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
10141                                        DAG.getUNDEF(VVT), Mask);
10142     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
10143                        DAG.getIntPtrConstant(0));
10144   }
10145
10146   if (VT.getSizeInBits() == 64) {
10147     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
10148     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
10149     //        to match extract_elt for f64.
10150     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10151     if (Idx == 0)
10152       return Op;
10153
10154     // UNPCKHPD the element to the lowest double word, then movsd.
10155     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
10156     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
10157     int Mask[2] = { 1, -1 };
10158     MVT VVT = Op.getOperand(0).getSimpleValueType();
10159     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
10160                                        DAG.getUNDEF(VVT), Mask);
10161     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
10162                        DAG.getIntPtrConstant(0));
10163   }
10164
10165   return SDValue();
10166 }
10167
10168 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
10169   MVT VT = Op.getSimpleValueType();
10170   MVT EltVT = VT.getVectorElementType();
10171   SDLoc dl(Op);
10172
10173   SDValue N0 = Op.getOperand(0);
10174   SDValue N1 = Op.getOperand(1);
10175   SDValue N2 = Op.getOperand(2);
10176
10177   if (!VT.is128BitVector())
10178     return SDValue();
10179
10180   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
10181       isa<ConstantSDNode>(N2)) {
10182     unsigned Opc;
10183     if (VT == MVT::v8i16)
10184       Opc = X86ISD::PINSRW;
10185     else if (VT == MVT::v16i8)
10186       Opc = X86ISD::PINSRB;
10187     else
10188       Opc = X86ISD::PINSRB;
10189
10190     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
10191     // argument.
10192     if (N1.getValueType() != MVT::i32)
10193       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
10194     if (N2.getValueType() != MVT::i32)
10195       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
10196     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
10197   }
10198
10199   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
10200     // Bits [7:6] of the constant are the source select.  This will always be
10201     //  zero here.  The DAG Combiner may combine an extract_elt index into these
10202     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
10203     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
10204     // Bits [5:4] of the constant are the destination select.  This is the
10205     //  value of the incoming immediate.
10206     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
10207     //   combine either bitwise AND or insert of float 0.0 to set these bits.
10208     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
10209     // Create this as a scalar to vector..
10210     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
10211     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
10212   }
10213
10214   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
10215     // PINSR* works with constant index.
10216     return Op;
10217   }
10218   return SDValue();
10219 }
10220
10221 /// Insert one bit to mask vector, like v16i1 or v8i1.
10222 /// AVX-512 feature.
10223 SDValue 
10224 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
10225   SDLoc dl(Op);
10226   SDValue Vec = Op.getOperand(0);
10227   SDValue Elt = Op.getOperand(1);
10228   SDValue Idx = Op.getOperand(2);
10229   MVT VecVT = Vec.getSimpleValueType();
10230
10231   if (!isa<ConstantSDNode>(Idx)) {
10232     // Non constant index. Extend source and destination,
10233     // insert element and then truncate the result.
10234     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
10235     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
10236     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT, 
10237       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
10238       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
10239     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
10240   }
10241
10242   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10243   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
10244   if (Vec.getOpcode() == ISD::UNDEF)
10245     return DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
10246                        DAG.getConstant(IdxVal, MVT::i8));
10247   const TargetRegisterClass* rc = getRegClassFor(VecVT);
10248   unsigned MaxSift = rc->getSize()*8 - 1;
10249   EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
10250                     DAG.getConstant(MaxSift, MVT::i8));
10251   EltInVec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, EltInVec,
10252                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
10253   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
10254 }
10255 SDValue
10256 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
10257   MVT VT = Op.getSimpleValueType();
10258   MVT EltVT = VT.getVectorElementType();
10259   
10260   if (EltVT == MVT::i1)
10261     return InsertBitToMaskVector(Op, DAG);
10262
10263   SDLoc dl(Op);
10264   SDValue N0 = Op.getOperand(0);
10265   SDValue N1 = Op.getOperand(1);
10266   SDValue N2 = Op.getOperand(2);
10267
10268   // If this is a 256-bit vector result, first extract the 128-bit vector,
10269   // insert the element into the extracted half and then place it back.
10270   if (VT.is256BitVector() || VT.is512BitVector()) {
10271     if (!isa<ConstantSDNode>(N2))
10272       return SDValue();
10273
10274     // Get the desired 128-bit vector half.
10275     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
10276     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
10277
10278     // Insert the element into the desired half.
10279     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
10280     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
10281
10282     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
10283                     DAG.getConstant(IdxIn128, MVT::i32));
10284
10285     // Insert the changed part back to the 256-bit vector
10286     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
10287   }
10288
10289   if (Subtarget->hasSSE41())
10290     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
10291
10292   if (EltVT == MVT::i8)
10293     return SDValue();
10294
10295   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
10296     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
10297     // as its second argument.
10298     if (N1.getValueType() != MVT::i32)
10299       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
10300     if (N2.getValueType() != MVT::i32)
10301       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
10302     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
10303   }
10304   return SDValue();
10305 }
10306
10307 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
10308   SDLoc dl(Op);
10309   MVT OpVT = Op.getSimpleValueType();
10310
10311   // If this is a 256-bit vector result, first insert into a 128-bit
10312   // vector and then insert into the 256-bit vector.
10313   if (!OpVT.is128BitVector()) {
10314     // Insert into a 128-bit vector.
10315     unsigned SizeFactor = OpVT.getSizeInBits()/128;
10316     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
10317                                  OpVT.getVectorNumElements() / SizeFactor);
10318
10319     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
10320
10321     // Insert the 128-bit vector.
10322     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
10323   }
10324
10325   if (OpVT == MVT::v1i64 &&
10326       Op.getOperand(0).getValueType() == MVT::i64)
10327     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
10328
10329   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
10330   assert(OpVT.is128BitVector() && "Expected an SSE type!");
10331   return DAG.getNode(ISD::BITCAST, dl, OpVT,
10332                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
10333 }
10334
10335 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
10336 // a simple subregister reference or explicit instructions to grab
10337 // upper bits of a vector.
10338 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
10339                                       SelectionDAG &DAG) {
10340   SDLoc dl(Op);
10341   SDValue In =  Op.getOperand(0);
10342   SDValue Idx = Op.getOperand(1);
10343   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10344   MVT ResVT   = Op.getSimpleValueType();
10345   MVT InVT    = In.getSimpleValueType();
10346
10347   if (Subtarget->hasFp256()) {
10348     if (ResVT.is128BitVector() &&
10349         (InVT.is256BitVector() || InVT.is512BitVector()) &&
10350         isa<ConstantSDNode>(Idx)) {
10351       return Extract128BitVector(In, IdxVal, DAG, dl);
10352     }
10353     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
10354         isa<ConstantSDNode>(Idx)) {
10355       return Extract256BitVector(In, IdxVal, DAG, dl);
10356     }
10357   }
10358   return SDValue();
10359 }
10360
10361 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
10362 // simple superregister reference or explicit instructions to insert
10363 // the upper bits of a vector.
10364 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
10365                                      SelectionDAG &DAG) {
10366   if (Subtarget->hasFp256()) {
10367     SDLoc dl(Op.getNode());
10368     SDValue Vec = Op.getNode()->getOperand(0);
10369     SDValue SubVec = Op.getNode()->getOperand(1);
10370     SDValue Idx = Op.getNode()->getOperand(2);
10371
10372     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
10373          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
10374         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
10375         isa<ConstantSDNode>(Idx)) {
10376       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10377       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
10378     }
10379
10380     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
10381         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
10382         isa<ConstantSDNode>(Idx)) {
10383       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10384       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
10385     }
10386   }
10387   return SDValue();
10388 }
10389
10390 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
10391 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
10392 // one of the above mentioned nodes. It has to be wrapped because otherwise
10393 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
10394 // be used to form addressing mode. These wrapped nodes will be selected
10395 // into MOV32ri.
10396 SDValue
10397 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
10398   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
10399
10400   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10401   // global base reg.
10402   unsigned char OpFlag = 0;
10403   unsigned WrapperKind = X86ISD::Wrapper;
10404   CodeModel::Model M = DAG.getTarget().getCodeModel();
10405
10406   if (Subtarget->isPICStyleRIPRel() &&
10407       (M == CodeModel::Small || M == CodeModel::Kernel))
10408     WrapperKind = X86ISD::WrapperRIP;
10409   else if (Subtarget->isPICStyleGOT())
10410     OpFlag = X86II::MO_GOTOFF;
10411   else if (Subtarget->isPICStyleStubPIC())
10412     OpFlag = X86II::MO_PIC_BASE_OFFSET;
10413
10414   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
10415                                              CP->getAlignment(),
10416                                              CP->getOffset(), OpFlag);
10417   SDLoc DL(CP);
10418   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10419   // With PIC, the address is actually $g + Offset.
10420   if (OpFlag) {
10421     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10422                          DAG.getNode(X86ISD::GlobalBaseReg,
10423                                      SDLoc(), getPointerTy()),
10424                          Result);
10425   }
10426
10427   return Result;
10428 }
10429
10430 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
10431   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
10432
10433   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10434   // global base reg.
10435   unsigned char OpFlag = 0;
10436   unsigned WrapperKind = X86ISD::Wrapper;
10437   CodeModel::Model M = DAG.getTarget().getCodeModel();
10438
10439   if (Subtarget->isPICStyleRIPRel() &&
10440       (M == CodeModel::Small || M == CodeModel::Kernel))
10441     WrapperKind = X86ISD::WrapperRIP;
10442   else if (Subtarget->isPICStyleGOT())
10443     OpFlag = X86II::MO_GOTOFF;
10444   else if (Subtarget->isPICStyleStubPIC())
10445     OpFlag = X86II::MO_PIC_BASE_OFFSET;
10446
10447   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
10448                                           OpFlag);
10449   SDLoc DL(JT);
10450   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10451
10452   // With PIC, the address is actually $g + Offset.
10453   if (OpFlag)
10454     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10455                          DAG.getNode(X86ISD::GlobalBaseReg,
10456                                      SDLoc(), getPointerTy()),
10457                          Result);
10458
10459   return Result;
10460 }
10461
10462 SDValue
10463 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
10464   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
10465
10466   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10467   // global base reg.
10468   unsigned char OpFlag = 0;
10469   unsigned WrapperKind = X86ISD::Wrapper;
10470   CodeModel::Model M = DAG.getTarget().getCodeModel();
10471
10472   if (Subtarget->isPICStyleRIPRel() &&
10473       (M == CodeModel::Small || M == CodeModel::Kernel)) {
10474     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
10475       OpFlag = X86II::MO_GOTPCREL;
10476     WrapperKind = X86ISD::WrapperRIP;
10477   } else if (Subtarget->isPICStyleGOT()) {
10478     OpFlag = X86II::MO_GOT;
10479   } else if (Subtarget->isPICStyleStubPIC()) {
10480     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
10481   } else if (Subtarget->isPICStyleStubNoDynamic()) {
10482     OpFlag = X86II::MO_DARWIN_NONLAZY;
10483   }
10484
10485   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
10486
10487   SDLoc DL(Op);
10488   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10489
10490   // With PIC, the address is actually $g + Offset.
10491   if (DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
10492       !Subtarget->is64Bit()) {
10493     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10494                          DAG.getNode(X86ISD::GlobalBaseReg,
10495                                      SDLoc(), getPointerTy()),
10496                          Result);
10497   }
10498
10499   // For symbols that require a load from a stub to get the address, emit the
10500   // load.
10501   if (isGlobalStubReference(OpFlag))
10502     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
10503                          MachinePointerInfo::getGOT(), false, false, false, 0);
10504
10505   return Result;
10506 }
10507
10508 SDValue
10509 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
10510   // Create the TargetBlockAddressAddress node.
10511   unsigned char OpFlags =
10512     Subtarget->ClassifyBlockAddressReference();
10513   CodeModel::Model M = DAG.getTarget().getCodeModel();
10514   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
10515   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
10516   SDLoc dl(Op);
10517   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
10518                                              OpFlags);
10519
10520   if (Subtarget->isPICStyleRIPRel() &&
10521       (M == CodeModel::Small || M == CodeModel::Kernel))
10522     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
10523   else
10524     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
10525
10526   // With PIC, the address is actually $g + Offset.
10527   if (isGlobalRelativeToPICBase(OpFlags)) {
10528     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
10529                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
10530                          Result);
10531   }
10532
10533   return Result;
10534 }
10535
10536 SDValue
10537 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
10538                                       int64_t Offset, SelectionDAG &DAG) const {
10539   // Create the TargetGlobalAddress node, folding in the constant
10540   // offset if it is legal.
10541   unsigned char OpFlags =
10542       Subtarget->ClassifyGlobalReference(GV, DAG.getTarget());
10543   CodeModel::Model M = DAG.getTarget().getCodeModel();
10544   SDValue Result;
10545   if (OpFlags == X86II::MO_NO_FLAG &&
10546       X86::isOffsetSuitableForCodeModel(Offset, M)) {
10547     // A direct static reference to a global.
10548     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
10549     Offset = 0;
10550   } else {
10551     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
10552   }
10553
10554   if (Subtarget->isPICStyleRIPRel() &&
10555       (M == CodeModel::Small || M == CodeModel::Kernel))
10556     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
10557   else
10558     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
10559
10560   // With PIC, the address is actually $g + Offset.
10561   if (isGlobalRelativeToPICBase(OpFlags)) {
10562     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
10563                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
10564                          Result);
10565   }
10566
10567   // For globals that require a load from a stub to get the address, emit the
10568   // load.
10569   if (isGlobalStubReference(OpFlags))
10570     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
10571                          MachinePointerInfo::getGOT(), false, false, false, 0);
10572
10573   // If there was a non-zero offset that we didn't fold, create an explicit
10574   // addition for it.
10575   if (Offset != 0)
10576     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
10577                          DAG.getConstant(Offset, getPointerTy()));
10578
10579   return Result;
10580 }
10581
10582 SDValue
10583 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
10584   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
10585   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
10586   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
10587 }
10588
10589 static SDValue
10590 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
10591            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
10592            unsigned char OperandFlags, bool LocalDynamic = false) {
10593   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10594   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10595   SDLoc dl(GA);
10596   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
10597                                            GA->getValueType(0),
10598                                            GA->getOffset(),
10599                                            OperandFlags);
10600
10601   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
10602                                            : X86ISD::TLSADDR;
10603
10604   if (InFlag) {
10605     SDValue Ops[] = { Chain,  TGA, *InFlag };
10606     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
10607   } else {
10608     SDValue Ops[]  = { Chain, TGA };
10609     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
10610   }
10611
10612   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
10613   MFI->setAdjustsStack(true);
10614
10615   SDValue Flag = Chain.getValue(1);
10616   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
10617 }
10618
10619 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
10620 static SDValue
10621 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
10622                                 const EVT PtrVT) {
10623   SDValue InFlag;
10624   SDLoc dl(GA);  // ? function entry point might be better
10625   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
10626                                    DAG.getNode(X86ISD::GlobalBaseReg,
10627                                                SDLoc(), PtrVT), InFlag);
10628   InFlag = Chain.getValue(1);
10629
10630   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
10631 }
10632
10633 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
10634 static SDValue
10635 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
10636                                 const EVT PtrVT) {
10637   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
10638                     X86::RAX, X86II::MO_TLSGD);
10639 }
10640
10641 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
10642                                            SelectionDAG &DAG,
10643                                            const EVT PtrVT,
10644                                            bool is64Bit) {
10645   SDLoc dl(GA);
10646
10647   // Get the start address of the TLS block for this module.
10648   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
10649       .getInfo<X86MachineFunctionInfo>();
10650   MFI->incNumLocalDynamicTLSAccesses();
10651
10652   SDValue Base;
10653   if (is64Bit) {
10654     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
10655                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
10656   } else {
10657     SDValue InFlag;
10658     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
10659         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
10660     InFlag = Chain.getValue(1);
10661     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
10662                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
10663   }
10664
10665   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
10666   // of Base.
10667
10668   // Build x@dtpoff.
10669   unsigned char OperandFlags = X86II::MO_DTPOFF;
10670   unsigned WrapperKind = X86ISD::Wrapper;
10671   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
10672                                            GA->getValueType(0),
10673                                            GA->getOffset(), OperandFlags);
10674   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
10675
10676   // Add x@dtpoff with the base.
10677   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
10678 }
10679
10680 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
10681 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
10682                                    const EVT PtrVT, TLSModel::Model model,
10683                                    bool is64Bit, bool isPIC) {
10684   SDLoc dl(GA);
10685
10686   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
10687   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
10688                                                          is64Bit ? 257 : 256));
10689
10690   SDValue ThreadPointer =
10691       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
10692                   MachinePointerInfo(Ptr), false, false, false, 0);
10693
10694   unsigned char OperandFlags = 0;
10695   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
10696   // initialexec.
10697   unsigned WrapperKind = X86ISD::Wrapper;
10698   if (model == TLSModel::LocalExec) {
10699     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
10700   } else if (model == TLSModel::InitialExec) {
10701     if (is64Bit) {
10702       OperandFlags = X86II::MO_GOTTPOFF;
10703       WrapperKind = X86ISD::WrapperRIP;
10704     } else {
10705       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
10706     }
10707   } else {
10708     llvm_unreachable("Unexpected model");
10709   }
10710
10711   // emit "addl x@ntpoff,%eax" (local exec)
10712   // or "addl x@indntpoff,%eax" (initial exec)
10713   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
10714   SDValue TGA =
10715       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
10716                                  GA->getOffset(), OperandFlags);
10717   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
10718
10719   if (model == TLSModel::InitialExec) {
10720     if (isPIC && !is64Bit) {
10721       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
10722                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
10723                            Offset);
10724     }
10725
10726     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
10727                          MachinePointerInfo::getGOT(), false, false, false, 0);
10728   }
10729
10730   // The address of the thread local variable is the add of the thread
10731   // pointer with the offset of the variable.
10732   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
10733 }
10734
10735 SDValue
10736 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
10737
10738   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
10739   const GlobalValue *GV = GA->getGlobal();
10740
10741   if (Subtarget->isTargetELF()) {
10742     TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
10743
10744     switch (model) {
10745       case TLSModel::GeneralDynamic:
10746         if (Subtarget->is64Bit())
10747           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
10748         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
10749       case TLSModel::LocalDynamic:
10750         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
10751                                            Subtarget->is64Bit());
10752       case TLSModel::InitialExec:
10753       case TLSModel::LocalExec:
10754         return LowerToTLSExecModel(
10755             GA, DAG, getPointerTy(), model, Subtarget->is64Bit(),
10756             DAG.getTarget().getRelocationModel() == Reloc::PIC_);
10757     }
10758     llvm_unreachable("Unknown TLS model.");
10759   }
10760
10761   if (Subtarget->isTargetDarwin()) {
10762     // Darwin only has one model of TLS.  Lower to that.
10763     unsigned char OpFlag = 0;
10764     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
10765                            X86ISD::WrapperRIP : X86ISD::Wrapper;
10766
10767     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10768     // global base reg.
10769     bool PIC32 = (DAG.getTarget().getRelocationModel() == Reloc::PIC_) &&
10770                  !Subtarget->is64Bit();
10771     if (PIC32)
10772       OpFlag = X86II::MO_TLVP_PIC_BASE;
10773     else
10774       OpFlag = X86II::MO_TLVP;
10775     SDLoc DL(Op);
10776     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
10777                                                 GA->getValueType(0),
10778                                                 GA->getOffset(), OpFlag);
10779     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10780
10781     // With PIC32, the address is actually $g + Offset.
10782     if (PIC32)
10783       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10784                            DAG.getNode(X86ISD::GlobalBaseReg,
10785                                        SDLoc(), getPointerTy()),
10786                            Offset);
10787
10788     // Lowering the machine isd will make sure everything is in the right
10789     // location.
10790     SDValue Chain = DAG.getEntryNode();
10791     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10792     SDValue Args[] = { Chain, Offset };
10793     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
10794
10795     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
10796     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10797     MFI->setAdjustsStack(true);
10798
10799     // And our return value (tls address) is in the standard call return value
10800     // location.
10801     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10802     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
10803                               Chain.getValue(1));
10804   }
10805
10806   if (Subtarget->isTargetKnownWindowsMSVC() ||
10807       Subtarget->isTargetWindowsGNU()) {
10808     // Just use the implicit TLS architecture
10809     // Need to generate someting similar to:
10810     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
10811     //                                  ; from TEB
10812     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
10813     //   mov     rcx, qword [rdx+rcx*8]
10814     //   mov     eax, .tls$:tlsvar
10815     //   [rax+rcx] contains the address
10816     // Windows 64bit: gs:0x58
10817     // Windows 32bit: fs:__tls_array
10818
10819     SDLoc dl(GA);
10820     SDValue Chain = DAG.getEntryNode();
10821
10822     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
10823     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
10824     // use its literal value of 0x2C.
10825     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
10826                                         ? Type::getInt8PtrTy(*DAG.getContext(),
10827                                                              256)
10828                                         : Type::getInt32PtrTy(*DAG.getContext(),
10829                                                               257));
10830
10831     SDValue TlsArray =
10832         Subtarget->is64Bit()
10833             ? DAG.getIntPtrConstant(0x58)
10834             : (Subtarget->isTargetWindowsGNU()
10835                    ? DAG.getIntPtrConstant(0x2C)
10836                    : DAG.getExternalSymbol("_tls_array", getPointerTy()));
10837
10838     SDValue ThreadPointer =
10839         DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
10840                     MachinePointerInfo(Ptr), false, false, false, 0);
10841
10842     // Load the _tls_index variable
10843     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
10844     if (Subtarget->is64Bit())
10845       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
10846                            IDX, MachinePointerInfo(), MVT::i32,
10847                            false, false, false, 0);
10848     else
10849       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
10850                         false, false, false, 0);
10851
10852     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
10853                                     getPointerTy());
10854     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
10855
10856     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
10857     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
10858                       false, false, false, 0);
10859
10860     // Get the offset of start of .tls section
10861     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
10862                                              GA->getValueType(0),
10863                                              GA->getOffset(), X86II::MO_SECREL);
10864     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
10865
10866     // The address of the thread local variable is the add of the thread
10867     // pointer with the offset of the variable.
10868     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
10869   }
10870
10871   llvm_unreachable("TLS not implemented for this target.");
10872 }
10873
10874 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
10875 /// and take a 2 x i32 value to shift plus a shift amount.
10876 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
10877   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
10878   MVT VT = Op.getSimpleValueType();
10879   unsigned VTBits = VT.getSizeInBits();
10880   SDLoc dl(Op);
10881   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
10882   SDValue ShOpLo = Op.getOperand(0);
10883   SDValue ShOpHi = Op.getOperand(1);
10884   SDValue ShAmt  = Op.getOperand(2);
10885   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
10886   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
10887   // during isel.
10888   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
10889                                   DAG.getConstant(VTBits - 1, MVT::i8));
10890   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
10891                                      DAG.getConstant(VTBits - 1, MVT::i8))
10892                        : DAG.getConstant(0, VT);
10893
10894   SDValue Tmp2, Tmp3;
10895   if (Op.getOpcode() == ISD::SHL_PARTS) {
10896     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
10897     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
10898   } else {
10899     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
10900     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
10901   }
10902
10903   // If the shift amount is larger or equal than the width of a part we can't
10904   // rely on the results of shld/shrd. Insert a test and select the appropriate
10905   // values for large shift amounts.
10906   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
10907                                 DAG.getConstant(VTBits, MVT::i8));
10908   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10909                              AndNode, DAG.getConstant(0, MVT::i8));
10910
10911   SDValue Hi, Lo;
10912   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10913   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
10914   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
10915
10916   if (Op.getOpcode() == ISD::SHL_PARTS) {
10917     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
10918     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
10919   } else {
10920     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
10921     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
10922   }
10923
10924   SDValue Ops[2] = { Lo, Hi };
10925   return DAG.getMergeValues(Ops, dl);
10926 }
10927
10928 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
10929                                            SelectionDAG &DAG) const {
10930   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
10931
10932   if (SrcVT.isVector())
10933     return SDValue();
10934
10935   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
10936          "Unknown SINT_TO_FP to lower!");
10937
10938   // These are really Legal; return the operand so the caller accepts it as
10939   // Legal.
10940   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
10941     return Op;
10942   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
10943       Subtarget->is64Bit()) {
10944     return Op;
10945   }
10946
10947   SDLoc dl(Op);
10948   unsigned Size = SrcVT.getSizeInBits()/8;
10949   MachineFunction &MF = DAG.getMachineFunction();
10950   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
10951   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10952   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
10953                                StackSlot,
10954                                MachinePointerInfo::getFixedStack(SSFI),
10955                                false, false, 0);
10956   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
10957 }
10958
10959 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
10960                                      SDValue StackSlot,
10961                                      SelectionDAG &DAG) const {
10962   // Build the FILD
10963   SDLoc DL(Op);
10964   SDVTList Tys;
10965   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
10966   if (useSSE)
10967     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
10968   else
10969     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
10970
10971   unsigned ByteSize = SrcVT.getSizeInBits()/8;
10972
10973   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
10974   MachineMemOperand *MMO;
10975   if (FI) {
10976     int SSFI = FI->getIndex();
10977     MMO =
10978       DAG.getMachineFunction()
10979       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10980                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
10981   } else {
10982     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
10983     StackSlot = StackSlot.getOperand(1);
10984   }
10985   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
10986   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
10987                                            X86ISD::FILD, DL,
10988                                            Tys, Ops, SrcVT, MMO);
10989
10990   if (useSSE) {
10991     Chain = Result.getValue(1);
10992     SDValue InFlag = Result.getValue(2);
10993
10994     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
10995     // shouldn't be necessary except that RFP cannot be live across
10996     // multiple blocks. When stackifier is fixed, they can be uncoupled.
10997     MachineFunction &MF = DAG.getMachineFunction();
10998     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
10999     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
11000     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11001     Tys = DAG.getVTList(MVT::Other);
11002     SDValue Ops[] = {
11003       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
11004     };
11005     MachineMemOperand *MMO =
11006       DAG.getMachineFunction()
11007       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11008                             MachineMemOperand::MOStore, SSFISize, SSFISize);
11009
11010     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
11011                                     Ops, Op.getValueType(), MMO);
11012     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
11013                          MachinePointerInfo::getFixedStack(SSFI),
11014                          false, false, false, 0);
11015   }
11016
11017   return Result;
11018 }
11019
11020 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
11021 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
11022                                                SelectionDAG &DAG) const {
11023   // This algorithm is not obvious. Here it is what we're trying to output:
11024   /*
11025      movq       %rax,  %xmm0
11026      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
11027      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
11028      #ifdef __SSE3__
11029        haddpd   %xmm0, %xmm0
11030      #else
11031        pshufd   $0x4e, %xmm0, %xmm1
11032        addpd    %xmm1, %xmm0
11033      #endif
11034   */
11035
11036   SDLoc dl(Op);
11037   LLVMContext *Context = DAG.getContext();
11038
11039   // Build some magic constants.
11040   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
11041   Constant *C0 = ConstantDataVector::get(*Context, CV0);
11042   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
11043
11044   SmallVector<Constant*,2> CV1;
11045   CV1.push_back(
11046     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11047                                       APInt(64, 0x4330000000000000ULL))));
11048   CV1.push_back(
11049     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11050                                       APInt(64, 0x4530000000000000ULL))));
11051   Constant *C1 = ConstantVector::get(CV1);
11052   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
11053
11054   // Load the 64-bit value into an XMM register.
11055   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
11056                             Op.getOperand(0));
11057   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
11058                               MachinePointerInfo::getConstantPool(),
11059                               false, false, false, 16);
11060   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
11061                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
11062                               CLod0);
11063
11064   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
11065                               MachinePointerInfo::getConstantPool(),
11066                               false, false, false, 16);
11067   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
11068   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
11069   SDValue Result;
11070
11071   if (Subtarget->hasSSE3()) {
11072     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
11073     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
11074   } else {
11075     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
11076     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
11077                                            S2F, 0x4E, DAG);
11078     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
11079                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
11080                          Sub);
11081   }
11082
11083   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
11084                      DAG.getIntPtrConstant(0));
11085 }
11086
11087 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
11088 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
11089                                                SelectionDAG &DAG) const {
11090   SDLoc dl(Op);
11091   // FP constant to bias correct the final result.
11092   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
11093                                    MVT::f64);
11094
11095   // Load the 32-bit value into an XMM register.
11096   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
11097                              Op.getOperand(0));
11098
11099   // Zero out the upper parts of the register.
11100   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
11101
11102   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
11103                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
11104                      DAG.getIntPtrConstant(0));
11105
11106   // Or the load with the bias.
11107   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
11108                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
11109                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
11110                                                    MVT::v2f64, Load)),
11111                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
11112                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
11113                                                    MVT::v2f64, Bias)));
11114   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
11115                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
11116                    DAG.getIntPtrConstant(0));
11117
11118   // Subtract the bias.
11119   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
11120
11121   // Handle final rounding.
11122   EVT DestVT = Op.getValueType();
11123
11124   if (DestVT.bitsLT(MVT::f64))
11125     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
11126                        DAG.getIntPtrConstant(0));
11127   if (DestVT.bitsGT(MVT::f64))
11128     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
11129
11130   // Handle final rounding.
11131   return Sub;
11132 }
11133
11134 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
11135                                                SelectionDAG &DAG) const {
11136   SDValue N0 = Op.getOperand(0);
11137   MVT SVT = N0.getSimpleValueType();
11138   SDLoc dl(Op);
11139
11140   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
11141           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
11142          "Custom UINT_TO_FP is not supported!");
11143
11144   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
11145   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
11146                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
11147 }
11148
11149 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
11150                                            SelectionDAG &DAG) const {
11151   SDValue N0 = Op.getOperand(0);
11152   SDLoc dl(Op);
11153
11154   if (Op.getValueType().isVector())
11155     return lowerUINT_TO_FP_vec(Op, DAG);
11156
11157   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
11158   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
11159   // the optimization here.
11160   if (DAG.SignBitIsZero(N0))
11161     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
11162
11163   MVT SrcVT = N0.getSimpleValueType();
11164   MVT DstVT = Op.getSimpleValueType();
11165   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
11166     return LowerUINT_TO_FP_i64(Op, DAG);
11167   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
11168     return LowerUINT_TO_FP_i32(Op, DAG);
11169   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
11170     return SDValue();
11171
11172   // Make a 64-bit buffer, and use it to build an FILD.
11173   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
11174   if (SrcVT == MVT::i32) {
11175     SDValue WordOff = DAG.getConstant(4, getPointerTy());
11176     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
11177                                      getPointerTy(), StackSlot, WordOff);
11178     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
11179                                   StackSlot, MachinePointerInfo(),
11180                                   false, false, 0);
11181     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
11182                                   OffsetSlot, MachinePointerInfo(),
11183                                   false, false, 0);
11184     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
11185     return Fild;
11186   }
11187
11188   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
11189   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
11190                                StackSlot, MachinePointerInfo(),
11191                                false, false, 0);
11192   // For i64 source, we need to add the appropriate power of 2 if the input
11193   // was negative.  This is the same as the optimization in
11194   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
11195   // we must be careful to do the computation in x87 extended precision, not
11196   // in SSE. (The generic code can't know it's OK to do this, or how to.)
11197   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
11198   MachineMemOperand *MMO =
11199     DAG.getMachineFunction()
11200     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11201                           MachineMemOperand::MOLoad, 8, 8);
11202
11203   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
11204   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
11205   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
11206                                          MVT::i64, MMO);
11207
11208   APInt FF(32, 0x5F800000ULL);
11209
11210   // Check whether the sign bit is set.
11211   SDValue SignSet = DAG.getSetCC(dl,
11212                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
11213                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
11214                                  ISD::SETLT);
11215
11216   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
11217   SDValue FudgePtr = DAG.getConstantPool(
11218                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
11219                                          getPointerTy());
11220
11221   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
11222   SDValue Zero = DAG.getIntPtrConstant(0);
11223   SDValue Four = DAG.getIntPtrConstant(4);
11224   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
11225                                Zero, Four);
11226   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
11227
11228   // Load the value out, extending it from f32 to f80.
11229   // FIXME: Avoid the extend by constructing the right constant pool?
11230   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
11231                                  FudgePtr, MachinePointerInfo::getConstantPool(),
11232                                  MVT::f32, false, false, false, 4);
11233   // Extend everything to 80 bits to force it to be done on x87.
11234   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
11235   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
11236 }
11237
11238 std::pair<SDValue,SDValue>
11239 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
11240                                     bool IsSigned, bool IsReplace) const {
11241   SDLoc DL(Op);
11242
11243   EVT DstTy = Op.getValueType();
11244
11245   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
11246     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
11247     DstTy = MVT::i64;
11248   }
11249
11250   assert(DstTy.getSimpleVT() <= MVT::i64 &&
11251          DstTy.getSimpleVT() >= MVT::i16 &&
11252          "Unknown FP_TO_INT to lower!");
11253
11254   // These are really Legal.
11255   if (DstTy == MVT::i32 &&
11256       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
11257     return std::make_pair(SDValue(), SDValue());
11258   if (Subtarget->is64Bit() &&
11259       DstTy == MVT::i64 &&
11260       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
11261     return std::make_pair(SDValue(), SDValue());
11262
11263   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
11264   // stack slot, or into the FTOL runtime function.
11265   MachineFunction &MF = DAG.getMachineFunction();
11266   unsigned MemSize = DstTy.getSizeInBits()/8;
11267   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
11268   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11269
11270   unsigned Opc;
11271   if (!IsSigned && isIntegerTypeFTOL(DstTy))
11272     Opc = X86ISD::WIN_FTOL;
11273   else
11274     switch (DstTy.getSimpleVT().SimpleTy) {
11275     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
11276     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
11277     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
11278     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
11279     }
11280
11281   SDValue Chain = DAG.getEntryNode();
11282   SDValue Value = Op.getOperand(0);
11283   EVT TheVT = Op.getOperand(0).getValueType();
11284   // FIXME This causes a redundant load/store if the SSE-class value is already
11285   // in memory, such as if it is on the callstack.
11286   if (isScalarFPTypeInSSEReg(TheVT)) {
11287     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
11288     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
11289                          MachinePointerInfo::getFixedStack(SSFI),
11290                          false, false, 0);
11291     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
11292     SDValue Ops[] = {
11293       Chain, StackSlot, DAG.getValueType(TheVT)
11294     };
11295
11296     MachineMemOperand *MMO =
11297       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11298                               MachineMemOperand::MOLoad, MemSize, MemSize);
11299     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
11300     Chain = Value.getValue(1);
11301     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
11302     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11303   }
11304
11305   MachineMemOperand *MMO =
11306     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11307                             MachineMemOperand::MOStore, MemSize, MemSize);
11308
11309   if (Opc != X86ISD::WIN_FTOL) {
11310     // Build the FP_TO_INT*_IN_MEM
11311     SDValue Ops[] = { Chain, Value, StackSlot };
11312     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
11313                                            Ops, DstTy, MMO);
11314     return std::make_pair(FIST, StackSlot);
11315   } else {
11316     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
11317       DAG.getVTList(MVT::Other, MVT::Glue),
11318       Chain, Value);
11319     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
11320       MVT::i32, ftol.getValue(1));
11321     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
11322       MVT::i32, eax.getValue(2));
11323     SDValue Ops[] = { eax, edx };
11324     SDValue pair = IsReplace
11325       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops)
11326       : DAG.getMergeValues(Ops, DL);
11327     return std::make_pair(pair, SDValue());
11328   }
11329 }
11330
11331 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
11332                               const X86Subtarget *Subtarget) {
11333   MVT VT = Op->getSimpleValueType(0);
11334   SDValue In = Op->getOperand(0);
11335   MVT InVT = In.getSimpleValueType();
11336   SDLoc dl(Op);
11337
11338   // Optimize vectors in AVX mode:
11339   //
11340   //   v8i16 -> v8i32
11341   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
11342   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
11343   //   Concat upper and lower parts.
11344   //
11345   //   v4i32 -> v4i64
11346   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
11347   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
11348   //   Concat upper and lower parts.
11349   //
11350
11351   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
11352       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
11353       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
11354     return SDValue();
11355
11356   if (Subtarget->hasInt256())
11357     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
11358
11359   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
11360   SDValue Undef = DAG.getUNDEF(InVT);
11361   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
11362   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
11363   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
11364
11365   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
11366                              VT.getVectorNumElements()/2);
11367
11368   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
11369   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
11370
11371   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
11372 }
11373
11374 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
11375                                         SelectionDAG &DAG) {
11376   MVT VT = Op->getSimpleValueType(0);
11377   SDValue In = Op->getOperand(0);
11378   MVT InVT = In.getSimpleValueType();
11379   SDLoc DL(Op);
11380   unsigned int NumElts = VT.getVectorNumElements();
11381   if (NumElts != 8 && NumElts != 16)
11382     return SDValue();
11383
11384   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
11385     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
11386
11387   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
11388   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11389   // Now we have only mask extension
11390   assert(InVT.getVectorElementType() == MVT::i1);
11391   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
11392   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
11393   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
11394   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
11395   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
11396                            MachinePointerInfo::getConstantPool(),
11397                            false, false, false, Alignment);
11398
11399   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
11400   if (VT.is512BitVector())
11401     return Brcst;
11402   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
11403 }
11404
11405 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
11406                                SelectionDAG &DAG) {
11407   if (Subtarget->hasFp256()) {
11408     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
11409     if (Res.getNode())
11410       return Res;
11411   }
11412
11413   return SDValue();
11414 }
11415
11416 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
11417                                 SelectionDAG &DAG) {
11418   SDLoc DL(Op);
11419   MVT VT = Op.getSimpleValueType();
11420   SDValue In = Op.getOperand(0);
11421   MVT SVT = In.getSimpleValueType();
11422
11423   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
11424     return LowerZERO_EXTEND_AVX512(Op, DAG);
11425
11426   if (Subtarget->hasFp256()) {
11427     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
11428     if (Res.getNode())
11429       return Res;
11430   }
11431
11432   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
11433          VT.getVectorNumElements() != SVT.getVectorNumElements());
11434   return SDValue();
11435 }
11436
11437 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
11438   SDLoc DL(Op);
11439   MVT VT = Op.getSimpleValueType();
11440   SDValue In = Op.getOperand(0);
11441   MVT InVT = In.getSimpleValueType();
11442
11443   if (VT == MVT::i1) {
11444     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
11445            "Invalid scalar TRUNCATE operation");
11446     if (InVT == MVT::i32)
11447       return SDValue();
11448     if (InVT.getSizeInBits() == 64)
11449       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
11450     else if (InVT.getSizeInBits() < 32)
11451       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
11452     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
11453   }
11454   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
11455          "Invalid TRUNCATE operation");
11456
11457   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
11458     if (VT.getVectorElementType().getSizeInBits() >=8)
11459       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
11460
11461     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
11462     unsigned NumElts = InVT.getVectorNumElements();
11463     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
11464     if (InVT.getSizeInBits() < 512) {
11465       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
11466       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
11467       InVT = ExtVT;
11468     }
11469     
11470     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
11471     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
11472     SDValue CP = DAG.getConstantPool(C, getPointerTy());
11473     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
11474     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
11475                            MachinePointerInfo::getConstantPool(),
11476                            false, false, false, Alignment);
11477     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
11478     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
11479     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
11480   }
11481
11482   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
11483     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
11484     if (Subtarget->hasInt256()) {
11485       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
11486       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
11487       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
11488                                 ShufMask);
11489       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
11490                          DAG.getIntPtrConstant(0));
11491     }
11492
11493     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
11494                                DAG.getIntPtrConstant(0));
11495     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
11496                                DAG.getIntPtrConstant(2));
11497     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
11498     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
11499     static const int ShufMask[] = {0, 2, 4, 6};
11500     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
11501   }
11502
11503   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
11504     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
11505     if (Subtarget->hasInt256()) {
11506       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
11507
11508       SmallVector<SDValue,32> pshufbMask;
11509       for (unsigned i = 0; i < 2; ++i) {
11510         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
11511         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
11512         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
11513         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
11514         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
11515         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
11516         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
11517         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
11518         for (unsigned j = 0; j < 8; ++j)
11519           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
11520       }
11521       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
11522       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
11523       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
11524
11525       static const int ShufMask[] = {0,  2,  -1,  -1};
11526       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
11527                                 &ShufMask[0]);
11528       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
11529                        DAG.getIntPtrConstant(0));
11530       return DAG.getNode(ISD::BITCAST, DL, VT, In);
11531     }
11532
11533     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
11534                                DAG.getIntPtrConstant(0));
11535
11536     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
11537                                DAG.getIntPtrConstant(4));
11538
11539     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
11540     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
11541
11542     // The PSHUFB mask:
11543     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
11544                                    -1, -1, -1, -1, -1, -1, -1, -1};
11545
11546     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
11547     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
11548     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
11549
11550     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
11551     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
11552
11553     // The MOVLHPS Mask:
11554     static const int ShufMask2[] = {0, 1, 4, 5};
11555     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
11556     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
11557   }
11558
11559   // Handle truncation of V256 to V128 using shuffles.
11560   if (!VT.is128BitVector() || !InVT.is256BitVector())
11561     return SDValue();
11562
11563   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
11564
11565   unsigned NumElems = VT.getVectorNumElements();
11566   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
11567
11568   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
11569   // Prepare truncation shuffle mask
11570   for (unsigned i = 0; i != NumElems; ++i)
11571     MaskVec[i] = i * 2;
11572   SDValue V = DAG.getVectorShuffle(NVT, DL,
11573                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
11574                                    DAG.getUNDEF(NVT), &MaskVec[0]);
11575   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
11576                      DAG.getIntPtrConstant(0));
11577 }
11578
11579 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
11580                                            SelectionDAG &DAG) const {
11581   assert(!Op.getSimpleValueType().isVector());
11582
11583   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
11584     /*IsSigned=*/ true, /*IsReplace=*/ false);
11585   SDValue FIST = Vals.first, StackSlot = Vals.second;
11586   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
11587   if (!FIST.getNode()) return Op;
11588
11589   if (StackSlot.getNode())
11590     // Load the result.
11591     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
11592                        FIST, StackSlot, MachinePointerInfo(),
11593                        false, false, false, 0);
11594
11595   // The node is the result.
11596   return FIST;
11597 }
11598
11599 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
11600                                            SelectionDAG &DAG) const {
11601   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
11602     /*IsSigned=*/ false, /*IsReplace=*/ false);
11603   SDValue FIST = Vals.first, StackSlot = Vals.second;
11604   assert(FIST.getNode() && "Unexpected failure");
11605
11606   if (StackSlot.getNode())
11607     // Load the result.
11608     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
11609                        FIST, StackSlot, MachinePointerInfo(),
11610                        false, false, false, 0);
11611
11612   // The node is the result.
11613   return FIST;
11614 }
11615
11616 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
11617   SDLoc DL(Op);
11618   MVT VT = Op.getSimpleValueType();
11619   SDValue In = Op.getOperand(0);
11620   MVT SVT = In.getSimpleValueType();
11621
11622   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
11623
11624   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
11625                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
11626                                  In, DAG.getUNDEF(SVT)));
11627 }
11628
11629 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
11630   LLVMContext *Context = DAG.getContext();
11631   SDLoc dl(Op);
11632   MVT VT = Op.getSimpleValueType();
11633   MVT EltVT = VT;
11634   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
11635   if (VT.isVector()) {
11636     EltVT = VT.getVectorElementType();
11637     NumElts = VT.getVectorNumElements();
11638   }
11639   Constant *C;
11640   if (EltVT == MVT::f64)
11641     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11642                                           APInt(64, ~(1ULL << 63))));
11643   else
11644     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
11645                                           APInt(32, ~(1U << 31))));
11646   C = ConstantVector::getSplat(NumElts, C);
11647   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11648   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
11649   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
11650   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11651                              MachinePointerInfo::getConstantPool(),
11652                              false, false, false, Alignment);
11653   if (VT.isVector()) {
11654     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
11655     return DAG.getNode(ISD::BITCAST, dl, VT,
11656                        DAG.getNode(ISD::AND, dl, ANDVT,
11657                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
11658                                                Op.getOperand(0)),
11659                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
11660   }
11661   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
11662 }
11663
11664 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
11665   LLVMContext *Context = DAG.getContext();
11666   SDLoc dl(Op);
11667   MVT VT = Op.getSimpleValueType();
11668   MVT EltVT = VT;
11669   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
11670   if (VT.isVector()) {
11671     EltVT = VT.getVectorElementType();
11672     NumElts = VT.getVectorNumElements();
11673   }
11674   Constant *C;
11675   if (EltVT == MVT::f64)
11676     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11677                                           APInt(64, 1ULL << 63)));
11678   else
11679     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
11680                                           APInt(32, 1U << 31)));
11681   C = ConstantVector::getSplat(NumElts, C);
11682   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11683   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
11684   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
11685   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11686                              MachinePointerInfo::getConstantPool(),
11687                              false, false, false, Alignment);
11688   if (VT.isVector()) {
11689     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
11690     return DAG.getNode(ISD::BITCAST, dl, VT,
11691                        DAG.getNode(ISD::XOR, dl, XORVT,
11692                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
11693                                                Op.getOperand(0)),
11694                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
11695   }
11696
11697   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
11698 }
11699
11700 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
11701   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11702   LLVMContext *Context = DAG.getContext();
11703   SDValue Op0 = Op.getOperand(0);
11704   SDValue Op1 = Op.getOperand(1);
11705   SDLoc dl(Op);
11706   MVT VT = Op.getSimpleValueType();
11707   MVT SrcVT = Op1.getSimpleValueType();
11708
11709   // If second operand is smaller, extend it first.
11710   if (SrcVT.bitsLT(VT)) {
11711     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
11712     SrcVT = VT;
11713   }
11714   // And if it is bigger, shrink it first.
11715   if (SrcVT.bitsGT(VT)) {
11716     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
11717     SrcVT = VT;
11718   }
11719
11720   // At this point the operands and the result should have the same
11721   // type, and that won't be f80 since that is not custom lowered.
11722
11723   // First get the sign bit of second operand.
11724   SmallVector<Constant*,4> CV;
11725   if (SrcVT == MVT::f64) {
11726     const fltSemantics &Sem = APFloat::IEEEdouble;
11727     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
11728     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
11729   } else {
11730     const fltSemantics &Sem = APFloat::IEEEsingle;
11731     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
11732     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11733     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11734     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11735   }
11736   Constant *C = ConstantVector::get(CV);
11737   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
11738   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
11739                               MachinePointerInfo::getConstantPool(),
11740                               false, false, false, 16);
11741   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
11742
11743   // Shift sign bit right or left if the two operands have different types.
11744   if (SrcVT.bitsGT(VT)) {
11745     // Op0 is MVT::f32, Op1 is MVT::f64.
11746     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
11747     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
11748                           DAG.getConstant(32, MVT::i32));
11749     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
11750     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
11751                           DAG.getIntPtrConstant(0));
11752   }
11753
11754   // Clear first operand sign bit.
11755   CV.clear();
11756   if (VT == MVT::f64) {
11757     const fltSemantics &Sem = APFloat::IEEEdouble;
11758     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
11759                                                    APInt(64, ~(1ULL << 63)))));
11760     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
11761   } else {
11762     const fltSemantics &Sem = APFloat::IEEEsingle;
11763     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
11764                                                    APInt(32, ~(1U << 31)))));
11765     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11766     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11767     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11768   }
11769   C = ConstantVector::get(CV);
11770   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
11771   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11772                               MachinePointerInfo::getConstantPool(),
11773                               false, false, false, 16);
11774   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
11775
11776   // Or the value with the sign bit.
11777   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
11778 }
11779
11780 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
11781   SDValue N0 = Op.getOperand(0);
11782   SDLoc dl(Op);
11783   MVT VT = Op.getSimpleValueType();
11784
11785   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
11786   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
11787                                   DAG.getConstant(1, VT));
11788   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
11789 }
11790
11791 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
11792 //
11793 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
11794                                       SelectionDAG &DAG) {
11795   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
11796
11797   if (!Subtarget->hasSSE41())
11798     return SDValue();
11799
11800   if (!Op->hasOneUse())
11801     return SDValue();
11802
11803   SDNode *N = Op.getNode();
11804   SDLoc DL(N);
11805
11806   SmallVector<SDValue, 8> Opnds;
11807   DenseMap<SDValue, unsigned> VecInMap;
11808   SmallVector<SDValue, 8> VecIns;
11809   EVT VT = MVT::Other;
11810
11811   // Recognize a special case where a vector is casted into wide integer to
11812   // test all 0s.
11813   Opnds.push_back(N->getOperand(0));
11814   Opnds.push_back(N->getOperand(1));
11815
11816   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
11817     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
11818     // BFS traverse all OR'd operands.
11819     if (I->getOpcode() == ISD::OR) {
11820       Opnds.push_back(I->getOperand(0));
11821       Opnds.push_back(I->getOperand(1));
11822       // Re-evaluate the number of nodes to be traversed.
11823       e += 2; // 2 more nodes (LHS and RHS) are pushed.
11824       continue;
11825     }
11826
11827     // Quit if a non-EXTRACT_VECTOR_ELT
11828     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11829       return SDValue();
11830
11831     // Quit if without a constant index.
11832     SDValue Idx = I->getOperand(1);
11833     if (!isa<ConstantSDNode>(Idx))
11834       return SDValue();
11835
11836     SDValue ExtractedFromVec = I->getOperand(0);
11837     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
11838     if (M == VecInMap.end()) {
11839       VT = ExtractedFromVec.getValueType();
11840       // Quit if not 128/256-bit vector.
11841       if (!VT.is128BitVector() && !VT.is256BitVector())
11842         return SDValue();
11843       // Quit if not the same type.
11844       if (VecInMap.begin() != VecInMap.end() &&
11845           VT != VecInMap.begin()->first.getValueType())
11846         return SDValue();
11847       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
11848       VecIns.push_back(ExtractedFromVec);
11849     }
11850     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
11851   }
11852
11853   assert((VT.is128BitVector() || VT.is256BitVector()) &&
11854          "Not extracted from 128-/256-bit vector.");
11855
11856   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
11857
11858   for (DenseMap<SDValue, unsigned>::const_iterator
11859         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
11860     // Quit if not all elements are used.
11861     if (I->second != FullMask)
11862       return SDValue();
11863   }
11864
11865   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
11866
11867   // Cast all vectors into TestVT for PTEST.
11868   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
11869     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
11870
11871   // If more than one full vectors are evaluated, OR them first before PTEST.
11872   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
11873     // Each iteration will OR 2 nodes and append the result until there is only
11874     // 1 node left, i.e. the final OR'd value of all vectors.
11875     SDValue LHS = VecIns[Slot];
11876     SDValue RHS = VecIns[Slot + 1];
11877     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
11878   }
11879
11880   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
11881                      VecIns.back(), VecIns.back());
11882 }
11883
11884 /// \brief return true if \c Op has a use that doesn't just read flags.
11885 static bool hasNonFlagsUse(SDValue Op) {
11886   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
11887        ++UI) {
11888     SDNode *User = *UI;
11889     unsigned UOpNo = UI.getOperandNo();
11890     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
11891       // Look pass truncate.
11892       UOpNo = User->use_begin().getOperandNo();
11893       User = *User->use_begin();
11894     }
11895
11896     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
11897         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
11898       return true;
11899   }
11900   return false;
11901 }
11902
11903 /// Emit nodes that will be selected as "test Op0,Op0", or something
11904 /// equivalent.
11905 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
11906                                     SelectionDAG &DAG) const {
11907   if (Op.getValueType() == MVT::i1)
11908     // KORTEST instruction should be selected
11909     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
11910                        DAG.getConstant(0, Op.getValueType()));
11911
11912   // CF and OF aren't always set the way we want. Determine which
11913   // of these we need.
11914   bool NeedCF = false;
11915   bool NeedOF = false;
11916   switch (X86CC) {
11917   default: break;
11918   case X86::COND_A: case X86::COND_AE:
11919   case X86::COND_B: case X86::COND_BE:
11920     NeedCF = true;
11921     break;
11922   case X86::COND_G: case X86::COND_GE:
11923   case X86::COND_L: case X86::COND_LE:
11924   case X86::COND_O: case X86::COND_NO: {
11925     // Check if we really need to set the
11926     // Overflow flag. If NoSignedWrap is present
11927     // that is not actually needed.
11928     switch (Op->getOpcode()) {
11929     case ISD::ADD:
11930     case ISD::SUB:
11931     case ISD::MUL:
11932     case ISD::SHL: {
11933       const BinaryWithFlagsSDNode *BinNode =
11934           cast<BinaryWithFlagsSDNode>(Op.getNode());
11935       if (BinNode->hasNoSignedWrap())
11936         break;
11937     }
11938     default:
11939       NeedOF = true;
11940       break;
11941     }
11942     break;
11943   }
11944   }
11945   // See if we can use the EFLAGS value from the operand instead of
11946   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
11947   // we prove that the arithmetic won't overflow, we can't use OF or CF.
11948   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
11949     // Emit a CMP with 0, which is the TEST pattern.
11950     //if (Op.getValueType() == MVT::i1)
11951     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
11952     //                     DAG.getConstant(0, MVT::i1));
11953     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
11954                        DAG.getConstant(0, Op.getValueType()));
11955   }
11956   unsigned Opcode = 0;
11957   unsigned NumOperands = 0;
11958
11959   // Truncate operations may prevent the merge of the SETCC instruction
11960   // and the arithmetic instruction before it. Attempt to truncate the operands
11961   // of the arithmetic instruction and use a reduced bit-width instruction.
11962   bool NeedTruncation = false;
11963   SDValue ArithOp = Op;
11964   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
11965     SDValue Arith = Op->getOperand(0);
11966     // Both the trunc and the arithmetic op need to have one user each.
11967     if (Arith->hasOneUse())
11968       switch (Arith.getOpcode()) {
11969         default: break;
11970         case ISD::ADD:
11971         case ISD::SUB:
11972         case ISD::AND:
11973         case ISD::OR:
11974         case ISD::XOR: {
11975           NeedTruncation = true;
11976           ArithOp = Arith;
11977         }
11978       }
11979   }
11980
11981   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
11982   // which may be the result of a CAST.  We use the variable 'Op', which is the
11983   // non-casted variable when we check for possible users.
11984   switch (ArithOp.getOpcode()) {
11985   case ISD::ADD:
11986     // Due to an isel shortcoming, be conservative if this add is likely to be
11987     // selected as part of a load-modify-store instruction. When the root node
11988     // in a match is a store, isel doesn't know how to remap non-chain non-flag
11989     // uses of other nodes in the match, such as the ADD in this case. This
11990     // leads to the ADD being left around and reselected, with the result being
11991     // two adds in the output.  Alas, even if none our users are stores, that
11992     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
11993     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
11994     // climbing the DAG back to the root, and it doesn't seem to be worth the
11995     // effort.
11996     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11997          UE = Op.getNode()->use_end(); UI != UE; ++UI)
11998       if (UI->getOpcode() != ISD::CopyToReg &&
11999           UI->getOpcode() != ISD::SETCC &&
12000           UI->getOpcode() != ISD::STORE)
12001         goto default_case;
12002
12003     if (ConstantSDNode *C =
12004         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
12005       // An add of one will be selected as an INC.
12006       if (C->getAPIntValue() == 1 && !Subtarget->slowIncDec()) {
12007         Opcode = X86ISD::INC;
12008         NumOperands = 1;
12009         break;
12010       }
12011
12012       // An add of negative one (subtract of one) will be selected as a DEC.
12013       if (C->getAPIntValue().isAllOnesValue() && !Subtarget->slowIncDec()) {
12014         Opcode = X86ISD::DEC;
12015         NumOperands = 1;
12016         break;
12017       }
12018     }
12019
12020     // Otherwise use a regular EFLAGS-setting add.
12021     Opcode = X86ISD::ADD;
12022     NumOperands = 2;
12023     break;
12024   case ISD::SHL:
12025   case ISD::SRL:
12026     // If we have a constant logical shift that's only used in a comparison
12027     // against zero turn it into an equivalent AND. This allows turning it into
12028     // a TEST instruction later.
12029     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) && Op->hasOneUse() &&
12030         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
12031       EVT VT = Op.getValueType();
12032       unsigned BitWidth = VT.getSizeInBits();
12033       unsigned ShAmt = Op->getConstantOperandVal(1);
12034       if (ShAmt >= BitWidth) // Avoid undefined shifts.
12035         break;
12036       APInt Mask = ArithOp.getOpcode() == ISD::SRL
12037                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
12038                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
12039       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
12040         break;
12041       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
12042                                 DAG.getConstant(Mask, VT));
12043       DAG.ReplaceAllUsesWith(Op, New);
12044       Op = New;
12045     }
12046     break;
12047
12048   case ISD::AND:
12049     // If the primary and result isn't used, don't bother using X86ISD::AND,
12050     // because a TEST instruction will be better.
12051     if (!hasNonFlagsUse(Op))
12052       break;
12053     // FALL THROUGH
12054   case ISD::SUB:
12055   case ISD::OR:
12056   case ISD::XOR:
12057     // Due to the ISEL shortcoming noted above, be conservative if this op is
12058     // likely to be selected as part of a load-modify-store instruction.
12059     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12060            UE = Op.getNode()->use_end(); UI != UE; ++UI)
12061       if (UI->getOpcode() == ISD::STORE)
12062         goto default_case;
12063
12064     // Otherwise use a regular EFLAGS-setting instruction.
12065     switch (ArithOp.getOpcode()) {
12066     default: llvm_unreachable("unexpected operator!");
12067     case ISD::SUB: Opcode = X86ISD::SUB; break;
12068     case ISD::XOR: Opcode = X86ISD::XOR; break;
12069     case ISD::AND: Opcode = X86ISD::AND; break;
12070     case ISD::OR: {
12071       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
12072         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
12073         if (EFLAGS.getNode())
12074           return EFLAGS;
12075       }
12076       Opcode = X86ISD::OR;
12077       break;
12078     }
12079     }
12080
12081     NumOperands = 2;
12082     break;
12083   case X86ISD::ADD:
12084   case X86ISD::SUB:
12085   case X86ISD::INC:
12086   case X86ISD::DEC:
12087   case X86ISD::OR:
12088   case X86ISD::XOR:
12089   case X86ISD::AND:
12090     return SDValue(Op.getNode(), 1);
12091   default:
12092   default_case:
12093     break;
12094   }
12095
12096   // If we found that truncation is beneficial, perform the truncation and
12097   // update 'Op'.
12098   if (NeedTruncation) {
12099     EVT VT = Op.getValueType();
12100     SDValue WideVal = Op->getOperand(0);
12101     EVT WideVT = WideVal.getValueType();
12102     unsigned ConvertedOp = 0;
12103     // Use a target machine opcode to prevent further DAGCombine
12104     // optimizations that may separate the arithmetic operations
12105     // from the setcc node.
12106     switch (WideVal.getOpcode()) {
12107       default: break;
12108       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
12109       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
12110       case ISD::AND: ConvertedOp = X86ISD::AND; break;
12111       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
12112       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
12113     }
12114
12115     if (ConvertedOp) {
12116       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12117       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
12118         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
12119         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
12120         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
12121       }
12122     }
12123   }
12124
12125   if (Opcode == 0)
12126     // Emit a CMP with 0, which is the TEST pattern.
12127     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
12128                        DAG.getConstant(0, Op.getValueType()));
12129
12130   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
12131   SmallVector<SDValue, 4> Ops;
12132   for (unsigned i = 0; i != NumOperands; ++i)
12133     Ops.push_back(Op.getOperand(i));
12134
12135   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
12136   DAG.ReplaceAllUsesWith(Op, New);
12137   return SDValue(New.getNode(), 1);
12138 }
12139
12140 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
12141 /// equivalent.
12142 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
12143                                    SDLoc dl, SelectionDAG &DAG) const {
12144   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
12145     if (C->getAPIntValue() == 0)
12146       return EmitTest(Op0, X86CC, dl, DAG);
12147
12148      if (Op0.getValueType() == MVT::i1)
12149        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
12150   }
12151  
12152   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
12153        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
12154     // Do the comparison at i32 if it's smaller, besides the Atom case. 
12155     // This avoids subregister aliasing issues. Keep the smaller reference 
12156     // if we're optimizing for size, however, as that'll allow better folding 
12157     // of memory operations.
12158     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
12159         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
12160              AttributeSet::FunctionIndex, Attribute::MinSize) &&
12161         !Subtarget->isAtom()) {
12162       unsigned ExtendOp =
12163           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
12164       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
12165       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
12166     }
12167     // Use SUB instead of CMP to enable CSE between SUB and CMP.
12168     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
12169     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
12170                               Op0, Op1);
12171     return SDValue(Sub.getNode(), 1);
12172   }
12173   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
12174 }
12175
12176 /// Convert a comparison if required by the subtarget.
12177 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
12178                                                  SelectionDAG &DAG) const {
12179   // If the subtarget does not support the FUCOMI instruction, floating-point
12180   // comparisons have to be converted.
12181   if (Subtarget->hasCMov() ||
12182       Cmp.getOpcode() != X86ISD::CMP ||
12183       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
12184       !Cmp.getOperand(1).getValueType().isFloatingPoint())
12185     return Cmp;
12186
12187   // The instruction selector will select an FUCOM instruction instead of
12188   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
12189   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
12190   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
12191   SDLoc dl(Cmp);
12192   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
12193   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
12194   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
12195                             DAG.getConstant(8, MVT::i8));
12196   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
12197   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
12198 }
12199
12200 static bool isAllOnes(SDValue V) {
12201   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
12202   return C && C->isAllOnesValue();
12203 }
12204
12205 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
12206 /// if it's possible.
12207 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
12208                                      SDLoc dl, SelectionDAG &DAG) const {
12209   SDValue Op0 = And.getOperand(0);
12210   SDValue Op1 = And.getOperand(1);
12211   if (Op0.getOpcode() == ISD::TRUNCATE)
12212     Op0 = Op0.getOperand(0);
12213   if (Op1.getOpcode() == ISD::TRUNCATE)
12214     Op1 = Op1.getOperand(0);
12215
12216   SDValue LHS, RHS;
12217   if (Op1.getOpcode() == ISD::SHL)
12218     std::swap(Op0, Op1);
12219   if (Op0.getOpcode() == ISD::SHL) {
12220     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
12221       if (And00C->getZExtValue() == 1) {
12222         // If we looked past a truncate, check that it's only truncating away
12223         // known zeros.
12224         unsigned BitWidth = Op0.getValueSizeInBits();
12225         unsigned AndBitWidth = And.getValueSizeInBits();
12226         if (BitWidth > AndBitWidth) {
12227           APInt Zeros, Ones;
12228           DAG.computeKnownBits(Op0, Zeros, Ones);
12229           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
12230             return SDValue();
12231         }
12232         LHS = Op1;
12233         RHS = Op0.getOperand(1);
12234       }
12235   } else if (Op1.getOpcode() == ISD::Constant) {
12236     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
12237     uint64_t AndRHSVal = AndRHS->getZExtValue();
12238     SDValue AndLHS = Op0;
12239
12240     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
12241       LHS = AndLHS.getOperand(0);
12242       RHS = AndLHS.getOperand(1);
12243     }
12244
12245     // Use BT if the immediate can't be encoded in a TEST instruction.
12246     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
12247       LHS = AndLHS;
12248       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
12249     }
12250   }
12251
12252   if (LHS.getNode()) {
12253     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
12254     // instruction.  Since the shift amount is in-range-or-undefined, we know
12255     // that doing a bittest on the i32 value is ok.  We extend to i32 because
12256     // the encoding for the i16 version is larger than the i32 version.
12257     // Also promote i16 to i32 for performance / code size reason.
12258     if (LHS.getValueType() == MVT::i8 ||
12259         LHS.getValueType() == MVT::i16)
12260       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
12261
12262     // If the operand types disagree, extend the shift amount to match.  Since
12263     // BT ignores high bits (like shifts) we can use anyextend.
12264     if (LHS.getValueType() != RHS.getValueType())
12265       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
12266
12267     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
12268     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
12269     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12270                        DAG.getConstant(Cond, MVT::i8), BT);
12271   }
12272
12273   return SDValue();
12274 }
12275
12276 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
12277 /// mask CMPs.
12278 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
12279                               SDValue &Op1) {
12280   unsigned SSECC;
12281   bool Swap = false;
12282
12283   // SSE Condition code mapping:
12284   //  0 - EQ
12285   //  1 - LT
12286   //  2 - LE
12287   //  3 - UNORD
12288   //  4 - NEQ
12289   //  5 - NLT
12290   //  6 - NLE
12291   //  7 - ORD
12292   switch (SetCCOpcode) {
12293   default: llvm_unreachable("Unexpected SETCC condition");
12294   case ISD::SETOEQ:
12295   case ISD::SETEQ:  SSECC = 0; break;
12296   case ISD::SETOGT:
12297   case ISD::SETGT:  Swap = true; // Fallthrough
12298   case ISD::SETLT:
12299   case ISD::SETOLT: SSECC = 1; break;
12300   case ISD::SETOGE:
12301   case ISD::SETGE:  Swap = true; // Fallthrough
12302   case ISD::SETLE:
12303   case ISD::SETOLE: SSECC = 2; break;
12304   case ISD::SETUO:  SSECC = 3; break;
12305   case ISD::SETUNE:
12306   case ISD::SETNE:  SSECC = 4; break;
12307   case ISD::SETULE: Swap = true; // Fallthrough
12308   case ISD::SETUGE: SSECC = 5; break;
12309   case ISD::SETULT: Swap = true; // Fallthrough
12310   case ISD::SETUGT: SSECC = 6; break;
12311   case ISD::SETO:   SSECC = 7; break;
12312   case ISD::SETUEQ:
12313   case ISD::SETONE: SSECC = 8; break;
12314   }
12315   if (Swap)
12316     std::swap(Op0, Op1);
12317
12318   return SSECC;
12319 }
12320
12321 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
12322 // ones, and then concatenate the result back.
12323 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
12324   MVT VT = Op.getSimpleValueType();
12325
12326   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
12327          "Unsupported value type for operation");
12328
12329   unsigned NumElems = VT.getVectorNumElements();
12330   SDLoc dl(Op);
12331   SDValue CC = Op.getOperand(2);
12332
12333   // Extract the LHS vectors
12334   SDValue LHS = Op.getOperand(0);
12335   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12336   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12337
12338   // Extract the RHS vectors
12339   SDValue RHS = Op.getOperand(1);
12340   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12341   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12342
12343   // Issue the operation on the smaller types and concatenate the result back
12344   MVT EltVT = VT.getVectorElementType();
12345   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12346   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12347                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
12348                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
12349 }
12350
12351 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
12352                                      const X86Subtarget *Subtarget) {
12353   SDValue Op0 = Op.getOperand(0);
12354   SDValue Op1 = Op.getOperand(1);
12355   SDValue CC = Op.getOperand(2);
12356   MVT VT = Op.getSimpleValueType();
12357   SDLoc dl(Op);
12358
12359   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
12360          Op.getValueType().getScalarType() == MVT::i1 &&
12361          "Cannot set masked compare for this operation");
12362
12363   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
12364   unsigned  Opc = 0;
12365   bool Unsigned = false;
12366   bool Swap = false;
12367   unsigned SSECC;
12368   switch (SetCCOpcode) {
12369   default: llvm_unreachable("Unexpected SETCC condition");
12370   case ISD::SETNE:  SSECC = 4; break;
12371   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
12372   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
12373   case ISD::SETLT:  Swap = true; //fall-through
12374   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
12375   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
12376   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
12377   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
12378   case ISD::SETULE: Unsigned = true; //fall-through
12379   case ISD::SETLE:  SSECC = 2; break;
12380   }
12381
12382   if (Swap)
12383     std::swap(Op0, Op1);
12384   if (Opc)
12385     return DAG.getNode(Opc, dl, VT, Op0, Op1);
12386   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
12387   return DAG.getNode(Opc, dl, VT, Op0, Op1,
12388                      DAG.getConstant(SSECC, MVT::i8));
12389 }
12390
12391 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
12392 /// operand \p Op1.  If non-trivial (for example because it's not constant)
12393 /// return an empty value.
12394 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
12395 {
12396   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
12397   if (!BV)
12398     return SDValue();
12399
12400   MVT VT = Op1.getSimpleValueType();
12401   MVT EVT = VT.getVectorElementType();
12402   unsigned n = VT.getVectorNumElements();
12403   SmallVector<SDValue, 8> ULTOp1;
12404
12405   for (unsigned i = 0; i < n; ++i) {
12406     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
12407     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
12408       return SDValue();
12409
12410     // Avoid underflow.
12411     APInt Val = Elt->getAPIntValue();
12412     if (Val == 0)
12413       return SDValue();
12414
12415     ULTOp1.push_back(DAG.getConstant(Val - 1, EVT));
12416   }
12417
12418   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
12419 }
12420
12421 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
12422                            SelectionDAG &DAG) {
12423   SDValue Op0 = Op.getOperand(0);
12424   SDValue Op1 = Op.getOperand(1);
12425   SDValue CC = Op.getOperand(2);
12426   MVT VT = Op.getSimpleValueType();
12427   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
12428   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
12429   SDLoc dl(Op);
12430
12431   if (isFP) {
12432 #ifndef NDEBUG
12433     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
12434     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
12435 #endif
12436
12437     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
12438     unsigned Opc = X86ISD::CMPP;
12439     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
12440       assert(VT.getVectorNumElements() <= 16);
12441       Opc = X86ISD::CMPM;
12442     }
12443     // In the two special cases we can't handle, emit two comparisons.
12444     if (SSECC == 8) {
12445       unsigned CC0, CC1;
12446       unsigned CombineOpc;
12447       if (SetCCOpcode == ISD::SETUEQ) {
12448         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
12449       } else {
12450         assert(SetCCOpcode == ISD::SETONE);
12451         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
12452       }
12453
12454       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
12455                                  DAG.getConstant(CC0, MVT::i8));
12456       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
12457                                  DAG.getConstant(CC1, MVT::i8));
12458       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
12459     }
12460     // Handle all other FP comparisons here.
12461     return DAG.getNode(Opc, dl, VT, Op0, Op1,
12462                        DAG.getConstant(SSECC, MVT::i8));
12463   }
12464
12465   // Break 256-bit integer vector compare into smaller ones.
12466   if (VT.is256BitVector() && !Subtarget->hasInt256())
12467     return Lower256IntVSETCC(Op, DAG);
12468
12469   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
12470   EVT OpVT = Op1.getValueType();
12471   if (Subtarget->hasAVX512()) {
12472     if (Op1.getValueType().is512BitVector() ||
12473         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
12474       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
12475
12476     // In AVX-512 architecture setcc returns mask with i1 elements,
12477     // But there is no compare instruction for i8 and i16 elements.
12478     // We are not talking about 512-bit operands in this case, these
12479     // types are illegal.
12480     if (MaskResult &&
12481         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
12482          OpVT.getVectorElementType().getSizeInBits() >= 8))
12483       return DAG.getNode(ISD::TRUNCATE, dl, VT,
12484                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
12485   }
12486
12487   // We are handling one of the integer comparisons here.  Since SSE only has
12488   // GT and EQ comparisons for integer, swapping operands and multiple
12489   // operations may be required for some comparisons.
12490   unsigned Opc;
12491   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
12492   bool Subus = false;
12493
12494   switch (SetCCOpcode) {
12495   default: llvm_unreachable("Unexpected SETCC condition");
12496   case ISD::SETNE:  Invert = true;
12497   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
12498   case ISD::SETLT:  Swap = true;
12499   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
12500   case ISD::SETGE:  Swap = true;
12501   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
12502                     Invert = true; break;
12503   case ISD::SETULT: Swap = true;
12504   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
12505                     FlipSigns = true; break;
12506   case ISD::SETUGE: Swap = true;
12507   case ISD::SETULE: Opc = X86ISD::PCMPGT;
12508                     FlipSigns = true; Invert = true; break;
12509   }
12510
12511   // Special case: Use min/max operations for SETULE/SETUGE
12512   MVT VET = VT.getVectorElementType();
12513   bool hasMinMax =
12514        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
12515     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
12516
12517   if (hasMinMax) {
12518     switch (SetCCOpcode) {
12519     default: break;
12520     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
12521     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
12522     }
12523
12524     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
12525   }
12526
12527   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
12528   if (!MinMax && hasSubus) {
12529     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
12530     // Op0 u<= Op1:
12531     //   t = psubus Op0, Op1
12532     //   pcmpeq t, <0..0>
12533     switch (SetCCOpcode) {
12534     default: break;
12535     case ISD::SETULT: {
12536       // If the comparison is against a constant we can turn this into a
12537       // setule.  With psubus, setule does not require a swap.  This is
12538       // beneficial because the constant in the register is no longer
12539       // destructed as the destination so it can be hoisted out of a loop.
12540       // Only do this pre-AVX since vpcmp* is no longer destructive.
12541       if (Subtarget->hasAVX())
12542         break;
12543       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
12544       if (ULEOp1.getNode()) {
12545         Op1 = ULEOp1;
12546         Subus = true; Invert = false; Swap = false;
12547       }
12548       break;
12549     }
12550     // Psubus is better than flip-sign because it requires no inversion.
12551     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
12552     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
12553     }
12554
12555     if (Subus) {
12556       Opc = X86ISD::SUBUS;
12557       FlipSigns = false;
12558     }
12559   }
12560
12561   if (Swap)
12562     std::swap(Op0, Op1);
12563
12564   // Check that the operation in question is available (most are plain SSE2,
12565   // but PCMPGTQ and PCMPEQQ have different requirements).
12566   if (VT == MVT::v2i64) {
12567     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
12568       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
12569
12570       // First cast everything to the right type.
12571       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
12572       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
12573
12574       // Since SSE has no unsigned integer comparisons, we need to flip the sign
12575       // bits of the inputs before performing those operations. The lower
12576       // compare is always unsigned.
12577       SDValue SB;
12578       if (FlipSigns) {
12579         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
12580       } else {
12581         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
12582         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
12583         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
12584                          Sign, Zero, Sign, Zero);
12585       }
12586       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
12587       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
12588
12589       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
12590       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
12591       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
12592
12593       // Create masks for only the low parts/high parts of the 64 bit integers.
12594       static const int MaskHi[] = { 1, 1, 3, 3 };
12595       static const int MaskLo[] = { 0, 0, 2, 2 };
12596       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
12597       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
12598       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
12599
12600       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
12601       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
12602
12603       if (Invert)
12604         Result = DAG.getNOT(dl, Result, MVT::v4i32);
12605
12606       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
12607     }
12608
12609     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
12610       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
12611       // pcmpeqd + pshufd + pand.
12612       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
12613
12614       // First cast everything to the right type.
12615       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
12616       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
12617
12618       // Do the compare.
12619       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
12620
12621       // Make sure the lower and upper halves are both all-ones.
12622       static const int Mask[] = { 1, 0, 3, 2 };
12623       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
12624       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
12625
12626       if (Invert)
12627         Result = DAG.getNOT(dl, Result, MVT::v4i32);
12628
12629       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
12630     }
12631   }
12632
12633   // Since SSE has no unsigned integer comparisons, we need to flip the sign
12634   // bits of the inputs before performing those operations.
12635   if (FlipSigns) {
12636     EVT EltVT = VT.getVectorElementType();
12637     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
12638     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
12639     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
12640   }
12641
12642   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
12643
12644   // If the logical-not of the result is required, perform that now.
12645   if (Invert)
12646     Result = DAG.getNOT(dl, Result, VT);
12647
12648   if (MinMax)
12649     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
12650
12651   if (Subus)
12652     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
12653                          getZeroVector(VT, Subtarget, DAG, dl));
12654
12655   return Result;
12656 }
12657
12658 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
12659
12660   MVT VT = Op.getSimpleValueType();
12661
12662   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
12663
12664   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
12665          && "SetCC type must be 8-bit or 1-bit integer");
12666   SDValue Op0 = Op.getOperand(0);
12667   SDValue Op1 = Op.getOperand(1);
12668   SDLoc dl(Op);
12669   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
12670
12671   // Optimize to BT if possible.
12672   // Lower (X & (1 << N)) == 0 to BT(X, N).
12673   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
12674   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
12675   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
12676       Op1.getOpcode() == ISD::Constant &&
12677       cast<ConstantSDNode>(Op1)->isNullValue() &&
12678       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
12679     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
12680     if (NewSetCC.getNode())
12681       return NewSetCC;
12682   }
12683
12684   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
12685   // these.
12686   if (Op1.getOpcode() == ISD::Constant &&
12687       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
12688        cast<ConstantSDNode>(Op1)->isNullValue()) &&
12689       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
12690
12691     // If the input is a setcc, then reuse the input setcc or use a new one with
12692     // the inverted condition.
12693     if (Op0.getOpcode() == X86ISD::SETCC) {
12694       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
12695       bool Invert = (CC == ISD::SETNE) ^
12696         cast<ConstantSDNode>(Op1)->isNullValue();
12697       if (!Invert)
12698         return Op0;
12699
12700       CCode = X86::GetOppositeBranchCondition(CCode);
12701       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12702                                   DAG.getConstant(CCode, MVT::i8),
12703                                   Op0.getOperand(1));
12704       if (VT == MVT::i1)
12705         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
12706       return SetCC;
12707     }
12708   }
12709   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
12710       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
12711       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
12712
12713     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
12714     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, MVT::i1), NewCC);
12715   }
12716
12717   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
12718   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
12719   if (X86CC == X86::COND_INVALID)
12720     return SDValue();
12721
12722   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
12723   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
12724   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12725                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
12726   if (VT == MVT::i1)
12727     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
12728   return SetCC;
12729 }
12730
12731 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
12732 static bool isX86LogicalCmp(SDValue Op) {
12733   unsigned Opc = Op.getNode()->getOpcode();
12734   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
12735       Opc == X86ISD::SAHF)
12736     return true;
12737   if (Op.getResNo() == 1 &&
12738       (Opc == X86ISD::ADD ||
12739        Opc == X86ISD::SUB ||
12740        Opc == X86ISD::ADC ||
12741        Opc == X86ISD::SBB ||
12742        Opc == X86ISD::SMUL ||
12743        Opc == X86ISD::UMUL ||
12744        Opc == X86ISD::INC ||
12745        Opc == X86ISD::DEC ||
12746        Opc == X86ISD::OR ||
12747        Opc == X86ISD::XOR ||
12748        Opc == X86ISD::AND))
12749     return true;
12750
12751   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
12752     return true;
12753
12754   return false;
12755 }
12756
12757 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
12758   if (V.getOpcode() != ISD::TRUNCATE)
12759     return false;
12760
12761   SDValue VOp0 = V.getOperand(0);
12762   unsigned InBits = VOp0.getValueSizeInBits();
12763   unsigned Bits = V.getValueSizeInBits();
12764   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
12765 }
12766
12767 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
12768   bool addTest = true;
12769   SDValue Cond  = Op.getOperand(0);
12770   SDValue Op1 = Op.getOperand(1);
12771   SDValue Op2 = Op.getOperand(2);
12772   SDLoc DL(Op);
12773   EVT VT = Op1.getValueType();
12774   SDValue CC;
12775
12776   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
12777   // are available. Otherwise fp cmovs get lowered into a less efficient branch
12778   // sequence later on.
12779   if (Cond.getOpcode() == ISD::SETCC &&
12780       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
12781        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
12782       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
12783     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
12784     int SSECC = translateX86FSETCC(
12785         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
12786
12787     if (SSECC != 8) {
12788       if (Subtarget->hasAVX512()) {
12789         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
12790                                   DAG.getConstant(SSECC, MVT::i8));
12791         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
12792       }
12793       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
12794                                 DAG.getConstant(SSECC, MVT::i8));
12795       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
12796       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
12797       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
12798     }
12799   }
12800
12801   if (Cond.getOpcode() == ISD::SETCC) {
12802     SDValue NewCond = LowerSETCC(Cond, DAG);
12803     if (NewCond.getNode())
12804       Cond = NewCond;
12805   }
12806
12807   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
12808   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
12809   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
12810   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
12811   if (Cond.getOpcode() == X86ISD::SETCC &&
12812       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
12813       isZero(Cond.getOperand(1).getOperand(1))) {
12814     SDValue Cmp = Cond.getOperand(1);
12815
12816     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
12817
12818     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
12819         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
12820       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
12821
12822       SDValue CmpOp0 = Cmp.getOperand(0);
12823       // Apply further optimizations for special cases
12824       // (select (x != 0), -1, 0) -> neg & sbb
12825       // (select (x == 0), 0, -1) -> neg & sbb
12826       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
12827         if (YC->isNullValue() &&
12828             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
12829           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
12830           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
12831                                     DAG.getConstant(0, CmpOp0.getValueType()),
12832                                     CmpOp0);
12833           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
12834                                     DAG.getConstant(X86::COND_B, MVT::i8),
12835                                     SDValue(Neg.getNode(), 1));
12836           return Res;
12837         }
12838
12839       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
12840                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
12841       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
12842
12843       SDValue Res =   // Res = 0 or -1.
12844         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
12845                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
12846
12847       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
12848         Res = DAG.getNOT(DL, Res, Res.getValueType());
12849
12850       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
12851       if (!N2C || !N2C->isNullValue())
12852         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
12853       return Res;
12854     }
12855   }
12856
12857   // Look past (and (setcc_carry (cmp ...)), 1).
12858   if (Cond.getOpcode() == ISD::AND &&
12859       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
12860     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
12861     if (C && C->getAPIntValue() == 1)
12862       Cond = Cond.getOperand(0);
12863   }
12864
12865   // If condition flag is set by a X86ISD::CMP, then use it as the condition
12866   // setting operand in place of the X86ISD::SETCC.
12867   unsigned CondOpcode = Cond.getOpcode();
12868   if (CondOpcode == X86ISD::SETCC ||
12869       CondOpcode == X86ISD::SETCC_CARRY) {
12870     CC = Cond.getOperand(0);
12871
12872     SDValue Cmp = Cond.getOperand(1);
12873     unsigned Opc = Cmp.getOpcode();
12874     MVT VT = Op.getSimpleValueType();
12875
12876     bool IllegalFPCMov = false;
12877     if (VT.isFloatingPoint() && !VT.isVector() &&
12878         !isScalarFPTypeInSSEReg(VT))  // FPStack?
12879       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
12880
12881     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
12882         Opc == X86ISD::BT) { // FIXME
12883       Cond = Cmp;
12884       addTest = false;
12885     }
12886   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
12887              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
12888              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
12889               Cond.getOperand(0).getValueType() != MVT::i8)) {
12890     SDValue LHS = Cond.getOperand(0);
12891     SDValue RHS = Cond.getOperand(1);
12892     unsigned X86Opcode;
12893     unsigned X86Cond;
12894     SDVTList VTs;
12895     switch (CondOpcode) {
12896     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
12897     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
12898     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
12899     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
12900     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
12901     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
12902     default: llvm_unreachable("unexpected overflowing operator");
12903     }
12904     if (CondOpcode == ISD::UMULO)
12905       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
12906                           MVT::i32);
12907     else
12908       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
12909
12910     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
12911
12912     if (CondOpcode == ISD::UMULO)
12913       Cond = X86Op.getValue(2);
12914     else
12915       Cond = X86Op.getValue(1);
12916
12917     CC = DAG.getConstant(X86Cond, MVT::i8);
12918     addTest = false;
12919   }
12920
12921   if (addTest) {
12922     // Look pass the truncate if the high bits are known zero.
12923     if (isTruncWithZeroHighBitsInput(Cond, DAG))
12924         Cond = Cond.getOperand(0);
12925
12926     // We know the result of AND is compared against zero. Try to match
12927     // it to BT.
12928     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
12929       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
12930       if (NewSetCC.getNode()) {
12931         CC = NewSetCC.getOperand(0);
12932         Cond = NewSetCC.getOperand(1);
12933         addTest = false;
12934       }
12935     }
12936   }
12937
12938   if (addTest) {
12939     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
12940     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
12941   }
12942
12943   // a <  b ? -1 :  0 -> RES = ~setcc_carry
12944   // a <  b ?  0 : -1 -> RES = setcc_carry
12945   // a >= b ? -1 :  0 -> RES = setcc_carry
12946   // a >= b ?  0 : -1 -> RES = ~setcc_carry
12947   if (Cond.getOpcode() == X86ISD::SUB) {
12948     Cond = ConvertCmpIfNecessary(Cond, DAG);
12949     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
12950
12951     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
12952         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
12953       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
12954                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
12955       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
12956         return DAG.getNOT(DL, Res, Res.getValueType());
12957       return Res;
12958     }
12959   }
12960
12961   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
12962   // widen the cmov and push the truncate through. This avoids introducing a new
12963   // branch during isel and doesn't add any extensions.
12964   if (Op.getValueType() == MVT::i8 &&
12965       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
12966     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
12967     if (T1.getValueType() == T2.getValueType() &&
12968         // Blacklist CopyFromReg to avoid partial register stalls.
12969         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
12970       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
12971       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
12972       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
12973     }
12974   }
12975
12976   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
12977   // condition is true.
12978   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
12979   SDValue Ops[] = { Op2, Op1, CC, Cond };
12980   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
12981 }
12982
12983 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
12984   MVT VT = Op->getSimpleValueType(0);
12985   SDValue In = Op->getOperand(0);
12986   MVT InVT = In.getSimpleValueType();
12987   SDLoc dl(Op);
12988
12989   unsigned int NumElts = VT.getVectorNumElements();
12990   if (NumElts != 8 && NumElts != 16)
12991     return SDValue();
12992
12993   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
12994     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
12995
12996   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12997   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
12998
12999   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
13000   Constant *C = ConstantInt::get(*DAG.getContext(),
13001     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
13002
13003   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
13004   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
13005   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
13006                           MachinePointerInfo::getConstantPool(),
13007                           false, false, false, Alignment);
13008   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
13009   if (VT.is512BitVector())
13010     return Brcst;
13011   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
13012 }
13013
13014 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
13015                                 SelectionDAG &DAG) {
13016   MVT VT = Op->getSimpleValueType(0);
13017   SDValue In = Op->getOperand(0);
13018   MVT InVT = In.getSimpleValueType();
13019   SDLoc dl(Op);
13020
13021   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
13022     return LowerSIGN_EXTEND_AVX512(Op, DAG);
13023
13024   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
13025       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
13026       (VT != MVT::v16i16 || InVT != MVT::v16i8))
13027     return SDValue();
13028
13029   if (Subtarget->hasInt256())
13030     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
13031
13032   // Optimize vectors in AVX mode
13033   // Sign extend  v8i16 to v8i32 and
13034   //              v4i32 to v4i64
13035   //
13036   // Divide input vector into two parts
13037   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
13038   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
13039   // concat the vectors to original VT
13040
13041   unsigned NumElems = InVT.getVectorNumElements();
13042   SDValue Undef = DAG.getUNDEF(InVT);
13043
13044   SmallVector<int,8> ShufMask1(NumElems, -1);
13045   for (unsigned i = 0; i != NumElems/2; ++i)
13046     ShufMask1[i] = i;
13047
13048   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
13049
13050   SmallVector<int,8> ShufMask2(NumElems, -1);
13051   for (unsigned i = 0; i != NumElems/2; ++i)
13052     ShufMask2[i] = i + NumElems/2;
13053
13054   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
13055
13056   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
13057                                 VT.getVectorNumElements()/2);
13058
13059   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
13060   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
13061
13062   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
13063 }
13064
13065 // Lower vector extended loads using a shuffle. If SSSE3 is not available we
13066 // may emit an illegal shuffle but the expansion is still better than scalar
13067 // code. We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise
13068 // we'll emit a shuffle and a arithmetic shift.
13069 // TODO: It is possible to support ZExt by zeroing the undef values during
13070 // the shuffle phase or after the shuffle.
13071 static SDValue LowerExtendedLoad(SDValue Op, const X86Subtarget *Subtarget,
13072                                  SelectionDAG &DAG) {
13073   MVT RegVT = Op.getSimpleValueType();
13074   assert(RegVT.isVector() && "We only custom lower vector sext loads.");
13075   assert(RegVT.isInteger() &&
13076          "We only custom lower integer vector sext loads.");
13077
13078   // Nothing useful we can do without SSE2 shuffles.
13079   assert(Subtarget->hasSSE2() && "We only custom lower sext loads with SSE2.");
13080
13081   LoadSDNode *Ld = cast<LoadSDNode>(Op.getNode());
13082   SDLoc dl(Ld);
13083   EVT MemVT = Ld->getMemoryVT();
13084   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13085   unsigned RegSz = RegVT.getSizeInBits();
13086
13087   ISD::LoadExtType Ext = Ld->getExtensionType();
13088
13089   assert((Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)
13090          && "Only anyext and sext are currently implemented.");
13091   assert(MemVT != RegVT && "Cannot extend to the same type");
13092   assert(MemVT.isVector() && "Must load a vector from memory");
13093
13094   unsigned NumElems = RegVT.getVectorNumElements();
13095   unsigned MemSz = MemVT.getSizeInBits();
13096   assert(RegSz > MemSz && "Register size must be greater than the mem size");
13097
13098   if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256()) {
13099     // The only way in which we have a legal 256-bit vector result but not the
13100     // integer 256-bit operations needed to directly lower a sextload is if we
13101     // have AVX1 but not AVX2. In that case, we can always emit a sextload to
13102     // a 128-bit vector and a normal sign_extend to 256-bits that should get
13103     // correctly legalized. We do this late to allow the canonical form of
13104     // sextload to persist throughout the rest of the DAG combiner -- it wants
13105     // to fold together any extensions it can, and so will fuse a sign_extend
13106     // of an sextload into an sextload targeting a wider value.
13107     SDValue Load;
13108     if (MemSz == 128) {
13109       // Just switch this to a normal load.
13110       assert(TLI.isTypeLegal(MemVT) && "If the memory type is a 128-bit type, "
13111                                        "it must be a legal 128-bit vector "
13112                                        "type!");
13113       Load = DAG.getLoad(MemVT, dl, Ld->getChain(), Ld->getBasePtr(),
13114                   Ld->getPointerInfo(), Ld->isVolatile(), Ld->isNonTemporal(),
13115                   Ld->isInvariant(), Ld->getAlignment());
13116     } else {
13117       assert(MemSz < 128 &&
13118              "Can't extend a type wider than 128 bits to a 256 bit vector!");
13119       // Do an sext load to a 128-bit vector type. We want to use the same
13120       // number of elements, but elements half as wide. This will end up being
13121       // recursively lowered by this routine, but will succeed as we definitely
13122       // have all the necessary features if we're using AVX1.
13123       EVT HalfEltVT =
13124           EVT::getIntegerVT(*DAG.getContext(), RegVT.getScalarSizeInBits() / 2);
13125       EVT HalfVecVT = EVT::getVectorVT(*DAG.getContext(), HalfEltVT, NumElems);
13126       Load =
13127           DAG.getExtLoad(Ext, dl, HalfVecVT, Ld->getChain(), Ld->getBasePtr(),
13128                          Ld->getPointerInfo(), MemVT, Ld->isVolatile(),
13129                          Ld->isNonTemporal(), Ld->isInvariant(),
13130                          Ld->getAlignment());
13131     }
13132
13133     // Replace chain users with the new chain.
13134     assert(Load->getNumValues() == 2 && "Loads must carry a chain!");
13135     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Load.getValue(1));
13136
13137     // Finally, do a normal sign-extend to the desired register.
13138     return DAG.getSExtOrTrunc(Load, dl, RegVT);
13139   }
13140
13141   // All sizes must be a power of two.
13142   assert(isPowerOf2_32(RegSz * MemSz * NumElems) &&
13143          "Non-power-of-two elements are not custom lowered!");
13144
13145   // Attempt to load the original value using scalar loads.
13146   // Find the largest scalar type that divides the total loaded size.
13147   MVT SclrLoadTy = MVT::i8;
13148   for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
13149        tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
13150     MVT Tp = (MVT::SimpleValueType)tp;
13151     if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
13152       SclrLoadTy = Tp;
13153     }
13154   }
13155
13156   // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
13157   if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
13158       (64 <= MemSz))
13159     SclrLoadTy = MVT::f64;
13160
13161   // Calculate the number of scalar loads that we need to perform
13162   // in order to load our vector from memory.
13163   unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
13164
13165   assert((Ext != ISD::SEXTLOAD || NumLoads == 1) &&
13166          "Can only lower sext loads with a single scalar load!");
13167
13168   unsigned loadRegZize = RegSz;
13169   if (Ext == ISD::SEXTLOAD && RegSz == 256)
13170     loadRegZize /= 2;
13171
13172   // Represent our vector as a sequence of elements which are the
13173   // largest scalar that we can load.
13174   EVT LoadUnitVecVT = EVT::getVectorVT(
13175       *DAG.getContext(), SclrLoadTy, loadRegZize / SclrLoadTy.getSizeInBits());
13176
13177   // Represent the data using the same element type that is stored in
13178   // memory. In practice, we ''widen'' MemVT.
13179   EVT WideVecVT =
13180       EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
13181                        loadRegZize / MemVT.getScalarType().getSizeInBits());
13182
13183   assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
13184          "Invalid vector type");
13185
13186   // We can't shuffle using an illegal type.
13187   assert(TLI.isTypeLegal(WideVecVT) &&
13188          "We only lower types that form legal widened vector types");
13189
13190   SmallVector<SDValue, 8> Chains;
13191   SDValue Ptr = Ld->getBasePtr();
13192   SDValue Increment =
13193       DAG.getConstant(SclrLoadTy.getSizeInBits() / 8, TLI.getPointerTy());
13194   SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
13195
13196   for (unsigned i = 0; i < NumLoads; ++i) {
13197     // Perform a single load.
13198     SDValue ScalarLoad =
13199         DAG.getLoad(SclrLoadTy, dl, Ld->getChain(), Ptr, Ld->getPointerInfo(),
13200                     Ld->isVolatile(), Ld->isNonTemporal(), Ld->isInvariant(),
13201                     Ld->getAlignment());
13202     Chains.push_back(ScalarLoad.getValue(1));
13203     // Create the first element type using SCALAR_TO_VECTOR in order to avoid
13204     // another round of DAGCombining.
13205     if (i == 0)
13206       Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
13207     else
13208       Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
13209                         ScalarLoad, DAG.getIntPtrConstant(i));
13210
13211     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
13212   }
13213
13214   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
13215
13216   // Bitcast the loaded value to a vector of the original element type, in
13217   // the size of the target vector type.
13218   SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
13219   unsigned SizeRatio = RegSz / MemSz;
13220
13221   if (Ext == ISD::SEXTLOAD) {
13222     // If we have SSE4.1 we can directly emit a VSEXT node.
13223     if (Subtarget->hasSSE41()) {
13224       SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
13225       DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
13226       return Sext;
13227     }
13228
13229     // Otherwise we'll shuffle the small elements in the high bits of the
13230     // larger type and perform an arithmetic shift. If the shift is not legal
13231     // it's better to scalarize.
13232     assert(TLI.isOperationLegalOrCustom(ISD::SRA, RegVT) &&
13233            "We can't implement an sext load without a arithmetic right shift!");
13234
13235     // Redistribute the loaded elements into the different locations.
13236     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13237     for (unsigned i = 0; i != NumElems; ++i)
13238       ShuffleVec[i * SizeRatio + SizeRatio - 1] = i;
13239
13240     SDValue Shuff = DAG.getVectorShuffle(
13241         WideVecVT, dl, SlicedVec, DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
13242
13243     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
13244
13245     // Build the arithmetic shift.
13246     unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
13247                    MemVT.getVectorElementType().getSizeInBits();
13248     Shuff =
13249         DAG.getNode(ISD::SRA, dl, RegVT, Shuff, DAG.getConstant(Amt, RegVT));
13250
13251     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
13252     return Shuff;
13253   }
13254
13255   // Redistribute the loaded elements into the different locations.
13256   SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13257   for (unsigned i = 0; i != NumElems; ++i)
13258     ShuffleVec[i * SizeRatio] = i;
13259
13260   SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
13261                                        DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
13262
13263   // Bitcast to the requested type.
13264   Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
13265   DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
13266   return Shuff;
13267 }
13268
13269 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
13270 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
13271 // from the AND / OR.
13272 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
13273   Opc = Op.getOpcode();
13274   if (Opc != ISD::OR && Opc != ISD::AND)
13275     return false;
13276   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
13277           Op.getOperand(0).hasOneUse() &&
13278           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
13279           Op.getOperand(1).hasOneUse());
13280 }
13281
13282 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
13283 // 1 and that the SETCC node has a single use.
13284 static bool isXor1OfSetCC(SDValue Op) {
13285   if (Op.getOpcode() != ISD::XOR)
13286     return false;
13287   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
13288   if (N1C && N1C->getAPIntValue() == 1) {
13289     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
13290       Op.getOperand(0).hasOneUse();
13291   }
13292   return false;
13293 }
13294
13295 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
13296   bool addTest = true;
13297   SDValue Chain = Op.getOperand(0);
13298   SDValue Cond  = Op.getOperand(1);
13299   SDValue Dest  = Op.getOperand(2);
13300   SDLoc dl(Op);
13301   SDValue CC;
13302   bool Inverted = false;
13303
13304   if (Cond.getOpcode() == ISD::SETCC) {
13305     // Check for setcc([su]{add,sub,mul}o == 0).
13306     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
13307         isa<ConstantSDNode>(Cond.getOperand(1)) &&
13308         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
13309         Cond.getOperand(0).getResNo() == 1 &&
13310         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
13311          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
13312          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
13313          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
13314          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
13315          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
13316       Inverted = true;
13317       Cond = Cond.getOperand(0);
13318     } else {
13319       SDValue NewCond = LowerSETCC(Cond, DAG);
13320       if (NewCond.getNode())
13321         Cond = NewCond;
13322     }
13323   }
13324 #if 0
13325   // FIXME: LowerXALUO doesn't handle these!!
13326   else if (Cond.getOpcode() == X86ISD::ADD  ||
13327            Cond.getOpcode() == X86ISD::SUB  ||
13328            Cond.getOpcode() == X86ISD::SMUL ||
13329            Cond.getOpcode() == X86ISD::UMUL)
13330     Cond = LowerXALUO(Cond, DAG);
13331 #endif
13332
13333   // Look pass (and (setcc_carry (cmp ...)), 1).
13334   if (Cond.getOpcode() == ISD::AND &&
13335       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
13336     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
13337     if (C && C->getAPIntValue() == 1)
13338       Cond = Cond.getOperand(0);
13339   }
13340
13341   // If condition flag is set by a X86ISD::CMP, then use it as the condition
13342   // setting operand in place of the X86ISD::SETCC.
13343   unsigned CondOpcode = Cond.getOpcode();
13344   if (CondOpcode == X86ISD::SETCC ||
13345       CondOpcode == X86ISD::SETCC_CARRY) {
13346     CC = Cond.getOperand(0);
13347
13348     SDValue Cmp = Cond.getOperand(1);
13349     unsigned Opc = Cmp.getOpcode();
13350     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
13351     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
13352       Cond = Cmp;
13353       addTest = false;
13354     } else {
13355       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
13356       default: break;
13357       case X86::COND_O:
13358       case X86::COND_B:
13359         // These can only come from an arithmetic instruction with overflow,
13360         // e.g. SADDO, UADDO.
13361         Cond = Cond.getNode()->getOperand(1);
13362         addTest = false;
13363         break;
13364       }
13365     }
13366   }
13367   CondOpcode = Cond.getOpcode();
13368   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
13369       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
13370       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
13371        Cond.getOperand(0).getValueType() != MVT::i8)) {
13372     SDValue LHS = Cond.getOperand(0);
13373     SDValue RHS = Cond.getOperand(1);
13374     unsigned X86Opcode;
13375     unsigned X86Cond;
13376     SDVTList VTs;
13377     // Keep this in sync with LowerXALUO, otherwise we might create redundant
13378     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
13379     // X86ISD::INC).
13380     switch (CondOpcode) {
13381     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
13382     case ISD::SADDO:
13383       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13384         if (C->isOne()) {
13385           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
13386           break;
13387         }
13388       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
13389     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
13390     case ISD::SSUBO:
13391       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13392         if (C->isOne()) {
13393           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
13394           break;
13395         }
13396       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
13397     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
13398     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
13399     default: llvm_unreachable("unexpected overflowing operator");
13400     }
13401     if (Inverted)
13402       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
13403     if (CondOpcode == ISD::UMULO)
13404       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
13405                           MVT::i32);
13406     else
13407       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
13408
13409     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
13410
13411     if (CondOpcode == ISD::UMULO)
13412       Cond = X86Op.getValue(2);
13413     else
13414       Cond = X86Op.getValue(1);
13415
13416     CC = DAG.getConstant(X86Cond, MVT::i8);
13417     addTest = false;
13418   } else {
13419     unsigned CondOpc;
13420     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
13421       SDValue Cmp = Cond.getOperand(0).getOperand(1);
13422       if (CondOpc == ISD::OR) {
13423         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
13424         // two branches instead of an explicit OR instruction with a
13425         // separate test.
13426         if (Cmp == Cond.getOperand(1).getOperand(1) &&
13427             isX86LogicalCmp(Cmp)) {
13428           CC = Cond.getOperand(0).getOperand(0);
13429           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13430                               Chain, Dest, CC, Cmp);
13431           CC = Cond.getOperand(1).getOperand(0);
13432           Cond = Cmp;
13433           addTest = false;
13434         }
13435       } else { // ISD::AND
13436         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
13437         // two branches instead of an explicit AND instruction with a
13438         // separate test. However, we only do this if this block doesn't
13439         // have a fall-through edge, because this requires an explicit
13440         // jmp when the condition is false.
13441         if (Cmp == Cond.getOperand(1).getOperand(1) &&
13442             isX86LogicalCmp(Cmp) &&
13443             Op.getNode()->hasOneUse()) {
13444           X86::CondCode CCode =
13445             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
13446           CCode = X86::GetOppositeBranchCondition(CCode);
13447           CC = DAG.getConstant(CCode, MVT::i8);
13448           SDNode *User = *Op.getNode()->use_begin();
13449           // Look for an unconditional branch following this conditional branch.
13450           // We need this because we need to reverse the successors in order
13451           // to implement FCMP_OEQ.
13452           if (User->getOpcode() == ISD::BR) {
13453             SDValue FalseBB = User->getOperand(1);
13454             SDNode *NewBR =
13455               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
13456             assert(NewBR == User);
13457             (void)NewBR;
13458             Dest = FalseBB;
13459
13460             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13461                                 Chain, Dest, CC, Cmp);
13462             X86::CondCode CCode =
13463               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
13464             CCode = X86::GetOppositeBranchCondition(CCode);
13465             CC = DAG.getConstant(CCode, MVT::i8);
13466             Cond = Cmp;
13467             addTest = false;
13468           }
13469         }
13470       }
13471     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
13472       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
13473       // It should be transformed during dag combiner except when the condition
13474       // is set by a arithmetics with overflow node.
13475       X86::CondCode CCode =
13476         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
13477       CCode = X86::GetOppositeBranchCondition(CCode);
13478       CC = DAG.getConstant(CCode, MVT::i8);
13479       Cond = Cond.getOperand(0).getOperand(1);
13480       addTest = false;
13481     } else if (Cond.getOpcode() == ISD::SETCC &&
13482                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
13483       // For FCMP_OEQ, we can emit
13484       // two branches instead of an explicit AND instruction with a
13485       // separate test. However, we only do this if this block doesn't
13486       // have a fall-through edge, because this requires an explicit
13487       // jmp when the condition is false.
13488       if (Op.getNode()->hasOneUse()) {
13489         SDNode *User = *Op.getNode()->use_begin();
13490         // Look for an unconditional branch following this conditional branch.
13491         // We need this because we need to reverse the successors in order
13492         // to implement FCMP_OEQ.
13493         if (User->getOpcode() == ISD::BR) {
13494           SDValue FalseBB = User->getOperand(1);
13495           SDNode *NewBR =
13496             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
13497           assert(NewBR == User);
13498           (void)NewBR;
13499           Dest = FalseBB;
13500
13501           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
13502                                     Cond.getOperand(0), Cond.getOperand(1));
13503           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
13504           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
13505           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13506                               Chain, Dest, CC, Cmp);
13507           CC = DAG.getConstant(X86::COND_P, MVT::i8);
13508           Cond = Cmp;
13509           addTest = false;
13510         }
13511       }
13512     } else if (Cond.getOpcode() == ISD::SETCC &&
13513                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
13514       // For FCMP_UNE, we can emit
13515       // two branches instead of an explicit AND instruction with a
13516       // separate test. However, we only do this if this block doesn't
13517       // have a fall-through edge, because this requires an explicit
13518       // jmp when the condition is false.
13519       if (Op.getNode()->hasOneUse()) {
13520         SDNode *User = *Op.getNode()->use_begin();
13521         // Look for an unconditional branch following this conditional branch.
13522         // We need this because we need to reverse the successors in order
13523         // to implement FCMP_UNE.
13524         if (User->getOpcode() == ISD::BR) {
13525           SDValue FalseBB = User->getOperand(1);
13526           SDNode *NewBR =
13527             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
13528           assert(NewBR == User);
13529           (void)NewBR;
13530
13531           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
13532                                     Cond.getOperand(0), Cond.getOperand(1));
13533           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
13534           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
13535           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13536                               Chain, Dest, CC, Cmp);
13537           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
13538           Cond = Cmp;
13539           addTest = false;
13540           Dest = FalseBB;
13541         }
13542       }
13543     }
13544   }
13545
13546   if (addTest) {
13547     // Look pass the truncate if the high bits are known zero.
13548     if (isTruncWithZeroHighBitsInput(Cond, DAG))
13549         Cond = Cond.getOperand(0);
13550
13551     // We know the result of AND is compared against zero. Try to match
13552     // it to BT.
13553     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
13554       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
13555       if (NewSetCC.getNode()) {
13556         CC = NewSetCC.getOperand(0);
13557         Cond = NewSetCC.getOperand(1);
13558         addTest = false;
13559       }
13560     }
13561   }
13562
13563   if (addTest) {
13564     X86::CondCode X86Cond = Inverted ? X86::COND_E : X86::COND_NE;
13565     CC = DAG.getConstant(X86Cond, MVT::i8);
13566     Cond = EmitTest(Cond, X86Cond, dl, DAG);
13567   }
13568   Cond = ConvertCmpIfNecessary(Cond, DAG);
13569   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13570                      Chain, Dest, CC, Cond);
13571 }
13572
13573 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
13574 // Calls to _alloca is needed to probe the stack when allocating more than 4k
13575 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
13576 // that the guard pages used by the OS virtual memory manager are allocated in
13577 // correct sequence.
13578 SDValue
13579 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
13580                                            SelectionDAG &DAG) const {
13581   MachineFunction &MF = DAG.getMachineFunction();
13582   bool SplitStack = MF.shouldSplitStack();
13583   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMacho()) ||
13584                SplitStack;
13585   SDLoc dl(Op);
13586
13587   if (!Lower) {
13588     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13589     SDNode* Node = Op.getNode();
13590
13591     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
13592     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
13593         " not tell us which reg is the stack pointer!");
13594     EVT VT = Node->getValueType(0);
13595     SDValue Tmp1 = SDValue(Node, 0);
13596     SDValue Tmp2 = SDValue(Node, 1);
13597     SDValue Tmp3 = Node->getOperand(2);
13598     SDValue Chain = Tmp1.getOperand(0);
13599
13600     // Chain the dynamic stack allocation so that it doesn't modify the stack
13601     // pointer when other instructions are using the stack.
13602     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
13603         SDLoc(Node));
13604
13605     SDValue Size = Tmp2.getOperand(1);
13606     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
13607     Chain = SP.getValue(1);
13608     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
13609     const TargetFrameLowering &TFI = *DAG.getTarget().getFrameLowering();
13610     unsigned StackAlign = TFI.getStackAlignment();
13611     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
13612     if (Align > StackAlign)
13613       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
13614           DAG.getConstant(-(uint64_t)Align, VT));
13615     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
13616
13617     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
13618         DAG.getIntPtrConstant(0, true), SDValue(),
13619         SDLoc(Node));
13620
13621     SDValue Ops[2] = { Tmp1, Tmp2 };
13622     return DAG.getMergeValues(Ops, dl);
13623   }
13624
13625   // Get the inputs.
13626   SDValue Chain = Op.getOperand(0);
13627   SDValue Size  = Op.getOperand(1);
13628   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
13629   EVT VT = Op.getNode()->getValueType(0);
13630
13631   bool Is64Bit = Subtarget->is64Bit();
13632   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
13633
13634   if (SplitStack) {
13635     MachineRegisterInfo &MRI = MF.getRegInfo();
13636
13637     if (Is64Bit) {
13638       // The 64 bit implementation of segmented stacks needs to clobber both r10
13639       // r11. This makes it impossible to use it along with nested parameters.
13640       const Function *F = MF.getFunction();
13641
13642       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
13643            I != E; ++I)
13644         if (I->hasNestAttr())
13645           report_fatal_error("Cannot use segmented stacks with functions that "
13646                              "have nested arguments.");
13647     }
13648
13649     const TargetRegisterClass *AddrRegClass =
13650       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
13651     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
13652     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
13653     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
13654                                 DAG.getRegister(Vreg, SPTy));
13655     SDValue Ops1[2] = { Value, Chain };
13656     return DAG.getMergeValues(Ops1, dl);
13657   } else {
13658     SDValue Flag;
13659     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
13660
13661     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
13662     Flag = Chain.getValue(1);
13663     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
13664
13665     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
13666
13667     const X86RegisterInfo *RegInfo =
13668       static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
13669     unsigned SPReg = RegInfo->getStackRegister();
13670     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
13671     Chain = SP.getValue(1);
13672
13673     if (Align) {
13674       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
13675                        DAG.getConstant(-(uint64_t)Align, VT));
13676       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
13677     }
13678
13679     SDValue Ops1[2] = { SP, Chain };
13680     return DAG.getMergeValues(Ops1, dl);
13681   }
13682 }
13683
13684 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
13685   MachineFunction &MF = DAG.getMachineFunction();
13686   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
13687
13688   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
13689   SDLoc DL(Op);
13690
13691   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
13692     // vastart just stores the address of the VarArgsFrameIndex slot into the
13693     // memory location argument.
13694     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
13695                                    getPointerTy());
13696     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
13697                         MachinePointerInfo(SV), false, false, 0);
13698   }
13699
13700   // __va_list_tag:
13701   //   gp_offset         (0 - 6 * 8)
13702   //   fp_offset         (48 - 48 + 8 * 16)
13703   //   overflow_arg_area (point to parameters coming in memory).
13704   //   reg_save_area
13705   SmallVector<SDValue, 8> MemOps;
13706   SDValue FIN = Op.getOperand(1);
13707   // Store gp_offset
13708   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
13709                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
13710                                                MVT::i32),
13711                                FIN, MachinePointerInfo(SV), false, false, 0);
13712   MemOps.push_back(Store);
13713
13714   // Store fp_offset
13715   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
13716                     FIN, DAG.getIntPtrConstant(4));
13717   Store = DAG.getStore(Op.getOperand(0), DL,
13718                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
13719                                        MVT::i32),
13720                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
13721   MemOps.push_back(Store);
13722
13723   // Store ptr to overflow_arg_area
13724   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
13725                     FIN, DAG.getIntPtrConstant(4));
13726   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
13727                                     getPointerTy());
13728   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
13729                        MachinePointerInfo(SV, 8),
13730                        false, false, 0);
13731   MemOps.push_back(Store);
13732
13733   // Store ptr to reg_save_area.
13734   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
13735                     FIN, DAG.getIntPtrConstant(8));
13736   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
13737                                     getPointerTy());
13738   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
13739                        MachinePointerInfo(SV, 16), false, false, 0);
13740   MemOps.push_back(Store);
13741   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
13742 }
13743
13744 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
13745   assert(Subtarget->is64Bit() &&
13746          "LowerVAARG only handles 64-bit va_arg!");
13747   assert((Subtarget->isTargetLinux() ||
13748           Subtarget->isTargetDarwin()) &&
13749           "Unhandled target in LowerVAARG");
13750   assert(Op.getNode()->getNumOperands() == 4);
13751   SDValue Chain = Op.getOperand(0);
13752   SDValue SrcPtr = Op.getOperand(1);
13753   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
13754   unsigned Align = Op.getConstantOperandVal(3);
13755   SDLoc dl(Op);
13756
13757   EVT ArgVT = Op.getNode()->getValueType(0);
13758   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13759   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
13760   uint8_t ArgMode;
13761
13762   // Decide which area this value should be read from.
13763   // TODO: Implement the AMD64 ABI in its entirety. This simple
13764   // selection mechanism works only for the basic types.
13765   if (ArgVT == MVT::f80) {
13766     llvm_unreachable("va_arg for f80 not yet implemented");
13767   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
13768     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
13769   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
13770     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
13771   } else {
13772     llvm_unreachable("Unhandled argument type in LowerVAARG");
13773   }
13774
13775   if (ArgMode == 2) {
13776     // Sanity Check: Make sure using fp_offset makes sense.
13777     assert(!DAG.getTarget().Options.UseSoftFloat &&
13778            !(DAG.getMachineFunction()
13779                 .getFunction()->getAttributes()
13780                 .hasAttribute(AttributeSet::FunctionIndex,
13781                               Attribute::NoImplicitFloat)) &&
13782            Subtarget->hasSSE1());
13783   }
13784
13785   // Insert VAARG_64 node into the DAG
13786   // VAARG_64 returns two values: Variable Argument Address, Chain
13787   SmallVector<SDValue, 11> InstOps;
13788   InstOps.push_back(Chain);
13789   InstOps.push_back(SrcPtr);
13790   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
13791   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
13792   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
13793   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
13794   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
13795                                           VTs, InstOps, MVT::i64,
13796                                           MachinePointerInfo(SV),
13797                                           /*Align=*/0,
13798                                           /*Volatile=*/false,
13799                                           /*ReadMem=*/true,
13800                                           /*WriteMem=*/true);
13801   Chain = VAARG.getValue(1);
13802
13803   // Load the next argument and return it
13804   return DAG.getLoad(ArgVT, dl,
13805                      Chain,
13806                      VAARG,
13807                      MachinePointerInfo(),
13808                      false, false, false, 0);
13809 }
13810
13811 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
13812                            SelectionDAG &DAG) {
13813   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
13814   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
13815   SDValue Chain = Op.getOperand(0);
13816   SDValue DstPtr = Op.getOperand(1);
13817   SDValue SrcPtr = Op.getOperand(2);
13818   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
13819   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
13820   SDLoc DL(Op);
13821
13822   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
13823                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
13824                        false,
13825                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
13826 }
13827
13828 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
13829 // amount is a constant. Takes immediate version of shift as input.
13830 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
13831                                           SDValue SrcOp, uint64_t ShiftAmt,
13832                                           SelectionDAG &DAG) {
13833   MVT ElementType = VT.getVectorElementType();
13834
13835   // Fold this packed shift into its first operand if ShiftAmt is 0.
13836   if (ShiftAmt == 0)
13837     return SrcOp;
13838
13839   // Check for ShiftAmt >= element width
13840   if (ShiftAmt >= ElementType.getSizeInBits()) {
13841     if (Opc == X86ISD::VSRAI)
13842       ShiftAmt = ElementType.getSizeInBits() - 1;
13843     else
13844       return DAG.getConstant(0, VT);
13845   }
13846
13847   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
13848          && "Unknown target vector shift-by-constant node");
13849
13850   // Fold this packed vector shift into a build vector if SrcOp is a
13851   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
13852   if (VT == SrcOp.getSimpleValueType() &&
13853       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
13854     SmallVector<SDValue, 8> Elts;
13855     unsigned NumElts = SrcOp->getNumOperands();
13856     ConstantSDNode *ND;
13857
13858     switch(Opc) {
13859     default: llvm_unreachable(nullptr);
13860     case X86ISD::VSHLI:
13861       for (unsigned i=0; i!=NumElts; ++i) {
13862         SDValue CurrentOp = SrcOp->getOperand(i);
13863         if (CurrentOp->getOpcode() == ISD::UNDEF) {
13864           Elts.push_back(CurrentOp);
13865           continue;
13866         }
13867         ND = cast<ConstantSDNode>(CurrentOp);
13868         const APInt &C = ND->getAPIntValue();
13869         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
13870       }
13871       break;
13872     case X86ISD::VSRLI:
13873       for (unsigned i=0; i!=NumElts; ++i) {
13874         SDValue CurrentOp = SrcOp->getOperand(i);
13875         if (CurrentOp->getOpcode() == ISD::UNDEF) {
13876           Elts.push_back(CurrentOp);
13877           continue;
13878         }
13879         ND = cast<ConstantSDNode>(CurrentOp);
13880         const APInt &C = ND->getAPIntValue();
13881         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
13882       }
13883       break;
13884     case X86ISD::VSRAI:
13885       for (unsigned i=0; i!=NumElts; ++i) {
13886         SDValue CurrentOp = SrcOp->getOperand(i);
13887         if (CurrentOp->getOpcode() == ISD::UNDEF) {
13888           Elts.push_back(CurrentOp);
13889           continue;
13890         }
13891         ND = cast<ConstantSDNode>(CurrentOp);
13892         const APInt &C = ND->getAPIntValue();
13893         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
13894       }
13895       break;
13896     }
13897
13898     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
13899   }
13900
13901   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
13902 }
13903
13904 // getTargetVShiftNode - Handle vector element shifts where the shift amount
13905 // may or may not be a constant. Takes immediate version of shift as input.
13906 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
13907                                    SDValue SrcOp, SDValue ShAmt,
13908                                    SelectionDAG &DAG) {
13909   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
13910
13911   // Catch shift-by-constant.
13912   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
13913     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
13914                                       CShAmt->getZExtValue(), DAG);
13915
13916   // Change opcode to non-immediate version
13917   switch (Opc) {
13918     default: llvm_unreachable("Unknown target vector shift node");
13919     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
13920     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
13921     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
13922   }
13923
13924   // Need to build a vector containing shift amount
13925   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
13926   SDValue ShOps[4];
13927   ShOps[0] = ShAmt;
13928   ShOps[1] = DAG.getConstant(0, MVT::i32);
13929   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
13930   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, ShOps);
13931
13932   // The return type has to be a 128-bit type with the same element
13933   // type as the input type.
13934   MVT EltVT = VT.getVectorElementType();
13935   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
13936
13937   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
13938   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
13939 }
13940
13941 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
13942   SDLoc dl(Op);
13943   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
13944   switch (IntNo) {
13945   default: return SDValue();    // Don't custom lower most intrinsics.
13946   // Comparison intrinsics.
13947   case Intrinsic::x86_sse_comieq_ss:
13948   case Intrinsic::x86_sse_comilt_ss:
13949   case Intrinsic::x86_sse_comile_ss:
13950   case Intrinsic::x86_sse_comigt_ss:
13951   case Intrinsic::x86_sse_comige_ss:
13952   case Intrinsic::x86_sse_comineq_ss:
13953   case Intrinsic::x86_sse_ucomieq_ss:
13954   case Intrinsic::x86_sse_ucomilt_ss:
13955   case Intrinsic::x86_sse_ucomile_ss:
13956   case Intrinsic::x86_sse_ucomigt_ss:
13957   case Intrinsic::x86_sse_ucomige_ss:
13958   case Intrinsic::x86_sse_ucomineq_ss:
13959   case Intrinsic::x86_sse2_comieq_sd:
13960   case Intrinsic::x86_sse2_comilt_sd:
13961   case Intrinsic::x86_sse2_comile_sd:
13962   case Intrinsic::x86_sse2_comigt_sd:
13963   case Intrinsic::x86_sse2_comige_sd:
13964   case Intrinsic::x86_sse2_comineq_sd:
13965   case Intrinsic::x86_sse2_ucomieq_sd:
13966   case Intrinsic::x86_sse2_ucomilt_sd:
13967   case Intrinsic::x86_sse2_ucomile_sd:
13968   case Intrinsic::x86_sse2_ucomigt_sd:
13969   case Intrinsic::x86_sse2_ucomige_sd:
13970   case Intrinsic::x86_sse2_ucomineq_sd: {
13971     unsigned Opc;
13972     ISD::CondCode CC;
13973     switch (IntNo) {
13974     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13975     case Intrinsic::x86_sse_comieq_ss:
13976     case Intrinsic::x86_sse2_comieq_sd:
13977       Opc = X86ISD::COMI;
13978       CC = ISD::SETEQ;
13979       break;
13980     case Intrinsic::x86_sse_comilt_ss:
13981     case Intrinsic::x86_sse2_comilt_sd:
13982       Opc = X86ISD::COMI;
13983       CC = ISD::SETLT;
13984       break;
13985     case Intrinsic::x86_sse_comile_ss:
13986     case Intrinsic::x86_sse2_comile_sd:
13987       Opc = X86ISD::COMI;
13988       CC = ISD::SETLE;
13989       break;
13990     case Intrinsic::x86_sse_comigt_ss:
13991     case Intrinsic::x86_sse2_comigt_sd:
13992       Opc = X86ISD::COMI;
13993       CC = ISD::SETGT;
13994       break;
13995     case Intrinsic::x86_sse_comige_ss:
13996     case Intrinsic::x86_sse2_comige_sd:
13997       Opc = X86ISD::COMI;
13998       CC = ISD::SETGE;
13999       break;
14000     case Intrinsic::x86_sse_comineq_ss:
14001     case Intrinsic::x86_sse2_comineq_sd:
14002       Opc = X86ISD::COMI;
14003       CC = ISD::SETNE;
14004       break;
14005     case Intrinsic::x86_sse_ucomieq_ss:
14006     case Intrinsic::x86_sse2_ucomieq_sd:
14007       Opc = X86ISD::UCOMI;
14008       CC = ISD::SETEQ;
14009       break;
14010     case Intrinsic::x86_sse_ucomilt_ss:
14011     case Intrinsic::x86_sse2_ucomilt_sd:
14012       Opc = X86ISD::UCOMI;
14013       CC = ISD::SETLT;
14014       break;
14015     case Intrinsic::x86_sse_ucomile_ss:
14016     case Intrinsic::x86_sse2_ucomile_sd:
14017       Opc = X86ISD::UCOMI;
14018       CC = ISD::SETLE;
14019       break;
14020     case Intrinsic::x86_sse_ucomigt_ss:
14021     case Intrinsic::x86_sse2_ucomigt_sd:
14022       Opc = X86ISD::UCOMI;
14023       CC = ISD::SETGT;
14024       break;
14025     case Intrinsic::x86_sse_ucomige_ss:
14026     case Intrinsic::x86_sse2_ucomige_sd:
14027       Opc = X86ISD::UCOMI;
14028       CC = ISD::SETGE;
14029       break;
14030     case Intrinsic::x86_sse_ucomineq_ss:
14031     case Intrinsic::x86_sse2_ucomineq_sd:
14032       Opc = X86ISD::UCOMI;
14033       CC = ISD::SETNE;
14034       break;
14035     }
14036
14037     SDValue LHS = Op.getOperand(1);
14038     SDValue RHS = Op.getOperand(2);
14039     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
14040     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
14041     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
14042     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14043                                 DAG.getConstant(X86CC, MVT::i8), Cond);
14044     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
14045   }
14046
14047   // Arithmetic intrinsics.
14048   case Intrinsic::x86_sse2_pmulu_dq:
14049   case Intrinsic::x86_avx2_pmulu_dq:
14050     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
14051                        Op.getOperand(1), Op.getOperand(2));
14052
14053   case Intrinsic::x86_sse41_pmuldq:
14054   case Intrinsic::x86_avx2_pmul_dq:
14055     return DAG.getNode(X86ISD::PMULDQ, dl, Op.getValueType(),
14056                        Op.getOperand(1), Op.getOperand(2));
14057
14058   case Intrinsic::x86_sse2_pmulhu_w:
14059   case Intrinsic::x86_avx2_pmulhu_w:
14060     return DAG.getNode(ISD::MULHU, dl, Op.getValueType(),
14061                        Op.getOperand(1), Op.getOperand(2));
14062
14063   case Intrinsic::x86_sse2_pmulh_w:
14064   case Intrinsic::x86_avx2_pmulh_w:
14065     return DAG.getNode(ISD::MULHS, dl, Op.getValueType(),
14066                        Op.getOperand(1), Op.getOperand(2));
14067
14068   // SSE2/AVX2 sub with unsigned saturation intrinsics
14069   case Intrinsic::x86_sse2_psubus_b:
14070   case Intrinsic::x86_sse2_psubus_w:
14071   case Intrinsic::x86_avx2_psubus_b:
14072   case Intrinsic::x86_avx2_psubus_w:
14073     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
14074                        Op.getOperand(1), Op.getOperand(2));
14075
14076   // SSE3/AVX horizontal add/sub intrinsics
14077   case Intrinsic::x86_sse3_hadd_ps:
14078   case Intrinsic::x86_sse3_hadd_pd:
14079   case Intrinsic::x86_avx_hadd_ps_256:
14080   case Intrinsic::x86_avx_hadd_pd_256:
14081   case Intrinsic::x86_sse3_hsub_ps:
14082   case Intrinsic::x86_sse3_hsub_pd:
14083   case Intrinsic::x86_avx_hsub_ps_256:
14084   case Intrinsic::x86_avx_hsub_pd_256:
14085   case Intrinsic::x86_ssse3_phadd_w_128:
14086   case Intrinsic::x86_ssse3_phadd_d_128:
14087   case Intrinsic::x86_avx2_phadd_w:
14088   case Intrinsic::x86_avx2_phadd_d:
14089   case Intrinsic::x86_ssse3_phsub_w_128:
14090   case Intrinsic::x86_ssse3_phsub_d_128:
14091   case Intrinsic::x86_avx2_phsub_w:
14092   case Intrinsic::x86_avx2_phsub_d: {
14093     unsigned Opcode;
14094     switch (IntNo) {
14095     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14096     case Intrinsic::x86_sse3_hadd_ps:
14097     case Intrinsic::x86_sse3_hadd_pd:
14098     case Intrinsic::x86_avx_hadd_ps_256:
14099     case Intrinsic::x86_avx_hadd_pd_256:
14100       Opcode = X86ISD::FHADD;
14101       break;
14102     case Intrinsic::x86_sse3_hsub_ps:
14103     case Intrinsic::x86_sse3_hsub_pd:
14104     case Intrinsic::x86_avx_hsub_ps_256:
14105     case Intrinsic::x86_avx_hsub_pd_256:
14106       Opcode = X86ISD::FHSUB;
14107       break;
14108     case Intrinsic::x86_ssse3_phadd_w_128:
14109     case Intrinsic::x86_ssse3_phadd_d_128:
14110     case Intrinsic::x86_avx2_phadd_w:
14111     case Intrinsic::x86_avx2_phadd_d:
14112       Opcode = X86ISD::HADD;
14113       break;
14114     case Intrinsic::x86_ssse3_phsub_w_128:
14115     case Intrinsic::x86_ssse3_phsub_d_128:
14116     case Intrinsic::x86_avx2_phsub_w:
14117     case Intrinsic::x86_avx2_phsub_d:
14118       Opcode = X86ISD::HSUB;
14119       break;
14120     }
14121     return DAG.getNode(Opcode, dl, Op.getValueType(),
14122                        Op.getOperand(1), Op.getOperand(2));
14123   }
14124
14125   // SSE2/SSE41/AVX2 integer max/min intrinsics.
14126   case Intrinsic::x86_sse2_pmaxu_b:
14127   case Intrinsic::x86_sse41_pmaxuw:
14128   case Intrinsic::x86_sse41_pmaxud:
14129   case Intrinsic::x86_avx2_pmaxu_b:
14130   case Intrinsic::x86_avx2_pmaxu_w:
14131   case Intrinsic::x86_avx2_pmaxu_d:
14132   case Intrinsic::x86_sse2_pminu_b:
14133   case Intrinsic::x86_sse41_pminuw:
14134   case Intrinsic::x86_sse41_pminud:
14135   case Intrinsic::x86_avx2_pminu_b:
14136   case Intrinsic::x86_avx2_pminu_w:
14137   case Intrinsic::x86_avx2_pminu_d:
14138   case Intrinsic::x86_sse41_pmaxsb:
14139   case Intrinsic::x86_sse2_pmaxs_w:
14140   case Intrinsic::x86_sse41_pmaxsd:
14141   case Intrinsic::x86_avx2_pmaxs_b:
14142   case Intrinsic::x86_avx2_pmaxs_w:
14143   case Intrinsic::x86_avx2_pmaxs_d:
14144   case Intrinsic::x86_sse41_pminsb:
14145   case Intrinsic::x86_sse2_pmins_w:
14146   case Intrinsic::x86_sse41_pminsd:
14147   case Intrinsic::x86_avx2_pmins_b:
14148   case Intrinsic::x86_avx2_pmins_w:
14149   case Intrinsic::x86_avx2_pmins_d: {
14150     unsigned Opcode;
14151     switch (IntNo) {
14152     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14153     case Intrinsic::x86_sse2_pmaxu_b:
14154     case Intrinsic::x86_sse41_pmaxuw:
14155     case Intrinsic::x86_sse41_pmaxud:
14156     case Intrinsic::x86_avx2_pmaxu_b:
14157     case Intrinsic::x86_avx2_pmaxu_w:
14158     case Intrinsic::x86_avx2_pmaxu_d:
14159       Opcode = X86ISD::UMAX;
14160       break;
14161     case Intrinsic::x86_sse2_pminu_b:
14162     case Intrinsic::x86_sse41_pminuw:
14163     case Intrinsic::x86_sse41_pminud:
14164     case Intrinsic::x86_avx2_pminu_b:
14165     case Intrinsic::x86_avx2_pminu_w:
14166     case Intrinsic::x86_avx2_pminu_d:
14167       Opcode = X86ISD::UMIN;
14168       break;
14169     case Intrinsic::x86_sse41_pmaxsb:
14170     case Intrinsic::x86_sse2_pmaxs_w:
14171     case Intrinsic::x86_sse41_pmaxsd:
14172     case Intrinsic::x86_avx2_pmaxs_b:
14173     case Intrinsic::x86_avx2_pmaxs_w:
14174     case Intrinsic::x86_avx2_pmaxs_d:
14175       Opcode = X86ISD::SMAX;
14176       break;
14177     case Intrinsic::x86_sse41_pminsb:
14178     case Intrinsic::x86_sse2_pmins_w:
14179     case Intrinsic::x86_sse41_pminsd:
14180     case Intrinsic::x86_avx2_pmins_b:
14181     case Intrinsic::x86_avx2_pmins_w:
14182     case Intrinsic::x86_avx2_pmins_d:
14183       Opcode = X86ISD::SMIN;
14184       break;
14185     }
14186     return DAG.getNode(Opcode, dl, Op.getValueType(),
14187                        Op.getOperand(1), Op.getOperand(2));
14188   }
14189
14190   // SSE/SSE2/AVX floating point max/min intrinsics.
14191   case Intrinsic::x86_sse_max_ps:
14192   case Intrinsic::x86_sse2_max_pd:
14193   case Intrinsic::x86_avx_max_ps_256:
14194   case Intrinsic::x86_avx_max_pd_256:
14195   case Intrinsic::x86_sse_min_ps:
14196   case Intrinsic::x86_sse2_min_pd:
14197   case Intrinsic::x86_avx_min_ps_256:
14198   case Intrinsic::x86_avx_min_pd_256: {
14199     unsigned Opcode;
14200     switch (IntNo) {
14201     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14202     case Intrinsic::x86_sse_max_ps:
14203     case Intrinsic::x86_sse2_max_pd:
14204     case Intrinsic::x86_avx_max_ps_256:
14205     case Intrinsic::x86_avx_max_pd_256:
14206       Opcode = X86ISD::FMAX;
14207       break;
14208     case Intrinsic::x86_sse_min_ps:
14209     case Intrinsic::x86_sse2_min_pd:
14210     case Intrinsic::x86_avx_min_ps_256:
14211     case Intrinsic::x86_avx_min_pd_256:
14212       Opcode = X86ISD::FMIN;
14213       break;
14214     }
14215     return DAG.getNode(Opcode, dl, Op.getValueType(),
14216                        Op.getOperand(1), Op.getOperand(2));
14217   }
14218
14219   // AVX2 variable shift intrinsics
14220   case Intrinsic::x86_avx2_psllv_d:
14221   case Intrinsic::x86_avx2_psllv_q:
14222   case Intrinsic::x86_avx2_psllv_d_256:
14223   case Intrinsic::x86_avx2_psllv_q_256:
14224   case Intrinsic::x86_avx2_psrlv_d:
14225   case Intrinsic::x86_avx2_psrlv_q:
14226   case Intrinsic::x86_avx2_psrlv_d_256:
14227   case Intrinsic::x86_avx2_psrlv_q_256:
14228   case Intrinsic::x86_avx2_psrav_d:
14229   case Intrinsic::x86_avx2_psrav_d_256: {
14230     unsigned Opcode;
14231     switch (IntNo) {
14232     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14233     case Intrinsic::x86_avx2_psllv_d:
14234     case Intrinsic::x86_avx2_psllv_q:
14235     case Intrinsic::x86_avx2_psllv_d_256:
14236     case Intrinsic::x86_avx2_psllv_q_256:
14237       Opcode = ISD::SHL;
14238       break;
14239     case Intrinsic::x86_avx2_psrlv_d:
14240     case Intrinsic::x86_avx2_psrlv_q:
14241     case Intrinsic::x86_avx2_psrlv_d_256:
14242     case Intrinsic::x86_avx2_psrlv_q_256:
14243       Opcode = ISD::SRL;
14244       break;
14245     case Intrinsic::x86_avx2_psrav_d:
14246     case Intrinsic::x86_avx2_psrav_d_256:
14247       Opcode = ISD::SRA;
14248       break;
14249     }
14250     return DAG.getNode(Opcode, dl, Op.getValueType(),
14251                        Op.getOperand(1), Op.getOperand(2));
14252   }
14253
14254   case Intrinsic::x86_sse2_packssdw_128:
14255   case Intrinsic::x86_sse2_packsswb_128:
14256   case Intrinsic::x86_avx2_packssdw:
14257   case Intrinsic::x86_avx2_packsswb:
14258     return DAG.getNode(X86ISD::PACKSS, dl, Op.getValueType(),
14259                        Op.getOperand(1), Op.getOperand(2));
14260
14261   case Intrinsic::x86_sse2_packuswb_128:
14262   case Intrinsic::x86_sse41_packusdw:
14263   case Intrinsic::x86_avx2_packuswb:
14264   case Intrinsic::x86_avx2_packusdw:
14265     return DAG.getNode(X86ISD::PACKUS, dl, Op.getValueType(),
14266                        Op.getOperand(1), Op.getOperand(2));
14267
14268   case Intrinsic::x86_ssse3_pshuf_b_128:
14269   case Intrinsic::x86_avx2_pshuf_b:
14270     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
14271                        Op.getOperand(1), Op.getOperand(2));
14272
14273   case Intrinsic::x86_sse2_pshuf_d:
14274     return DAG.getNode(X86ISD::PSHUFD, dl, Op.getValueType(),
14275                        Op.getOperand(1), Op.getOperand(2));
14276
14277   case Intrinsic::x86_sse2_pshufl_w:
14278     return DAG.getNode(X86ISD::PSHUFLW, dl, Op.getValueType(),
14279                        Op.getOperand(1), Op.getOperand(2));
14280
14281   case Intrinsic::x86_sse2_pshufh_w:
14282     return DAG.getNode(X86ISD::PSHUFHW, dl, Op.getValueType(),
14283                        Op.getOperand(1), Op.getOperand(2));
14284
14285   case Intrinsic::x86_ssse3_psign_b_128:
14286   case Intrinsic::x86_ssse3_psign_w_128:
14287   case Intrinsic::x86_ssse3_psign_d_128:
14288   case Intrinsic::x86_avx2_psign_b:
14289   case Intrinsic::x86_avx2_psign_w:
14290   case Intrinsic::x86_avx2_psign_d:
14291     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
14292                        Op.getOperand(1), Op.getOperand(2));
14293
14294   case Intrinsic::x86_sse41_insertps:
14295     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
14296                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
14297
14298   case Intrinsic::x86_avx_vperm2f128_ps_256:
14299   case Intrinsic::x86_avx_vperm2f128_pd_256:
14300   case Intrinsic::x86_avx_vperm2f128_si_256:
14301   case Intrinsic::x86_avx2_vperm2i128:
14302     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
14303                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
14304
14305   case Intrinsic::x86_avx2_permd:
14306   case Intrinsic::x86_avx2_permps:
14307     // Operands intentionally swapped. Mask is last operand to intrinsic,
14308     // but second operand for node/instruction.
14309     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
14310                        Op.getOperand(2), Op.getOperand(1));
14311
14312   case Intrinsic::x86_sse_sqrt_ps:
14313   case Intrinsic::x86_sse2_sqrt_pd:
14314   case Intrinsic::x86_avx_sqrt_ps_256:
14315   case Intrinsic::x86_avx_sqrt_pd_256:
14316     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
14317
14318   // ptest and testp intrinsics. The intrinsic these come from are designed to
14319   // return an integer value, not just an instruction so lower it to the ptest
14320   // or testp pattern and a setcc for the result.
14321   case Intrinsic::x86_sse41_ptestz:
14322   case Intrinsic::x86_sse41_ptestc:
14323   case Intrinsic::x86_sse41_ptestnzc:
14324   case Intrinsic::x86_avx_ptestz_256:
14325   case Intrinsic::x86_avx_ptestc_256:
14326   case Intrinsic::x86_avx_ptestnzc_256:
14327   case Intrinsic::x86_avx_vtestz_ps:
14328   case Intrinsic::x86_avx_vtestc_ps:
14329   case Intrinsic::x86_avx_vtestnzc_ps:
14330   case Intrinsic::x86_avx_vtestz_pd:
14331   case Intrinsic::x86_avx_vtestc_pd:
14332   case Intrinsic::x86_avx_vtestnzc_pd:
14333   case Intrinsic::x86_avx_vtestz_ps_256:
14334   case Intrinsic::x86_avx_vtestc_ps_256:
14335   case Intrinsic::x86_avx_vtestnzc_ps_256:
14336   case Intrinsic::x86_avx_vtestz_pd_256:
14337   case Intrinsic::x86_avx_vtestc_pd_256:
14338   case Intrinsic::x86_avx_vtestnzc_pd_256: {
14339     bool IsTestPacked = false;
14340     unsigned X86CC;
14341     switch (IntNo) {
14342     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
14343     case Intrinsic::x86_avx_vtestz_ps:
14344     case Intrinsic::x86_avx_vtestz_pd:
14345     case Intrinsic::x86_avx_vtestz_ps_256:
14346     case Intrinsic::x86_avx_vtestz_pd_256:
14347       IsTestPacked = true; // Fallthrough
14348     case Intrinsic::x86_sse41_ptestz:
14349     case Intrinsic::x86_avx_ptestz_256:
14350       // ZF = 1
14351       X86CC = X86::COND_E;
14352       break;
14353     case Intrinsic::x86_avx_vtestc_ps:
14354     case Intrinsic::x86_avx_vtestc_pd:
14355     case Intrinsic::x86_avx_vtestc_ps_256:
14356     case Intrinsic::x86_avx_vtestc_pd_256:
14357       IsTestPacked = true; // Fallthrough
14358     case Intrinsic::x86_sse41_ptestc:
14359     case Intrinsic::x86_avx_ptestc_256:
14360       // CF = 1
14361       X86CC = X86::COND_B;
14362       break;
14363     case Intrinsic::x86_avx_vtestnzc_ps:
14364     case Intrinsic::x86_avx_vtestnzc_pd:
14365     case Intrinsic::x86_avx_vtestnzc_ps_256:
14366     case Intrinsic::x86_avx_vtestnzc_pd_256:
14367       IsTestPacked = true; // Fallthrough
14368     case Intrinsic::x86_sse41_ptestnzc:
14369     case Intrinsic::x86_avx_ptestnzc_256:
14370       // ZF and CF = 0
14371       X86CC = X86::COND_A;
14372       break;
14373     }
14374
14375     SDValue LHS = Op.getOperand(1);
14376     SDValue RHS = Op.getOperand(2);
14377     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
14378     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
14379     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
14380     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
14381     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
14382   }
14383   case Intrinsic::x86_avx512_kortestz_w:
14384   case Intrinsic::x86_avx512_kortestc_w: {
14385     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
14386     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
14387     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
14388     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
14389     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
14390     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
14391     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
14392   }
14393
14394   // SSE/AVX shift intrinsics
14395   case Intrinsic::x86_sse2_psll_w:
14396   case Intrinsic::x86_sse2_psll_d:
14397   case Intrinsic::x86_sse2_psll_q:
14398   case Intrinsic::x86_avx2_psll_w:
14399   case Intrinsic::x86_avx2_psll_d:
14400   case Intrinsic::x86_avx2_psll_q:
14401   case Intrinsic::x86_sse2_psrl_w:
14402   case Intrinsic::x86_sse2_psrl_d:
14403   case Intrinsic::x86_sse2_psrl_q:
14404   case Intrinsic::x86_avx2_psrl_w:
14405   case Intrinsic::x86_avx2_psrl_d:
14406   case Intrinsic::x86_avx2_psrl_q:
14407   case Intrinsic::x86_sse2_psra_w:
14408   case Intrinsic::x86_sse2_psra_d:
14409   case Intrinsic::x86_avx2_psra_w:
14410   case Intrinsic::x86_avx2_psra_d: {
14411     unsigned Opcode;
14412     switch (IntNo) {
14413     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14414     case Intrinsic::x86_sse2_psll_w:
14415     case Intrinsic::x86_sse2_psll_d:
14416     case Intrinsic::x86_sse2_psll_q:
14417     case Intrinsic::x86_avx2_psll_w:
14418     case Intrinsic::x86_avx2_psll_d:
14419     case Intrinsic::x86_avx2_psll_q:
14420       Opcode = X86ISD::VSHL;
14421       break;
14422     case Intrinsic::x86_sse2_psrl_w:
14423     case Intrinsic::x86_sse2_psrl_d:
14424     case Intrinsic::x86_sse2_psrl_q:
14425     case Intrinsic::x86_avx2_psrl_w:
14426     case Intrinsic::x86_avx2_psrl_d:
14427     case Intrinsic::x86_avx2_psrl_q:
14428       Opcode = X86ISD::VSRL;
14429       break;
14430     case Intrinsic::x86_sse2_psra_w:
14431     case Intrinsic::x86_sse2_psra_d:
14432     case Intrinsic::x86_avx2_psra_w:
14433     case Intrinsic::x86_avx2_psra_d:
14434       Opcode = X86ISD::VSRA;
14435       break;
14436     }
14437     return DAG.getNode(Opcode, dl, Op.getValueType(),
14438                        Op.getOperand(1), Op.getOperand(2));
14439   }
14440
14441   // SSE/AVX immediate shift intrinsics
14442   case Intrinsic::x86_sse2_pslli_w:
14443   case Intrinsic::x86_sse2_pslli_d:
14444   case Intrinsic::x86_sse2_pslli_q:
14445   case Intrinsic::x86_avx2_pslli_w:
14446   case Intrinsic::x86_avx2_pslli_d:
14447   case Intrinsic::x86_avx2_pslli_q:
14448   case Intrinsic::x86_sse2_psrli_w:
14449   case Intrinsic::x86_sse2_psrli_d:
14450   case Intrinsic::x86_sse2_psrli_q:
14451   case Intrinsic::x86_avx2_psrli_w:
14452   case Intrinsic::x86_avx2_psrli_d:
14453   case Intrinsic::x86_avx2_psrli_q:
14454   case Intrinsic::x86_sse2_psrai_w:
14455   case Intrinsic::x86_sse2_psrai_d:
14456   case Intrinsic::x86_avx2_psrai_w:
14457   case Intrinsic::x86_avx2_psrai_d: {
14458     unsigned Opcode;
14459     switch (IntNo) {
14460     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14461     case Intrinsic::x86_sse2_pslli_w:
14462     case Intrinsic::x86_sse2_pslli_d:
14463     case Intrinsic::x86_sse2_pslli_q:
14464     case Intrinsic::x86_avx2_pslli_w:
14465     case Intrinsic::x86_avx2_pslli_d:
14466     case Intrinsic::x86_avx2_pslli_q:
14467       Opcode = X86ISD::VSHLI;
14468       break;
14469     case Intrinsic::x86_sse2_psrli_w:
14470     case Intrinsic::x86_sse2_psrli_d:
14471     case Intrinsic::x86_sse2_psrli_q:
14472     case Intrinsic::x86_avx2_psrli_w:
14473     case Intrinsic::x86_avx2_psrli_d:
14474     case Intrinsic::x86_avx2_psrli_q:
14475       Opcode = X86ISD::VSRLI;
14476       break;
14477     case Intrinsic::x86_sse2_psrai_w:
14478     case Intrinsic::x86_sse2_psrai_d:
14479     case Intrinsic::x86_avx2_psrai_w:
14480     case Intrinsic::x86_avx2_psrai_d:
14481       Opcode = X86ISD::VSRAI;
14482       break;
14483     }
14484     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
14485                                Op.getOperand(1), Op.getOperand(2), DAG);
14486   }
14487
14488   case Intrinsic::x86_sse42_pcmpistria128:
14489   case Intrinsic::x86_sse42_pcmpestria128:
14490   case Intrinsic::x86_sse42_pcmpistric128:
14491   case Intrinsic::x86_sse42_pcmpestric128:
14492   case Intrinsic::x86_sse42_pcmpistrio128:
14493   case Intrinsic::x86_sse42_pcmpestrio128:
14494   case Intrinsic::x86_sse42_pcmpistris128:
14495   case Intrinsic::x86_sse42_pcmpestris128:
14496   case Intrinsic::x86_sse42_pcmpistriz128:
14497   case Intrinsic::x86_sse42_pcmpestriz128: {
14498     unsigned Opcode;
14499     unsigned X86CC;
14500     switch (IntNo) {
14501     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14502     case Intrinsic::x86_sse42_pcmpistria128:
14503       Opcode = X86ISD::PCMPISTRI;
14504       X86CC = X86::COND_A;
14505       break;
14506     case Intrinsic::x86_sse42_pcmpestria128:
14507       Opcode = X86ISD::PCMPESTRI;
14508       X86CC = X86::COND_A;
14509       break;
14510     case Intrinsic::x86_sse42_pcmpistric128:
14511       Opcode = X86ISD::PCMPISTRI;
14512       X86CC = X86::COND_B;
14513       break;
14514     case Intrinsic::x86_sse42_pcmpestric128:
14515       Opcode = X86ISD::PCMPESTRI;
14516       X86CC = X86::COND_B;
14517       break;
14518     case Intrinsic::x86_sse42_pcmpistrio128:
14519       Opcode = X86ISD::PCMPISTRI;
14520       X86CC = X86::COND_O;
14521       break;
14522     case Intrinsic::x86_sse42_pcmpestrio128:
14523       Opcode = X86ISD::PCMPESTRI;
14524       X86CC = X86::COND_O;
14525       break;
14526     case Intrinsic::x86_sse42_pcmpistris128:
14527       Opcode = X86ISD::PCMPISTRI;
14528       X86CC = X86::COND_S;
14529       break;
14530     case Intrinsic::x86_sse42_pcmpestris128:
14531       Opcode = X86ISD::PCMPESTRI;
14532       X86CC = X86::COND_S;
14533       break;
14534     case Intrinsic::x86_sse42_pcmpistriz128:
14535       Opcode = X86ISD::PCMPISTRI;
14536       X86CC = X86::COND_E;
14537       break;
14538     case Intrinsic::x86_sse42_pcmpestriz128:
14539       Opcode = X86ISD::PCMPESTRI;
14540       X86CC = X86::COND_E;
14541       break;
14542     }
14543     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
14544     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
14545     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
14546     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14547                                 DAG.getConstant(X86CC, MVT::i8),
14548                                 SDValue(PCMP.getNode(), 1));
14549     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
14550   }
14551
14552   case Intrinsic::x86_sse42_pcmpistri128:
14553   case Intrinsic::x86_sse42_pcmpestri128: {
14554     unsigned Opcode;
14555     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
14556       Opcode = X86ISD::PCMPISTRI;
14557     else
14558       Opcode = X86ISD::PCMPESTRI;
14559
14560     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
14561     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
14562     return DAG.getNode(Opcode, dl, VTs, NewOps);
14563   }
14564   case Intrinsic::x86_fma_vfmadd_ps:
14565   case Intrinsic::x86_fma_vfmadd_pd:
14566   case Intrinsic::x86_fma_vfmsub_ps:
14567   case Intrinsic::x86_fma_vfmsub_pd:
14568   case Intrinsic::x86_fma_vfnmadd_ps:
14569   case Intrinsic::x86_fma_vfnmadd_pd:
14570   case Intrinsic::x86_fma_vfnmsub_ps:
14571   case Intrinsic::x86_fma_vfnmsub_pd:
14572   case Intrinsic::x86_fma_vfmaddsub_ps:
14573   case Intrinsic::x86_fma_vfmaddsub_pd:
14574   case Intrinsic::x86_fma_vfmsubadd_ps:
14575   case Intrinsic::x86_fma_vfmsubadd_pd:
14576   case Intrinsic::x86_fma_vfmadd_ps_256:
14577   case Intrinsic::x86_fma_vfmadd_pd_256:
14578   case Intrinsic::x86_fma_vfmsub_ps_256:
14579   case Intrinsic::x86_fma_vfmsub_pd_256:
14580   case Intrinsic::x86_fma_vfnmadd_ps_256:
14581   case Intrinsic::x86_fma_vfnmadd_pd_256:
14582   case Intrinsic::x86_fma_vfnmsub_ps_256:
14583   case Intrinsic::x86_fma_vfnmsub_pd_256:
14584   case Intrinsic::x86_fma_vfmaddsub_ps_256:
14585   case Intrinsic::x86_fma_vfmaddsub_pd_256:
14586   case Intrinsic::x86_fma_vfmsubadd_ps_256:
14587   case Intrinsic::x86_fma_vfmsubadd_pd_256:
14588   case Intrinsic::x86_fma_vfmadd_ps_512:
14589   case Intrinsic::x86_fma_vfmadd_pd_512:
14590   case Intrinsic::x86_fma_vfmsub_ps_512:
14591   case Intrinsic::x86_fma_vfmsub_pd_512:
14592   case Intrinsic::x86_fma_vfnmadd_ps_512:
14593   case Intrinsic::x86_fma_vfnmadd_pd_512:
14594   case Intrinsic::x86_fma_vfnmsub_ps_512:
14595   case Intrinsic::x86_fma_vfnmsub_pd_512:
14596   case Intrinsic::x86_fma_vfmaddsub_ps_512:
14597   case Intrinsic::x86_fma_vfmaddsub_pd_512:
14598   case Intrinsic::x86_fma_vfmsubadd_ps_512:
14599   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
14600     unsigned Opc;
14601     switch (IntNo) {
14602     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14603     case Intrinsic::x86_fma_vfmadd_ps:
14604     case Intrinsic::x86_fma_vfmadd_pd:
14605     case Intrinsic::x86_fma_vfmadd_ps_256:
14606     case Intrinsic::x86_fma_vfmadd_pd_256:
14607     case Intrinsic::x86_fma_vfmadd_ps_512:
14608     case Intrinsic::x86_fma_vfmadd_pd_512:
14609       Opc = X86ISD::FMADD;
14610       break;
14611     case Intrinsic::x86_fma_vfmsub_ps:
14612     case Intrinsic::x86_fma_vfmsub_pd:
14613     case Intrinsic::x86_fma_vfmsub_ps_256:
14614     case Intrinsic::x86_fma_vfmsub_pd_256:
14615     case Intrinsic::x86_fma_vfmsub_ps_512:
14616     case Intrinsic::x86_fma_vfmsub_pd_512:
14617       Opc = X86ISD::FMSUB;
14618       break;
14619     case Intrinsic::x86_fma_vfnmadd_ps:
14620     case Intrinsic::x86_fma_vfnmadd_pd:
14621     case Intrinsic::x86_fma_vfnmadd_ps_256:
14622     case Intrinsic::x86_fma_vfnmadd_pd_256:
14623     case Intrinsic::x86_fma_vfnmadd_ps_512:
14624     case Intrinsic::x86_fma_vfnmadd_pd_512:
14625       Opc = X86ISD::FNMADD;
14626       break;
14627     case Intrinsic::x86_fma_vfnmsub_ps:
14628     case Intrinsic::x86_fma_vfnmsub_pd:
14629     case Intrinsic::x86_fma_vfnmsub_ps_256:
14630     case Intrinsic::x86_fma_vfnmsub_pd_256:
14631     case Intrinsic::x86_fma_vfnmsub_ps_512:
14632     case Intrinsic::x86_fma_vfnmsub_pd_512:
14633       Opc = X86ISD::FNMSUB;
14634       break;
14635     case Intrinsic::x86_fma_vfmaddsub_ps:
14636     case Intrinsic::x86_fma_vfmaddsub_pd:
14637     case Intrinsic::x86_fma_vfmaddsub_ps_256:
14638     case Intrinsic::x86_fma_vfmaddsub_pd_256:
14639     case Intrinsic::x86_fma_vfmaddsub_ps_512:
14640     case Intrinsic::x86_fma_vfmaddsub_pd_512:
14641       Opc = X86ISD::FMADDSUB;
14642       break;
14643     case Intrinsic::x86_fma_vfmsubadd_ps:
14644     case Intrinsic::x86_fma_vfmsubadd_pd:
14645     case Intrinsic::x86_fma_vfmsubadd_ps_256:
14646     case Intrinsic::x86_fma_vfmsubadd_pd_256:
14647     case Intrinsic::x86_fma_vfmsubadd_ps_512:
14648     case Intrinsic::x86_fma_vfmsubadd_pd_512:
14649       Opc = X86ISD::FMSUBADD;
14650       break;
14651     }
14652
14653     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
14654                        Op.getOperand(2), Op.getOperand(3));
14655   }
14656   }
14657 }
14658
14659 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
14660                               SDValue Src, SDValue Mask, SDValue Base,
14661                               SDValue Index, SDValue ScaleOp, SDValue Chain,
14662                               const X86Subtarget * Subtarget) {
14663   SDLoc dl(Op);
14664   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
14665   assert(C && "Invalid scale type");
14666   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
14667   EVT MaskVT = MVT::getVectorVT(MVT::i1,
14668                              Index.getSimpleValueType().getVectorNumElements());
14669   SDValue MaskInReg;
14670   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
14671   if (MaskC)
14672     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
14673   else
14674     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
14675   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
14676   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
14677   SDValue Segment = DAG.getRegister(0, MVT::i32);
14678   if (Src.getOpcode() == ISD::UNDEF)
14679     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
14680   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
14681   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
14682   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
14683   return DAG.getMergeValues(RetOps, dl);
14684 }
14685
14686 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
14687                                SDValue Src, SDValue Mask, SDValue Base,
14688                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
14689   SDLoc dl(Op);
14690   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
14691   assert(C && "Invalid scale type");
14692   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
14693   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
14694   SDValue Segment = DAG.getRegister(0, MVT::i32);
14695   EVT MaskVT = MVT::getVectorVT(MVT::i1,
14696                              Index.getSimpleValueType().getVectorNumElements());
14697   SDValue MaskInReg;
14698   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
14699   if (MaskC)
14700     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
14701   else
14702     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
14703   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
14704   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
14705   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
14706   return SDValue(Res, 1);
14707 }
14708
14709 static SDValue getPrefetchNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
14710                                SDValue Mask, SDValue Base, SDValue Index,
14711                                SDValue ScaleOp, SDValue Chain) {
14712   SDLoc dl(Op);
14713   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
14714   assert(C && "Invalid scale type");
14715   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
14716   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
14717   SDValue Segment = DAG.getRegister(0, MVT::i32);
14718   EVT MaskVT =
14719     MVT::getVectorVT(MVT::i1, Index.getSimpleValueType().getVectorNumElements());
14720   SDValue MaskInReg;
14721   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
14722   if (MaskC)
14723     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
14724   else
14725     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
14726   //SDVTList VTs = DAG.getVTList(MVT::Other);
14727   SDValue Ops[] = {MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
14728   SDNode *Res = DAG.getMachineNode(Opc, dl, MVT::Other, Ops);
14729   return SDValue(Res, 0);
14730 }
14731
14732 // getReadPerformanceCounter - Handles the lowering of builtin intrinsics that
14733 // read performance monitor counters (x86_rdpmc).
14734 static void getReadPerformanceCounter(SDNode *N, SDLoc DL,
14735                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
14736                               SmallVectorImpl<SDValue> &Results) {
14737   assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
14738   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14739   SDValue LO, HI;
14740
14741   // The ECX register is used to select the index of the performance counter
14742   // to read.
14743   SDValue Chain = DAG.getCopyToReg(N->getOperand(0), DL, X86::ECX,
14744                                    N->getOperand(2));
14745   SDValue rd = DAG.getNode(X86ISD::RDPMC_DAG, DL, Tys, Chain);
14746
14747   // Reads the content of a 64-bit performance counter and returns it in the
14748   // registers EDX:EAX.
14749   if (Subtarget->is64Bit()) {
14750     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
14751     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
14752                             LO.getValue(2));
14753   } else {
14754     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
14755     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
14756                             LO.getValue(2));
14757   }
14758   Chain = HI.getValue(1);
14759
14760   if (Subtarget->is64Bit()) {
14761     // The EAX register is loaded with the low-order 32 bits. The EDX register
14762     // is loaded with the supported high-order bits of the counter.
14763     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
14764                               DAG.getConstant(32, MVT::i8));
14765     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
14766     Results.push_back(Chain);
14767     return;
14768   }
14769
14770   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
14771   SDValue Ops[] = { LO, HI };
14772   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
14773   Results.push_back(Pair);
14774   Results.push_back(Chain);
14775 }
14776
14777 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
14778 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
14779 // also used to custom lower READCYCLECOUNTER nodes.
14780 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
14781                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
14782                               SmallVectorImpl<SDValue> &Results) {
14783   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14784   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
14785   SDValue LO, HI;
14786
14787   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
14788   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
14789   // and the EAX register is loaded with the low-order 32 bits.
14790   if (Subtarget->is64Bit()) {
14791     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
14792     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
14793                             LO.getValue(2));
14794   } else {
14795     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
14796     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
14797                             LO.getValue(2));
14798   }
14799   SDValue Chain = HI.getValue(1);
14800
14801   if (Opcode == X86ISD::RDTSCP_DAG) {
14802     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
14803
14804     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
14805     // the ECX register. Add 'ecx' explicitly to the chain.
14806     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
14807                                      HI.getValue(2));
14808     // Explicitly store the content of ECX at the location passed in input
14809     // to the 'rdtscp' intrinsic.
14810     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
14811                          MachinePointerInfo(), false, false, 0);
14812   }
14813
14814   if (Subtarget->is64Bit()) {
14815     // The EDX register is loaded with the high-order 32 bits of the MSR, and
14816     // the EAX register is loaded with the low-order 32 bits.
14817     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
14818                               DAG.getConstant(32, MVT::i8));
14819     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
14820     Results.push_back(Chain);
14821     return;
14822   }
14823
14824   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
14825   SDValue Ops[] = { LO, HI };
14826   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
14827   Results.push_back(Pair);
14828   Results.push_back(Chain);
14829 }
14830
14831 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
14832                                      SelectionDAG &DAG) {
14833   SmallVector<SDValue, 2> Results;
14834   SDLoc DL(Op);
14835   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
14836                           Results);
14837   return DAG.getMergeValues(Results, DL);
14838 }
14839
14840 enum IntrinsicType {
14841   GATHER, SCATTER, PREFETCH, RDSEED, RDRAND, RDPMC, RDTSC, XTEST
14842 };
14843
14844 struct IntrinsicData {
14845   IntrinsicData(IntrinsicType IType, unsigned IOpc0, unsigned IOpc1)
14846     :Type(IType), Opc0(IOpc0), Opc1(IOpc1) {}
14847   IntrinsicType Type;
14848   unsigned      Opc0;
14849   unsigned      Opc1;
14850 };
14851
14852 std::map < unsigned, IntrinsicData> IntrMap;
14853 static void InitIntinsicsMap() {
14854   static bool Initialized = false;
14855   if (Initialized) 
14856     return;
14857   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qps_512,
14858                                 IntrinsicData(GATHER, X86::VGATHERQPSZrm, 0)));
14859   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qps_512,
14860                                 IntrinsicData(GATHER, X86::VGATHERQPSZrm, 0)));
14861   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpd_512,
14862                                 IntrinsicData(GATHER, X86::VGATHERQPDZrm, 0)));
14863   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpd_512,
14864                                 IntrinsicData(GATHER, X86::VGATHERDPDZrm, 0)));
14865   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dps_512,
14866                                 IntrinsicData(GATHER, X86::VGATHERDPSZrm, 0)));
14867   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpi_512, 
14868                                 IntrinsicData(GATHER, X86::VPGATHERQDZrm, 0)));
14869   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpq_512, 
14870                                 IntrinsicData(GATHER, X86::VPGATHERQQZrm, 0)));
14871   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpi_512, 
14872                                 IntrinsicData(GATHER, X86::VPGATHERDDZrm, 0)));
14873   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpq_512, 
14874                                 IntrinsicData(GATHER, X86::VPGATHERDQZrm, 0)));
14875
14876   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qps_512,
14877                                 IntrinsicData(SCATTER, X86::VSCATTERQPSZmr, 0)));
14878   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpd_512, 
14879                                 IntrinsicData(SCATTER, X86::VSCATTERQPDZmr, 0)));
14880   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpd_512, 
14881                                 IntrinsicData(SCATTER, X86::VSCATTERDPDZmr, 0)));
14882   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dps_512, 
14883                                 IntrinsicData(SCATTER, X86::VSCATTERDPSZmr, 0)));
14884   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpi_512, 
14885                                 IntrinsicData(SCATTER, X86::VPSCATTERQDZmr, 0)));
14886   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpq_512, 
14887                                 IntrinsicData(SCATTER, X86::VPSCATTERQQZmr, 0)));
14888   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpi_512, 
14889                                 IntrinsicData(SCATTER, X86::VPSCATTERDDZmr, 0)));
14890   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpq_512, 
14891                                 IntrinsicData(SCATTER, X86::VPSCATTERDQZmr, 0)));
14892    
14893   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_qps_512, 
14894                                 IntrinsicData(PREFETCH, X86::VGATHERPF0QPSm,
14895                                                         X86::VGATHERPF1QPSm)));
14896   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_qpd_512, 
14897                                 IntrinsicData(PREFETCH, X86::VGATHERPF0QPDm,
14898                                                         X86::VGATHERPF1QPDm)));
14899   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_dpd_512, 
14900                                 IntrinsicData(PREFETCH, X86::VGATHERPF0DPDm,
14901                                                         X86::VGATHERPF1DPDm)));
14902   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_dps_512, 
14903                                 IntrinsicData(PREFETCH, X86::VGATHERPF0DPSm,
14904                                                         X86::VGATHERPF1DPSm)));
14905   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_qps_512, 
14906                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0QPSm,
14907                                                         X86::VSCATTERPF1QPSm)));
14908   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_qpd_512, 
14909                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0QPDm,
14910                                                         X86::VSCATTERPF1QPDm)));
14911   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_dpd_512, 
14912                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0DPDm,
14913                                                         X86::VSCATTERPF1DPDm)));
14914   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_dps_512, 
14915                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0DPSm,
14916                                                         X86::VSCATTERPF1DPSm)));
14917   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_16,
14918                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
14919   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_32,
14920                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
14921   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_64,
14922                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
14923   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_16,
14924                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
14925   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_32,
14926                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
14927   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_64,
14928                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
14929   IntrMap.insert(std::make_pair(Intrinsic::x86_xtest,
14930                                 IntrinsicData(XTEST,  X86ISD::XTEST,  0)));
14931   IntrMap.insert(std::make_pair(Intrinsic::x86_rdtsc,
14932                                 IntrinsicData(RDTSC,  X86ISD::RDTSC_DAG, 0)));
14933   IntrMap.insert(std::make_pair(Intrinsic::x86_rdtscp,
14934                                 IntrinsicData(RDTSC,  X86ISD::RDTSCP_DAG, 0)));
14935   IntrMap.insert(std::make_pair(Intrinsic::x86_rdpmc,
14936                                 IntrinsicData(RDPMC,  X86ISD::RDPMC_DAG, 0)));
14937   Initialized = true;
14938 }
14939
14940 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
14941                                       SelectionDAG &DAG) {
14942   InitIntinsicsMap();
14943   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
14944   std::map < unsigned, IntrinsicData>::const_iterator itr = IntrMap.find(IntNo);
14945   if (itr == IntrMap.end())
14946     return SDValue();
14947
14948   SDLoc dl(Op);
14949   IntrinsicData Intr = itr->second;
14950   switch(Intr.Type) {
14951   case RDSEED:
14952   case RDRAND: {
14953     // Emit the node with the right value type.
14954     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
14955     SDValue Result = DAG.getNode(Intr.Opc0, dl, VTs, Op.getOperand(0));
14956
14957     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
14958     // Otherwise return the value from Rand, which is always 0, casted to i32.
14959     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
14960                       DAG.getConstant(1, Op->getValueType(1)),
14961                       DAG.getConstant(X86::COND_B, MVT::i32),
14962                       SDValue(Result.getNode(), 1) };
14963     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
14964                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
14965                                   Ops);
14966
14967     // Return { result, isValid, chain }.
14968     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
14969                        SDValue(Result.getNode(), 2));
14970   }
14971   case GATHER: {
14972   //gather(v1, mask, index, base, scale);
14973     SDValue Chain = Op.getOperand(0);
14974     SDValue Src   = Op.getOperand(2);
14975     SDValue Base  = Op.getOperand(3);
14976     SDValue Index = Op.getOperand(4);
14977     SDValue Mask  = Op.getOperand(5);
14978     SDValue Scale = Op.getOperand(6);
14979     return getGatherNode(Intr.Opc0, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
14980                           Subtarget);
14981   }
14982   case SCATTER: {
14983   //scatter(base, mask, index, v1, scale);
14984     SDValue Chain = Op.getOperand(0);
14985     SDValue Base  = Op.getOperand(2);
14986     SDValue Mask  = Op.getOperand(3);
14987     SDValue Index = Op.getOperand(4);
14988     SDValue Src   = Op.getOperand(5);
14989     SDValue Scale = Op.getOperand(6);
14990     return getScatterNode(Intr.Opc0, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
14991   }
14992   case PREFETCH: {
14993     SDValue Hint = Op.getOperand(6);
14994     unsigned HintVal;
14995     if (dyn_cast<ConstantSDNode> (Hint) == nullptr ||
14996         (HintVal = dyn_cast<ConstantSDNode> (Hint)->getZExtValue()) > 1)
14997       llvm_unreachable("Wrong prefetch hint in intrinsic: should be 0 or 1");
14998     unsigned Opcode = (HintVal ? Intr.Opc1 : Intr.Opc0);
14999     SDValue Chain = Op.getOperand(0);
15000     SDValue Mask  = Op.getOperand(2);
15001     SDValue Index = Op.getOperand(3);
15002     SDValue Base  = Op.getOperand(4);
15003     SDValue Scale = Op.getOperand(5);
15004     return getPrefetchNode(Opcode, Op, DAG, Mask, Base, Index, Scale, Chain);
15005   }
15006   // Read Time Stamp Counter (RDTSC) and Processor ID (RDTSCP).
15007   case RDTSC: {
15008     SmallVector<SDValue, 2> Results;
15009     getReadTimeStampCounter(Op.getNode(), dl, Intr.Opc0, DAG, Subtarget, Results);
15010     return DAG.getMergeValues(Results, dl);
15011   }
15012   // Read Performance Monitoring Counters.
15013   case RDPMC: {
15014     SmallVector<SDValue, 2> Results;
15015     getReadPerformanceCounter(Op.getNode(), dl, DAG, Subtarget, Results);
15016     return DAG.getMergeValues(Results, dl);
15017   }
15018   // XTEST intrinsics.
15019   case XTEST: {
15020     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
15021     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
15022     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
15023                                 DAG.getConstant(X86::COND_NE, MVT::i8),
15024                                 InTrans);
15025     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
15026     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
15027                        Ret, SDValue(InTrans.getNode(), 1));
15028   }
15029   }
15030   llvm_unreachable("Unknown Intrinsic Type");
15031 }
15032
15033 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
15034                                            SelectionDAG &DAG) const {
15035   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
15036   MFI->setReturnAddressIsTaken(true);
15037
15038   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
15039     return SDValue();
15040
15041   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15042   SDLoc dl(Op);
15043   EVT PtrVT = getPointerTy();
15044
15045   if (Depth > 0) {
15046     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
15047     const X86RegisterInfo *RegInfo =
15048       static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
15049     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
15050     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
15051                        DAG.getNode(ISD::ADD, dl, PtrVT,
15052                                    FrameAddr, Offset),
15053                        MachinePointerInfo(), false, false, false, 0);
15054   }
15055
15056   // Just load the return address.
15057   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
15058   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
15059                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
15060 }
15061
15062 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
15063   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
15064   MFI->setFrameAddressIsTaken(true);
15065
15066   EVT VT = Op.getValueType();
15067   SDLoc dl(Op);  // FIXME probably not meaningful
15068   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15069   const X86RegisterInfo *RegInfo =
15070     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
15071   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
15072   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
15073           (FrameReg == X86::EBP && VT == MVT::i32)) &&
15074          "Invalid Frame Register!");
15075   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
15076   while (Depth--)
15077     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
15078                             MachinePointerInfo(),
15079                             false, false, false, 0);
15080   return FrameAddr;
15081 }
15082
15083 // FIXME? Maybe this could be a TableGen attribute on some registers and
15084 // this table could be generated automatically from RegInfo.
15085 unsigned X86TargetLowering::getRegisterByName(const char* RegName,
15086                                               EVT VT) const {
15087   unsigned Reg = StringSwitch<unsigned>(RegName)
15088                        .Case("esp", X86::ESP)
15089                        .Case("rsp", X86::RSP)
15090                        .Default(0);
15091   if (Reg)
15092     return Reg;
15093   report_fatal_error("Invalid register name global variable");
15094 }
15095
15096 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
15097                                                      SelectionDAG &DAG) const {
15098   const X86RegisterInfo *RegInfo =
15099     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
15100   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
15101 }
15102
15103 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
15104   SDValue Chain     = Op.getOperand(0);
15105   SDValue Offset    = Op.getOperand(1);
15106   SDValue Handler   = Op.getOperand(2);
15107   SDLoc dl      (Op);
15108
15109   EVT PtrVT = getPointerTy();
15110   const X86RegisterInfo *RegInfo =
15111     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
15112   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
15113   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
15114           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
15115          "Invalid Frame Register!");
15116   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
15117   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
15118
15119   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
15120                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
15121   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
15122   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
15123                        false, false, 0);
15124   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
15125
15126   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
15127                      DAG.getRegister(StoreAddrReg, PtrVT));
15128 }
15129
15130 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
15131                                                SelectionDAG &DAG) const {
15132   SDLoc DL(Op);
15133   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
15134                      DAG.getVTList(MVT::i32, MVT::Other),
15135                      Op.getOperand(0), Op.getOperand(1));
15136 }
15137
15138 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
15139                                                 SelectionDAG &DAG) const {
15140   SDLoc DL(Op);
15141   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
15142                      Op.getOperand(0), Op.getOperand(1));
15143 }
15144
15145 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
15146   return Op.getOperand(0);
15147 }
15148
15149 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
15150                                                 SelectionDAG &DAG) const {
15151   SDValue Root = Op.getOperand(0);
15152   SDValue Trmp = Op.getOperand(1); // trampoline
15153   SDValue FPtr = Op.getOperand(2); // nested function
15154   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
15155   SDLoc dl (Op);
15156
15157   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
15158   const TargetRegisterInfo* TRI = DAG.getTarget().getRegisterInfo();
15159
15160   if (Subtarget->is64Bit()) {
15161     SDValue OutChains[6];
15162
15163     // Large code-model.
15164     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
15165     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
15166
15167     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
15168     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
15169
15170     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
15171
15172     // Load the pointer to the nested function into R11.
15173     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
15174     SDValue Addr = Trmp;
15175     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
15176                                 Addr, MachinePointerInfo(TrmpAddr),
15177                                 false, false, 0);
15178
15179     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
15180                        DAG.getConstant(2, MVT::i64));
15181     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
15182                                 MachinePointerInfo(TrmpAddr, 2),
15183                                 false, false, 2);
15184
15185     // Load the 'nest' parameter value into R10.
15186     // R10 is specified in X86CallingConv.td
15187     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
15188     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
15189                        DAG.getConstant(10, MVT::i64));
15190     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
15191                                 Addr, MachinePointerInfo(TrmpAddr, 10),
15192                                 false, false, 0);
15193
15194     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
15195                        DAG.getConstant(12, MVT::i64));
15196     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
15197                                 MachinePointerInfo(TrmpAddr, 12),
15198                                 false, false, 2);
15199
15200     // Jump to the nested function.
15201     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
15202     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
15203                        DAG.getConstant(20, MVT::i64));
15204     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
15205                                 Addr, MachinePointerInfo(TrmpAddr, 20),
15206                                 false, false, 0);
15207
15208     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
15209     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
15210                        DAG.getConstant(22, MVT::i64));
15211     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
15212                                 MachinePointerInfo(TrmpAddr, 22),
15213                                 false, false, 0);
15214
15215     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
15216   } else {
15217     const Function *Func =
15218       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
15219     CallingConv::ID CC = Func->getCallingConv();
15220     unsigned NestReg;
15221
15222     switch (CC) {
15223     default:
15224       llvm_unreachable("Unsupported calling convention");
15225     case CallingConv::C:
15226     case CallingConv::X86_StdCall: {
15227       // Pass 'nest' parameter in ECX.
15228       // Must be kept in sync with X86CallingConv.td
15229       NestReg = X86::ECX;
15230
15231       // Check that ECX wasn't needed by an 'inreg' parameter.
15232       FunctionType *FTy = Func->getFunctionType();
15233       const AttributeSet &Attrs = Func->getAttributes();
15234
15235       if (!Attrs.isEmpty() && !Func->isVarArg()) {
15236         unsigned InRegCount = 0;
15237         unsigned Idx = 1;
15238
15239         for (FunctionType::param_iterator I = FTy->param_begin(),
15240              E = FTy->param_end(); I != E; ++I, ++Idx)
15241           if (Attrs.hasAttribute(Idx, Attribute::InReg))
15242             // FIXME: should only count parameters that are lowered to integers.
15243             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
15244
15245         if (InRegCount > 2) {
15246           report_fatal_error("Nest register in use - reduce number of inreg"
15247                              " parameters!");
15248         }
15249       }
15250       break;
15251     }
15252     case CallingConv::X86_FastCall:
15253     case CallingConv::X86_ThisCall:
15254     case CallingConv::Fast:
15255       // Pass 'nest' parameter in EAX.
15256       // Must be kept in sync with X86CallingConv.td
15257       NestReg = X86::EAX;
15258       break;
15259     }
15260
15261     SDValue OutChains[4];
15262     SDValue Addr, Disp;
15263
15264     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
15265                        DAG.getConstant(10, MVT::i32));
15266     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
15267
15268     // This is storing the opcode for MOV32ri.
15269     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
15270     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
15271     OutChains[0] = DAG.getStore(Root, dl,
15272                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
15273                                 Trmp, MachinePointerInfo(TrmpAddr),
15274                                 false, false, 0);
15275
15276     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
15277                        DAG.getConstant(1, MVT::i32));
15278     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
15279                                 MachinePointerInfo(TrmpAddr, 1),
15280                                 false, false, 1);
15281
15282     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
15283     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
15284                        DAG.getConstant(5, MVT::i32));
15285     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
15286                                 MachinePointerInfo(TrmpAddr, 5),
15287                                 false, false, 1);
15288
15289     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
15290                        DAG.getConstant(6, MVT::i32));
15291     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
15292                                 MachinePointerInfo(TrmpAddr, 6),
15293                                 false, false, 1);
15294
15295     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
15296   }
15297 }
15298
15299 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
15300                                             SelectionDAG &DAG) const {
15301   /*
15302    The rounding mode is in bits 11:10 of FPSR, and has the following
15303    settings:
15304      00 Round to nearest
15305      01 Round to -inf
15306      10 Round to +inf
15307      11 Round to 0
15308
15309   FLT_ROUNDS, on the other hand, expects the following:
15310     -1 Undefined
15311      0 Round to 0
15312      1 Round to nearest
15313      2 Round to +inf
15314      3 Round to -inf
15315
15316   To perform the conversion, we do:
15317     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
15318   */
15319
15320   MachineFunction &MF = DAG.getMachineFunction();
15321   const TargetMachine &TM = MF.getTarget();
15322   const TargetFrameLowering &TFI = *TM.getFrameLowering();
15323   unsigned StackAlignment = TFI.getStackAlignment();
15324   MVT VT = Op.getSimpleValueType();
15325   SDLoc DL(Op);
15326
15327   // Save FP Control Word to stack slot
15328   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
15329   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
15330
15331   MachineMemOperand *MMO =
15332    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
15333                            MachineMemOperand::MOStore, 2, 2);
15334
15335   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
15336   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
15337                                           DAG.getVTList(MVT::Other),
15338                                           Ops, MVT::i16, MMO);
15339
15340   // Load FP Control Word from stack slot
15341   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
15342                             MachinePointerInfo(), false, false, false, 0);
15343
15344   // Transform as necessary
15345   SDValue CWD1 =
15346     DAG.getNode(ISD::SRL, DL, MVT::i16,
15347                 DAG.getNode(ISD::AND, DL, MVT::i16,
15348                             CWD, DAG.getConstant(0x800, MVT::i16)),
15349                 DAG.getConstant(11, MVT::i8));
15350   SDValue CWD2 =
15351     DAG.getNode(ISD::SRL, DL, MVT::i16,
15352                 DAG.getNode(ISD::AND, DL, MVT::i16,
15353                             CWD, DAG.getConstant(0x400, MVT::i16)),
15354                 DAG.getConstant(9, MVT::i8));
15355
15356   SDValue RetVal =
15357     DAG.getNode(ISD::AND, DL, MVT::i16,
15358                 DAG.getNode(ISD::ADD, DL, MVT::i16,
15359                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
15360                             DAG.getConstant(1, MVT::i16)),
15361                 DAG.getConstant(3, MVT::i16));
15362
15363   return DAG.getNode((VT.getSizeInBits() < 16 ?
15364                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
15365 }
15366
15367 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
15368   MVT VT = Op.getSimpleValueType();
15369   EVT OpVT = VT;
15370   unsigned NumBits = VT.getSizeInBits();
15371   SDLoc dl(Op);
15372
15373   Op = Op.getOperand(0);
15374   if (VT == MVT::i8) {
15375     // Zero extend to i32 since there is not an i8 bsr.
15376     OpVT = MVT::i32;
15377     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
15378   }
15379
15380   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
15381   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
15382   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
15383
15384   // If src is zero (i.e. bsr sets ZF), returns NumBits.
15385   SDValue Ops[] = {
15386     Op,
15387     DAG.getConstant(NumBits+NumBits-1, OpVT),
15388     DAG.getConstant(X86::COND_E, MVT::i8),
15389     Op.getValue(1)
15390   };
15391   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
15392
15393   // Finally xor with NumBits-1.
15394   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
15395
15396   if (VT == MVT::i8)
15397     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
15398   return Op;
15399 }
15400
15401 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
15402   MVT VT = Op.getSimpleValueType();
15403   EVT OpVT = VT;
15404   unsigned NumBits = VT.getSizeInBits();
15405   SDLoc dl(Op);
15406
15407   Op = Op.getOperand(0);
15408   if (VT == MVT::i8) {
15409     // Zero extend to i32 since there is not an i8 bsr.
15410     OpVT = MVT::i32;
15411     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
15412   }
15413
15414   // Issue a bsr (scan bits in reverse).
15415   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
15416   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
15417
15418   // And xor with NumBits-1.
15419   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
15420
15421   if (VT == MVT::i8)
15422     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
15423   return Op;
15424 }
15425
15426 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
15427   MVT VT = Op.getSimpleValueType();
15428   unsigned NumBits = VT.getSizeInBits();
15429   SDLoc dl(Op);
15430   Op = Op.getOperand(0);
15431
15432   // Issue a bsf (scan bits forward) which also sets EFLAGS.
15433   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
15434   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
15435
15436   // If src is zero (i.e. bsf sets ZF), returns NumBits.
15437   SDValue Ops[] = {
15438     Op,
15439     DAG.getConstant(NumBits, VT),
15440     DAG.getConstant(X86::COND_E, MVT::i8),
15441     Op.getValue(1)
15442   };
15443   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
15444 }
15445
15446 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
15447 // ones, and then concatenate the result back.
15448 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
15449   MVT VT = Op.getSimpleValueType();
15450
15451   assert(VT.is256BitVector() && VT.isInteger() &&
15452          "Unsupported value type for operation");
15453
15454   unsigned NumElems = VT.getVectorNumElements();
15455   SDLoc dl(Op);
15456
15457   // Extract the LHS vectors
15458   SDValue LHS = Op.getOperand(0);
15459   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
15460   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
15461
15462   // Extract the RHS vectors
15463   SDValue RHS = Op.getOperand(1);
15464   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
15465   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
15466
15467   MVT EltVT = VT.getVectorElementType();
15468   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
15469
15470   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
15471                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
15472                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
15473 }
15474
15475 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
15476   assert(Op.getSimpleValueType().is256BitVector() &&
15477          Op.getSimpleValueType().isInteger() &&
15478          "Only handle AVX 256-bit vector integer operation");
15479   return Lower256IntArith(Op, DAG);
15480 }
15481
15482 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
15483   assert(Op.getSimpleValueType().is256BitVector() &&
15484          Op.getSimpleValueType().isInteger() &&
15485          "Only handle AVX 256-bit vector integer operation");
15486   return Lower256IntArith(Op, DAG);
15487 }
15488
15489 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
15490                         SelectionDAG &DAG) {
15491   SDLoc dl(Op);
15492   MVT VT = Op.getSimpleValueType();
15493
15494   // Decompose 256-bit ops into smaller 128-bit ops.
15495   if (VT.is256BitVector() && !Subtarget->hasInt256())
15496     return Lower256IntArith(Op, DAG);
15497
15498   SDValue A = Op.getOperand(0);
15499   SDValue B = Op.getOperand(1);
15500
15501   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
15502   if (VT == MVT::v4i32) {
15503     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
15504            "Should not custom lower when pmuldq is available!");
15505
15506     // Extract the odd parts.
15507     static const int UnpackMask[] = { 1, -1, 3, -1 };
15508     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
15509     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
15510
15511     // Multiply the even parts.
15512     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
15513     // Now multiply odd parts.
15514     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
15515
15516     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
15517     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
15518
15519     // Merge the two vectors back together with a shuffle. This expands into 2
15520     // shuffles.
15521     static const int ShufMask[] = { 0, 4, 2, 6 };
15522     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
15523   }
15524
15525   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
15526          "Only know how to lower V2I64/V4I64/V8I64 multiply");
15527
15528   //  Ahi = psrlqi(a, 32);
15529   //  Bhi = psrlqi(b, 32);
15530   //
15531   //  AloBlo = pmuludq(a, b);
15532   //  AloBhi = pmuludq(a, Bhi);
15533   //  AhiBlo = pmuludq(Ahi, b);
15534
15535   //  AloBhi = psllqi(AloBhi, 32);
15536   //  AhiBlo = psllqi(AhiBlo, 32);
15537   //  return AloBlo + AloBhi + AhiBlo;
15538
15539   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
15540   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
15541
15542   // Bit cast to 32-bit vectors for MULUDQ
15543   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
15544                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
15545   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
15546   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
15547   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
15548   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
15549
15550   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
15551   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
15552   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
15553
15554   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
15555   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
15556
15557   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
15558   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
15559 }
15560
15561 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
15562   assert(Subtarget->isTargetWin64() && "Unexpected target");
15563   EVT VT = Op.getValueType();
15564   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
15565          "Unexpected return type for lowering");
15566
15567   RTLIB::Libcall LC;
15568   bool isSigned;
15569   switch (Op->getOpcode()) {
15570   default: llvm_unreachable("Unexpected request for libcall!");
15571   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
15572   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
15573   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
15574   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
15575   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
15576   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
15577   }
15578
15579   SDLoc dl(Op);
15580   SDValue InChain = DAG.getEntryNode();
15581
15582   TargetLowering::ArgListTy Args;
15583   TargetLowering::ArgListEntry Entry;
15584   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
15585     EVT ArgVT = Op->getOperand(i).getValueType();
15586     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
15587            "Unexpected argument type for lowering");
15588     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
15589     Entry.Node = StackPtr;
15590     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
15591                            false, false, 16);
15592     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
15593     Entry.Ty = PointerType::get(ArgTy,0);
15594     Entry.isSExt = false;
15595     Entry.isZExt = false;
15596     Args.push_back(Entry);
15597   }
15598
15599   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
15600                                          getPointerTy());
15601
15602   TargetLowering::CallLoweringInfo CLI(DAG);
15603   CLI.setDebugLoc(dl).setChain(InChain)
15604     .setCallee(getLibcallCallingConv(LC),
15605                static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
15606                Callee, std::move(Args), 0)
15607     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
15608
15609   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
15610   return DAG.getNode(ISD::BITCAST, dl, VT, CallInfo.first);
15611 }
15612
15613 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
15614                              SelectionDAG &DAG) {
15615   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
15616   EVT VT = Op0.getValueType();
15617   SDLoc dl(Op);
15618
15619   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
15620          (VT == MVT::v8i32 && Subtarget->hasInt256()));
15621
15622   // PMULxD operations multiply each even value (starting at 0) of LHS with
15623   // the related value of RHS and produce a widen result.
15624   // E.g., PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
15625   // => <2 x i64> <ae|cg>
15626   //
15627   // In other word, to have all the results, we need to perform two PMULxD:
15628   // 1. one with the even values.
15629   // 2. one with the odd values.
15630   // To achieve #2, with need to place the odd values at an even position.
15631   //
15632   // Place the odd value at an even position (basically, shift all values 1
15633   // step to the left):
15634   const int Mask[] = {1, -1, 3, -1, 5, -1, 7, -1};
15635   // <a|b|c|d> => <b|undef|d|undef>
15636   SDValue Odd0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
15637   // <e|f|g|h> => <f|undef|h|undef>
15638   SDValue Odd1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
15639
15640   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
15641   // ints.
15642   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
15643   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
15644   unsigned Opcode =
15645       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
15646   // PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
15647   // => <2 x i64> <ae|cg>
15648   SDValue Mul1 = DAG.getNode(ISD::BITCAST, dl, VT,
15649                              DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
15650   // PMULUDQ <4 x i32> <b|undef|d|undef>, <4 x i32> <f|undef|h|undef>
15651   // => <2 x i64> <bf|dh>
15652   SDValue Mul2 = DAG.getNode(ISD::BITCAST, dl, VT,
15653                              DAG.getNode(Opcode, dl, MulVT, Odd0, Odd1));
15654
15655   // Shuffle it back into the right order.
15656   SDValue Highs, Lows;
15657   if (VT == MVT::v8i32) {
15658     const int HighMask[] = {1, 9, 3, 11, 5, 13, 7, 15};
15659     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
15660     const int LowMask[] = {0, 8, 2, 10, 4, 12, 6, 14};
15661     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
15662   } else {
15663     const int HighMask[] = {1, 5, 3, 7};
15664     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
15665     const int LowMask[] = {1, 4, 2, 6};
15666     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
15667   }
15668
15669   // If we have a signed multiply but no PMULDQ fix up the high parts of a
15670   // unsigned multiply.
15671   if (IsSigned && !Subtarget->hasSSE41()) {
15672     SDValue ShAmt =
15673         DAG.getConstant(31, DAG.getTargetLoweringInfo().getShiftAmountTy(VT));
15674     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
15675                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
15676     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
15677                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
15678
15679     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
15680     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
15681   }
15682
15683   // The first result of MUL_LOHI is actually the low value, followed by the
15684   // high value.
15685   SDValue Ops[] = {Lows, Highs};
15686   return DAG.getMergeValues(Ops, dl);
15687 }
15688
15689 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
15690                                          const X86Subtarget *Subtarget) {
15691   MVT VT = Op.getSimpleValueType();
15692   SDLoc dl(Op);
15693   SDValue R = Op.getOperand(0);
15694   SDValue Amt = Op.getOperand(1);
15695
15696   // Optimize shl/srl/sra with constant shift amount.
15697   if (auto *BVAmt = dyn_cast<BuildVectorSDNode>(Amt)) {
15698     if (auto *ShiftConst = BVAmt->getConstantSplatNode()) {
15699       uint64_t ShiftAmt = ShiftConst->getZExtValue();
15700
15701       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
15702           (Subtarget->hasInt256() &&
15703            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
15704           (Subtarget->hasAVX512() &&
15705            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
15706         if (Op.getOpcode() == ISD::SHL)
15707           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
15708                                             DAG);
15709         if (Op.getOpcode() == ISD::SRL)
15710           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
15711                                             DAG);
15712         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
15713           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
15714                                             DAG);
15715       }
15716
15717       if (VT == MVT::v16i8) {
15718         if (Op.getOpcode() == ISD::SHL) {
15719           // Make a large shift.
15720           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
15721                                                    MVT::v8i16, R, ShiftAmt,
15722                                                    DAG);
15723           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
15724           // Zero out the rightmost bits.
15725           SmallVector<SDValue, 16> V(16,
15726                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
15727                                                      MVT::i8));
15728           return DAG.getNode(ISD::AND, dl, VT, SHL,
15729                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15730         }
15731         if (Op.getOpcode() == ISD::SRL) {
15732           // Make a large shift.
15733           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
15734                                                    MVT::v8i16, R, ShiftAmt,
15735                                                    DAG);
15736           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
15737           // Zero out the leftmost bits.
15738           SmallVector<SDValue, 16> V(16,
15739                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
15740                                                      MVT::i8));
15741           return DAG.getNode(ISD::AND, dl, VT, SRL,
15742                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15743         }
15744         if (Op.getOpcode() == ISD::SRA) {
15745           if (ShiftAmt == 7) {
15746             // R s>> 7  ===  R s< 0
15747             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
15748             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
15749           }
15750
15751           // R s>> a === ((R u>> a) ^ m) - m
15752           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
15753           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
15754                                                          MVT::i8));
15755           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
15756           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
15757           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
15758           return Res;
15759         }
15760         llvm_unreachable("Unknown shift opcode.");
15761       }
15762
15763       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
15764         if (Op.getOpcode() == ISD::SHL) {
15765           // Make a large shift.
15766           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
15767                                                    MVT::v16i16, R, ShiftAmt,
15768                                                    DAG);
15769           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
15770           // Zero out the rightmost bits.
15771           SmallVector<SDValue, 32> V(32,
15772                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
15773                                                      MVT::i8));
15774           return DAG.getNode(ISD::AND, dl, VT, SHL,
15775                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15776         }
15777         if (Op.getOpcode() == ISD::SRL) {
15778           // Make a large shift.
15779           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
15780                                                    MVT::v16i16, R, ShiftAmt,
15781                                                    DAG);
15782           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
15783           // Zero out the leftmost bits.
15784           SmallVector<SDValue, 32> V(32,
15785                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
15786                                                      MVT::i8));
15787           return DAG.getNode(ISD::AND, dl, VT, SRL,
15788                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15789         }
15790         if (Op.getOpcode() == ISD::SRA) {
15791           if (ShiftAmt == 7) {
15792             // R s>> 7  ===  R s< 0
15793             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
15794             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
15795           }
15796
15797           // R s>> a === ((R u>> a) ^ m) - m
15798           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
15799           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
15800                                                          MVT::i8));
15801           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
15802           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
15803           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
15804           return Res;
15805         }
15806         llvm_unreachable("Unknown shift opcode.");
15807       }
15808     }
15809   }
15810
15811   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
15812   if (!Subtarget->is64Bit() &&
15813       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
15814       Amt.getOpcode() == ISD::BITCAST &&
15815       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
15816     Amt = Amt.getOperand(0);
15817     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
15818                      VT.getVectorNumElements();
15819     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
15820     uint64_t ShiftAmt = 0;
15821     for (unsigned i = 0; i != Ratio; ++i) {
15822       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
15823       if (!C)
15824         return SDValue();
15825       // 6 == Log2(64)
15826       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
15827     }
15828     // Check remaining shift amounts.
15829     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
15830       uint64_t ShAmt = 0;
15831       for (unsigned j = 0; j != Ratio; ++j) {
15832         ConstantSDNode *C =
15833           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
15834         if (!C)
15835           return SDValue();
15836         // 6 == Log2(64)
15837         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
15838       }
15839       if (ShAmt != ShiftAmt)
15840         return SDValue();
15841     }
15842     switch (Op.getOpcode()) {
15843     default:
15844       llvm_unreachable("Unknown shift opcode!");
15845     case ISD::SHL:
15846       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
15847                                         DAG);
15848     case ISD::SRL:
15849       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
15850                                         DAG);
15851     case ISD::SRA:
15852       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
15853                                         DAG);
15854     }
15855   }
15856
15857   return SDValue();
15858 }
15859
15860 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
15861                                         const X86Subtarget* Subtarget) {
15862   MVT VT = Op.getSimpleValueType();
15863   SDLoc dl(Op);
15864   SDValue R = Op.getOperand(0);
15865   SDValue Amt = Op.getOperand(1);
15866
15867   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
15868       VT == MVT::v4i32 || VT == MVT::v8i16 ||
15869       (Subtarget->hasInt256() &&
15870        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
15871         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
15872        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
15873     SDValue BaseShAmt;
15874     EVT EltVT = VT.getVectorElementType();
15875
15876     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
15877       unsigned NumElts = VT.getVectorNumElements();
15878       unsigned i, j;
15879       for (i = 0; i != NumElts; ++i) {
15880         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
15881           continue;
15882         break;
15883       }
15884       for (j = i; j != NumElts; ++j) {
15885         SDValue Arg = Amt.getOperand(j);
15886         if (Arg.getOpcode() == ISD::UNDEF) continue;
15887         if (Arg != Amt.getOperand(i))
15888           break;
15889       }
15890       if (i != NumElts && j == NumElts)
15891         BaseShAmt = Amt.getOperand(i);
15892     } else {
15893       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
15894         Amt = Amt.getOperand(0);
15895       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
15896                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
15897         SDValue InVec = Amt.getOperand(0);
15898         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
15899           unsigned NumElts = InVec.getValueType().getVectorNumElements();
15900           unsigned i = 0;
15901           for (; i != NumElts; ++i) {
15902             SDValue Arg = InVec.getOperand(i);
15903             if (Arg.getOpcode() == ISD::UNDEF) continue;
15904             BaseShAmt = Arg;
15905             break;
15906           }
15907         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
15908            if (ConstantSDNode *C =
15909                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
15910              unsigned SplatIdx =
15911                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
15912              if (C->getZExtValue() == SplatIdx)
15913                BaseShAmt = InVec.getOperand(1);
15914            }
15915         }
15916         if (!BaseShAmt.getNode())
15917           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
15918                                   DAG.getIntPtrConstant(0));
15919       }
15920     }
15921
15922     if (BaseShAmt.getNode()) {
15923       if (EltVT.bitsGT(MVT::i32))
15924         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
15925       else if (EltVT.bitsLT(MVT::i32))
15926         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
15927
15928       switch (Op.getOpcode()) {
15929       default:
15930         llvm_unreachable("Unknown shift opcode!");
15931       case ISD::SHL:
15932         switch (VT.SimpleTy) {
15933         default: return SDValue();
15934         case MVT::v2i64:
15935         case MVT::v4i32:
15936         case MVT::v8i16:
15937         case MVT::v4i64:
15938         case MVT::v8i32:
15939         case MVT::v16i16:
15940         case MVT::v16i32:
15941         case MVT::v8i64:
15942           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
15943         }
15944       case ISD::SRA:
15945         switch (VT.SimpleTy) {
15946         default: return SDValue();
15947         case MVT::v4i32:
15948         case MVT::v8i16:
15949         case MVT::v8i32:
15950         case MVT::v16i16:
15951         case MVT::v16i32:
15952         case MVT::v8i64:
15953           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
15954         }
15955       case ISD::SRL:
15956         switch (VT.SimpleTy) {
15957         default: return SDValue();
15958         case MVT::v2i64:
15959         case MVT::v4i32:
15960         case MVT::v8i16:
15961         case MVT::v4i64:
15962         case MVT::v8i32:
15963         case MVT::v16i16:
15964         case MVT::v16i32:
15965         case MVT::v8i64:
15966           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
15967         }
15968       }
15969     }
15970   }
15971
15972   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
15973   if (!Subtarget->is64Bit() &&
15974       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
15975       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
15976       Amt.getOpcode() == ISD::BITCAST &&
15977       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
15978     Amt = Amt.getOperand(0);
15979     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
15980                      VT.getVectorNumElements();
15981     std::vector<SDValue> Vals(Ratio);
15982     for (unsigned i = 0; i != Ratio; ++i)
15983       Vals[i] = Amt.getOperand(i);
15984     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
15985       for (unsigned j = 0; j != Ratio; ++j)
15986         if (Vals[j] != Amt.getOperand(i + j))
15987           return SDValue();
15988     }
15989     switch (Op.getOpcode()) {
15990     default:
15991       llvm_unreachable("Unknown shift opcode!");
15992     case ISD::SHL:
15993       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
15994     case ISD::SRL:
15995       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
15996     case ISD::SRA:
15997       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
15998     }
15999   }
16000
16001   return SDValue();
16002 }
16003
16004 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
16005                           SelectionDAG &DAG) {
16006   MVT VT = Op.getSimpleValueType();
16007   SDLoc dl(Op);
16008   SDValue R = Op.getOperand(0);
16009   SDValue Amt = Op.getOperand(1);
16010   SDValue V;
16011
16012   assert(VT.isVector() && "Custom lowering only for vector shifts!");
16013   assert(Subtarget->hasSSE2() && "Only custom lower when we have SSE2!");
16014
16015   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
16016   if (V.getNode())
16017     return V;
16018
16019   V = LowerScalarVariableShift(Op, DAG, Subtarget);
16020   if (V.getNode())
16021       return V;
16022
16023   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
16024     return Op;
16025   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
16026   if (Subtarget->hasInt256()) {
16027     if (Op.getOpcode() == ISD::SRL &&
16028         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
16029          VT == MVT::v4i64 || VT == MVT::v8i32))
16030       return Op;
16031     if (Op.getOpcode() == ISD::SHL &&
16032         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
16033          VT == MVT::v4i64 || VT == MVT::v8i32))
16034       return Op;
16035     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
16036       return Op;
16037   }
16038
16039   // If possible, lower this packed shift into a vector multiply instead of
16040   // expanding it into a sequence of scalar shifts.
16041   // Do this only if the vector shift count is a constant build_vector.
16042   if (Op.getOpcode() == ISD::SHL && 
16043       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
16044        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
16045       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
16046     SmallVector<SDValue, 8> Elts;
16047     EVT SVT = VT.getScalarType();
16048     unsigned SVTBits = SVT.getSizeInBits();
16049     const APInt &One = APInt(SVTBits, 1);
16050     unsigned NumElems = VT.getVectorNumElements();
16051
16052     for (unsigned i=0; i !=NumElems; ++i) {
16053       SDValue Op = Amt->getOperand(i);
16054       if (Op->getOpcode() == ISD::UNDEF) {
16055         Elts.push_back(Op);
16056         continue;
16057       }
16058
16059       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
16060       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
16061       uint64_t ShAmt = C.getZExtValue();
16062       if (ShAmt >= SVTBits) {
16063         Elts.push_back(DAG.getUNDEF(SVT));
16064         continue;
16065       }
16066       Elts.push_back(DAG.getConstant(One.shl(ShAmt), SVT));
16067     }
16068     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
16069     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
16070   }
16071
16072   // Lower SHL with variable shift amount.
16073   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
16074     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
16075
16076     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
16077     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
16078     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
16079     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
16080   }
16081
16082   // If possible, lower this shift as a sequence of two shifts by
16083   // constant plus a MOVSS/MOVSD instead of scalarizing it.
16084   // Example:
16085   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
16086   //
16087   // Could be rewritten as:
16088   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
16089   //
16090   // The advantage is that the two shifts from the example would be
16091   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
16092   // the vector shift into four scalar shifts plus four pairs of vector
16093   // insert/extract.
16094   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
16095       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
16096     unsigned TargetOpcode = X86ISD::MOVSS;
16097     bool CanBeSimplified;
16098     // The splat value for the first packed shift (the 'X' from the example).
16099     SDValue Amt1 = Amt->getOperand(0);
16100     // The splat value for the second packed shift (the 'Y' from the example).
16101     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
16102                                         Amt->getOperand(2);
16103
16104     // See if it is possible to replace this node with a sequence of
16105     // two shifts followed by a MOVSS/MOVSD
16106     if (VT == MVT::v4i32) {
16107       // Check if it is legal to use a MOVSS.
16108       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
16109                         Amt2 == Amt->getOperand(3);
16110       if (!CanBeSimplified) {
16111         // Otherwise, check if we can still simplify this node using a MOVSD.
16112         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
16113                           Amt->getOperand(2) == Amt->getOperand(3);
16114         TargetOpcode = X86ISD::MOVSD;
16115         Amt2 = Amt->getOperand(2);
16116       }
16117     } else {
16118       // Do similar checks for the case where the machine value type
16119       // is MVT::v8i16.
16120       CanBeSimplified = Amt1 == Amt->getOperand(1);
16121       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
16122         CanBeSimplified = Amt2 == Amt->getOperand(i);
16123
16124       if (!CanBeSimplified) {
16125         TargetOpcode = X86ISD::MOVSD;
16126         CanBeSimplified = true;
16127         Amt2 = Amt->getOperand(4);
16128         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
16129           CanBeSimplified = Amt1 == Amt->getOperand(i);
16130         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
16131           CanBeSimplified = Amt2 == Amt->getOperand(j);
16132       }
16133     }
16134     
16135     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
16136         isa<ConstantSDNode>(Amt2)) {
16137       // Replace this node with two shifts followed by a MOVSS/MOVSD.
16138       EVT CastVT = MVT::v4i32;
16139       SDValue Splat1 = 
16140         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), VT);
16141       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
16142       SDValue Splat2 = 
16143         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), VT);
16144       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
16145       if (TargetOpcode == X86ISD::MOVSD)
16146         CastVT = MVT::v2i64;
16147       SDValue BitCast1 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift1);
16148       SDValue BitCast2 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift2);
16149       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
16150                                             BitCast1, DAG);
16151       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
16152     }
16153   }
16154
16155   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
16156     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
16157
16158     // a = a << 5;
16159     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
16160     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
16161
16162     // Turn 'a' into a mask suitable for VSELECT
16163     SDValue VSelM = DAG.getConstant(0x80, VT);
16164     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
16165     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
16166
16167     SDValue CM1 = DAG.getConstant(0x0f, VT);
16168     SDValue CM2 = DAG.getConstant(0x3f, VT);
16169
16170     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
16171     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
16172     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
16173     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
16174     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
16175
16176     // a += a
16177     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
16178     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
16179     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
16180
16181     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
16182     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
16183     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
16184     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
16185     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
16186
16187     // a += a
16188     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
16189     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
16190     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
16191
16192     // return VSELECT(r, r+r, a);
16193     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
16194                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
16195     return R;
16196   }
16197
16198   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
16199   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
16200   // solution better.
16201   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
16202     MVT NewVT = VT == MVT::v8i16 ? MVT::v8i32 : MVT::v16i16;
16203     unsigned ExtOpc =
16204         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
16205     R = DAG.getNode(ExtOpc, dl, NewVT, R);
16206     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, NewVT, Amt);
16207     return DAG.getNode(ISD::TRUNCATE, dl, VT,
16208                        DAG.getNode(Op.getOpcode(), dl, NewVT, R, Amt));
16209     }
16210
16211   // Decompose 256-bit shifts into smaller 128-bit shifts.
16212   if (VT.is256BitVector()) {
16213     unsigned NumElems = VT.getVectorNumElements();
16214     MVT EltVT = VT.getVectorElementType();
16215     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
16216
16217     // Extract the two vectors
16218     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
16219     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
16220
16221     // Recreate the shift amount vectors
16222     SDValue Amt1, Amt2;
16223     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
16224       // Constant shift amount
16225       SmallVector<SDValue, 4> Amt1Csts;
16226       SmallVector<SDValue, 4> Amt2Csts;
16227       for (unsigned i = 0; i != NumElems/2; ++i)
16228         Amt1Csts.push_back(Amt->getOperand(i));
16229       for (unsigned i = NumElems/2; i != NumElems; ++i)
16230         Amt2Csts.push_back(Amt->getOperand(i));
16231
16232       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
16233       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
16234     } else {
16235       // Variable shift amount
16236       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
16237       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
16238     }
16239
16240     // Issue new vector shifts for the smaller types
16241     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
16242     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
16243
16244     // Concatenate the result back
16245     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
16246   }
16247
16248   return SDValue();
16249 }
16250
16251 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
16252   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
16253   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
16254   // looks for this combo and may remove the "setcc" instruction if the "setcc"
16255   // has only one use.
16256   SDNode *N = Op.getNode();
16257   SDValue LHS = N->getOperand(0);
16258   SDValue RHS = N->getOperand(1);
16259   unsigned BaseOp = 0;
16260   unsigned Cond = 0;
16261   SDLoc DL(Op);
16262   switch (Op.getOpcode()) {
16263   default: llvm_unreachable("Unknown ovf instruction!");
16264   case ISD::SADDO:
16265     // A subtract of one will be selected as a INC. Note that INC doesn't
16266     // set CF, so we can't do this for UADDO.
16267     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
16268       if (C->isOne()) {
16269         BaseOp = X86ISD::INC;
16270         Cond = X86::COND_O;
16271         break;
16272       }
16273     BaseOp = X86ISD::ADD;
16274     Cond = X86::COND_O;
16275     break;
16276   case ISD::UADDO:
16277     BaseOp = X86ISD::ADD;
16278     Cond = X86::COND_B;
16279     break;
16280   case ISD::SSUBO:
16281     // A subtract of one will be selected as a DEC. Note that DEC doesn't
16282     // set CF, so we can't do this for USUBO.
16283     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
16284       if (C->isOne()) {
16285         BaseOp = X86ISD::DEC;
16286         Cond = X86::COND_O;
16287         break;
16288       }
16289     BaseOp = X86ISD::SUB;
16290     Cond = X86::COND_O;
16291     break;
16292   case ISD::USUBO:
16293     BaseOp = X86ISD::SUB;
16294     Cond = X86::COND_B;
16295     break;
16296   case ISD::SMULO:
16297     BaseOp = X86ISD::SMUL;
16298     Cond = X86::COND_O;
16299     break;
16300   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
16301     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
16302                                  MVT::i32);
16303     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
16304
16305     SDValue SetCC =
16306       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16307                   DAG.getConstant(X86::COND_O, MVT::i32),
16308                   SDValue(Sum.getNode(), 2));
16309
16310     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
16311   }
16312   }
16313
16314   // Also sets EFLAGS.
16315   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
16316   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
16317
16318   SDValue SetCC =
16319     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
16320                 DAG.getConstant(Cond, MVT::i32),
16321                 SDValue(Sum.getNode(), 1));
16322
16323   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
16324 }
16325
16326 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
16327                                                   SelectionDAG &DAG) const {
16328   SDLoc dl(Op);
16329   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
16330   MVT VT = Op.getSimpleValueType();
16331
16332   if (!Subtarget->hasSSE2() || !VT.isVector())
16333     return SDValue();
16334
16335   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
16336                       ExtraVT.getScalarType().getSizeInBits();
16337
16338   switch (VT.SimpleTy) {
16339     default: return SDValue();
16340     case MVT::v8i32:
16341     case MVT::v16i16:
16342       if (!Subtarget->hasFp256())
16343         return SDValue();
16344       if (!Subtarget->hasInt256()) {
16345         // needs to be split
16346         unsigned NumElems = VT.getVectorNumElements();
16347
16348         // Extract the LHS vectors
16349         SDValue LHS = Op.getOperand(0);
16350         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
16351         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
16352
16353         MVT EltVT = VT.getVectorElementType();
16354         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
16355
16356         EVT ExtraEltVT = ExtraVT.getVectorElementType();
16357         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
16358         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
16359                                    ExtraNumElems/2);
16360         SDValue Extra = DAG.getValueType(ExtraVT);
16361
16362         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
16363         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
16364
16365         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
16366       }
16367       // fall through
16368     case MVT::v4i32:
16369     case MVT::v8i16: {
16370       SDValue Op0 = Op.getOperand(0);
16371       SDValue Op00 = Op0.getOperand(0);
16372       SDValue Tmp1;
16373       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
16374       if (Op0.getOpcode() == ISD::BITCAST &&
16375           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
16376         // (sext (vzext x)) -> (vsext x)
16377         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
16378         if (Tmp1.getNode()) {
16379           EVT ExtraEltVT = ExtraVT.getVectorElementType();
16380           // This folding is only valid when the in-reg type is a vector of i8,
16381           // i16, or i32.
16382           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
16383               ExtraEltVT == MVT::i32) {
16384             SDValue Tmp1Op0 = Tmp1.getOperand(0);
16385             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
16386                    "This optimization is invalid without a VZEXT.");
16387             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
16388           }
16389           Op0 = Tmp1;
16390         }
16391       }
16392
16393       // If the above didn't work, then just use Shift-Left + Shift-Right.
16394       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
16395                                         DAG);
16396       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
16397                                         DAG);
16398     }
16399   }
16400 }
16401
16402 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
16403                                  SelectionDAG &DAG) {
16404   SDLoc dl(Op);
16405   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
16406     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
16407   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
16408     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
16409
16410   // The only fence that needs an instruction is a sequentially-consistent
16411   // cross-thread fence.
16412   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
16413     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
16414     // no-sse2). There isn't any reason to disable it if the target processor
16415     // supports it.
16416     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
16417       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
16418
16419     SDValue Chain = Op.getOperand(0);
16420     SDValue Zero = DAG.getConstant(0, MVT::i32);
16421     SDValue Ops[] = {
16422       DAG.getRegister(X86::ESP, MVT::i32), // Base
16423       DAG.getTargetConstant(1, MVT::i8),   // Scale
16424       DAG.getRegister(0, MVT::i32),        // Index
16425       DAG.getTargetConstant(0, MVT::i32),  // Disp
16426       DAG.getRegister(0, MVT::i32),        // Segment.
16427       Zero,
16428       Chain
16429     };
16430     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
16431     return SDValue(Res, 0);
16432   }
16433
16434   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
16435   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
16436 }
16437
16438 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
16439                              SelectionDAG &DAG) {
16440   MVT T = Op.getSimpleValueType();
16441   SDLoc DL(Op);
16442   unsigned Reg = 0;
16443   unsigned size = 0;
16444   switch(T.SimpleTy) {
16445   default: llvm_unreachable("Invalid value type!");
16446   case MVT::i8:  Reg = X86::AL;  size = 1; break;
16447   case MVT::i16: Reg = X86::AX;  size = 2; break;
16448   case MVT::i32: Reg = X86::EAX; size = 4; break;
16449   case MVT::i64:
16450     assert(Subtarget->is64Bit() && "Node not type legal!");
16451     Reg = X86::RAX; size = 8;
16452     break;
16453   }
16454   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
16455                                   Op.getOperand(2), SDValue());
16456   SDValue Ops[] = { cpIn.getValue(0),
16457                     Op.getOperand(1),
16458                     Op.getOperand(3),
16459                     DAG.getTargetConstant(size, MVT::i8),
16460                     cpIn.getValue(1) };
16461   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16462   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
16463   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
16464                                            Ops, T, MMO);
16465
16466   SDValue cpOut =
16467     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
16468   SDValue EFLAGS = DAG.getCopyFromReg(cpOut.getValue(1), DL, X86::EFLAGS,
16469                                       MVT::i32, cpOut.getValue(2));
16470   SDValue Success = DAG.getNode(X86ISD::SETCC, DL, Op->getValueType(1),
16471                                 DAG.getConstant(X86::COND_E, MVT::i8), EFLAGS);
16472
16473   DAG.ReplaceAllUsesOfValueWith(Op.getValue(0), cpOut);
16474   DAG.ReplaceAllUsesOfValueWith(Op.getValue(1), Success);
16475   DAG.ReplaceAllUsesOfValueWith(Op.getValue(2), EFLAGS.getValue(1));
16476   return SDValue();
16477 }
16478
16479 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
16480                             SelectionDAG &DAG) {
16481   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
16482   MVT DstVT = Op.getSimpleValueType();
16483
16484   if (SrcVT == MVT::v2i32 || SrcVT == MVT::v4i16 || SrcVT == MVT::v8i8) {
16485     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
16486     if (DstVT != MVT::f64)
16487       // This conversion needs to be expanded.
16488       return SDValue();
16489
16490     SDValue InVec = Op->getOperand(0);
16491     SDLoc dl(Op);
16492     unsigned NumElts = SrcVT.getVectorNumElements();
16493     EVT SVT = SrcVT.getVectorElementType();
16494
16495     // Widen the vector in input in the case of MVT::v2i32.
16496     // Example: from MVT::v2i32 to MVT::v4i32.
16497     SmallVector<SDValue, 16> Elts;
16498     for (unsigned i = 0, e = NumElts; i != e; ++i)
16499       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT, InVec,
16500                                  DAG.getIntPtrConstant(i)));
16501
16502     // Explicitly mark the extra elements as Undef.
16503     SDValue Undef = DAG.getUNDEF(SVT);
16504     for (unsigned i = NumElts, e = NumElts * 2; i != e; ++i)
16505       Elts.push_back(Undef);
16506
16507     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
16508     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Elts);
16509     SDValue ToV2F64 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, BV);
16510     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
16511                        DAG.getIntPtrConstant(0));
16512   }
16513
16514   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
16515          Subtarget->hasMMX() && "Unexpected custom BITCAST");
16516   assert((DstVT == MVT::i64 ||
16517           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
16518          "Unexpected custom BITCAST");
16519   // i64 <=> MMX conversions are Legal.
16520   if (SrcVT==MVT::i64 && DstVT.isVector())
16521     return Op;
16522   if (DstVT==MVT::i64 && SrcVT.isVector())
16523     return Op;
16524   // MMX <=> MMX conversions are Legal.
16525   if (SrcVT.isVector() && DstVT.isVector())
16526     return Op;
16527   // All other conversions need to be expanded.
16528   return SDValue();
16529 }
16530
16531 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
16532   SDNode *Node = Op.getNode();
16533   SDLoc dl(Node);
16534   EVT T = Node->getValueType(0);
16535   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
16536                               DAG.getConstant(0, T), Node->getOperand(2));
16537   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
16538                        cast<AtomicSDNode>(Node)->getMemoryVT(),
16539                        Node->getOperand(0),
16540                        Node->getOperand(1), negOp,
16541                        cast<AtomicSDNode>(Node)->getMemOperand(),
16542                        cast<AtomicSDNode>(Node)->getOrdering(),
16543                        cast<AtomicSDNode>(Node)->getSynchScope());
16544 }
16545
16546 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
16547   SDNode *Node = Op.getNode();
16548   SDLoc dl(Node);
16549   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
16550
16551   // Convert seq_cst store -> xchg
16552   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
16553   // FIXME: On 32-bit, store -> fist or movq would be more efficient
16554   //        (The only way to get a 16-byte store is cmpxchg16b)
16555   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
16556   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
16557       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
16558     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
16559                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
16560                                  Node->getOperand(0),
16561                                  Node->getOperand(1), Node->getOperand(2),
16562                                  cast<AtomicSDNode>(Node)->getMemOperand(),
16563                                  cast<AtomicSDNode>(Node)->getOrdering(),
16564                                  cast<AtomicSDNode>(Node)->getSynchScope());
16565     return Swap.getValue(1);
16566   }
16567   // Other atomic stores have a simple pattern.
16568   return Op;
16569 }
16570
16571 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
16572   EVT VT = Op.getNode()->getSimpleValueType(0);
16573
16574   // Let legalize expand this if it isn't a legal type yet.
16575   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
16576     return SDValue();
16577
16578   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
16579
16580   unsigned Opc;
16581   bool ExtraOp = false;
16582   switch (Op.getOpcode()) {
16583   default: llvm_unreachable("Invalid code");
16584   case ISD::ADDC: Opc = X86ISD::ADD; break;
16585   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
16586   case ISD::SUBC: Opc = X86ISD::SUB; break;
16587   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
16588   }
16589
16590   if (!ExtraOp)
16591     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
16592                        Op.getOperand(1));
16593   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
16594                      Op.getOperand(1), Op.getOperand(2));
16595 }
16596
16597 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
16598                             SelectionDAG &DAG) {
16599   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
16600
16601   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
16602   // which returns the values as { float, float } (in XMM0) or
16603   // { double, double } (which is returned in XMM0, XMM1).
16604   SDLoc dl(Op);
16605   SDValue Arg = Op.getOperand(0);
16606   EVT ArgVT = Arg.getValueType();
16607   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
16608
16609   TargetLowering::ArgListTy Args;
16610   TargetLowering::ArgListEntry Entry;
16611
16612   Entry.Node = Arg;
16613   Entry.Ty = ArgTy;
16614   Entry.isSExt = false;
16615   Entry.isZExt = false;
16616   Args.push_back(Entry);
16617
16618   bool isF64 = ArgVT == MVT::f64;
16619   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
16620   // the small struct {f32, f32} is returned in (eax, edx). For f64,
16621   // the results are returned via SRet in memory.
16622   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
16623   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16624   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
16625
16626   Type *RetTy = isF64
16627     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
16628     : (Type*)VectorType::get(ArgTy, 4);
16629
16630   TargetLowering::CallLoweringInfo CLI(DAG);
16631   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
16632     .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
16633
16634   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
16635
16636   if (isF64)
16637     // Returned in xmm0 and xmm1.
16638     return CallResult.first;
16639
16640   // Returned in bits 0:31 and 32:64 xmm0.
16641   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
16642                                CallResult.first, DAG.getIntPtrConstant(0));
16643   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
16644                                CallResult.first, DAG.getIntPtrConstant(1));
16645   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
16646   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
16647 }
16648
16649 /// LowerOperation - Provide custom lowering hooks for some operations.
16650 ///
16651 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
16652   switch (Op.getOpcode()) {
16653   default: llvm_unreachable("Should not custom lower this!");
16654   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
16655   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
16656   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
16657     return LowerCMP_SWAP(Op, Subtarget, DAG);
16658   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
16659   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
16660   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
16661   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
16662   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
16663   case ISD::VSELECT:            return LowerVSELECT(Op, DAG);
16664   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
16665   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
16666   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
16667   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
16668   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
16669   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
16670   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
16671   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
16672   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
16673   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
16674   case ISD::SHL_PARTS:
16675   case ISD::SRA_PARTS:
16676   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
16677   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
16678   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
16679   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
16680   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
16681   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
16682   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
16683   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
16684   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
16685   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
16686   case ISD::LOAD:               return LowerExtendedLoad(Op, Subtarget, DAG);
16687   case ISD::FABS:               return LowerFABS(Op, DAG);
16688   case ISD::FNEG:               return LowerFNEG(Op, DAG);
16689   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
16690   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
16691   case ISD::SETCC:              return LowerSETCC(Op, DAG);
16692   case ISD::SELECT:             return LowerSELECT(Op, DAG);
16693   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
16694   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
16695   case ISD::VASTART:            return LowerVASTART(Op, DAG);
16696   case ISD::VAARG:              return LowerVAARG(Op, DAG);
16697   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
16698   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
16699   case ISD::INTRINSIC_VOID:
16700   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
16701   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
16702   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
16703   case ISD::FRAME_TO_ARGS_OFFSET:
16704                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
16705   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
16706   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
16707   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
16708   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
16709   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
16710   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
16711   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
16712   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
16713   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
16714   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
16715   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
16716   case ISD::UMUL_LOHI:
16717   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
16718   case ISD::SRA:
16719   case ISD::SRL:
16720   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
16721   case ISD::SADDO:
16722   case ISD::UADDO:
16723   case ISD::SSUBO:
16724   case ISD::USUBO:
16725   case ISD::SMULO:
16726   case ISD::UMULO:              return LowerXALUO(Op, DAG);
16727   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
16728   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
16729   case ISD::ADDC:
16730   case ISD::ADDE:
16731   case ISD::SUBC:
16732   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
16733   case ISD::ADD:                return LowerADD(Op, DAG);
16734   case ISD::SUB:                return LowerSUB(Op, DAG);
16735   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
16736   }
16737 }
16738
16739 static void ReplaceATOMIC_LOAD(SDNode *Node,
16740                                SmallVectorImpl<SDValue> &Results,
16741                                SelectionDAG &DAG) {
16742   SDLoc dl(Node);
16743   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
16744
16745   // Convert wide load -> cmpxchg8b/cmpxchg16b
16746   // FIXME: On 32-bit, load -> fild or movq would be more efficient
16747   //        (The only way to get a 16-byte load is cmpxchg16b)
16748   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
16749   SDValue Zero = DAG.getConstant(0, VT);
16750   SDVTList VTs = DAG.getVTList(VT, MVT::i1, MVT::Other);
16751   SDValue Swap =
16752       DAG.getAtomicCmpSwap(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, dl, VT, VTs,
16753                            Node->getOperand(0), Node->getOperand(1), Zero, Zero,
16754                            cast<AtomicSDNode>(Node)->getMemOperand(),
16755                            cast<AtomicSDNode>(Node)->getOrdering(),
16756                            cast<AtomicSDNode>(Node)->getOrdering(),
16757                            cast<AtomicSDNode>(Node)->getSynchScope());
16758   Results.push_back(Swap.getValue(0));
16759   Results.push_back(Swap.getValue(2));
16760 }
16761
16762 /// ReplaceNodeResults - Replace a node with an illegal result type
16763 /// with a new node built out of custom code.
16764 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
16765                                            SmallVectorImpl<SDValue>&Results,
16766                                            SelectionDAG &DAG) const {
16767   SDLoc dl(N);
16768   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16769   switch (N->getOpcode()) {
16770   default:
16771     llvm_unreachable("Do not know how to custom type legalize this operation!");
16772   case ISD::SIGN_EXTEND_INREG:
16773   case ISD::ADDC:
16774   case ISD::ADDE:
16775   case ISD::SUBC:
16776   case ISD::SUBE:
16777     // We don't want to expand or promote these.
16778     return;
16779   case ISD::SDIV:
16780   case ISD::UDIV:
16781   case ISD::SREM:
16782   case ISD::UREM:
16783   case ISD::SDIVREM:
16784   case ISD::UDIVREM: {
16785     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
16786     Results.push_back(V);
16787     return;
16788   }
16789   case ISD::FP_TO_SINT:
16790   case ISD::FP_TO_UINT: {
16791     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
16792
16793     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
16794       return;
16795
16796     std::pair<SDValue,SDValue> Vals =
16797         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
16798     SDValue FIST = Vals.first, StackSlot = Vals.second;
16799     if (FIST.getNode()) {
16800       EVT VT = N->getValueType(0);
16801       // Return a load from the stack slot.
16802       if (StackSlot.getNode())
16803         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
16804                                       MachinePointerInfo(),
16805                                       false, false, false, 0));
16806       else
16807         Results.push_back(FIST);
16808     }
16809     return;
16810   }
16811   case ISD::UINT_TO_FP: {
16812     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
16813     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
16814         N->getValueType(0) != MVT::v2f32)
16815       return;
16816     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
16817                                  N->getOperand(0));
16818     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
16819                                      MVT::f64);
16820     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
16821     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
16822                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
16823     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
16824     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
16825     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
16826     return;
16827   }
16828   case ISD::FP_ROUND: {
16829     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
16830         return;
16831     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
16832     Results.push_back(V);
16833     return;
16834   }
16835   case ISD::INTRINSIC_W_CHAIN: {
16836     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
16837     switch (IntNo) {
16838     default : llvm_unreachable("Do not know how to custom type "
16839                                "legalize this intrinsic operation!");
16840     case Intrinsic::x86_rdtsc:
16841       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
16842                                      Results);
16843     case Intrinsic::x86_rdtscp:
16844       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
16845                                      Results);
16846     case Intrinsic::x86_rdpmc:
16847       return getReadPerformanceCounter(N, dl, DAG, Subtarget, Results);
16848     }
16849   }
16850   case ISD::READCYCLECOUNTER: {
16851     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
16852                                    Results);
16853   }
16854   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
16855     EVT T = N->getValueType(0);
16856     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
16857     bool Regs64bit = T == MVT::i128;
16858     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
16859     SDValue cpInL, cpInH;
16860     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
16861                         DAG.getConstant(0, HalfT));
16862     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
16863                         DAG.getConstant(1, HalfT));
16864     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
16865                              Regs64bit ? X86::RAX : X86::EAX,
16866                              cpInL, SDValue());
16867     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
16868                              Regs64bit ? X86::RDX : X86::EDX,
16869                              cpInH, cpInL.getValue(1));
16870     SDValue swapInL, swapInH;
16871     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
16872                           DAG.getConstant(0, HalfT));
16873     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
16874                           DAG.getConstant(1, HalfT));
16875     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
16876                                Regs64bit ? X86::RBX : X86::EBX,
16877                                swapInL, cpInH.getValue(1));
16878     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
16879                                Regs64bit ? X86::RCX : X86::ECX,
16880                                swapInH, swapInL.getValue(1));
16881     SDValue Ops[] = { swapInH.getValue(0),
16882                       N->getOperand(1),
16883                       swapInH.getValue(1) };
16884     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16885     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
16886     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
16887                                   X86ISD::LCMPXCHG8_DAG;
16888     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
16889     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
16890                                         Regs64bit ? X86::RAX : X86::EAX,
16891                                         HalfT, Result.getValue(1));
16892     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
16893                                         Regs64bit ? X86::RDX : X86::EDX,
16894                                         HalfT, cpOutL.getValue(2));
16895     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
16896
16897     SDValue EFLAGS = DAG.getCopyFromReg(cpOutH.getValue(1), dl, X86::EFLAGS,
16898                                         MVT::i32, cpOutH.getValue(2));
16899     SDValue Success =
16900         DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16901                     DAG.getConstant(X86::COND_E, MVT::i8), EFLAGS);
16902     Success = DAG.getZExtOrTrunc(Success, dl, N->getValueType(1));
16903
16904     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
16905     Results.push_back(Success);
16906     Results.push_back(EFLAGS.getValue(1));
16907     return;
16908   }
16909   case ISD::ATOMIC_SWAP:
16910   case ISD::ATOMIC_LOAD_ADD:
16911   case ISD::ATOMIC_LOAD_SUB:
16912   case ISD::ATOMIC_LOAD_AND:
16913   case ISD::ATOMIC_LOAD_OR:
16914   case ISD::ATOMIC_LOAD_XOR:
16915   case ISD::ATOMIC_LOAD_NAND:
16916   case ISD::ATOMIC_LOAD_MIN:
16917   case ISD::ATOMIC_LOAD_MAX:
16918   case ISD::ATOMIC_LOAD_UMIN:
16919   case ISD::ATOMIC_LOAD_UMAX:
16920     // Delegate to generic TypeLegalization. Situations we can really handle
16921     // should have already been dealt with by X86AtomicExpand.cpp.
16922     break;
16923   case ISD::ATOMIC_LOAD: {
16924     ReplaceATOMIC_LOAD(N, Results, DAG);
16925     return;
16926   }
16927   case ISD::BITCAST: {
16928     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
16929     EVT DstVT = N->getValueType(0);
16930     EVT SrcVT = N->getOperand(0)->getValueType(0);
16931
16932     if (SrcVT != MVT::f64 ||
16933         (DstVT != MVT::v2i32 && DstVT != MVT::v4i16 && DstVT != MVT::v8i8))
16934       return;
16935
16936     unsigned NumElts = DstVT.getVectorNumElements();
16937     EVT SVT = DstVT.getVectorElementType();
16938     EVT WiderVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
16939     SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
16940                                    MVT::v2f64, N->getOperand(0));
16941     SDValue ToVecInt = DAG.getNode(ISD::BITCAST, dl, WiderVT, Expanded);
16942
16943     if (ExperimentalVectorWideningLegalization) {
16944       // If we are legalizing vectors by widening, we already have the desired
16945       // legal vector type, just return it.
16946       Results.push_back(ToVecInt);
16947       return;
16948     }
16949
16950     SmallVector<SDValue, 8> Elts;
16951     for (unsigned i = 0, e = NumElts; i != e; ++i)
16952       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT,
16953                                    ToVecInt, DAG.getIntPtrConstant(i)));
16954
16955     Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, DstVT, Elts));
16956   }
16957   }
16958 }
16959
16960 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
16961   switch (Opcode) {
16962   default: return nullptr;
16963   case X86ISD::BSF:                return "X86ISD::BSF";
16964   case X86ISD::BSR:                return "X86ISD::BSR";
16965   case X86ISD::SHLD:               return "X86ISD::SHLD";
16966   case X86ISD::SHRD:               return "X86ISD::SHRD";
16967   case X86ISD::FAND:               return "X86ISD::FAND";
16968   case X86ISD::FANDN:              return "X86ISD::FANDN";
16969   case X86ISD::FOR:                return "X86ISD::FOR";
16970   case X86ISD::FXOR:               return "X86ISD::FXOR";
16971   case X86ISD::FSRL:               return "X86ISD::FSRL";
16972   case X86ISD::FILD:               return "X86ISD::FILD";
16973   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
16974   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
16975   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
16976   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
16977   case X86ISD::FLD:                return "X86ISD::FLD";
16978   case X86ISD::FST:                return "X86ISD::FST";
16979   case X86ISD::CALL:               return "X86ISD::CALL";
16980   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
16981   case X86ISD::RDTSCP_DAG:         return "X86ISD::RDTSCP_DAG";
16982   case X86ISD::RDPMC_DAG:          return "X86ISD::RDPMC_DAG";
16983   case X86ISD::BT:                 return "X86ISD::BT";
16984   case X86ISD::CMP:                return "X86ISD::CMP";
16985   case X86ISD::COMI:               return "X86ISD::COMI";
16986   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
16987   case X86ISD::CMPM:               return "X86ISD::CMPM";
16988   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
16989   case X86ISD::SETCC:              return "X86ISD::SETCC";
16990   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
16991   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
16992   case X86ISD::CMOV:               return "X86ISD::CMOV";
16993   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
16994   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
16995   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
16996   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
16997   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
16998   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
16999   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
17000   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
17001   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
17002   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
17003   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
17004   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
17005   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
17006   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
17007   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
17008   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
17009   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
17010   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
17011   case X86ISD::HADD:               return "X86ISD::HADD";
17012   case X86ISD::HSUB:               return "X86ISD::HSUB";
17013   case X86ISD::FHADD:              return "X86ISD::FHADD";
17014   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
17015   case X86ISD::UMAX:               return "X86ISD::UMAX";
17016   case X86ISD::UMIN:               return "X86ISD::UMIN";
17017   case X86ISD::SMAX:               return "X86ISD::SMAX";
17018   case X86ISD::SMIN:               return "X86ISD::SMIN";
17019   case X86ISD::FMAX:               return "X86ISD::FMAX";
17020   case X86ISD::FMIN:               return "X86ISD::FMIN";
17021   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
17022   case X86ISD::FMINC:              return "X86ISD::FMINC";
17023   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
17024   case X86ISD::FRCP:               return "X86ISD::FRCP";
17025   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
17026   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
17027   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
17028   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
17029   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
17030   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
17031   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
17032   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
17033   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
17034   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
17035   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
17036   case X86ISD::LCMPXCHG16_DAG:     return "X86ISD::LCMPXCHG16_DAG";
17037   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
17038   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
17039   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
17040   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
17041   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
17042   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
17043   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
17044   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
17045   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
17046   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
17047   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
17048   case X86ISD::VSHL:               return "X86ISD::VSHL";
17049   case X86ISD::VSRL:               return "X86ISD::VSRL";
17050   case X86ISD::VSRA:               return "X86ISD::VSRA";
17051   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
17052   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
17053   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
17054   case X86ISD::CMPP:               return "X86ISD::CMPP";
17055   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
17056   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
17057   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
17058   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
17059   case X86ISD::ADD:                return "X86ISD::ADD";
17060   case X86ISD::SUB:                return "X86ISD::SUB";
17061   case X86ISD::ADC:                return "X86ISD::ADC";
17062   case X86ISD::SBB:                return "X86ISD::SBB";
17063   case X86ISD::SMUL:               return "X86ISD::SMUL";
17064   case X86ISD::UMUL:               return "X86ISD::UMUL";
17065   case X86ISD::INC:                return "X86ISD::INC";
17066   case X86ISD::DEC:                return "X86ISD::DEC";
17067   case X86ISD::OR:                 return "X86ISD::OR";
17068   case X86ISD::XOR:                return "X86ISD::XOR";
17069   case X86ISD::AND:                return "X86ISD::AND";
17070   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
17071   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
17072   case X86ISD::PTEST:              return "X86ISD::PTEST";
17073   case X86ISD::TESTP:              return "X86ISD::TESTP";
17074   case X86ISD::TESTM:              return "X86ISD::TESTM";
17075   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
17076   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
17077   case X86ISD::PACKSS:             return "X86ISD::PACKSS";
17078   case X86ISD::PACKUS:             return "X86ISD::PACKUS";
17079   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
17080   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
17081   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
17082   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
17083   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
17084   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
17085   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
17086   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
17087   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
17088   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
17089   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
17090   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
17091   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
17092   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
17093   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
17094   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
17095   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
17096   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
17097   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
17098   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
17099   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
17100   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
17101   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
17102   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
17103   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
17104   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
17105   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
17106   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
17107   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
17108   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
17109   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
17110   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
17111   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
17112   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
17113   case X86ISD::SAHF:               return "X86ISD::SAHF";
17114   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
17115   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
17116   case X86ISD::FMADD:              return "X86ISD::FMADD";
17117   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
17118   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
17119   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
17120   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
17121   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
17122   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
17123   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
17124   case X86ISD::XTEST:              return "X86ISD::XTEST";
17125   }
17126 }
17127
17128 // isLegalAddressingMode - Return true if the addressing mode represented
17129 // by AM is legal for this target, for a load/store of the specified type.
17130 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
17131                                               Type *Ty) const {
17132   // X86 supports extremely general addressing modes.
17133   CodeModel::Model M = getTargetMachine().getCodeModel();
17134   Reloc::Model R = getTargetMachine().getRelocationModel();
17135
17136   // X86 allows a sign-extended 32-bit immediate field as a displacement.
17137   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
17138     return false;
17139
17140   if (AM.BaseGV) {
17141     unsigned GVFlags =
17142       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
17143
17144     // If a reference to this global requires an extra load, we can't fold it.
17145     if (isGlobalStubReference(GVFlags))
17146       return false;
17147
17148     // If BaseGV requires a register for the PIC base, we cannot also have a
17149     // BaseReg specified.
17150     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
17151       return false;
17152
17153     // If lower 4G is not available, then we must use rip-relative addressing.
17154     if ((M != CodeModel::Small || R != Reloc::Static) &&
17155         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
17156       return false;
17157   }
17158
17159   switch (AM.Scale) {
17160   case 0:
17161   case 1:
17162   case 2:
17163   case 4:
17164   case 8:
17165     // These scales always work.
17166     break;
17167   case 3:
17168   case 5:
17169   case 9:
17170     // These scales are formed with basereg+scalereg.  Only accept if there is
17171     // no basereg yet.
17172     if (AM.HasBaseReg)
17173       return false;
17174     break;
17175   default:  // Other stuff never works.
17176     return false;
17177   }
17178
17179   return true;
17180 }
17181
17182 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
17183   unsigned Bits = Ty->getScalarSizeInBits();
17184
17185   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
17186   // particularly cheaper than those without.
17187   if (Bits == 8)
17188     return false;
17189
17190   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
17191   // variable shifts just as cheap as scalar ones.
17192   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
17193     return false;
17194
17195   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
17196   // fully general vector.
17197   return true;
17198 }
17199
17200 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
17201   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
17202     return false;
17203   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
17204   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
17205   return NumBits1 > NumBits2;
17206 }
17207
17208 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
17209   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
17210     return false;
17211
17212   if (!isTypeLegal(EVT::getEVT(Ty1)))
17213     return false;
17214
17215   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
17216
17217   // Assuming the caller doesn't have a zeroext or signext return parameter,
17218   // truncation all the way down to i1 is valid.
17219   return true;
17220 }
17221
17222 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
17223   return isInt<32>(Imm);
17224 }
17225
17226 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
17227   // Can also use sub to handle negated immediates.
17228   return isInt<32>(Imm);
17229 }
17230
17231 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
17232   if (!VT1.isInteger() || !VT2.isInteger())
17233     return false;
17234   unsigned NumBits1 = VT1.getSizeInBits();
17235   unsigned NumBits2 = VT2.getSizeInBits();
17236   return NumBits1 > NumBits2;
17237 }
17238
17239 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
17240   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
17241   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
17242 }
17243
17244 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
17245   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
17246   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
17247 }
17248
17249 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
17250   EVT VT1 = Val.getValueType();
17251   if (isZExtFree(VT1, VT2))
17252     return true;
17253
17254   if (Val.getOpcode() != ISD::LOAD)
17255     return false;
17256
17257   if (!VT1.isSimple() || !VT1.isInteger() ||
17258       !VT2.isSimple() || !VT2.isInteger())
17259     return false;
17260
17261   switch (VT1.getSimpleVT().SimpleTy) {
17262   default: break;
17263   case MVT::i8:
17264   case MVT::i16:
17265   case MVT::i32:
17266     // X86 has 8, 16, and 32-bit zero-extending loads.
17267     return true;
17268   }
17269
17270   return false;
17271 }
17272
17273 bool
17274 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
17275   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
17276     return false;
17277
17278   VT = VT.getScalarType();
17279
17280   if (!VT.isSimple())
17281     return false;
17282
17283   switch (VT.getSimpleVT().SimpleTy) {
17284   case MVT::f32:
17285   case MVT::f64:
17286     return true;
17287   default:
17288     break;
17289   }
17290
17291   return false;
17292 }
17293
17294 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
17295   // i16 instructions are longer (0x66 prefix) and potentially slower.
17296   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
17297 }
17298
17299 /// isShuffleMaskLegal - Targets can use this to indicate that they only
17300 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
17301 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
17302 /// are assumed to be legal.
17303 bool
17304 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
17305                                       EVT VT) const {
17306   if (!VT.isSimple())
17307     return false;
17308
17309   MVT SVT = VT.getSimpleVT();
17310
17311   // Very little shuffling can be done for 64-bit vectors right now.
17312   if (VT.getSizeInBits() == 64)
17313     return false;
17314
17315   // If this is a single-input shuffle with no 128 bit lane crossings we can
17316   // lower it into pshufb.
17317   if ((SVT.is128BitVector() && Subtarget->hasSSSE3()) ||
17318       (SVT.is256BitVector() && Subtarget->hasInt256())) {
17319     bool isLegal = true;
17320     for (unsigned I = 0, E = M.size(); I != E; ++I) {
17321       if (M[I] >= (int)SVT.getVectorNumElements() ||
17322           ShuffleCrosses128bitLane(SVT, I, M[I])) {
17323         isLegal = false;
17324         break;
17325       }
17326     }
17327     if (isLegal)
17328       return true;
17329   }
17330
17331   // FIXME: blends, shifts.
17332   return (SVT.getVectorNumElements() == 2 ||
17333           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
17334           isMOVLMask(M, SVT) ||
17335           isMOVHLPSMask(M, SVT) ||
17336           isSHUFPMask(M, SVT) ||
17337           isPSHUFDMask(M, SVT) ||
17338           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
17339           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
17340           isPALIGNRMask(M, SVT, Subtarget) ||
17341           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
17342           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
17343           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
17344           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
17345           isBlendMask(M, SVT, Subtarget->hasSSE41(), Subtarget->hasInt256()));
17346 }
17347
17348 bool
17349 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
17350                                           EVT VT) const {
17351   if (!VT.isSimple())
17352     return false;
17353
17354   MVT SVT = VT.getSimpleVT();
17355   unsigned NumElts = SVT.getVectorNumElements();
17356   // FIXME: This collection of masks seems suspect.
17357   if (NumElts == 2)
17358     return true;
17359   if (NumElts == 4 && SVT.is128BitVector()) {
17360     return (isMOVLMask(Mask, SVT)  ||
17361             isCommutedMOVLMask(Mask, SVT, true) ||
17362             isSHUFPMask(Mask, SVT) ||
17363             isSHUFPMask(Mask, SVT, /* Commuted */ true));
17364   }
17365   return false;
17366 }
17367
17368 //===----------------------------------------------------------------------===//
17369 //                           X86 Scheduler Hooks
17370 //===----------------------------------------------------------------------===//
17371
17372 /// Utility function to emit xbegin specifying the start of an RTM region.
17373 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
17374                                      const TargetInstrInfo *TII) {
17375   DebugLoc DL = MI->getDebugLoc();
17376
17377   const BasicBlock *BB = MBB->getBasicBlock();
17378   MachineFunction::iterator I = MBB;
17379   ++I;
17380
17381   // For the v = xbegin(), we generate
17382   //
17383   // thisMBB:
17384   //  xbegin sinkMBB
17385   //
17386   // mainMBB:
17387   //  eax = -1
17388   //
17389   // sinkMBB:
17390   //  v = eax
17391
17392   MachineBasicBlock *thisMBB = MBB;
17393   MachineFunction *MF = MBB->getParent();
17394   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
17395   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
17396   MF->insert(I, mainMBB);
17397   MF->insert(I, sinkMBB);
17398
17399   // Transfer the remainder of BB and its successor edges to sinkMBB.
17400   sinkMBB->splice(sinkMBB->begin(), MBB,
17401                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
17402   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
17403
17404   // thisMBB:
17405   //  xbegin sinkMBB
17406   //  # fallthrough to mainMBB
17407   //  # abortion to sinkMBB
17408   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
17409   thisMBB->addSuccessor(mainMBB);
17410   thisMBB->addSuccessor(sinkMBB);
17411
17412   // mainMBB:
17413   //  EAX = -1
17414   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
17415   mainMBB->addSuccessor(sinkMBB);
17416
17417   // sinkMBB:
17418   // EAX is live into the sinkMBB
17419   sinkMBB->addLiveIn(X86::EAX);
17420   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
17421           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
17422     .addReg(X86::EAX);
17423
17424   MI->eraseFromParent();
17425   return sinkMBB;
17426 }
17427
17428 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
17429 // or XMM0_V32I8 in AVX all of this code can be replaced with that
17430 // in the .td file.
17431 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
17432                                        const TargetInstrInfo *TII) {
17433   unsigned Opc;
17434   switch (MI->getOpcode()) {
17435   default: llvm_unreachable("illegal opcode!");
17436   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
17437   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
17438   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
17439   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
17440   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
17441   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
17442   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
17443   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
17444   }
17445
17446   DebugLoc dl = MI->getDebugLoc();
17447   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
17448
17449   unsigned NumArgs = MI->getNumOperands();
17450   for (unsigned i = 1; i < NumArgs; ++i) {
17451     MachineOperand &Op = MI->getOperand(i);
17452     if (!(Op.isReg() && Op.isImplicit()))
17453       MIB.addOperand(Op);
17454   }
17455   if (MI->hasOneMemOperand())
17456     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
17457
17458   BuildMI(*BB, MI, dl,
17459     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
17460     .addReg(X86::XMM0);
17461
17462   MI->eraseFromParent();
17463   return BB;
17464 }
17465
17466 // FIXME: Custom handling because TableGen doesn't support multiple implicit
17467 // defs in an instruction pattern
17468 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
17469                                        const TargetInstrInfo *TII) {
17470   unsigned Opc;
17471   switch (MI->getOpcode()) {
17472   default: llvm_unreachable("illegal opcode!");
17473   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
17474   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
17475   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
17476   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
17477   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
17478   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
17479   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
17480   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
17481   }
17482
17483   DebugLoc dl = MI->getDebugLoc();
17484   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
17485
17486   unsigned NumArgs = MI->getNumOperands(); // remove the results
17487   for (unsigned i = 1; i < NumArgs; ++i) {
17488     MachineOperand &Op = MI->getOperand(i);
17489     if (!(Op.isReg() && Op.isImplicit()))
17490       MIB.addOperand(Op);
17491   }
17492   if (MI->hasOneMemOperand())
17493     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
17494
17495   BuildMI(*BB, MI, dl,
17496     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
17497     .addReg(X86::ECX);
17498
17499   MI->eraseFromParent();
17500   return BB;
17501 }
17502
17503 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
17504                                        const TargetInstrInfo *TII,
17505                                        const X86Subtarget* Subtarget) {
17506   DebugLoc dl = MI->getDebugLoc();
17507
17508   // Address into RAX/EAX, other two args into ECX, EDX.
17509   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
17510   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
17511   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
17512   for (int i = 0; i < X86::AddrNumOperands; ++i)
17513     MIB.addOperand(MI->getOperand(i));
17514
17515   unsigned ValOps = X86::AddrNumOperands;
17516   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
17517     .addReg(MI->getOperand(ValOps).getReg());
17518   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
17519     .addReg(MI->getOperand(ValOps+1).getReg());
17520
17521   // The instruction doesn't actually take any operands though.
17522   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
17523
17524   MI->eraseFromParent(); // The pseudo is gone now.
17525   return BB;
17526 }
17527
17528 MachineBasicBlock *
17529 X86TargetLowering::EmitVAARG64WithCustomInserter(
17530                    MachineInstr *MI,
17531                    MachineBasicBlock *MBB) const {
17532   // Emit va_arg instruction on X86-64.
17533
17534   // Operands to this pseudo-instruction:
17535   // 0  ) Output        : destination address (reg)
17536   // 1-5) Input         : va_list address (addr, i64mem)
17537   // 6  ) ArgSize       : Size (in bytes) of vararg type
17538   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
17539   // 8  ) Align         : Alignment of type
17540   // 9  ) EFLAGS (implicit-def)
17541
17542   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
17543   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
17544
17545   unsigned DestReg = MI->getOperand(0).getReg();
17546   MachineOperand &Base = MI->getOperand(1);
17547   MachineOperand &Scale = MI->getOperand(2);
17548   MachineOperand &Index = MI->getOperand(3);
17549   MachineOperand &Disp = MI->getOperand(4);
17550   MachineOperand &Segment = MI->getOperand(5);
17551   unsigned ArgSize = MI->getOperand(6).getImm();
17552   unsigned ArgMode = MI->getOperand(7).getImm();
17553   unsigned Align = MI->getOperand(8).getImm();
17554
17555   // Memory Reference
17556   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
17557   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
17558   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
17559
17560   // Machine Information
17561   const TargetInstrInfo *TII = MBB->getParent()->getTarget().getInstrInfo();
17562   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
17563   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
17564   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
17565   DebugLoc DL = MI->getDebugLoc();
17566
17567   // struct va_list {
17568   //   i32   gp_offset
17569   //   i32   fp_offset
17570   //   i64   overflow_area (address)
17571   //   i64   reg_save_area (address)
17572   // }
17573   // sizeof(va_list) = 24
17574   // alignment(va_list) = 8
17575
17576   unsigned TotalNumIntRegs = 6;
17577   unsigned TotalNumXMMRegs = 8;
17578   bool UseGPOffset = (ArgMode == 1);
17579   bool UseFPOffset = (ArgMode == 2);
17580   unsigned MaxOffset = TotalNumIntRegs * 8 +
17581                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
17582
17583   /* Align ArgSize to a multiple of 8 */
17584   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
17585   bool NeedsAlign = (Align > 8);
17586
17587   MachineBasicBlock *thisMBB = MBB;
17588   MachineBasicBlock *overflowMBB;
17589   MachineBasicBlock *offsetMBB;
17590   MachineBasicBlock *endMBB;
17591
17592   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
17593   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
17594   unsigned OffsetReg = 0;
17595
17596   if (!UseGPOffset && !UseFPOffset) {
17597     // If we only pull from the overflow region, we don't create a branch.
17598     // We don't need to alter control flow.
17599     OffsetDestReg = 0; // unused
17600     OverflowDestReg = DestReg;
17601
17602     offsetMBB = nullptr;
17603     overflowMBB = thisMBB;
17604     endMBB = thisMBB;
17605   } else {
17606     // First emit code to check if gp_offset (or fp_offset) is below the bound.
17607     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
17608     // If not, pull from overflow_area. (branch to overflowMBB)
17609     //
17610     //       thisMBB
17611     //         |     .
17612     //         |        .
17613     //     offsetMBB   overflowMBB
17614     //         |        .
17615     //         |     .
17616     //        endMBB
17617
17618     // Registers for the PHI in endMBB
17619     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
17620     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
17621
17622     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
17623     MachineFunction *MF = MBB->getParent();
17624     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17625     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17626     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17627
17628     MachineFunction::iterator MBBIter = MBB;
17629     ++MBBIter;
17630
17631     // Insert the new basic blocks
17632     MF->insert(MBBIter, offsetMBB);
17633     MF->insert(MBBIter, overflowMBB);
17634     MF->insert(MBBIter, endMBB);
17635
17636     // Transfer the remainder of MBB and its successor edges to endMBB.
17637     endMBB->splice(endMBB->begin(), thisMBB,
17638                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
17639     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
17640
17641     // Make offsetMBB and overflowMBB successors of thisMBB
17642     thisMBB->addSuccessor(offsetMBB);
17643     thisMBB->addSuccessor(overflowMBB);
17644
17645     // endMBB is a successor of both offsetMBB and overflowMBB
17646     offsetMBB->addSuccessor(endMBB);
17647     overflowMBB->addSuccessor(endMBB);
17648
17649     // Load the offset value into a register
17650     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
17651     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
17652       .addOperand(Base)
17653       .addOperand(Scale)
17654       .addOperand(Index)
17655       .addDisp(Disp, UseFPOffset ? 4 : 0)
17656       .addOperand(Segment)
17657       .setMemRefs(MMOBegin, MMOEnd);
17658
17659     // Check if there is enough room left to pull this argument.
17660     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
17661       .addReg(OffsetReg)
17662       .addImm(MaxOffset + 8 - ArgSizeA8);
17663
17664     // Branch to "overflowMBB" if offset >= max
17665     // Fall through to "offsetMBB" otherwise
17666     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
17667       .addMBB(overflowMBB);
17668   }
17669
17670   // In offsetMBB, emit code to use the reg_save_area.
17671   if (offsetMBB) {
17672     assert(OffsetReg != 0);
17673
17674     // Read the reg_save_area address.
17675     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
17676     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
17677       .addOperand(Base)
17678       .addOperand(Scale)
17679       .addOperand(Index)
17680       .addDisp(Disp, 16)
17681       .addOperand(Segment)
17682       .setMemRefs(MMOBegin, MMOEnd);
17683
17684     // Zero-extend the offset
17685     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
17686       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
17687         .addImm(0)
17688         .addReg(OffsetReg)
17689         .addImm(X86::sub_32bit);
17690
17691     // Add the offset to the reg_save_area to get the final address.
17692     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
17693       .addReg(OffsetReg64)
17694       .addReg(RegSaveReg);
17695
17696     // Compute the offset for the next argument
17697     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
17698     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
17699       .addReg(OffsetReg)
17700       .addImm(UseFPOffset ? 16 : 8);
17701
17702     // Store it back into the va_list.
17703     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
17704       .addOperand(Base)
17705       .addOperand(Scale)
17706       .addOperand(Index)
17707       .addDisp(Disp, UseFPOffset ? 4 : 0)
17708       .addOperand(Segment)
17709       .addReg(NextOffsetReg)
17710       .setMemRefs(MMOBegin, MMOEnd);
17711
17712     // Jump to endMBB
17713     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
17714       .addMBB(endMBB);
17715   }
17716
17717   //
17718   // Emit code to use overflow area
17719   //
17720
17721   // Load the overflow_area address into a register.
17722   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
17723   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
17724     .addOperand(Base)
17725     .addOperand(Scale)
17726     .addOperand(Index)
17727     .addDisp(Disp, 8)
17728     .addOperand(Segment)
17729     .setMemRefs(MMOBegin, MMOEnd);
17730
17731   // If we need to align it, do so. Otherwise, just copy the address
17732   // to OverflowDestReg.
17733   if (NeedsAlign) {
17734     // Align the overflow address
17735     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
17736     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
17737
17738     // aligned_addr = (addr + (align-1)) & ~(align-1)
17739     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
17740       .addReg(OverflowAddrReg)
17741       .addImm(Align-1);
17742
17743     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
17744       .addReg(TmpReg)
17745       .addImm(~(uint64_t)(Align-1));
17746   } else {
17747     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
17748       .addReg(OverflowAddrReg);
17749   }
17750
17751   // Compute the next overflow address after this argument.
17752   // (the overflow address should be kept 8-byte aligned)
17753   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
17754   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
17755     .addReg(OverflowDestReg)
17756     .addImm(ArgSizeA8);
17757
17758   // Store the new overflow address.
17759   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
17760     .addOperand(Base)
17761     .addOperand(Scale)
17762     .addOperand(Index)
17763     .addDisp(Disp, 8)
17764     .addOperand(Segment)
17765     .addReg(NextAddrReg)
17766     .setMemRefs(MMOBegin, MMOEnd);
17767
17768   // If we branched, emit the PHI to the front of endMBB.
17769   if (offsetMBB) {
17770     BuildMI(*endMBB, endMBB->begin(), DL,
17771             TII->get(X86::PHI), DestReg)
17772       .addReg(OffsetDestReg).addMBB(offsetMBB)
17773       .addReg(OverflowDestReg).addMBB(overflowMBB);
17774   }
17775
17776   // Erase the pseudo instruction
17777   MI->eraseFromParent();
17778
17779   return endMBB;
17780 }
17781
17782 MachineBasicBlock *
17783 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
17784                                                  MachineInstr *MI,
17785                                                  MachineBasicBlock *MBB) const {
17786   // Emit code to save XMM registers to the stack. The ABI says that the
17787   // number of registers to save is given in %al, so it's theoretically
17788   // possible to do an indirect jump trick to avoid saving all of them,
17789   // however this code takes a simpler approach and just executes all
17790   // of the stores if %al is non-zero. It's less code, and it's probably
17791   // easier on the hardware branch predictor, and stores aren't all that
17792   // expensive anyway.
17793
17794   // Create the new basic blocks. One block contains all the XMM stores,
17795   // and one block is the final destination regardless of whether any
17796   // stores were performed.
17797   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
17798   MachineFunction *F = MBB->getParent();
17799   MachineFunction::iterator MBBIter = MBB;
17800   ++MBBIter;
17801   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
17802   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
17803   F->insert(MBBIter, XMMSaveMBB);
17804   F->insert(MBBIter, EndMBB);
17805
17806   // Transfer the remainder of MBB and its successor edges to EndMBB.
17807   EndMBB->splice(EndMBB->begin(), MBB,
17808                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
17809   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
17810
17811   // The original block will now fall through to the XMM save block.
17812   MBB->addSuccessor(XMMSaveMBB);
17813   // The XMMSaveMBB will fall through to the end block.
17814   XMMSaveMBB->addSuccessor(EndMBB);
17815
17816   // Now add the instructions.
17817   const TargetInstrInfo *TII = MBB->getParent()->getTarget().getInstrInfo();
17818   DebugLoc DL = MI->getDebugLoc();
17819
17820   unsigned CountReg = MI->getOperand(0).getReg();
17821   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
17822   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
17823
17824   if (!Subtarget->isTargetWin64()) {
17825     // If %al is 0, branch around the XMM save block.
17826     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
17827     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
17828     MBB->addSuccessor(EndMBB);
17829   }
17830
17831   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
17832   // that was just emitted, but clearly shouldn't be "saved".
17833   assert((MI->getNumOperands() <= 3 ||
17834           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
17835           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
17836          && "Expected last argument to be EFLAGS");
17837   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
17838   // In the XMM save block, save all the XMM argument registers.
17839   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
17840     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
17841     MachineMemOperand *MMO =
17842       F->getMachineMemOperand(
17843           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
17844         MachineMemOperand::MOStore,
17845         /*Size=*/16, /*Align=*/16);
17846     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
17847       .addFrameIndex(RegSaveFrameIndex)
17848       .addImm(/*Scale=*/1)
17849       .addReg(/*IndexReg=*/0)
17850       .addImm(/*Disp=*/Offset)
17851       .addReg(/*Segment=*/0)
17852       .addReg(MI->getOperand(i).getReg())
17853       .addMemOperand(MMO);
17854   }
17855
17856   MI->eraseFromParent();   // The pseudo instruction is gone now.
17857
17858   return EndMBB;
17859 }
17860
17861 // The EFLAGS operand of SelectItr might be missing a kill marker
17862 // because there were multiple uses of EFLAGS, and ISel didn't know
17863 // which to mark. Figure out whether SelectItr should have had a
17864 // kill marker, and set it if it should. Returns the correct kill
17865 // marker value.
17866 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
17867                                      MachineBasicBlock* BB,
17868                                      const TargetRegisterInfo* TRI) {
17869   // Scan forward through BB for a use/def of EFLAGS.
17870   MachineBasicBlock::iterator miI(std::next(SelectItr));
17871   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
17872     const MachineInstr& mi = *miI;
17873     if (mi.readsRegister(X86::EFLAGS))
17874       return false;
17875     if (mi.definesRegister(X86::EFLAGS))
17876       break; // Should have kill-flag - update below.
17877   }
17878
17879   // If we hit the end of the block, check whether EFLAGS is live into a
17880   // successor.
17881   if (miI == BB->end()) {
17882     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
17883                                           sEnd = BB->succ_end();
17884          sItr != sEnd; ++sItr) {
17885       MachineBasicBlock* succ = *sItr;
17886       if (succ->isLiveIn(X86::EFLAGS))
17887         return false;
17888     }
17889   }
17890
17891   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
17892   // out. SelectMI should have a kill flag on EFLAGS.
17893   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
17894   return true;
17895 }
17896
17897 MachineBasicBlock *
17898 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
17899                                      MachineBasicBlock *BB) const {
17900   const TargetInstrInfo *TII = BB->getParent()->getTarget().getInstrInfo();
17901   DebugLoc DL = MI->getDebugLoc();
17902
17903   // To "insert" a SELECT_CC instruction, we actually have to insert the
17904   // diamond control-flow pattern.  The incoming instruction knows the
17905   // destination vreg to set, the condition code register to branch on, the
17906   // true/false values to select between, and a branch opcode to use.
17907   const BasicBlock *LLVM_BB = BB->getBasicBlock();
17908   MachineFunction::iterator It = BB;
17909   ++It;
17910
17911   //  thisMBB:
17912   //  ...
17913   //   TrueVal = ...
17914   //   cmpTY ccX, r1, r2
17915   //   bCC copy1MBB
17916   //   fallthrough --> copy0MBB
17917   MachineBasicBlock *thisMBB = BB;
17918   MachineFunction *F = BB->getParent();
17919   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
17920   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
17921   F->insert(It, copy0MBB);
17922   F->insert(It, sinkMBB);
17923
17924   // If the EFLAGS register isn't dead in the terminator, then claim that it's
17925   // live into the sink and copy blocks.
17926   const TargetRegisterInfo* TRI = BB->getParent()->getTarget().getRegisterInfo();
17927   if (!MI->killsRegister(X86::EFLAGS) &&
17928       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
17929     copy0MBB->addLiveIn(X86::EFLAGS);
17930     sinkMBB->addLiveIn(X86::EFLAGS);
17931   }
17932
17933   // Transfer the remainder of BB and its successor edges to sinkMBB.
17934   sinkMBB->splice(sinkMBB->begin(), BB,
17935                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
17936   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
17937
17938   // Add the true and fallthrough blocks as its successors.
17939   BB->addSuccessor(copy0MBB);
17940   BB->addSuccessor(sinkMBB);
17941
17942   // Create the conditional branch instruction.
17943   unsigned Opc =
17944     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
17945   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
17946
17947   //  copy0MBB:
17948   //   %FalseValue = ...
17949   //   # fallthrough to sinkMBB
17950   copy0MBB->addSuccessor(sinkMBB);
17951
17952   //  sinkMBB:
17953   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
17954   //  ...
17955   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
17956           TII->get(X86::PHI), MI->getOperand(0).getReg())
17957     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
17958     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
17959
17960   MI->eraseFromParent();   // The pseudo instruction is gone now.
17961   return sinkMBB;
17962 }
17963
17964 MachineBasicBlock *
17965 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
17966                                         bool Is64Bit) const {
17967   MachineFunction *MF = BB->getParent();
17968   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
17969   DebugLoc DL = MI->getDebugLoc();
17970   const BasicBlock *LLVM_BB = BB->getBasicBlock();
17971
17972   assert(MF->shouldSplitStack());
17973
17974   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
17975   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
17976
17977   // BB:
17978   //  ... [Till the alloca]
17979   // If stacklet is not large enough, jump to mallocMBB
17980   //
17981   // bumpMBB:
17982   //  Allocate by subtracting from RSP
17983   //  Jump to continueMBB
17984   //
17985   // mallocMBB:
17986   //  Allocate by call to runtime
17987   //
17988   // continueMBB:
17989   //  ...
17990   //  [rest of original BB]
17991   //
17992
17993   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17994   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17995   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17996
17997   MachineRegisterInfo &MRI = MF->getRegInfo();
17998   const TargetRegisterClass *AddrRegClass =
17999     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
18000
18001   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
18002     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
18003     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
18004     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
18005     sizeVReg = MI->getOperand(1).getReg(),
18006     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
18007
18008   MachineFunction::iterator MBBIter = BB;
18009   ++MBBIter;
18010
18011   MF->insert(MBBIter, bumpMBB);
18012   MF->insert(MBBIter, mallocMBB);
18013   MF->insert(MBBIter, continueMBB);
18014
18015   continueMBB->splice(continueMBB->begin(), BB,
18016                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
18017   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
18018
18019   // Add code to the main basic block to check if the stack limit has been hit,
18020   // and if so, jump to mallocMBB otherwise to bumpMBB.
18021   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
18022   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
18023     .addReg(tmpSPVReg).addReg(sizeVReg);
18024   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
18025     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
18026     .addReg(SPLimitVReg);
18027   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
18028
18029   // bumpMBB simply decreases the stack pointer, since we know the current
18030   // stacklet has enough space.
18031   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
18032     .addReg(SPLimitVReg);
18033   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
18034     .addReg(SPLimitVReg);
18035   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
18036
18037   // Calls into a routine in libgcc to allocate more space from the heap.
18038   const uint32_t *RegMask =
18039     MF->getTarget().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
18040   if (Is64Bit) {
18041     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
18042       .addReg(sizeVReg);
18043     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
18044       .addExternalSymbol("__morestack_allocate_stack_space")
18045       .addRegMask(RegMask)
18046       .addReg(X86::RDI, RegState::Implicit)
18047       .addReg(X86::RAX, RegState::ImplicitDefine);
18048   } else {
18049     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
18050       .addImm(12);
18051     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
18052     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
18053       .addExternalSymbol("__morestack_allocate_stack_space")
18054       .addRegMask(RegMask)
18055       .addReg(X86::EAX, RegState::ImplicitDefine);
18056   }
18057
18058   if (!Is64Bit)
18059     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
18060       .addImm(16);
18061
18062   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
18063     .addReg(Is64Bit ? X86::RAX : X86::EAX);
18064   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
18065
18066   // Set up the CFG correctly.
18067   BB->addSuccessor(bumpMBB);
18068   BB->addSuccessor(mallocMBB);
18069   mallocMBB->addSuccessor(continueMBB);
18070   bumpMBB->addSuccessor(continueMBB);
18071
18072   // Take care of the PHI nodes.
18073   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
18074           MI->getOperand(0).getReg())
18075     .addReg(mallocPtrVReg).addMBB(mallocMBB)
18076     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
18077
18078   // Delete the original pseudo instruction.
18079   MI->eraseFromParent();
18080
18081   // And we're done.
18082   return continueMBB;
18083 }
18084
18085 MachineBasicBlock *
18086 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
18087                                         MachineBasicBlock *BB) const {
18088   const TargetInstrInfo *TII = BB->getParent()->getTarget().getInstrInfo();
18089   DebugLoc DL = MI->getDebugLoc();
18090
18091   assert(!Subtarget->isTargetMacho());
18092
18093   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
18094   // non-trivial part is impdef of ESP.
18095
18096   if (Subtarget->isTargetWin64()) {
18097     if (Subtarget->isTargetCygMing()) {
18098       // ___chkstk(Mingw64):
18099       // Clobbers R10, R11, RAX and EFLAGS.
18100       // Updates RSP.
18101       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
18102         .addExternalSymbol("___chkstk")
18103         .addReg(X86::RAX, RegState::Implicit)
18104         .addReg(X86::RSP, RegState::Implicit)
18105         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
18106         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
18107         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
18108     } else {
18109       // __chkstk(MSVCRT): does not update stack pointer.
18110       // Clobbers R10, R11 and EFLAGS.
18111       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
18112         .addExternalSymbol("__chkstk")
18113         .addReg(X86::RAX, RegState::Implicit)
18114         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
18115       // RAX has the offset to be subtracted from RSP.
18116       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
18117         .addReg(X86::RSP)
18118         .addReg(X86::RAX);
18119     }
18120   } else {
18121     const char *StackProbeSymbol =
18122       Subtarget->isTargetKnownWindowsMSVC() ? "_chkstk" : "_alloca";
18123
18124     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
18125       .addExternalSymbol(StackProbeSymbol)
18126       .addReg(X86::EAX, RegState::Implicit)
18127       .addReg(X86::ESP, RegState::Implicit)
18128       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
18129       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
18130       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
18131   }
18132
18133   MI->eraseFromParent();   // The pseudo instruction is gone now.
18134   return BB;
18135 }
18136
18137 MachineBasicBlock *
18138 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
18139                                       MachineBasicBlock *BB) const {
18140   // This is pretty easy.  We're taking the value that we received from
18141   // our load from the relocation, sticking it in either RDI (x86-64)
18142   // or EAX and doing an indirect call.  The return value will then
18143   // be in the normal return register.
18144   MachineFunction *F = BB->getParent();
18145   const X86InstrInfo *TII
18146     = static_cast<const X86InstrInfo*>(F->getTarget().getInstrInfo());
18147   DebugLoc DL = MI->getDebugLoc();
18148
18149   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
18150   assert(MI->getOperand(3).isGlobal() && "This should be a global");
18151
18152   // Get a register mask for the lowered call.
18153   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
18154   // proper register mask.
18155   const uint32_t *RegMask =
18156     F->getTarget().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
18157   if (Subtarget->is64Bit()) {
18158     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
18159                                       TII->get(X86::MOV64rm), X86::RDI)
18160     .addReg(X86::RIP)
18161     .addImm(0).addReg(0)
18162     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
18163                       MI->getOperand(3).getTargetFlags())
18164     .addReg(0);
18165     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
18166     addDirectMem(MIB, X86::RDI);
18167     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
18168   } else if (F->getTarget().getRelocationModel() != Reloc::PIC_) {
18169     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
18170                                       TII->get(X86::MOV32rm), X86::EAX)
18171     .addReg(0)
18172     .addImm(0).addReg(0)
18173     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
18174                       MI->getOperand(3).getTargetFlags())
18175     .addReg(0);
18176     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
18177     addDirectMem(MIB, X86::EAX);
18178     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
18179   } else {
18180     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
18181                                       TII->get(X86::MOV32rm), X86::EAX)
18182     .addReg(TII->getGlobalBaseReg(F))
18183     .addImm(0).addReg(0)
18184     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
18185                       MI->getOperand(3).getTargetFlags())
18186     .addReg(0);
18187     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
18188     addDirectMem(MIB, X86::EAX);
18189     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
18190   }
18191
18192   MI->eraseFromParent(); // The pseudo instruction is gone now.
18193   return BB;
18194 }
18195
18196 MachineBasicBlock *
18197 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
18198                                     MachineBasicBlock *MBB) const {
18199   DebugLoc DL = MI->getDebugLoc();
18200   MachineFunction *MF = MBB->getParent();
18201   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
18202   MachineRegisterInfo &MRI = MF->getRegInfo();
18203
18204   const BasicBlock *BB = MBB->getBasicBlock();
18205   MachineFunction::iterator I = MBB;
18206   ++I;
18207
18208   // Memory Reference
18209   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
18210   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
18211
18212   unsigned DstReg;
18213   unsigned MemOpndSlot = 0;
18214
18215   unsigned CurOp = 0;
18216
18217   DstReg = MI->getOperand(CurOp++).getReg();
18218   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
18219   assert(RC->hasType(MVT::i32) && "Invalid destination!");
18220   unsigned mainDstReg = MRI.createVirtualRegister(RC);
18221   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
18222
18223   MemOpndSlot = CurOp;
18224
18225   MVT PVT = getPointerTy();
18226   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
18227          "Invalid Pointer Size!");
18228
18229   // For v = setjmp(buf), we generate
18230   //
18231   // thisMBB:
18232   //  buf[LabelOffset] = restoreMBB
18233   //  SjLjSetup restoreMBB
18234   //
18235   // mainMBB:
18236   //  v_main = 0
18237   //
18238   // sinkMBB:
18239   //  v = phi(main, restore)
18240   //
18241   // restoreMBB:
18242   //  v_restore = 1
18243
18244   MachineBasicBlock *thisMBB = MBB;
18245   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
18246   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
18247   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
18248   MF->insert(I, mainMBB);
18249   MF->insert(I, sinkMBB);
18250   MF->push_back(restoreMBB);
18251
18252   MachineInstrBuilder MIB;
18253
18254   // Transfer the remainder of BB and its successor edges to sinkMBB.
18255   sinkMBB->splice(sinkMBB->begin(), MBB,
18256                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
18257   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
18258
18259   // thisMBB:
18260   unsigned PtrStoreOpc = 0;
18261   unsigned LabelReg = 0;
18262   const int64_t LabelOffset = 1 * PVT.getStoreSize();
18263   Reloc::Model RM = MF->getTarget().getRelocationModel();
18264   bool UseImmLabel = (MF->getTarget().getCodeModel() == CodeModel::Small) &&
18265                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
18266
18267   // Prepare IP either in reg or imm.
18268   if (!UseImmLabel) {
18269     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
18270     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
18271     LabelReg = MRI.createVirtualRegister(PtrRC);
18272     if (Subtarget->is64Bit()) {
18273       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
18274               .addReg(X86::RIP)
18275               .addImm(0)
18276               .addReg(0)
18277               .addMBB(restoreMBB)
18278               .addReg(0);
18279     } else {
18280       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
18281       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
18282               .addReg(XII->getGlobalBaseReg(MF))
18283               .addImm(0)
18284               .addReg(0)
18285               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
18286               .addReg(0);
18287     }
18288   } else
18289     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
18290   // Store IP
18291   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
18292   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
18293     if (i == X86::AddrDisp)
18294       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
18295     else
18296       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
18297   }
18298   if (!UseImmLabel)
18299     MIB.addReg(LabelReg);
18300   else
18301     MIB.addMBB(restoreMBB);
18302   MIB.setMemRefs(MMOBegin, MMOEnd);
18303   // Setup
18304   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
18305           .addMBB(restoreMBB);
18306
18307   const X86RegisterInfo *RegInfo =
18308     static_cast<const X86RegisterInfo*>(MF->getTarget().getRegisterInfo());
18309   MIB.addRegMask(RegInfo->getNoPreservedMask());
18310   thisMBB->addSuccessor(mainMBB);
18311   thisMBB->addSuccessor(restoreMBB);
18312
18313   // mainMBB:
18314   //  EAX = 0
18315   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
18316   mainMBB->addSuccessor(sinkMBB);
18317
18318   // sinkMBB:
18319   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
18320           TII->get(X86::PHI), DstReg)
18321     .addReg(mainDstReg).addMBB(mainMBB)
18322     .addReg(restoreDstReg).addMBB(restoreMBB);
18323
18324   // restoreMBB:
18325   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
18326   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
18327   restoreMBB->addSuccessor(sinkMBB);
18328
18329   MI->eraseFromParent();
18330   return sinkMBB;
18331 }
18332
18333 MachineBasicBlock *
18334 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
18335                                      MachineBasicBlock *MBB) const {
18336   DebugLoc DL = MI->getDebugLoc();
18337   MachineFunction *MF = MBB->getParent();
18338   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
18339   MachineRegisterInfo &MRI = MF->getRegInfo();
18340
18341   // Memory Reference
18342   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
18343   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
18344
18345   MVT PVT = getPointerTy();
18346   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
18347          "Invalid Pointer Size!");
18348
18349   const TargetRegisterClass *RC =
18350     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
18351   unsigned Tmp = MRI.createVirtualRegister(RC);
18352   // Since FP is only updated here but NOT referenced, it's treated as GPR.
18353   const X86RegisterInfo *RegInfo =
18354     static_cast<const X86RegisterInfo*>(MF->getTarget().getRegisterInfo());
18355   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
18356   unsigned SP = RegInfo->getStackRegister();
18357
18358   MachineInstrBuilder MIB;
18359
18360   const int64_t LabelOffset = 1 * PVT.getStoreSize();
18361   const int64_t SPOffset = 2 * PVT.getStoreSize();
18362
18363   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
18364   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
18365
18366   // Reload FP
18367   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
18368   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
18369     MIB.addOperand(MI->getOperand(i));
18370   MIB.setMemRefs(MMOBegin, MMOEnd);
18371   // Reload IP
18372   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
18373   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
18374     if (i == X86::AddrDisp)
18375       MIB.addDisp(MI->getOperand(i), LabelOffset);
18376     else
18377       MIB.addOperand(MI->getOperand(i));
18378   }
18379   MIB.setMemRefs(MMOBegin, MMOEnd);
18380   // Reload SP
18381   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
18382   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
18383     if (i == X86::AddrDisp)
18384       MIB.addDisp(MI->getOperand(i), SPOffset);
18385     else
18386       MIB.addOperand(MI->getOperand(i));
18387   }
18388   MIB.setMemRefs(MMOBegin, MMOEnd);
18389   // Jump
18390   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
18391
18392   MI->eraseFromParent();
18393   return MBB;
18394 }
18395
18396 // Replace 213-type (isel default) FMA3 instructions with 231-type for
18397 // accumulator loops. Writing back to the accumulator allows the coalescer
18398 // to remove extra copies in the loop.   
18399 MachineBasicBlock *
18400 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
18401                                  MachineBasicBlock *MBB) const {
18402   MachineOperand &AddendOp = MI->getOperand(3);
18403
18404   // Bail out early if the addend isn't a register - we can't switch these.
18405   if (!AddendOp.isReg())
18406     return MBB;
18407
18408   MachineFunction &MF = *MBB->getParent();
18409   MachineRegisterInfo &MRI = MF.getRegInfo();
18410
18411   // Check whether the addend is defined by a PHI:
18412   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
18413   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
18414   if (!AddendDef.isPHI())
18415     return MBB;
18416
18417   // Look for the following pattern:
18418   // loop:
18419   //   %addend = phi [%entry, 0], [%loop, %result]
18420   //   ...
18421   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
18422
18423   // Replace with:
18424   //   loop:
18425   //   %addend = phi [%entry, 0], [%loop, %result]
18426   //   ...
18427   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
18428
18429   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
18430     assert(AddendDef.getOperand(i).isReg());
18431     MachineOperand PHISrcOp = AddendDef.getOperand(i);
18432     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
18433     if (&PHISrcInst == MI) {
18434       // Found a matching instruction.
18435       unsigned NewFMAOpc = 0;
18436       switch (MI->getOpcode()) {
18437         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
18438         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
18439         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
18440         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
18441         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
18442         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
18443         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
18444         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
18445         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
18446         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
18447         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
18448         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
18449         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
18450         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
18451         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
18452         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
18453         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
18454         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
18455         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
18456         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
18457         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
18458         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
18459         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
18460         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
18461         default: llvm_unreachable("Unrecognized FMA variant.");
18462       }
18463
18464       const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
18465       MachineInstrBuilder MIB =
18466         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
18467         .addOperand(MI->getOperand(0))
18468         .addOperand(MI->getOperand(3))
18469         .addOperand(MI->getOperand(2))
18470         .addOperand(MI->getOperand(1));
18471       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
18472       MI->eraseFromParent();
18473     }
18474   }
18475
18476   return MBB;
18477 }
18478
18479 MachineBasicBlock *
18480 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
18481                                                MachineBasicBlock *BB) const {
18482   switch (MI->getOpcode()) {
18483   default: llvm_unreachable("Unexpected instr type to insert");
18484   case X86::TAILJMPd64:
18485   case X86::TAILJMPr64:
18486   case X86::TAILJMPm64:
18487     llvm_unreachable("TAILJMP64 would not be touched here.");
18488   case X86::TCRETURNdi64:
18489   case X86::TCRETURNri64:
18490   case X86::TCRETURNmi64:
18491     return BB;
18492   case X86::WIN_ALLOCA:
18493     return EmitLoweredWinAlloca(MI, BB);
18494   case X86::SEG_ALLOCA_32:
18495     return EmitLoweredSegAlloca(MI, BB, false);
18496   case X86::SEG_ALLOCA_64:
18497     return EmitLoweredSegAlloca(MI, BB, true);
18498   case X86::TLSCall_32:
18499   case X86::TLSCall_64:
18500     return EmitLoweredTLSCall(MI, BB);
18501   case X86::CMOV_GR8:
18502   case X86::CMOV_FR32:
18503   case X86::CMOV_FR64:
18504   case X86::CMOV_V4F32:
18505   case X86::CMOV_V2F64:
18506   case X86::CMOV_V2I64:
18507   case X86::CMOV_V8F32:
18508   case X86::CMOV_V4F64:
18509   case X86::CMOV_V4I64:
18510   case X86::CMOV_V16F32:
18511   case X86::CMOV_V8F64:
18512   case X86::CMOV_V8I64:
18513   case X86::CMOV_GR16:
18514   case X86::CMOV_GR32:
18515   case X86::CMOV_RFP32:
18516   case X86::CMOV_RFP64:
18517   case X86::CMOV_RFP80:
18518     return EmitLoweredSelect(MI, BB);
18519
18520   case X86::FP32_TO_INT16_IN_MEM:
18521   case X86::FP32_TO_INT32_IN_MEM:
18522   case X86::FP32_TO_INT64_IN_MEM:
18523   case X86::FP64_TO_INT16_IN_MEM:
18524   case X86::FP64_TO_INT32_IN_MEM:
18525   case X86::FP64_TO_INT64_IN_MEM:
18526   case X86::FP80_TO_INT16_IN_MEM:
18527   case X86::FP80_TO_INT32_IN_MEM:
18528   case X86::FP80_TO_INT64_IN_MEM: {
18529     MachineFunction *F = BB->getParent();
18530     const TargetInstrInfo *TII = F->getTarget().getInstrInfo();
18531     DebugLoc DL = MI->getDebugLoc();
18532
18533     // Change the floating point control register to use "round towards zero"
18534     // mode when truncating to an integer value.
18535     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
18536     addFrameReference(BuildMI(*BB, MI, DL,
18537                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
18538
18539     // Load the old value of the high byte of the control word...
18540     unsigned OldCW =
18541       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
18542     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
18543                       CWFrameIdx);
18544
18545     // Set the high part to be round to zero...
18546     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
18547       .addImm(0xC7F);
18548
18549     // Reload the modified control word now...
18550     addFrameReference(BuildMI(*BB, MI, DL,
18551                               TII->get(X86::FLDCW16m)), CWFrameIdx);
18552
18553     // Restore the memory image of control word to original value
18554     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
18555       .addReg(OldCW);
18556
18557     // Get the X86 opcode to use.
18558     unsigned Opc;
18559     switch (MI->getOpcode()) {
18560     default: llvm_unreachable("illegal opcode!");
18561     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
18562     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
18563     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
18564     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
18565     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
18566     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
18567     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
18568     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
18569     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
18570     }
18571
18572     X86AddressMode AM;
18573     MachineOperand &Op = MI->getOperand(0);
18574     if (Op.isReg()) {
18575       AM.BaseType = X86AddressMode::RegBase;
18576       AM.Base.Reg = Op.getReg();
18577     } else {
18578       AM.BaseType = X86AddressMode::FrameIndexBase;
18579       AM.Base.FrameIndex = Op.getIndex();
18580     }
18581     Op = MI->getOperand(1);
18582     if (Op.isImm())
18583       AM.Scale = Op.getImm();
18584     Op = MI->getOperand(2);
18585     if (Op.isImm())
18586       AM.IndexReg = Op.getImm();
18587     Op = MI->getOperand(3);
18588     if (Op.isGlobal()) {
18589       AM.GV = Op.getGlobal();
18590     } else {
18591       AM.Disp = Op.getImm();
18592     }
18593     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
18594                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
18595
18596     // Reload the original control word now.
18597     addFrameReference(BuildMI(*BB, MI, DL,
18598                               TII->get(X86::FLDCW16m)), CWFrameIdx);
18599
18600     MI->eraseFromParent();   // The pseudo instruction is gone now.
18601     return BB;
18602   }
18603     // String/text processing lowering.
18604   case X86::PCMPISTRM128REG:
18605   case X86::VPCMPISTRM128REG:
18606   case X86::PCMPISTRM128MEM:
18607   case X86::VPCMPISTRM128MEM:
18608   case X86::PCMPESTRM128REG:
18609   case X86::VPCMPESTRM128REG:
18610   case X86::PCMPESTRM128MEM:
18611   case X86::VPCMPESTRM128MEM:
18612     assert(Subtarget->hasSSE42() &&
18613            "Target must have SSE4.2 or AVX features enabled");
18614     return EmitPCMPSTRM(MI, BB, BB->getParent()->getTarget().getInstrInfo());
18615
18616   // String/text processing lowering.
18617   case X86::PCMPISTRIREG:
18618   case X86::VPCMPISTRIREG:
18619   case X86::PCMPISTRIMEM:
18620   case X86::VPCMPISTRIMEM:
18621   case X86::PCMPESTRIREG:
18622   case X86::VPCMPESTRIREG:
18623   case X86::PCMPESTRIMEM:
18624   case X86::VPCMPESTRIMEM:
18625     assert(Subtarget->hasSSE42() &&
18626            "Target must have SSE4.2 or AVX features enabled");
18627     return EmitPCMPSTRI(MI, BB, BB->getParent()->getTarget().getInstrInfo());
18628
18629   // Thread synchronization.
18630   case X86::MONITOR:
18631     return EmitMonitor(MI, BB, BB->getParent()->getTarget().getInstrInfo(), Subtarget);
18632
18633   // xbegin
18634   case X86::XBEGIN:
18635     return EmitXBegin(MI, BB, BB->getParent()->getTarget().getInstrInfo());
18636
18637   case X86::VASTART_SAVE_XMM_REGS:
18638     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
18639
18640   case X86::VAARG_64:
18641     return EmitVAARG64WithCustomInserter(MI, BB);
18642
18643   case X86::EH_SjLj_SetJmp32:
18644   case X86::EH_SjLj_SetJmp64:
18645     return emitEHSjLjSetJmp(MI, BB);
18646
18647   case X86::EH_SjLj_LongJmp32:
18648   case X86::EH_SjLj_LongJmp64:
18649     return emitEHSjLjLongJmp(MI, BB);
18650
18651   case TargetOpcode::STACKMAP:
18652   case TargetOpcode::PATCHPOINT:
18653     return emitPatchPoint(MI, BB);
18654
18655   case X86::VFMADDPDr213r:
18656   case X86::VFMADDPSr213r:
18657   case X86::VFMADDSDr213r:
18658   case X86::VFMADDSSr213r:
18659   case X86::VFMSUBPDr213r:
18660   case X86::VFMSUBPSr213r:
18661   case X86::VFMSUBSDr213r:
18662   case X86::VFMSUBSSr213r:
18663   case X86::VFNMADDPDr213r:
18664   case X86::VFNMADDPSr213r:
18665   case X86::VFNMADDSDr213r:
18666   case X86::VFNMADDSSr213r:
18667   case X86::VFNMSUBPDr213r:
18668   case X86::VFNMSUBPSr213r:
18669   case X86::VFNMSUBSDr213r:
18670   case X86::VFNMSUBSSr213r:
18671   case X86::VFMADDPDr213rY:
18672   case X86::VFMADDPSr213rY:
18673   case X86::VFMSUBPDr213rY:
18674   case X86::VFMSUBPSr213rY:
18675   case X86::VFNMADDPDr213rY:
18676   case X86::VFNMADDPSr213rY:
18677   case X86::VFNMSUBPDr213rY:
18678   case X86::VFNMSUBPSr213rY:
18679     return emitFMA3Instr(MI, BB);
18680   }
18681 }
18682
18683 //===----------------------------------------------------------------------===//
18684 //                           X86 Optimization Hooks
18685 //===----------------------------------------------------------------------===//
18686
18687 void X86TargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
18688                                                       APInt &KnownZero,
18689                                                       APInt &KnownOne,
18690                                                       const SelectionDAG &DAG,
18691                                                       unsigned Depth) const {
18692   unsigned BitWidth = KnownZero.getBitWidth();
18693   unsigned Opc = Op.getOpcode();
18694   assert((Opc >= ISD::BUILTIN_OP_END ||
18695           Opc == ISD::INTRINSIC_WO_CHAIN ||
18696           Opc == ISD::INTRINSIC_W_CHAIN ||
18697           Opc == ISD::INTRINSIC_VOID) &&
18698          "Should use MaskedValueIsZero if you don't know whether Op"
18699          " is a target node!");
18700
18701   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
18702   switch (Opc) {
18703   default: break;
18704   case X86ISD::ADD:
18705   case X86ISD::SUB:
18706   case X86ISD::ADC:
18707   case X86ISD::SBB:
18708   case X86ISD::SMUL:
18709   case X86ISD::UMUL:
18710   case X86ISD::INC:
18711   case X86ISD::DEC:
18712   case X86ISD::OR:
18713   case X86ISD::XOR:
18714   case X86ISD::AND:
18715     // These nodes' second result is a boolean.
18716     if (Op.getResNo() == 0)
18717       break;
18718     // Fallthrough
18719   case X86ISD::SETCC:
18720     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
18721     break;
18722   case ISD::INTRINSIC_WO_CHAIN: {
18723     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
18724     unsigned NumLoBits = 0;
18725     switch (IntId) {
18726     default: break;
18727     case Intrinsic::x86_sse_movmsk_ps:
18728     case Intrinsic::x86_avx_movmsk_ps_256:
18729     case Intrinsic::x86_sse2_movmsk_pd:
18730     case Intrinsic::x86_avx_movmsk_pd_256:
18731     case Intrinsic::x86_mmx_pmovmskb:
18732     case Intrinsic::x86_sse2_pmovmskb_128:
18733     case Intrinsic::x86_avx2_pmovmskb: {
18734       // High bits of movmskp{s|d}, pmovmskb are known zero.
18735       switch (IntId) {
18736         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
18737         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
18738         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
18739         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
18740         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
18741         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
18742         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
18743         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
18744       }
18745       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
18746       break;
18747     }
18748     }
18749     break;
18750   }
18751   }
18752 }
18753
18754 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
18755   SDValue Op,
18756   const SelectionDAG &,
18757   unsigned Depth) const {
18758   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
18759   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
18760     return Op.getValueType().getScalarType().getSizeInBits();
18761
18762   // Fallback case.
18763   return 1;
18764 }
18765
18766 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
18767 /// node is a GlobalAddress + offset.
18768 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
18769                                        const GlobalValue* &GA,
18770                                        int64_t &Offset) const {
18771   if (N->getOpcode() == X86ISD::Wrapper) {
18772     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
18773       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
18774       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
18775       return true;
18776     }
18777   }
18778   return TargetLowering::isGAPlusOffset(N, GA, Offset);
18779 }
18780
18781 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
18782 /// same as extracting the high 128-bit part of 256-bit vector and then
18783 /// inserting the result into the low part of a new 256-bit vector
18784 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
18785   EVT VT = SVOp->getValueType(0);
18786   unsigned NumElems = VT.getVectorNumElements();
18787
18788   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
18789   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
18790     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
18791         SVOp->getMaskElt(j) >= 0)
18792       return false;
18793
18794   return true;
18795 }
18796
18797 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
18798 /// same as extracting the low 128-bit part of 256-bit vector and then
18799 /// inserting the result into the high part of a new 256-bit vector
18800 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
18801   EVT VT = SVOp->getValueType(0);
18802   unsigned NumElems = VT.getVectorNumElements();
18803
18804   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
18805   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
18806     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
18807         SVOp->getMaskElt(j) >= 0)
18808       return false;
18809
18810   return true;
18811 }
18812
18813 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
18814 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
18815                                         TargetLowering::DAGCombinerInfo &DCI,
18816                                         const X86Subtarget* Subtarget) {
18817   SDLoc dl(N);
18818   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
18819   SDValue V1 = SVOp->getOperand(0);
18820   SDValue V2 = SVOp->getOperand(1);
18821   EVT VT = SVOp->getValueType(0);
18822   unsigned NumElems = VT.getVectorNumElements();
18823
18824   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
18825       V2.getOpcode() == ISD::CONCAT_VECTORS) {
18826     //
18827     //                   0,0,0,...
18828     //                      |
18829     //    V      UNDEF    BUILD_VECTOR    UNDEF
18830     //     \      /           \           /
18831     //  CONCAT_VECTOR         CONCAT_VECTOR
18832     //         \                  /
18833     //          \                /
18834     //          RESULT: V + zero extended
18835     //
18836     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
18837         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
18838         V1.getOperand(1).getOpcode() != ISD::UNDEF)
18839       return SDValue();
18840
18841     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
18842       return SDValue();
18843
18844     // To match the shuffle mask, the first half of the mask should
18845     // be exactly the first vector, and all the rest a splat with the
18846     // first element of the second one.
18847     for (unsigned i = 0; i != NumElems/2; ++i)
18848       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
18849           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
18850         return SDValue();
18851
18852     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
18853     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
18854       if (Ld->hasNUsesOfValue(1, 0)) {
18855         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
18856         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
18857         SDValue ResNode =
18858           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
18859                                   Ld->getMemoryVT(),
18860                                   Ld->getPointerInfo(),
18861                                   Ld->getAlignment(),
18862                                   false/*isVolatile*/, true/*ReadMem*/,
18863                                   false/*WriteMem*/);
18864
18865         // Make sure the newly-created LOAD is in the same position as Ld in
18866         // terms of dependency. We create a TokenFactor for Ld and ResNode,
18867         // and update uses of Ld's output chain to use the TokenFactor.
18868         if (Ld->hasAnyUseOfValue(1)) {
18869           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18870                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
18871           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
18872           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
18873                                  SDValue(ResNode.getNode(), 1));
18874         }
18875
18876         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
18877       }
18878     }
18879
18880     // Emit a zeroed vector and insert the desired subvector on its
18881     // first half.
18882     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
18883     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
18884     return DCI.CombineTo(N, InsV);
18885   }
18886
18887   //===--------------------------------------------------------------------===//
18888   // Combine some shuffles into subvector extracts and inserts:
18889   //
18890
18891   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
18892   if (isShuffleHigh128VectorInsertLow(SVOp)) {
18893     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
18894     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
18895     return DCI.CombineTo(N, InsV);
18896   }
18897
18898   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
18899   if (isShuffleLow128VectorInsertHigh(SVOp)) {
18900     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
18901     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
18902     return DCI.CombineTo(N, InsV);
18903   }
18904
18905   return SDValue();
18906 }
18907
18908 /// \brief Combine an arbitrary chain of shuffles into a single instruction if
18909 /// possible.
18910 ///
18911 /// This is the leaf of the recursive combinine below. When we have found some
18912 /// chain of single-use x86 shuffle instructions and accumulated the combined
18913 /// shuffle mask represented by them, this will try to pattern match that mask
18914 /// into either a single instruction if there is a special purpose instruction
18915 /// for this operation, or into a PSHUFB instruction which is a fully general
18916 /// instruction but should only be used to replace chains over a certain depth.
18917 static bool combineX86ShuffleChain(SDValue Op, SDValue Root, ArrayRef<int> Mask,
18918                                    int Depth, bool HasPSHUFB, SelectionDAG &DAG,
18919                                    TargetLowering::DAGCombinerInfo &DCI,
18920                                    const X86Subtarget *Subtarget) {
18921   assert(!Mask.empty() && "Cannot combine an empty shuffle mask!");
18922
18923   // Find the operand that enters the chain. Note that multiple uses are OK
18924   // here, we're not going to remove the operand we find.
18925   SDValue Input = Op.getOperand(0);
18926   while (Input.getOpcode() == ISD::BITCAST)
18927     Input = Input.getOperand(0);
18928
18929   MVT VT = Input.getSimpleValueType();
18930   MVT RootVT = Root.getSimpleValueType();
18931   SDLoc DL(Root);
18932
18933   // Just remove no-op shuffle masks.
18934   if (Mask.size() == 1) {
18935     DCI.CombineTo(Root.getNode(), DAG.getNode(ISD::BITCAST, DL, RootVT, Input),
18936                   /*AddTo*/ true);
18937     return true;
18938   }
18939
18940   // Use the float domain if the operand type is a floating point type.
18941   bool FloatDomain = VT.isFloatingPoint();
18942
18943   // If we don't have access to VEX encodings, the generic PSHUF instructions
18944   // are preferable to some of the specialized forms despite requiring one more
18945   // byte to encode because they can implicitly copy.
18946   //
18947   // IF we *do* have VEX encodings, than we can use shorter, more specific
18948   // shuffle instructions freely as they can copy due to the extra register
18949   // operand.
18950   if (Subtarget->hasAVX()) {
18951     // We have both floating point and integer variants of shuffles that dup
18952     // either the low or high half of the vector.
18953     if (Mask.equals(0, 0) || Mask.equals(1, 1)) {
18954       bool Lo = Mask.equals(0, 0);
18955       unsigned Shuffle = FloatDomain ? (Lo ? X86ISD::MOVLHPS : X86ISD::MOVHLPS)
18956                                      : (Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH);
18957       if (Depth == 1 && Root->getOpcode() == Shuffle)
18958         return false; // Nothing to do!
18959       MVT ShuffleVT = FloatDomain ? MVT::v4f32 : MVT::v2i64;
18960       Op = DAG.getNode(ISD::BITCAST, DL, ShuffleVT, Input);
18961       DCI.AddToWorklist(Op.getNode());
18962       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
18963       DCI.AddToWorklist(Op.getNode());
18964       DCI.CombineTo(Root.getNode(), DAG.getNode(ISD::BITCAST, DL, RootVT, Op),
18965                     /*AddTo*/ true);
18966       return true;
18967     }
18968
18969     // FIXME: We should match UNPCKLPS and UNPCKHPS here.
18970
18971     // For the integer domain we have specialized instructions for duplicating
18972     // any element size from the low or high half.
18973     if (!FloatDomain &&
18974         (Mask.equals(0, 0, 1, 1) || Mask.equals(2, 2, 3, 3) ||
18975          Mask.equals(0, 0, 1, 1, 2, 2, 3, 3) ||
18976          Mask.equals(4, 4, 5, 5, 6, 6, 7, 7) ||
18977          Mask.equals(0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7) ||
18978          Mask.equals(8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15,
18979                      15))) {
18980       bool Lo = Mask[0] == 0;
18981       unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
18982       if (Depth == 1 && Root->getOpcode() == Shuffle)
18983         return false; // Nothing to do!
18984       MVT ShuffleVT;
18985       switch (Mask.size()) {
18986       case 4: ShuffleVT = MVT::v4i32; break;
18987       case 8: ShuffleVT = MVT::v8i16; break;
18988       case 16: ShuffleVT = MVT::v16i8; break;
18989       };
18990       Op = DAG.getNode(ISD::BITCAST, DL, ShuffleVT, Input);
18991       DCI.AddToWorklist(Op.getNode());
18992       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
18993       DCI.AddToWorklist(Op.getNode());
18994       DCI.CombineTo(Root.getNode(), DAG.getNode(ISD::BITCAST, DL, RootVT, Op),
18995                     /*AddTo*/ true);
18996       return true;
18997     }
18998   }
18999
19000   // Don't try to re-form single instruction chains under any circumstances now
19001   // that we've done encoding canonicalization for them.
19002   if (Depth < 2)
19003     return false;
19004
19005   // If we have 3 or more shuffle instructions or a chain involving PSHUFB, we
19006   // can replace them with a single PSHUFB instruction profitably. Intel's
19007   // manuals suggest only using PSHUFB if doing so replacing 5 instructions, but
19008   // in practice PSHUFB tends to be *very* fast so we're more aggressive.
19009   if ((Depth >= 3 || HasPSHUFB) && Subtarget->hasSSSE3()) {
19010     SmallVector<SDValue, 16> PSHUFBMask;
19011     assert(Mask.size() <= 16 && "Can't shuffle elements smaller than bytes!");
19012     int Ratio = 16 / Mask.size();
19013     for (unsigned i = 0; i < 16; ++i) {
19014       int M = Ratio * Mask[i / Ratio] + i % Ratio;
19015       PSHUFBMask.push_back(DAG.getConstant(M, MVT::i8));
19016     }
19017     Op = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Input);
19018     DCI.AddToWorklist(Op.getNode());
19019     SDValue PSHUFBMaskOp =
19020         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, PSHUFBMask);
19021     DCI.AddToWorklist(PSHUFBMaskOp.getNode());
19022     Op = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8, Op, PSHUFBMaskOp);
19023     DCI.AddToWorklist(Op.getNode());
19024     DCI.CombineTo(Root.getNode(), DAG.getNode(ISD::BITCAST, DL, RootVT, Op),
19025                   /*AddTo*/ true);
19026     return true;
19027   }
19028
19029   // Failed to find any combines.
19030   return false;
19031 }
19032
19033 /// \brief Fully generic combining of x86 shuffle instructions.
19034 ///
19035 /// This should be the last combine run over the x86 shuffle instructions. Once
19036 /// they have been fully optimized, this will recursively consdier all chains
19037 /// of single-use shuffle instructions, build a generic model of the cumulative
19038 /// shuffle operation, and check for simpler instructions which implement this
19039 /// operation. We use this primarily for two purposes:
19040 ///
19041 /// 1) Collapse generic shuffles to specialized single instructions when
19042 ///    equivalent. In most cases, this is just an encoding size win, but
19043 ///    sometimes we will collapse multiple generic shuffles into a single
19044 ///    special-purpose shuffle.
19045 /// 2) Look for sequences of shuffle instructions with 3 or more total
19046 ///    instructions, and replace them with the slightly more expensive SSSE3
19047 ///    PSHUFB instruction if available. We do this as the last combining step
19048 ///    to ensure we avoid using PSHUFB if we can implement the shuffle with
19049 ///    a suitable short sequence of other instructions. The PHUFB will either
19050 ///    use a register or have to read from memory and so is slightly (but only
19051 ///    slightly) more expensive than the other shuffle instructions.
19052 ///
19053 /// Because this is inherently a quadratic operation (for each shuffle in
19054 /// a chain, we recurse up the chain), the depth is limited to 8 instructions.
19055 /// This should never be an issue in practice as the shuffle lowering doesn't
19056 /// produce sequences of more than 8 instructions.
19057 ///
19058 /// FIXME: We will currently miss some cases where the redundant shuffling
19059 /// would simplify under the threshold for PSHUFB formation because of
19060 /// combine-ordering. To fix this, we should do the redundant instruction
19061 /// combining in this recursive walk.
19062 static bool combineX86ShufflesRecursively(SDValue Op, SDValue Root,
19063                                           ArrayRef<int> IncomingMask, int Depth,
19064                                           bool HasPSHUFB, SelectionDAG &DAG,
19065                                           TargetLowering::DAGCombinerInfo &DCI,
19066                                           const X86Subtarget *Subtarget) {
19067   // Bound the depth of our recursive combine because this is ultimately
19068   // quadratic in nature.
19069   if (Depth > 8)
19070     return false;
19071
19072   // Directly rip through bitcasts to find the underlying operand.
19073   while (Op.getOpcode() == ISD::BITCAST && Op.getOperand(0).hasOneUse())
19074     Op = Op.getOperand(0);
19075
19076   MVT VT = Op.getSimpleValueType();
19077   if (!VT.isVector())
19078     return false; // Bail if we hit a non-vector.
19079   // FIXME: This routine should be taught about 256-bit shuffles, or a 256-bit
19080   // version should be added.
19081   if (VT.getSizeInBits() != 128)
19082     return false;
19083
19084   assert(Root.getSimpleValueType().isVector() &&
19085          "Shuffles operate on vector types!");
19086   assert(VT.getSizeInBits() == Root.getSimpleValueType().getSizeInBits() &&
19087          "Can only combine shuffles of the same vector register size.");
19088
19089   if (!isTargetShuffle(Op.getOpcode()))
19090     return false;
19091   SmallVector<int, 16> OpMask;
19092   bool IsUnary;
19093   bool HaveMask = getTargetShuffleMask(Op.getNode(), VT, OpMask, IsUnary);
19094   // We only can combine unary shuffles which we can decode the mask for.
19095   if (!HaveMask || !IsUnary)
19096     return false;
19097
19098   assert(VT.getVectorNumElements() == OpMask.size() &&
19099          "Different mask size from vector size!");
19100
19101   SmallVector<int, 16> Mask;
19102   Mask.reserve(std::max(OpMask.size(), IncomingMask.size()));
19103
19104   // Merge this shuffle operation's mask into our accumulated mask. This is
19105   // a bit tricky as the shuffle may have a different size from the root.
19106   if (OpMask.size() == IncomingMask.size()) {
19107     for (int M : IncomingMask)
19108       Mask.push_back(OpMask[M]);
19109   } else if (OpMask.size() < IncomingMask.size()) {
19110     assert(IncomingMask.size() % OpMask.size() == 0 &&
19111            "The smaller number of elements must divide the larger.");
19112     int Ratio = IncomingMask.size() / OpMask.size();
19113     for (int M : IncomingMask)
19114       Mask.push_back(Ratio * OpMask[M / Ratio] + M % Ratio);
19115   } else {
19116     assert(OpMask.size() > IncomingMask.size() && "All other cases handled!");
19117     assert(OpMask.size() % IncomingMask.size() == 0 &&
19118            "The smaller number of elements must divide the larger.");
19119     int Ratio = OpMask.size() / IncomingMask.size();
19120     for (int i = 0, e = OpMask.size(); i < e; ++i)
19121       Mask.push_back(OpMask[Ratio * IncomingMask[i / Ratio] + i % Ratio]);
19122   }
19123
19124   // See if we can recurse into the operand to combine more things.
19125   switch (Op.getOpcode()) {
19126     case X86ISD::PSHUFB:
19127       HasPSHUFB = true;
19128     case X86ISD::PSHUFD:
19129     case X86ISD::PSHUFHW:
19130     case X86ISD::PSHUFLW:
19131       if (Op.getOperand(0).hasOneUse() &&
19132           combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
19133                                         HasPSHUFB, DAG, DCI, Subtarget))
19134         return true;
19135       break;
19136
19137     case X86ISD::UNPCKL:
19138     case X86ISD::UNPCKH:
19139       assert(Op.getOperand(0) == Op.getOperand(1) && "We only combine unary shuffles!");
19140       // We can't check for single use, we have to check that this shuffle is the only user.
19141       if (Op->isOnlyUserOf(Op.getOperand(0).getNode()) &&
19142           combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
19143                                         HasPSHUFB, DAG, DCI, Subtarget))
19144           return true;
19145       break;
19146   }
19147
19148   // Minor canonicalization of the accumulated shuffle mask to make it easier
19149   // to match below. All this does is detect masks with squential pairs of
19150   // elements, and shrink them to the half-width mask. It does this in a loop
19151   // so it will reduce the size of the mask to the minimal width mask which
19152   // performs an equivalent shuffle.
19153   while (Mask.size() > 1) {
19154     SmallVector<int, 16> NewMask;
19155     for (int i = 0, e = Mask.size()/2; i < e; ++i) {
19156       if (Mask[2*i] % 2 != 0 || Mask[2*i] != Mask[2*i + 1] + 1) {
19157         NewMask.clear();
19158         break;
19159       }
19160       NewMask.push_back(Mask[2*i] / 2);
19161     }
19162     if (NewMask.empty())
19163       break;
19164     Mask.swap(NewMask);
19165   }
19166
19167   return combineX86ShuffleChain(Op, Root, Mask, Depth, HasPSHUFB, DAG, DCI,
19168                                 Subtarget);
19169 }
19170
19171 /// \brief Get the PSHUF-style mask from PSHUF node.
19172 ///
19173 /// This is a very minor wrapper around getTargetShuffleMask to easy forming v4
19174 /// PSHUF-style masks that can be reused with such instructions.
19175 static SmallVector<int, 4> getPSHUFShuffleMask(SDValue N) {
19176   SmallVector<int, 4> Mask;
19177   bool IsUnary;
19178   bool HaveMask = getTargetShuffleMask(N.getNode(), N.getSimpleValueType(), Mask, IsUnary);
19179   (void)HaveMask;
19180   assert(HaveMask);
19181
19182   switch (N.getOpcode()) {
19183   case X86ISD::PSHUFD:
19184     return Mask;
19185   case X86ISD::PSHUFLW:
19186     Mask.resize(4);
19187     return Mask;
19188   case X86ISD::PSHUFHW:
19189     Mask.erase(Mask.begin(), Mask.begin() + 4);
19190     for (int &M : Mask)
19191       M -= 4;
19192     return Mask;
19193   default:
19194     llvm_unreachable("No valid shuffle instruction found!");
19195   }
19196 }
19197
19198 /// \brief Search for a combinable shuffle across a chain ending in pshufd.
19199 ///
19200 /// We walk up the chain and look for a combinable shuffle, skipping over
19201 /// shuffles that we could hoist this shuffle's transformation past without
19202 /// altering anything.
19203 static bool combineRedundantDWordShuffle(SDValue N, MutableArrayRef<int> Mask,
19204                                          SelectionDAG &DAG,
19205                                          TargetLowering::DAGCombinerInfo &DCI) {
19206   assert(N.getOpcode() == X86ISD::PSHUFD &&
19207          "Called with something other than an x86 128-bit half shuffle!");
19208   SDLoc DL(N);
19209
19210   // Walk up a single-use chain looking for a combinable shuffle.
19211   SDValue V = N.getOperand(0);
19212   for (; V.hasOneUse(); V = V.getOperand(0)) {
19213     switch (V.getOpcode()) {
19214     default:
19215       return false; // Nothing combined!
19216
19217     case ISD::BITCAST:
19218       // Skip bitcasts as we always know the type for the target specific
19219       // instructions.
19220       continue;
19221
19222     case X86ISD::PSHUFD:
19223       // Found another dword shuffle.
19224       break;
19225
19226     case X86ISD::PSHUFLW:
19227       // Check that the low words (being shuffled) are the identity in the
19228       // dword shuffle, and the high words are self-contained.
19229       if (Mask[0] != 0 || Mask[1] != 1 ||
19230           !(Mask[2] >= 2 && Mask[2] < 4 && Mask[3] >= 2 && Mask[3] < 4))
19231         return false;
19232
19233       continue;
19234
19235     case X86ISD::PSHUFHW:
19236       // Check that the high words (being shuffled) are the identity in the
19237       // dword shuffle, and the low words are self-contained.
19238       if (Mask[2] != 2 || Mask[3] != 3 ||
19239           !(Mask[0] >= 0 && Mask[0] < 2 && Mask[1] >= 0 && Mask[1] < 2))
19240         return false;
19241
19242       continue;
19243
19244     case X86ISD::UNPCKL:
19245     case X86ISD::UNPCKH:
19246       // For either i8 -> i16 or i16 -> i32 unpacks, we can combine a dword
19247       // shuffle into a preceding word shuffle.
19248       if (V.getValueType() != MVT::v16i8 && V.getValueType() != MVT::v8i16)
19249         return false;
19250
19251       // Search for a half-shuffle which we can combine with.
19252       unsigned CombineOp =
19253           V.getOpcode() == X86ISD::UNPCKL ? X86ISD::PSHUFLW : X86ISD::PSHUFHW;
19254       if (V.getOperand(0) != V.getOperand(1) ||
19255           !V->isOnlyUserOf(V.getOperand(0).getNode()))
19256         return false;
19257       V = V.getOperand(0);
19258       do {
19259         switch (V.getOpcode()) {
19260         default:
19261           return false; // Nothing to combine.
19262
19263         case X86ISD::PSHUFLW:
19264         case X86ISD::PSHUFHW:
19265           if (V.getOpcode() == CombineOp)
19266             break;
19267
19268           // Fallthrough!
19269         case ISD::BITCAST:
19270           V = V.getOperand(0);
19271           continue;
19272         }
19273         break;
19274       } while (V.hasOneUse());
19275       break;
19276     }
19277     // Break out of the loop if we break out of the switch.
19278     break;
19279   }
19280
19281   if (!V.hasOneUse())
19282     // We fell out of the loop without finding a viable combining instruction.
19283     return false;
19284
19285   // Record the old value to use in RAUW-ing.
19286   SDValue Old = V;
19287
19288   // Merge this node's mask and our incoming mask.
19289   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
19290   for (int &M : Mask)
19291     M = VMask[M];
19292   V = DAG.getNode(V.getOpcode(), DL, V.getValueType(), V.getOperand(0),
19293                   getV4X86ShuffleImm8ForMask(Mask, DAG));
19294
19295   // It is possible that one of the combinable shuffles was completely absorbed
19296   // by the other, just replace it and revisit all users in that case.
19297   if (Old.getNode() == V.getNode()) {
19298     DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo=*/true);
19299     return true;
19300   }
19301
19302   // Replace N with its operand as we're going to combine that shuffle away.
19303   DAG.ReplaceAllUsesWith(N, N.getOperand(0));
19304
19305   // Replace the combinable shuffle with the combined one, updating all users
19306   // so that we re-evaluate the chain here.
19307   DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
19308   return true;
19309 }
19310
19311 /// \brief Search for a combinable shuffle across a chain ending in pshuflw or pshufhw.
19312 ///
19313 /// We walk up the chain, skipping shuffles of the other half and looking
19314 /// through shuffles which switch halves trying to find a shuffle of the same
19315 /// pair of dwords.
19316 static bool combineRedundantHalfShuffle(SDValue N, MutableArrayRef<int> Mask,
19317                                         SelectionDAG &DAG,
19318                                         TargetLowering::DAGCombinerInfo &DCI) {
19319   assert(
19320       (N.getOpcode() == X86ISD::PSHUFLW || N.getOpcode() == X86ISD::PSHUFHW) &&
19321       "Called with something other than an x86 128-bit half shuffle!");
19322   SDLoc DL(N);
19323   unsigned CombineOpcode = N.getOpcode();
19324
19325   // Walk up a single-use chain looking for a combinable shuffle.
19326   SDValue V = N.getOperand(0);
19327   for (; V.hasOneUse(); V = V.getOperand(0)) {
19328     switch (V.getOpcode()) {
19329     default:
19330       return false; // Nothing combined!
19331
19332     case ISD::BITCAST:
19333       // Skip bitcasts as we always know the type for the target specific
19334       // instructions.
19335       continue;
19336
19337     case X86ISD::PSHUFLW:
19338     case X86ISD::PSHUFHW:
19339       if (V.getOpcode() == CombineOpcode)
19340         break;
19341
19342       // Other-half shuffles are no-ops.
19343       continue;
19344
19345     case X86ISD::PSHUFD: {
19346       // We can only handle pshufd if the half we are combining either stays in
19347       // its half, or switches to the other half. Bail if one of these isn't
19348       // true.
19349       SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
19350       int DOffset = CombineOpcode == X86ISD::PSHUFLW ? 0 : 2;
19351       if (!((VMask[DOffset + 0] < 2 && VMask[DOffset + 1] < 2) ||
19352             (VMask[DOffset + 0] >= 2 && VMask[DOffset + 1] >= 2)))
19353         return false;
19354
19355       // Map the mask through the pshufd and keep walking up the chain.
19356       for (int i = 0; i < 4; ++i)
19357         Mask[i] = 2 * (VMask[DOffset + Mask[i] / 2] % 2) + Mask[i] % 2;
19358
19359       // Switch halves if the pshufd does.
19360       CombineOpcode =
19361           VMask[DOffset + Mask[0] / 2] < 2 ? X86ISD::PSHUFLW : X86ISD::PSHUFHW;
19362       continue;
19363     }
19364     }
19365     // Break out of the loop if we break out of the switch.
19366     break;
19367   }
19368
19369   if (!V.hasOneUse())
19370     // We fell out of the loop without finding a viable combining instruction.
19371     return false;
19372
19373   // Record the old value to use in RAUW-ing.
19374   SDValue Old = V;
19375
19376   // Merge this node's mask and our incoming mask (adjusted to account for all
19377   // the pshufd instructions encountered).
19378   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
19379   for (int &M : Mask)
19380     M = VMask[M];
19381   V = DAG.getNode(V.getOpcode(), DL, MVT::v8i16, V.getOperand(0),
19382                   getV4X86ShuffleImm8ForMask(Mask, DAG));
19383
19384   // Replace N with its operand as we're going to combine that shuffle away.
19385   DAG.ReplaceAllUsesWith(N, N.getOperand(0));
19386
19387   // Replace the combinable shuffle with the combined one, updating all users
19388   // so that we re-evaluate the chain here.
19389   DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
19390   return true;
19391 }
19392
19393 /// \brief Try to combine x86 target specific shuffles.
19394 static SDValue PerformTargetShuffleCombine(SDValue N, SelectionDAG &DAG,
19395                                            TargetLowering::DAGCombinerInfo &DCI,
19396                                            const X86Subtarget *Subtarget) {
19397   SDLoc DL(N);
19398   MVT VT = N.getSimpleValueType();
19399   SmallVector<int, 4> Mask;
19400
19401   switch (N.getOpcode()) {
19402   case X86ISD::PSHUFD:
19403   case X86ISD::PSHUFLW:
19404   case X86ISD::PSHUFHW:
19405     Mask = getPSHUFShuffleMask(N);
19406     assert(Mask.size() == 4);
19407     break;
19408   default:
19409     return SDValue();
19410   }
19411
19412   // Nuke no-op shuffles that show up after combining.
19413   if (isNoopShuffleMask(Mask))
19414     return DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
19415
19416   // Look for simplifications involving one or two shuffle instructions.
19417   SDValue V = N.getOperand(0);
19418   switch (N.getOpcode()) {
19419   default:
19420     break;
19421   case X86ISD::PSHUFLW:
19422   case X86ISD::PSHUFHW:
19423     assert(VT == MVT::v8i16);
19424     (void)VT;
19425
19426     if (combineRedundantHalfShuffle(N, Mask, DAG, DCI))
19427       return SDValue(); // We combined away this shuffle, so we're done.
19428
19429     // See if this reduces to a PSHUFD which is no more expensive and can
19430     // combine with more operations.
19431     if (Mask[0] % 2 == 0 && Mask[2] % 2 == 0 &&
19432         areAdjacentMasksSequential(Mask)) {
19433       int DMask[] = {-1, -1, -1, -1};
19434       int DOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 2;
19435       DMask[DOffset + 0] = DOffset + Mask[0] / 2;
19436       DMask[DOffset + 1] = DOffset + Mask[2] / 2;
19437       V = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V);
19438       DCI.AddToWorklist(V.getNode());
19439       V = DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V,
19440                       getV4X86ShuffleImm8ForMask(DMask, DAG));
19441       DCI.AddToWorklist(V.getNode());
19442       return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V);
19443     }
19444
19445     // Look for shuffle patterns which can be implemented as a single unpack.
19446     // FIXME: This doesn't handle the location of the PSHUFD generically, and
19447     // only works when we have a PSHUFD followed by two half-shuffles.
19448     if (Mask[0] == Mask[1] && Mask[2] == Mask[3] &&
19449         (V.getOpcode() == X86ISD::PSHUFLW ||
19450          V.getOpcode() == X86ISD::PSHUFHW) &&
19451         V.getOpcode() != N.getOpcode() &&
19452         V.hasOneUse()) {
19453       SDValue D = V.getOperand(0);
19454       while (D.getOpcode() == ISD::BITCAST && D.hasOneUse())
19455         D = D.getOperand(0);
19456       if (D.getOpcode() == X86ISD::PSHUFD && D.hasOneUse()) {
19457         SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
19458         SmallVector<int, 4> DMask = getPSHUFShuffleMask(D);
19459         int NOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
19460         int VOffset = V.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
19461         int WordMask[8];
19462         for (int i = 0; i < 4; ++i) {
19463           WordMask[i + NOffset] = Mask[i] + NOffset;
19464           WordMask[i + VOffset] = VMask[i] + VOffset;
19465         }
19466         // Map the word mask through the DWord mask.
19467         int MappedMask[8];
19468         for (int i = 0; i < 8; ++i)
19469           MappedMask[i] = 2 * DMask[WordMask[i] / 2] + WordMask[i] % 2;
19470         const int UnpackLoMask[] = {0, 0, 1, 1, 2, 2, 3, 3};
19471         const int UnpackHiMask[] = {4, 4, 5, 5, 6, 6, 7, 7};
19472         if (std::equal(std::begin(MappedMask), std::end(MappedMask),
19473                        std::begin(UnpackLoMask)) ||
19474             std::equal(std::begin(MappedMask), std::end(MappedMask),
19475                        std::begin(UnpackHiMask))) {
19476           // We can replace all three shuffles with an unpack.
19477           V = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, D.getOperand(0));
19478           DCI.AddToWorklist(V.getNode());
19479           return DAG.getNode(MappedMask[0] == 0 ? X86ISD::UNPCKL
19480                                                 : X86ISD::UNPCKH,
19481                              DL, MVT::v8i16, V, V);
19482         }
19483       }
19484     }
19485
19486     break;
19487
19488   case X86ISD::PSHUFD:
19489     if (combineRedundantDWordShuffle(N, Mask, DAG, DCI))
19490       return SDValue(); // We combined away this shuffle.
19491
19492     break;
19493   }
19494
19495   return SDValue();
19496 }
19497
19498 /// PerformShuffleCombine - Performs several different shuffle combines.
19499 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
19500                                      TargetLowering::DAGCombinerInfo &DCI,
19501                                      const X86Subtarget *Subtarget) {
19502   SDLoc dl(N);
19503   SDValue N0 = N->getOperand(0);
19504   SDValue N1 = N->getOperand(1);
19505   EVT VT = N->getValueType(0);
19506
19507   // Don't create instructions with illegal types after legalize types has run.
19508   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19509   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
19510     return SDValue();
19511
19512   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
19513   if (Subtarget->hasFp256() && VT.is256BitVector() &&
19514       N->getOpcode() == ISD::VECTOR_SHUFFLE)
19515     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
19516
19517   // During Type Legalization, when promoting illegal vector types,
19518   // the backend might introduce new shuffle dag nodes and bitcasts.
19519   //
19520   // This code performs the following transformation:
19521   // fold: (shuffle (bitcast (BINOP A, B)), Undef, <Mask>) ->
19522   //       (shuffle (BINOP (bitcast A), (bitcast B)), Undef, <Mask>)
19523   //
19524   // We do this only if both the bitcast and the BINOP dag nodes have
19525   // one use. Also, perform this transformation only if the new binary
19526   // operation is legal. This is to avoid introducing dag nodes that
19527   // potentially need to be further expanded (or custom lowered) into a
19528   // less optimal sequence of dag nodes.
19529   if (!DCI.isBeforeLegalize() && DCI.isBeforeLegalizeOps() &&
19530       N1.getOpcode() == ISD::UNDEF && N0.hasOneUse() &&
19531       N0.getOpcode() == ISD::BITCAST) {
19532     SDValue BC0 = N0.getOperand(0);
19533     EVT SVT = BC0.getValueType();
19534     unsigned Opcode = BC0.getOpcode();
19535     unsigned NumElts = VT.getVectorNumElements();
19536     
19537     if (BC0.hasOneUse() && SVT.isVector() &&
19538         SVT.getVectorNumElements() * 2 == NumElts &&
19539         TLI.isOperationLegal(Opcode, VT)) {
19540       bool CanFold = false;
19541       switch (Opcode) {
19542       default : break;
19543       case ISD::ADD :
19544       case ISD::FADD :
19545       case ISD::SUB :
19546       case ISD::FSUB :
19547       case ISD::MUL :
19548       case ISD::FMUL :
19549         CanFold = true;
19550       }
19551
19552       unsigned SVTNumElts = SVT.getVectorNumElements();
19553       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
19554       for (unsigned i = 0, e = SVTNumElts; i != e && CanFold; ++i)
19555         CanFold = SVOp->getMaskElt(i) == (int)(i * 2);
19556       for (unsigned i = SVTNumElts, e = NumElts; i != e && CanFold; ++i)
19557         CanFold = SVOp->getMaskElt(i) < 0;
19558
19559       if (CanFold) {
19560         SDValue BC00 = DAG.getNode(ISD::BITCAST, dl, VT, BC0.getOperand(0));
19561         SDValue BC01 = DAG.getNode(ISD::BITCAST, dl, VT, BC0.getOperand(1));
19562         SDValue NewBinOp = DAG.getNode(BC0.getOpcode(), dl, VT, BC00, BC01);
19563         return DAG.getVectorShuffle(VT, dl, NewBinOp, N1, &SVOp->getMask()[0]);
19564       }
19565     }
19566   }
19567
19568   // Only handle 128 wide vector from here on.
19569   if (!VT.is128BitVector())
19570     return SDValue();
19571
19572   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
19573   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
19574   // consecutive, non-overlapping, and in the right order.
19575   SmallVector<SDValue, 16> Elts;
19576   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
19577     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
19578
19579   SDValue LD = EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
19580   if (LD.getNode())
19581     return LD;
19582
19583   if (isTargetShuffle(N->getOpcode())) {
19584     SDValue Shuffle =
19585         PerformTargetShuffleCombine(SDValue(N, 0), DAG, DCI, Subtarget);
19586     if (Shuffle.getNode())
19587       return Shuffle;
19588
19589     // Try recursively combining arbitrary sequences of x86 shuffle
19590     // instructions into higher-order shuffles. We do this after combining
19591     // specific PSHUF instruction sequences into their minimal form so that we
19592     // can evaluate how many specialized shuffle instructions are involved in
19593     // a particular chain.
19594     SmallVector<int, 1> NonceMask; // Just a placeholder.
19595     NonceMask.push_back(0);
19596     if (combineX86ShufflesRecursively(SDValue(N, 0), SDValue(N, 0), NonceMask,
19597                                       /*Depth*/ 1, /*HasPSHUFB*/ false, DAG,
19598                                       DCI, Subtarget))
19599       return SDValue(); // This routine will use CombineTo to replace N.
19600   }
19601
19602   return SDValue();
19603 }
19604
19605 /// PerformTruncateCombine - Converts truncate operation to
19606 /// a sequence of vector shuffle operations.
19607 /// It is possible when we truncate 256-bit vector to 128-bit vector
19608 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
19609                                       TargetLowering::DAGCombinerInfo &DCI,
19610                                       const X86Subtarget *Subtarget)  {
19611   return SDValue();
19612 }
19613
19614 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
19615 /// specific shuffle of a load can be folded into a single element load.
19616 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
19617 /// shuffles have been customed lowered so we need to handle those here.
19618 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
19619                                          TargetLowering::DAGCombinerInfo &DCI) {
19620   if (DCI.isBeforeLegalizeOps())
19621     return SDValue();
19622
19623   SDValue InVec = N->getOperand(0);
19624   SDValue EltNo = N->getOperand(1);
19625
19626   if (!isa<ConstantSDNode>(EltNo))
19627     return SDValue();
19628
19629   EVT VT = InVec.getValueType();
19630
19631   bool HasShuffleIntoBitcast = false;
19632   if (InVec.getOpcode() == ISD::BITCAST) {
19633     // Don't duplicate a load with other uses.
19634     if (!InVec.hasOneUse())
19635       return SDValue();
19636     EVT BCVT = InVec.getOperand(0).getValueType();
19637     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
19638       return SDValue();
19639     InVec = InVec.getOperand(0);
19640     HasShuffleIntoBitcast = true;
19641   }
19642
19643   if (!isTargetShuffle(InVec.getOpcode()))
19644     return SDValue();
19645
19646   // Don't duplicate a load with other uses.
19647   if (!InVec.hasOneUse())
19648     return SDValue();
19649
19650   SmallVector<int, 16> ShuffleMask;
19651   bool UnaryShuffle;
19652   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
19653                             UnaryShuffle))
19654     return SDValue();
19655
19656   // Select the input vector, guarding against out of range extract vector.
19657   unsigned NumElems = VT.getVectorNumElements();
19658   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
19659   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
19660   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
19661                                          : InVec.getOperand(1);
19662
19663   // If inputs to shuffle are the same for both ops, then allow 2 uses
19664   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
19665
19666   if (LdNode.getOpcode() == ISD::BITCAST) {
19667     // Don't duplicate a load with other uses.
19668     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
19669       return SDValue();
19670
19671     AllowedUses = 1; // only allow 1 load use if we have a bitcast
19672     LdNode = LdNode.getOperand(0);
19673   }
19674
19675   if (!ISD::isNormalLoad(LdNode.getNode()))
19676     return SDValue();
19677
19678   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
19679
19680   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
19681     return SDValue();
19682
19683   if (HasShuffleIntoBitcast) {
19684     // If there's a bitcast before the shuffle, check if the load type and
19685     // alignment is valid.
19686     unsigned Align = LN0->getAlignment();
19687     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19688     unsigned NewAlign = TLI.getDataLayout()->
19689       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
19690
19691     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
19692       return SDValue();
19693   }
19694
19695   // All checks match so transform back to vector_shuffle so that DAG combiner
19696   // can finish the job
19697   SDLoc dl(N);
19698
19699   // Create shuffle node taking into account the case that its a unary shuffle
19700   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
19701   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
19702                                  InVec.getOperand(0), Shuffle,
19703                                  &ShuffleMask[0]);
19704   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
19705   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
19706                      EltNo);
19707 }
19708
19709 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
19710 /// generation and convert it from being a bunch of shuffles and extracts
19711 /// to a simple store and scalar loads to extract the elements.
19712 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
19713                                          TargetLowering::DAGCombinerInfo &DCI) {
19714   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
19715   if (NewOp.getNode())
19716     return NewOp;
19717
19718   SDValue InputVector = N->getOperand(0);
19719
19720   // Detect whether we are trying to convert from mmx to i32 and the bitcast
19721   // from mmx to v2i32 has a single usage.
19722   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
19723       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
19724       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
19725     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
19726                        N->getValueType(0),
19727                        InputVector.getNode()->getOperand(0));
19728
19729   // Only operate on vectors of 4 elements, where the alternative shuffling
19730   // gets to be more expensive.
19731   if (InputVector.getValueType() != MVT::v4i32)
19732     return SDValue();
19733
19734   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
19735   // single use which is a sign-extend or zero-extend, and all elements are
19736   // used.
19737   SmallVector<SDNode *, 4> Uses;
19738   unsigned ExtractedElements = 0;
19739   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
19740        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
19741     if (UI.getUse().getResNo() != InputVector.getResNo())
19742       return SDValue();
19743
19744     SDNode *Extract = *UI;
19745     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
19746       return SDValue();
19747
19748     if (Extract->getValueType(0) != MVT::i32)
19749       return SDValue();
19750     if (!Extract->hasOneUse())
19751       return SDValue();
19752     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
19753         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
19754       return SDValue();
19755     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
19756       return SDValue();
19757
19758     // Record which element was extracted.
19759     ExtractedElements |=
19760       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
19761
19762     Uses.push_back(Extract);
19763   }
19764
19765   // If not all the elements were used, this may not be worthwhile.
19766   if (ExtractedElements != 15)
19767     return SDValue();
19768
19769   // Ok, we've now decided to do the transformation.
19770   SDLoc dl(InputVector);
19771
19772   // Store the value to a temporary stack slot.
19773   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
19774   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
19775                             MachinePointerInfo(), false, false, 0);
19776
19777   // Replace each use (extract) with a load of the appropriate element.
19778   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
19779        UE = Uses.end(); UI != UE; ++UI) {
19780     SDNode *Extract = *UI;
19781
19782     // cOMpute the element's address.
19783     SDValue Idx = Extract->getOperand(1);
19784     unsigned EltSize =
19785         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
19786     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
19787     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19788     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
19789
19790     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
19791                                      StackPtr, OffsetVal);
19792
19793     // Load the scalar.
19794     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
19795                                      ScalarAddr, MachinePointerInfo(),
19796                                      false, false, false, 0);
19797
19798     // Replace the exact with the load.
19799     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
19800   }
19801
19802   // The replacement was made in place; don't return anything.
19803   return SDValue();
19804 }
19805
19806 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
19807 static std::pair<unsigned, bool>
19808 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
19809                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
19810   if (!VT.isVector())
19811     return std::make_pair(0, false);
19812
19813   bool NeedSplit = false;
19814   switch (VT.getSimpleVT().SimpleTy) {
19815   default: return std::make_pair(0, false);
19816   case MVT::v32i8:
19817   case MVT::v16i16:
19818   case MVT::v8i32:
19819     if (!Subtarget->hasAVX2())
19820       NeedSplit = true;
19821     if (!Subtarget->hasAVX())
19822       return std::make_pair(0, false);
19823     break;
19824   case MVT::v16i8:
19825   case MVT::v8i16:
19826   case MVT::v4i32:
19827     if (!Subtarget->hasSSE2())
19828       return std::make_pair(0, false);
19829   }
19830
19831   // SSE2 has only a small subset of the operations.
19832   bool hasUnsigned = Subtarget->hasSSE41() ||
19833                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
19834   bool hasSigned = Subtarget->hasSSE41() ||
19835                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
19836
19837   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
19838
19839   unsigned Opc = 0;
19840   // Check for x CC y ? x : y.
19841   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
19842       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
19843     switch (CC) {
19844     default: break;
19845     case ISD::SETULT:
19846     case ISD::SETULE:
19847       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
19848     case ISD::SETUGT:
19849     case ISD::SETUGE:
19850       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
19851     case ISD::SETLT:
19852     case ISD::SETLE:
19853       Opc = hasSigned ? X86ISD::SMIN : 0; break;
19854     case ISD::SETGT:
19855     case ISD::SETGE:
19856       Opc = hasSigned ? X86ISD::SMAX : 0; break;
19857     }
19858   // Check for x CC y ? y : x -- a min/max with reversed arms.
19859   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
19860              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
19861     switch (CC) {
19862     default: break;
19863     case ISD::SETULT:
19864     case ISD::SETULE:
19865       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
19866     case ISD::SETUGT:
19867     case ISD::SETUGE:
19868       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
19869     case ISD::SETLT:
19870     case ISD::SETLE:
19871       Opc = hasSigned ? X86ISD::SMAX : 0; break;
19872     case ISD::SETGT:
19873     case ISD::SETGE:
19874       Opc = hasSigned ? X86ISD::SMIN : 0; break;
19875     }
19876   }
19877
19878   return std::make_pair(Opc, NeedSplit);
19879 }
19880
19881 static SDValue
19882 TransformVSELECTtoBlendVECTOR_SHUFFLE(SDNode *N, SelectionDAG &DAG,
19883                                       const X86Subtarget *Subtarget) {
19884   SDLoc dl(N);
19885   SDValue Cond = N->getOperand(0);
19886   SDValue LHS = N->getOperand(1);
19887   SDValue RHS = N->getOperand(2);
19888
19889   if (Cond.getOpcode() == ISD::SIGN_EXTEND) {
19890     SDValue CondSrc = Cond->getOperand(0);
19891     if (CondSrc->getOpcode() == ISD::SIGN_EXTEND_INREG)
19892       Cond = CondSrc->getOperand(0);
19893   }
19894
19895   MVT VT = N->getSimpleValueType(0);
19896   MVT EltVT = VT.getVectorElementType();
19897   unsigned NumElems = VT.getVectorNumElements();
19898   // There is no blend with immediate in AVX-512.
19899   if (VT.is512BitVector())
19900     return SDValue();
19901
19902   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
19903     return SDValue();
19904   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
19905     return SDValue();
19906
19907   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
19908     return SDValue();
19909
19910   unsigned MaskValue = 0;
19911   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
19912     return SDValue();
19913
19914   SmallVector<int, 8> ShuffleMask(NumElems, -1);
19915   for (unsigned i = 0; i < NumElems; ++i) {
19916     // Be sure we emit undef where we can.
19917     if (Cond.getOperand(i)->getOpcode() == ISD::UNDEF)
19918       ShuffleMask[i] = -1;
19919     else
19920       ShuffleMask[i] = i + NumElems * ((MaskValue >> i) & 1);
19921   }
19922
19923   return DAG.getVectorShuffle(VT, dl, LHS, RHS, &ShuffleMask[0]);
19924 }
19925
19926 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
19927 /// nodes.
19928 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
19929                                     TargetLowering::DAGCombinerInfo &DCI,
19930                                     const X86Subtarget *Subtarget) {
19931   SDLoc DL(N);
19932   SDValue Cond = N->getOperand(0);
19933   // Get the LHS/RHS of the select.
19934   SDValue LHS = N->getOperand(1);
19935   SDValue RHS = N->getOperand(2);
19936   EVT VT = LHS.getValueType();
19937   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19938
19939   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
19940   // instructions match the semantics of the common C idiom x<y?x:y but not
19941   // x<=y?x:y, because of how they handle negative zero (which can be
19942   // ignored in unsafe-math mode).
19943   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
19944       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
19945       (Subtarget->hasSSE2() ||
19946        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
19947     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
19948
19949     unsigned Opcode = 0;
19950     // Check for x CC y ? x : y.
19951     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
19952         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
19953       switch (CC) {
19954       default: break;
19955       case ISD::SETULT:
19956         // Converting this to a min would handle NaNs incorrectly, and swapping
19957         // the operands would cause it to handle comparisons between positive
19958         // and negative zero incorrectly.
19959         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
19960           if (!DAG.getTarget().Options.UnsafeFPMath &&
19961               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
19962             break;
19963           std::swap(LHS, RHS);
19964         }
19965         Opcode = X86ISD::FMIN;
19966         break;
19967       case ISD::SETOLE:
19968         // Converting this to a min would handle comparisons between positive
19969         // and negative zero incorrectly.
19970         if (!DAG.getTarget().Options.UnsafeFPMath &&
19971             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
19972           break;
19973         Opcode = X86ISD::FMIN;
19974         break;
19975       case ISD::SETULE:
19976         // Converting this to a min would handle both negative zeros and NaNs
19977         // incorrectly, but we can swap the operands to fix both.
19978         std::swap(LHS, RHS);
19979       case ISD::SETOLT:
19980       case ISD::SETLT:
19981       case ISD::SETLE:
19982         Opcode = X86ISD::FMIN;
19983         break;
19984
19985       case ISD::SETOGE:
19986         // Converting this to a max would handle comparisons between positive
19987         // and negative zero incorrectly.
19988         if (!DAG.getTarget().Options.UnsafeFPMath &&
19989             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
19990           break;
19991         Opcode = X86ISD::FMAX;
19992         break;
19993       case ISD::SETUGT:
19994         // Converting this to a max would handle NaNs incorrectly, and swapping
19995         // the operands would cause it to handle comparisons between positive
19996         // and negative zero incorrectly.
19997         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
19998           if (!DAG.getTarget().Options.UnsafeFPMath &&
19999               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
20000             break;
20001           std::swap(LHS, RHS);
20002         }
20003         Opcode = X86ISD::FMAX;
20004         break;
20005       case ISD::SETUGE:
20006         // Converting this to a max would handle both negative zeros and NaNs
20007         // incorrectly, but we can swap the operands to fix both.
20008         std::swap(LHS, RHS);
20009       case ISD::SETOGT:
20010       case ISD::SETGT:
20011       case ISD::SETGE:
20012         Opcode = X86ISD::FMAX;
20013         break;
20014       }
20015     // Check for x CC y ? y : x -- a min/max with reversed arms.
20016     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
20017                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
20018       switch (CC) {
20019       default: break;
20020       case ISD::SETOGE:
20021         // Converting this to a min would handle comparisons between positive
20022         // and negative zero incorrectly, and swapping the operands would
20023         // cause it to handle NaNs incorrectly.
20024         if (!DAG.getTarget().Options.UnsafeFPMath &&
20025             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
20026           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
20027             break;
20028           std::swap(LHS, RHS);
20029         }
20030         Opcode = X86ISD::FMIN;
20031         break;
20032       case ISD::SETUGT:
20033         // Converting this to a min would handle NaNs incorrectly.
20034         if (!DAG.getTarget().Options.UnsafeFPMath &&
20035             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
20036           break;
20037         Opcode = X86ISD::FMIN;
20038         break;
20039       case ISD::SETUGE:
20040         // Converting this to a min would handle both negative zeros and NaNs
20041         // incorrectly, but we can swap the operands to fix both.
20042         std::swap(LHS, RHS);
20043       case ISD::SETOGT:
20044       case ISD::SETGT:
20045       case ISD::SETGE:
20046         Opcode = X86ISD::FMIN;
20047         break;
20048
20049       case ISD::SETULT:
20050         // Converting this to a max would handle NaNs incorrectly.
20051         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
20052           break;
20053         Opcode = X86ISD::FMAX;
20054         break;
20055       case ISD::SETOLE:
20056         // Converting this to a max would handle comparisons between positive
20057         // and negative zero incorrectly, and swapping the operands would
20058         // cause it to handle NaNs incorrectly.
20059         if (!DAG.getTarget().Options.UnsafeFPMath &&
20060             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
20061           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
20062             break;
20063           std::swap(LHS, RHS);
20064         }
20065         Opcode = X86ISD::FMAX;
20066         break;
20067       case ISD::SETULE:
20068         // Converting this to a max would handle both negative zeros and NaNs
20069         // incorrectly, but we can swap the operands to fix both.
20070         std::swap(LHS, RHS);
20071       case ISD::SETOLT:
20072       case ISD::SETLT:
20073       case ISD::SETLE:
20074         Opcode = X86ISD::FMAX;
20075         break;
20076       }
20077     }
20078
20079     if (Opcode)
20080       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
20081   }
20082
20083   EVT CondVT = Cond.getValueType();
20084   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
20085       CondVT.getVectorElementType() == MVT::i1) {
20086     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
20087     // lowering on AVX-512. In this case we convert it to
20088     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
20089     // The same situation for all 128 and 256-bit vectors of i8 and i16
20090     EVT OpVT = LHS.getValueType();
20091     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
20092         (OpVT.getVectorElementType() == MVT::i8 ||
20093          OpVT.getVectorElementType() == MVT::i16)) {
20094       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
20095       DCI.AddToWorklist(Cond.getNode());
20096       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
20097     }
20098   }
20099   // If this is a select between two integer constants, try to do some
20100   // optimizations.
20101   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
20102     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
20103       // Don't do this for crazy integer types.
20104       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
20105         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
20106         // so that TrueC (the true value) is larger than FalseC.
20107         bool NeedsCondInvert = false;
20108
20109         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
20110             // Efficiently invertible.
20111             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
20112              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
20113               isa<ConstantSDNode>(Cond.getOperand(1))))) {
20114           NeedsCondInvert = true;
20115           std::swap(TrueC, FalseC);
20116         }
20117
20118         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
20119         if (FalseC->getAPIntValue() == 0 &&
20120             TrueC->getAPIntValue().isPowerOf2()) {
20121           if (NeedsCondInvert) // Invert the condition if needed.
20122             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
20123                                DAG.getConstant(1, Cond.getValueType()));
20124
20125           // Zero extend the condition if needed.
20126           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
20127
20128           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
20129           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
20130                              DAG.getConstant(ShAmt, MVT::i8));
20131         }
20132
20133         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
20134         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
20135           if (NeedsCondInvert) // Invert the condition if needed.
20136             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
20137                                DAG.getConstant(1, Cond.getValueType()));
20138
20139           // Zero extend the condition if needed.
20140           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
20141                              FalseC->getValueType(0), Cond);
20142           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
20143                              SDValue(FalseC, 0));
20144         }
20145
20146         // Optimize cases that will turn into an LEA instruction.  This requires
20147         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
20148         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
20149           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
20150           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
20151
20152           bool isFastMultiplier = false;
20153           if (Diff < 10) {
20154             switch ((unsigned char)Diff) {
20155               default: break;
20156               case 1:  // result = add base, cond
20157               case 2:  // result = lea base(    , cond*2)
20158               case 3:  // result = lea base(cond, cond*2)
20159               case 4:  // result = lea base(    , cond*4)
20160               case 5:  // result = lea base(cond, cond*4)
20161               case 8:  // result = lea base(    , cond*8)
20162               case 9:  // result = lea base(cond, cond*8)
20163                 isFastMultiplier = true;
20164                 break;
20165             }
20166           }
20167
20168           if (isFastMultiplier) {
20169             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
20170             if (NeedsCondInvert) // Invert the condition if needed.
20171               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
20172                                  DAG.getConstant(1, Cond.getValueType()));
20173
20174             // Zero extend the condition if needed.
20175             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
20176                                Cond);
20177             // Scale the condition by the difference.
20178             if (Diff != 1)
20179               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
20180                                  DAG.getConstant(Diff, Cond.getValueType()));
20181
20182             // Add the base if non-zero.
20183             if (FalseC->getAPIntValue() != 0)
20184               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
20185                                  SDValue(FalseC, 0));
20186             return Cond;
20187           }
20188         }
20189       }
20190   }
20191
20192   // Canonicalize max and min:
20193   // (x > y) ? x : y -> (x >= y) ? x : y
20194   // (x < y) ? x : y -> (x <= y) ? x : y
20195   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
20196   // the need for an extra compare
20197   // against zero. e.g.
20198   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
20199   // subl   %esi, %edi
20200   // testl  %edi, %edi
20201   // movl   $0, %eax
20202   // cmovgl %edi, %eax
20203   // =>
20204   // xorl   %eax, %eax
20205   // subl   %esi, $edi
20206   // cmovsl %eax, %edi
20207   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
20208       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
20209       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
20210     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
20211     switch (CC) {
20212     default: break;
20213     case ISD::SETLT:
20214     case ISD::SETGT: {
20215       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
20216       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
20217                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
20218       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
20219     }
20220     }
20221   }
20222
20223   // Early exit check
20224   if (!TLI.isTypeLegal(VT))
20225     return SDValue();
20226
20227   // Match VSELECTs into subs with unsigned saturation.
20228   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
20229       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
20230       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
20231        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
20232     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
20233
20234     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
20235     // left side invert the predicate to simplify logic below.
20236     SDValue Other;
20237     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
20238       Other = RHS;
20239       CC = ISD::getSetCCInverse(CC, true);
20240     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
20241       Other = LHS;
20242     }
20243
20244     if (Other.getNode() && Other->getNumOperands() == 2 &&
20245         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
20246       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
20247       SDValue CondRHS = Cond->getOperand(1);
20248
20249       // Look for a general sub with unsigned saturation first.
20250       // x >= y ? x-y : 0 --> subus x, y
20251       // x >  y ? x-y : 0 --> subus x, y
20252       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
20253           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
20254         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
20255
20256       if (auto *OpRHSBV = dyn_cast<BuildVectorSDNode>(OpRHS))
20257         if (auto *OpRHSConst = OpRHSBV->getConstantSplatNode()) {
20258           if (auto *CondRHSBV = dyn_cast<BuildVectorSDNode>(CondRHS))
20259             if (auto *CondRHSConst = CondRHSBV->getConstantSplatNode())
20260               // If the RHS is a constant we have to reverse the const
20261               // canonicalization.
20262               // x > C-1 ? x+-C : 0 --> subus x, C
20263               if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
20264                   CondRHSConst->getAPIntValue() ==
20265                       (-OpRHSConst->getAPIntValue() - 1))
20266                 return DAG.getNode(
20267                     X86ISD::SUBUS, DL, VT, OpLHS,
20268                     DAG.getConstant(-OpRHSConst->getAPIntValue(), VT));
20269
20270           // Another special case: If C was a sign bit, the sub has been
20271           // canonicalized into a xor.
20272           // FIXME: Would it be better to use computeKnownBits to determine
20273           //        whether it's safe to decanonicalize the xor?
20274           // x s< 0 ? x^C : 0 --> subus x, C
20275           if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
20276               ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
20277               OpRHSConst->getAPIntValue().isSignBit())
20278             // Note that we have to rebuild the RHS constant here to ensure we
20279             // don't rely on particular values of undef lanes.
20280             return DAG.getNode(
20281                 X86ISD::SUBUS, DL, VT, OpLHS,
20282                 DAG.getConstant(OpRHSConst->getAPIntValue(), VT));
20283         }
20284     }
20285   }
20286
20287   // Try to match a min/max vector operation.
20288   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
20289     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
20290     unsigned Opc = ret.first;
20291     bool NeedSplit = ret.second;
20292
20293     if (Opc && NeedSplit) {
20294       unsigned NumElems = VT.getVectorNumElements();
20295       // Extract the LHS vectors
20296       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
20297       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
20298
20299       // Extract the RHS vectors
20300       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
20301       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
20302
20303       // Create min/max for each subvector
20304       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
20305       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
20306
20307       // Merge the result
20308       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
20309     } else if (Opc)
20310       return DAG.getNode(Opc, DL, VT, LHS, RHS);
20311   }
20312
20313   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
20314   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
20315       // Check if SETCC has already been promoted
20316       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
20317       // Check that condition value type matches vselect operand type
20318       CondVT == VT) { 
20319
20320     assert(Cond.getValueType().isVector() &&
20321            "vector select expects a vector selector!");
20322
20323     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
20324     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
20325
20326     if (!TValIsAllOnes && !FValIsAllZeros) {
20327       // Try invert the condition if true value is not all 1s and false value
20328       // is not all 0s.
20329       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
20330       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
20331
20332       if (TValIsAllZeros || FValIsAllOnes) {
20333         SDValue CC = Cond.getOperand(2);
20334         ISD::CondCode NewCC =
20335           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
20336                                Cond.getOperand(0).getValueType().isInteger());
20337         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
20338         std::swap(LHS, RHS);
20339         TValIsAllOnes = FValIsAllOnes;
20340         FValIsAllZeros = TValIsAllZeros;
20341       }
20342     }
20343
20344     if (TValIsAllOnes || FValIsAllZeros) {
20345       SDValue Ret;
20346
20347       if (TValIsAllOnes && FValIsAllZeros)
20348         Ret = Cond;
20349       else if (TValIsAllOnes)
20350         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
20351                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
20352       else if (FValIsAllZeros)
20353         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
20354                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
20355
20356       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
20357     }
20358   }
20359
20360   // Try to fold this VSELECT into a MOVSS/MOVSD
20361   if (N->getOpcode() == ISD::VSELECT &&
20362       Cond.getOpcode() == ISD::BUILD_VECTOR && !DCI.isBeforeLegalize()) {
20363     if (VT == MVT::v4i32 || VT == MVT::v4f32 ||
20364         (Subtarget->hasSSE2() && (VT == MVT::v2i64 || VT == MVT::v2f64))) {
20365       bool CanFold = false;
20366       unsigned NumElems = Cond.getNumOperands();
20367       SDValue A = LHS;
20368       SDValue B = RHS;
20369       
20370       if (isZero(Cond.getOperand(0))) {
20371         CanFold = true;
20372
20373         // fold (vselect <0,-1,-1,-1>, A, B) -> (movss A, B)
20374         // fold (vselect <0,-1> -> (movsd A, B)
20375         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
20376           CanFold = isAllOnes(Cond.getOperand(i));
20377       } else if (isAllOnes(Cond.getOperand(0))) {
20378         CanFold = true;
20379         std::swap(A, B);
20380
20381         // fold (vselect <-1,0,0,0>, A, B) -> (movss B, A)
20382         // fold (vselect <-1,0> -> (movsd B, A)
20383         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
20384           CanFold = isZero(Cond.getOperand(i));
20385       }
20386
20387       if (CanFold) {
20388         if (VT == MVT::v4i32 || VT == MVT::v4f32)
20389           return getTargetShuffleNode(X86ISD::MOVSS, DL, VT, A, B, DAG);
20390         return getTargetShuffleNode(X86ISD::MOVSD, DL, VT, A, B, DAG);
20391       }
20392
20393       if (Subtarget->hasSSE2() && (VT == MVT::v4i32 || VT == MVT::v4f32)) {
20394         // fold (v4i32: vselect <0,0,-1,-1>, A, B) ->
20395         //      (v4i32 (bitcast (movsd (v2i64 (bitcast A)),
20396         //                             (v2i64 (bitcast B)))))
20397         //
20398         // fold (v4f32: vselect <0,0,-1,-1>, A, B) ->
20399         //      (v4f32 (bitcast (movsd (v2f64 (bitcast A)),
20400         //                             (v2f64 (bitcast B)))))
20401         //
20402         // fold (v4i32: vselect <-1,-1,0,0>, A, B) ->
20403         //      (v4i32 (bitcast (movsd (v2i64 (bitcast B)),
20404         //                             (v2i64 (bitcast A)))))
20405         //
20406         // fold (v4f32: vselect <-1,-1,0,0>, A, B) ->
20407         //      (v4f32 (bitcast (movsd (v2f64 (bitcast B)),
20408         //                             (v2f64 (bitcast A)))))
20409
20410         CanFold = (isZero(Cond.getOperand(0)) &&
20411                    isZero(Cond.getOperand(1)) &&
20412                    isAllOnes(Cond.getOperand(2)) &&
20413                    isAllOnes(Cond.getOperand(3)));
20414
20415         if (!CanFold && isAllOnes(Cond.getOperand(0)) &&
20416             isAllOnes(Cond.getOperand(1)) &&
20417             isZero(Cond.getOperand(2)) &&
20418             isZero(Cond.getOperand(3))) {
20419           CanFold = true;
20420           std::swap(LHS, RHS);
20421         }
20422
20423         if (CanFold) {
20424           EVT NVT = (VT == MVT::v4i32) ? MVT::v2i64 : MVT::v2f64;
20425           SDValue NewA = DAG.getNode(ISD::BITCAST, DL, NVT, LHS);
20426           SDValue NewB = DAG.getNode(ISD::BITCAST, DL, NVT, RHS);
20427           SDValue Select = getTargetShuffleNode(X86ISD::MOVSD, DL, NVT, NewA,
20428                                                 NewB, DAG);
20429           return DAG.getNode(ISD::BITCAST, DL, VT, Select);
20430         }
20431       }
20432     }
20433   }
20434
20435   // If we know that this node is legal then we know that it is going to be
20436   // matched by one of the SSE/AVX BLEND instructions. These instructions only
20437   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
20438   // to simplify previous instructions.
20439   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
20440       !DCI.isBeforeLegalize() &&
20441       // We explicitly check against v8i16 and v16i16 because, although
20442       // they're marked as Custom, they might only be legal when Cond is a
20443       // build_vector of constants. This will be taken care in a later
20444       // condition.
20445       (TLI.isOperationLegalOrCustom(ISD::VSELECT, VT) && VT != MVT::v16i16 &&
20446        VT != MVT::v8i16)) {
20447     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
20448
20449     // Don't optimize vector selects that map to mask-registers.
20450     if (BitWidth == 1)
20451       return SDValue();
20452
20453     // Check all uses of that condition operand to check whether it will be
20454     // consumed by non-BLEND instructions, which may depend on all bits are set
20455     // properly.
20456     for (SDNode::use_iterator I = Cond->use_begin(),
20457                               E = Cond->use_end(); I != E; ++I)
20458       if (I->getOpcode() != ISD::VSELECT)
20459         // TODO: Add other opcodes eventually lowered into BLEND.
20460         return SDValue();
20461
20462     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
20463     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
20464
20465     APInt KnownZero, KnownOne;
20466     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
20467                                           DCI.isBeforeLegalizeOps());
20468     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
20469         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
20470       DCI.CommitTargetLoweringOpt(TLO);
20471   }
20472
20473   // We should generate an X86ISD::BLENDI from a vselect if its argument
20474   // is a sign_extend_inreg of an any_extend of a BUILD_VECTOR of
20475   // constants. This specific pattern gets generated when we split a
20476   // selector for a 512 bit vector in a machine without AVX512 (but with
20477   // 256-bit vectors), during legalization:
20478   //
20479   // (vselect (sign_extend (any_extend (BUILD_VECTOR)) i1) LHS RHS)
20480   //
20481   // Iff we find this pattern and the build_vectors are built from
20482   // constants, we translate the vselect into a shuffle_vector that we
20483   // know will be matched by LowerVECTOR_SHUFFLEtoBlend.
20484   if (N->getOpcode() == ISD::VSELECT && !DCI.isBeforeLegalize()) {
20485     SDValue Shuffle = TransformVSELECTtoBlendVECTOR_SHUFFLE(N, DAG, Subtarget);
20486     if (Shuffle.getNode())
20487       return Shuffle;
20488   }
20489
20490   return SDValue();
20491 }
20492
20493 // Check whether a boolean test is testing a boolean value generated by
20494 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
20495 // code.
20496 //
20497 // Simplify the following patterns:
20498 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
20499 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
20500 // to (Op EFLAGS Cond)
20501 //
20502 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
20503 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
20504 // to (Op EFLAGS !Cond)
20505 //
20506 // where Op could be BRCOND or CMOV.
20507 //
20508 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
20509   // Quit if not CMP and SUB with its value result used.
20510   if (Cmp.getOpcode() != X86ISD::CMP &&
20511       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
20512       return SDValue();
20513
20514   // Quit if not used as a boolean value.
20515   if (CC != X86::COND_E && CC != X86::COND_NE)
20516     return SDValue();
20517
20518   // Check CMP operands. One of them should be 0 or 1 and the other should be
20519   // an SetCC or extended from it.
20520   SDValue Op1 = Cmp.getOperand(0);
20521   SDValue Op2 = Cmp.getOperand(1);
20522
20523   SDValue SetCC;
20524   const ConstantSDNode* C = nullptr;
20525   bool needOppositeCond = (CC == X86::COND_E);
20526   bool checkAgainstTrue = false; // Is it a comparison against 1?
20527
20528   if ((C = dyn_cast<ConstantSDNode>(Op1)))
20529     SetCC = Op2;
20530   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
20531     SetCC = Op1;
20532   else // Quit if all operands are not constants.
20533     return SDValue();
20534
20535   if (C->getZExtValue() == 1) {
20536     needOppositeCond = !needOppositeCond;
20537     checkAgainstTrue = true;
20538   } else if (C->getZExtValue() != 0)
20539     // Quit if the constant is neither 0 or 1.
20540     return SDValue();
20541
20542   bool truncatedToBoolWithAnd = false;
20543   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
20544   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
20545          SetCC.getOpcode() == ISD::TRUNCATE ||
20546          SetCC.getOpcode() == ISD::AND) {
20547     if (SetCC.getOpcode() == ISD::AND) {
20548       int OpIdx = -1;
20549       ConstantSDNode *CS;
20550       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
20551           CS->getZExtValue() == 1)
20552         OpIdx = 1;
20553       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
20554           CS->getZExtValue() == 1)
20555         OpIdx = 0;
20556       if (OpIdx == -1)
20557         break;
20558       SetCC = SetCC.getOperand(OpIdx);
20559       truncatedToBoolWithAnd = true;
20560     } else
20561       SetCC = SetCC.getOperand(0);
20562   }
20563
20564   switch (SetCC.getOpcode()) {
20565   case X86ISD::SETCC_CARRY:
20566     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
20567     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
20568     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
20569     // truncated to i1 using 'and'.
20570     if (checkAgainstTrue && !truncatedToBoolWithAnd)
20571       break;
20572     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
20573            "Invalid use of SETCC_CARRY!");
20574     // FALL THROUGH
20575   case X86ISD::SETCC:
20576     // Set the condition code or opposite one if necessary.
20577     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
20578     if (needOppositeCond)
20579       CC = X86::GetOppositeBranchCondition(CC);
20580     return SetCC.getOperand(1);
20581   case X86ISD::CMOV: {
20582     // Check whether false/true value has canonical one, i.e. 0 or 1.
20583     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
20584     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
20585     // Quit if true value is not a constant.
20586     if (!TVal)
20587       return SDValue();
20588     // Quit if false value is not a constant.
20589     if (!FVal) {
20590       SDValue Op = SetCC.getOperand(0);
20591       // Skip 'zext' or 'trunc' node.
20592       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
20593           Op.getOpcode() == ISD::TRUNCATE)
20594         Op = Op.getOperand(0);
20595       // A special case for rdrand/rdseed, where 0 is set if false cond is
20596       // found.
20597       if ((Op.getOpcode() != X86ISD::RDRAND &&
20598            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
20599         return SDValue();
20600     }
20601     // Quit if false value is not the constant 0 or 1.
20602     bool FValIsFalse = true;
20603     if (FVal && FVal->getZExtValue() != 0) {
20604       if (FVal->getZExtValue() != 1)
20605         return SDValue();
20606       // If FVal is 1, opposite cond is needed.
20607       needOppositeCond = !needOppositeCond;
20608       FValIsFalse = false;
20609     }
20610     // Quit if TVal is not the constant opposite of FVal.
20611     if (FValIsFalse && TVal->getZExtValue() != 1)
20612       return SDValue();
20613     if (!FValIsFalse && TVal->getZExtValue() != 0)
20614       return SDValue();
20615     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
20616     if (needOppositeCond)
20617       CC = X86::GetOppositeBranchCondition(CC);
20618     return SetCC.getOperand(3);
20619   }
20620   }
20621
20622   return SDValue();
20623 }
20624
20625 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
20626 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
20627                                   TargetLowering::DAGCombinerInfo &DCI,
20628                                   const X86Subtarget *Subtarget) {
20629   SDLoc DL(N);
20630
20631   // If the flag operand isn't dead, don't touch this CMOV.
20632   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
20633     return SDValue();
20634
20635   SDValue FalseOp = N->getOperand(0);
20636   SDValue TrueOp = N->getOperand(1);
20637   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
20638   SDValue Cond = N->getOperand(3);
20639
20640   if (CC == X86::COND_E || CC == X86::COND_NE) {
20641     switch (Cond.getOpcode()) {
20642     default: break;
20643     case X86ISD::BSR:
20644     case X86ISD::BSF:
20645       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
20646       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
20647         return (CC == X86::COND_E) ? FalseOp : TrueOp;
20648     }
20649   }
20650
20651   SDValue Flags;
20652
20653   Flags = checkBoolTestSetCCCombine(Cond, CC);
20654   if (Flags.getNode() &&
20655       // Extra check as FCMOV only supports a subset of X86 cond.
20656       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
20657     SDValue Ops[] = { FalseOp, TrueOp,
20658                       DAG.getConstant(CC, MVT::i8), Flags };
20659     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
20660   }
20661
20662   // If this is a select between two integer constants, try to do some
20663   // optimizations.  Note that the operands are ordered the opposite of SELECT
20664   // operands.
20665   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
20666     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
20667       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
20668       // larger than FalseC (the false value).
20669       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
20670         CC = X86::GetOppositeBranchCondition(CC);
20671         std::swap(TrueC, FalseC);
20672         std::swap(TrueOp, FalseOp);
20673       }
20674
20675       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
20676       // This is efficient for any integer data type (including i8/i16) and
20677       // shift amount.
20678       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
20679         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
20680                            DAG.getConstant(CC, MVT::i8), Cond);
20681
20682         // Zero extend the condition if needed.
20683         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
20684
20685         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
20686         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
20687                            DAG.getConstant(ShAmt, MVT::i8));
20688         if (N->getNumValues() == 2)  // Dead flag value?
20689           return DCI.CombineTo(N, Cond, SDValue());
20690         return Cond;
20691       }
20692
20693       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
20694       // for any integer data type, including i8/i16.
20695       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
20696         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
20697                            DAG.getConstant(CC, MVT::i8), Cond);
20698
20699         // Zero extend the condition if needed.
20700         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
20701                            FalseC->getValueType(0), Cond);
20702         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
20703                            SDValue(FalseC, 0));
20704
20705         if (N->getNumValues() == 2)  // Dead flag value?
20706           return DCI.CombineTo(N, Cond, SDValue());
20707         return Cond;
20708       }
20709
20710       // Optimize cases that will turn into an LEA instruction.  This requires
20711       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
20712       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
20713         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
20714         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
20715
20716         bool isFastMultiplier = false;
20717         if (Diff < 10) {
20718           switch ((unsigned char)Diff) {
20719           default: break;
20720           case 1:  // result = add base, cond
20721           case 2:  // result = lea base(    , cond*2)
20722           case 3:  // result = lea base(cond, cond*2)
20723           case 4:  // result = lea base(    , cond*4)
20724           case 5:  // result = lea base(cond, cond*4)
20725           case 8:  // result = lea base(    , cond*8)
20726           case 9:  // result = lea base(cond, cond*8)
20727             isFastMultiplier = true;
20728             break;
20729           }
20730         }
20731
20732         if (isFastMultiplier) {
20733           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
20734           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
20735                              DAG.getConstant(CC, MVT::i8), Cond);
20736           // Zero extend the condition if needed.
20737           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
20738                              Cond);
20739           // Scale the condition by the difference.
20740           if (Diff != 1)
20741             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
20742                                DAG.getConstant(Diff, Cond.getValueType()));
20743
20744           // Add the base if non-zero.
20745           if (FalseC->getAPIntValue() != 0)
20746             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
20747                                SDValue(FalseC, 0));
20748           if (N->getNumValues() == 2)  // Dead flag value?
20749             return DCI.CombineTo(N, Cond, SDValue());
20750           return Cond;
20751         }
20752       }
20753     }
20754   }
20755
20756   // Handle these cases:
20757   //   (select (x != c), e, c) -> select (x != c), e, x),
20758   //   (select (x == c), c, e) -> select (x == c), x, e)
20759   // where the c is an integer constant, and the "select" is the combination
20760   // of CMOV and CMP.
20761   //
20762   // The rationale for this change is that the conditional-move from a constant
20763   // needs two instructions, however, conditional-move from a register needs
20764   // only one instruction.
20765   //
20766   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
20767   //  some instruction-combining opportunities. This opt needs to be
20768   //  postponed as late as possible.
20769   //
20770   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
20771     // the DCI.xxxx conditions are provided to postpone the optimization as
20772     // late as possible.
20773
20774     ConstantSDNode *CmpAgainst = nullptr;
20775     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
20776         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
20777         !isa<ConstantSDNode>(Cond.getOperand(0))) {
20778
20779       if (CC == X86::COND_NE &&
20780           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
20781         CC = X86::GetOppositeBranchCondition(CC);
20782         std::swap(TrueOp, FalseOp);
20783       }
20784
20785       if (CC == X86::COND_E &&
20786           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
20787         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
20788                           DAG.getConstant(CC, MVT::i8), Cond };
20789         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
20790       }
20791     }
20792   }
20793
20794   return SDValue();
20795 }
20796
20797 static SDValue PerformINTRINSIC_WO_CHAINCombine(SDNode *N, SelectionDAG &DAG,
20798                                                 const X86Subtarget *Subtarget) {
20799   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
20800   switch (IntNo) {
20801   default: return SDValue();
20802   // SSE/AVX/AVX2 blend intrinsics.
20803   case Intrinsic::x86_avx2_pblendvb:
20804   case Intrinsic::x86_avx2_pblendw:
20805   case Intrinsic::x86_avx2_pblendd_128:
20806   case Intrinsic::x86_avx2_pblendd_256:
20807     // Don't try to simplify this intrinsic if we don't have AVX2.
20808     if (!Subtarget->hasAVX2())
20809       return SDValue();
20810     // FALL-THROUGH
20811   case Intrinsic::x86_avx_blend_pd_256:
20812   case Intrinsic::x86_avx_blend_ps_256:
20813   case Intrinsic::x86_avx_blendv_pd_256:
20814   case Intrinsic::x86_avx_blendv_ps_256:
20815     // Don't try to simplify this intrinsic if we don't have AVX.
20816     if (!Subtarget->hasAVX())
20817       return SDValue();
20818     // FALL-THROUGH
20819   case Intrinsic::x86_sse41_pblendw:
20820   case Intrinsic::x86_sse41_blendpd:
20821   case Intrinsic::x86_sse41_blendps:
20822   case Intrinsic::x86_sse41_blendvps:
20823   case Intrinsic::x86_sse41_blendvpd:
20824   case Intrinsic::x86_sse41_pblendvb: {
20825     SDValue Op0 = N->getOperand(1);
20826     SDValue Op1 = N->getOperand(2);
20827     SDValue Mask = N->getOperand(3);
20828
20829     // Don't try to simplify this intrinsic if we don't have SSE4.1.
20830     if (!Subtarget->hasSSE41())
20831       return SDValue();
20832
20833     // fold (blend A, A, Mask) -> A
20834     if (Op0 == Op1)
20835       return Op0;
20836     // fold (blend A, B, allZeros) -> A
20837     if (ISD::isBuildVectorAllZeros(Mask.getNode()))
20838       return Op0;
20839     // fold (blend A, B, allOnes) -> B
20840     if (ISD::isBuildVectorAllOnes(Mask.getNode()))
20841       return Op1;
20842     
20843     // Simplify the case where the mask is a constant i32 value.
20844     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Mask)) {
20845       if (C->isNullValue())
20846         return Op0;
20847       if (C->isAllOnesValue())
20848         return Op1;
20849     }
20850
20851     return SDValue();
20852   }
20853
20854   // Packed SSE2/AVX2 arithmetic shift immediate intrinsics.
20855   case Intrinsic::x86_sse2_psrai_w:
20856   case Intrinsic::x86_sse2_psrai_d:
20857   case Intrinsic::x86_avx2_psrai_w:
20858   case Intrinsic::x86_avx2_psrai_d:
20859   case Intrinsic::x86_sse2_psra_w:
20860   case Intrinsic::x86_sse2_psra_d:
20861   case Intrinsic::x86_avx2_psra_w:
20862   case Intrinsic::x86_avx2_psra_d: {
20863     SDValue Op0 = N->getOperand(1);
20864     SDValue Op1 = N->getOperand(2);
20865     EVT VT = Op0.getValueType();
20866     assert(VT.isVector() && "Expected a vector type!");
20867
20868     if (isa<BuildVectorSDNode>(Op1))
20869       Op1 = Op1.getOperand(0);
20870
20871     if (!isa<ConstantSDNode>(Op1))
20872       return SDValue();
20873
20874     EVT SVT = VT.getVectorElementType();
20875     unsigned SVTBits = SVT.getSizeInBits();
20876
20877     ConstantSDNode *CND = cast<ConstantSDNode>(Op1);
20878     const APInt &C = APInt(SVTBits, CND->getAPIntValue().getZExtValue());
20879     uint64_t ShAmt = C.getZExtValue();
20880
20881     // Don't try to convert this shift into a ISD::SRA if the shift
20882     // count is bigger than or equal to the element size.
20883     if (ShAmt >= SVTBits)
20884       return SDValue();
20885
20886     // Trivial case: if the shift count is zero, then fold this
20887     // into the first operand.
20888     if (ShAmt == 0)
20889       return Op0;
20890
20891     // Replace this packed shift intrinsic with a target independent
20892     // shift dag node.
20893     SDValue Splat = DAG.getConstant(C, VT);
20894     return DAG.getNode(ISD::SRA, SDLoc(N), VT, Op0, Splat);
20895   }
20896   }
20897 }
20898
20899 /// PerformMulCombine - Optimize a single multiply with constant into two
20900 /// in order to implement it with two cheaper instructions, e.g.
20901 /// LEA + SHL, LEA + LEA.
20902 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
20903                                  TargetLowering::DAGCombinerInfo &DCI) {
20904   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
20905     return SDValue();
20906
20907   EVT VT = N->getValueType(0);
20908   if (VT != MVT::i64)
20909     return SDValue();
20910
20911   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
20912   if (!C)
20913     return SDValue();
20914   uint64_t MulAmt = C->getZExtValue();
20915   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
20916     return SDValue();
20917
20918   uint64_t MulAmt1 = 0;
20919   uint64_t MulAmt2 = 0;
20920   if ((MulAmt % 9) == 0) {
20921     MulAmt1 = 9;
20922     MulAmt2 = MulAmt / 9;
20923   } else if ((MulAmt % 5) == 0) {
20924     MulAmt1 = 5;
20925     MulAmt2 = MulAmt / 5;
20926   } else if ((MulAmt % 3) == 0) {
20927     MulAmt1 = 3;
20928     MulAmt2 = MulAmt / 3;
20929   }
20930   if (MulAmt2 &&
20931       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
20932     SDLoc DL(N);
20933
20934     if (isPowerOf2_64(MulAmt2) &&
20935         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
20936       // If second multiplifer is pow2, issue it first. We want the multiply by
20937       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
20938       // is an add.
20939       std::swap(MulAmt1, MulAmt2);
20940
20941     SDValue NewMul;
20942     if (isPowerOf2_64(MulAmt1))
20943       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
20944                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
20945     else
20946       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
20947                            DAG.getConstant(MulAmt1, VT));
20948
20949     if (isPowerOf2_64(MulAmt2))
20950       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
20951                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
20952     else
20953       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
20954                            DAG.getConstant(MulAmt2, VT));
20955
20956     // Do not add new nodes to DAG combiner worklist.
20957     DCI.CombineTo(N, NewMul, false);
20958   }
20959   return SDValue();
20960 }
20961
20962 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
20963   SDValue N0 = N->getOperand(0);
20964   SDValue N1 = N->getOperand(1);
20965   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
20966   EVT VT = N0.getValueType();
20967
20968   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
20969   // since the result of setcc_c is all zero's or all ones.
20970   if (VT.isInteger() && !VT.isVector() &&
20971       N1C && N0.getOpcode() == ISD::AND &&
20972       N0.getOperand(1).getOpcode() == ISD::Constant) {
20973     SDValue N00 = N0.getOperand(0);
20974     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
20975         ((N00.getOpcode() == ISD::ANY_EXTEND ||
20976           N00.getOpcode() == ISD::ZERO_EXTEND) &&
20977          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
20978       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
20979       APInt ShAmt = N1C->getAPIntValue();
20980       Mask = Mask.shl(ShAmt);
20981       if (Mask != 0)
20982         return DAG.getNode(ISD::AND, SDLoc(N), VT,
20983                            N00, DAG.getConstant(Mask, VT));
20984     }
20985   }
20986
20987   // Hardware support for vector shifts is sparse which makes us scalarize the
20988   // vector operations in many cases. Also, on sandybridge ADD is faster than
20989   // shl.
20990   // (shl V, 1) -> add V,V
20991   if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
20992     if (auto *N1SplatC = N1BV->getConstantSplatNode()) {
20993       assert(N0.getValueType().isVector() && "Invalid vector shift type");
20994       // We shift all of the values by one. In many cases we do not have
20995       // hardware support for this operation. This is better expressed as an ADD
20996       // of two values.
20997       if (N1SplatC->getZExtValue() == 1)
20998         return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
20999     }
21000
21001   return SDValue();
21002 }
21003
21004 /// \brief Returns a vector of 0s if the node in input is a vector logical
21005 /// shift by a constant amount which is known to be bigger than or equal
21006 /// to the vector element size in bits.
21007 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
21008                                       const X86Subtarget *Subtarget) {
21009   EVT VT = N->getValueType(0);
21010
21011   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
21012       (!Subtarget->hasInt256() ||
21013        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
21014     return SDValue();
21015
21016   SDValue Amt = N->getOperand(1);
21017   SDLoc DL(N);
21018   if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Amt))
21019     if (auto *AmtSplat = AmtBV->getConstantSplatNode()) {
21020       APInt ShiftAmt = AmtSplat->getAPIntValue();
21021       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
21022
21023       // SSE2/AVX2 logical shifts always return a vector of 0s
21024       // if the shift amount is bigger than or equal to
21025       // the element size. The constant shift amount will be
21026       // encoded as a 8-bit immediate.
21027       if (ShiftAmt.trunc(8).uge(MaxAmount))
21028         return getZeroVector(VT, Subtarget, DAG, DL);
21029     }
21030
21031   return SDValue();
21032 }
21033
21034 /// PerformShiftCombine - Combine shifts.
21035 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
21036                                    TargetLowering::DAGCombinerInfo &DCI,
21037                                    const X86Subtarget *Subtarget) {
21038   if (N->getOpcode() == ISD::SHL) {
21039     SDValue V = PerformSHLCombine(N, DAG);
21040     if (V.getNode()) return V;
21041   }
21042
21043   if (N->getOpcode() != ISD::SRA) {
21044     // Try to fold this logical shift into a zero vector.
21045     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
21046     if (V.getNode()) return V;
21047   }
21048
21049   return SDValue();
21050 }
21051
21052 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
21053 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
21054 // and friends.  Likewise for OR -> CMPNEQSS.
21055 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
21056                             TargetLowering::DAGCombinerInfo &DCI,
21057                             const X86Subtarget *Subtarget) {
21058   unsigned opcode;
21059
21060   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
21061   // we're requiring SSE2 for both.
21062   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
21063     SDValue N0 = N->getOperand(0);
21064     SDValue N1 = N->getOperand(1);
21065     SDValue CMP0 = N0->getOperand(1);
21066     SDValue CMP1 = N1->getOperand(1);
21067     SDLoc DL(N);
21068
21069     // The SETCCs should both refer to the same CMP.
21070     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
21071       return SDValue();
21072
21073     SDValue CMP00 = CMP0->getOperand(0);
21074     SDValue CMP01 = CMP0->getOperand(1);
21075     EVT     VT    = CMP00.getValueType();
21076
21077     if (VT == MVT::f32 || VT == MVT::f64) {
21078       bool ExpectingFlags = false;
21079       // Check for any users that want flags:
21080       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
21081            !ExpectingFlags && UI != UE; ++UI)
21082         switch (UI->getOpcode()) {
21083         default:
21084         case ISD::BR_CC:
21085         case ISD::BRCOND:
21086         case ISD::SELECT:
21087           ExpectingFlags = true;
21088           break;
21089         case ISD::CopyToReg:
21090         case ISD::SIGN_EXTEND:
21091         case ISD::ZERO_EXTEND:
21092         case ISD::ANY_EXTEND:
21093           break;
21094         }
21095
21096       if (!ExpectingFlags) {
21097         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
21098         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
21099
21100         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
21101           X86::CondCode tmp = cc0;
21102           cc0 = cc1;
21103           cc1 = tmp;
21104         }
21105
21106         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
21107             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
21108           // FIXME: need symbolic constants for these magic numbers.
21109           // See X86ATTInstPrinter.cpp:printSSECC().
21110           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
21111           if (Subtarget->hasAVX512()) {
21112             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
21113                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
21114             if (N->getValueType(0) != MVT::i1)
21115               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
21116                                  FSetCC);
21117             return FSetCC;
21118           }
21119           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
21120                                               CMP00.getValueType(), CMP00, CMP01,
21121                                               DAG.getConstant(x86cc, MVT::i8));
21122
21123           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
21124           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
21125
21126           if (is64BitFP && !Subtarget->is64Bit()) {
21127             // On a 32-bit target, we cannot bitcast the 64-bit float to a
21128             // 64-bit integer, since that's not a legal type. Since
21129             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
21130             // bits, but can do this little dance to extract the lowest 32 bits
21131             // and work with those going forward.
21132             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
21133                                            OnesOrZeroesF);
21134             SDValue Vector32 = DAG.getNode(ISD::BITCAST, DL, MVT::v4f32,
21135                                            Vector64);
21136             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
21137                                         Vector32, DAG.getIntPtrConstant(0));
21138             IntVT = MVT::i32;
21139           }
21140
21141           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT, OnesOrZeroesF);
21142           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
21143                                       DAG.getConstant(1, IntVT));
21144           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
21145           return OneBitOfTruth;
21146         }
21147       }
21148     }
21149   }
21150   return SDValue();
21151 }
21152
21153 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
21154 /// so it can be folded inside ANDNP.
21155 static bool CanFoldXORWithAllOnes(const SDNode *N) {
21156   EVT VT = N->getValueType(0);
21157
21158   // Match direct AllOnes for 128 and 256-bit vectors
21159   if (ISD::isBuildVectorAllOnes(N))
21160     return true;
21161
21162   // Look through a bit convert.
21163   if (N->getOpcode() == ISD::BITCAST)
21164     N = N->getOperand(0).getNode();
21165
21166   // Sometimes the operand may come from a insert_subvector building a 256-bit
21167   // allones vector
21168   if (VT.is256BitVector() &&
21169       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
21170     SDValue V1 = N->getOperand(0);
21171     SDValue V2 = N->getOperand(1);
21172
21173     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
21174         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
21175         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
21176         ISD::isBuildVectorAllOnes(V2.getNode()))
21177       return true;
21178   }
21179
21180   return false;
21181 }
21182
21183 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
21184 // register. In most cases we actually compare or select YMM-sized registers
21185 // and mixing the two types creates horrible code. This method optimizes
21186 // some of the transition sequences.
21187 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
21188                                  TargetLowering::DAGCombinerInfo &DCI,
21189                                  const X86Subtarget *Subtarget) {
21190   EVT VT = N->getValueType(0);
21191   if (!VT.is256BitVector())
21192     return SDValue();
21193
21194   assert((N->getOpcode() == ISD::ANY_EXTEND ||
21195           N->getOpcode() == ISD::ZERO_EXTEND ||
21196           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
21197
21198   SDValue Narrow = N->getOperand(0);
21199   EVT NarrowVT = Narrow->getValueType(0);
21200   if (!NarrowVT.is128BitVector())
21201     return SDValue();
21202
21203   if (Narrow->getOpcode() != ISD::XOR &&
21204       Narrow->getOpcode() != ISD::AND &&
21205       Narrow->getOpcode() != ISD::OR)
21206     return SDValue();
21207
21208   SDValue N0  = Narrow->getOperand(0);
21209   SDValue N1  = Narrow->getOperand(1);
21210   SDLoc DL(Narrow);
21211
21212   // The Left side has to be a trunc.
21213   if (N0.getOpcode() != ISD::TRUNCATE)
21214     return SDValue();
21215
21216   // The type of the truncated inputs.
21217   EVT WideVT = N0->getOperand(0)->getValueType(0);
21218   if (WideVT != VT)
21219     return SDValue();
21220
21221   // The right side has to be a 'trunc' or a constant vector.
21222   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
21223   ConstantSDNode *RHSConstSplat = nullptr;
21224   if (auto *RHSBV = dyn_cast<BuildVectorSDNode>(N1))
21225     RHSConstSplat = RHSBV->getConstantSplatNode();
21226   if (!RHSTrunc && !RHSConstSplat)
21227     return SDValue();
21228
21229   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21230
21231   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
21232     return SDValue();
21233
21234   // Set N0 and N1 to hold the inputs to the new wide operation.
21235   N0 = N0->getOperand(0);
21236   if (RHSConstSplat) {
21237     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
21238                      SDValue(RHSConstSplat, 0));
21239     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
21240     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
21241   } else if (RHSTrunc) {
21242     N1 = N1->getOperand(0);
21243   }
21244
21245   // Generate the wide operation.
21246   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
21247   unsigned Opcode = N->getOpcode();
21248   switch (Opcode) {
21249   case ISD::ANY_EXTEND:
21250     return Op;
21251   case ISD::ZERO_EXTEND: {
21252     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
21253     APInt Mask = APInt::getAllOnesValue(InBits);
21254     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
21255     return DAG.getNode(ISD::AND, DL, VT,
21256                        Op, DAG.getConstant(Mask, VT));
21257   }
21258   case ISD::SIGN_EXTEND:
21259     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
21260                        Op, DAG.getValueType(NarrowVT));
21261   default:
21262     llvm_unreachable("Unexpected opcode");
21263   }
21264 }
21265
21266 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
21267                                  TargetLowering::DAGCombinerInfo &DCI,
21268                                  const X86Subtarget *Subtarget) {
21269   EVT VT = N->getValueType(0);
21270   if (DCI.isBeforeLegalizeOps())
21271     return SDValue();
21272
21273   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
21274   if (R.getNode())
21275     return R;
21276
21277   // Create BEXTR instructions
21278   // BEXTR is ((X >> imm) & (2**size-1))
21279   if (VT == MVT::i32 || VT == MVT::i64) {
21280     SDValue N0 = N->getOperand(0);
21281     SDValue N1 = N->getOperand(1);
21282     SDLoc DL(N);
21283
21284     // Check for BEXTR.
21285     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
21286         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
21287       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
21288       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
21289       if (MaskNode && ShiftNode) {
21290         uint64_t Mask = MaskNode->getZExtValue();
21291         uint64_t Shift = ShiftNode->getZExtValue();
21292         if (isMask_64(Mask)) {
21293           uint64_t MaskSize = CountPopulation_64(Mask);
21294           if (Shift + MaskSize <= VT.getSizeInBits())
21295             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
21296                                DAG.getConstant(Shift | (MaskSize << 8), VT));
21297         }
21298       }
21299     } // BEXTR
21300
21301     return SDValue();
21302   }
21303
21304   // Want to form ANDNP nodes:
21305   // 1) In the hopes of then easily combining them with OR and AND nodes
21306   //    to form PBLEND/PSIGN.
21307   // 2) To match ANDN packed intrinsics
21308   if (VT != MVT::v2i64 && VT != MVT::v4i64)
21309     return SDValue();
21310
21311   SDValue N0 = N->getOperand(0);
21312   SDValue N1 = N->getOperand(1);
21313   SDLoc DL(N);
21314
21315   // Check LHS for vnot
21316   if (N0.getOpcode() == ISD::XOR &&
21317       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
21318       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
21319     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
21320
21321   // Check RHS for vnot
21322   if (N1.getOpcode() == ISD::XOR &&
21323       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
21324       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
21325     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
21326
21327   return SDValue();
21328 }
21329
21330 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
21331                                 TargetLowering::DAGCombinerInfo &DCI,
21332                                 const X86Subtarget *Subtarget) {
21333   if (DCI.isBeforeLegalizeOps())
21334     return SDValue();
21335
21336   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
21337   if (R.getNode())
21338     return R;
21339
21340   SDValue N0 = N->getOperand(0);
21341   SDValue N1 = N->getOperand(1);
21342   EVT VT = N->getValueType(0);
21343
21344   // look for psign/blend
21345   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
21346     if (!Subtarget->hasSSSE3() ||
21347         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
21348       return SDValue();
21349
21350     // Canonicalize pandn to RHS
21351     if (N0.getOpcode() == X86ISD::ANDNP)
21352       std::swap(N0, N1);
21353     // or (and (m, y), (pandn m, x))
21354     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
21355       SDValue Mask = N1.getOperand(0);
21356       SDValue X    = N1.getOperand(1);
21357       SDValue Y;
21358       if (N0.getOperand(0) == Mask)
21359         Y = N0.getOperand(1);
21360       if (N0.getOperand(1) == Mask)
21361         Y = N0.getOperand(0);
21362
21363       // Check to see if the mask appeared in both the AND and ANDNP and
21364       if (!Y.getNode())
21365         return SDValue();
21366
21367       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
21368       // Look through mask bitcast.
21369       if (Mask.getOpcode() == ISD::BITCAST)
21370         Mask = Mask.getOperand(0);
21371       if (X.getOpcode() == ISD::BITCAST)
21372         X = X.getOperand(0);
21373       if (Y.getOpcode() == ISD::BITCAST)
21374         Y = Y.getOperand(0);
21375
21376       EVT MaskVT = Mask.getValueType();
21377
21378       // Validate that the Mask operand is a vector sra node.
21379       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
21380       // there is no psrai.b
21381       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
21382       unsigned SraAmt = ~0;
21383       if (Mask.getOpcode() == ISD::SRA) {
21384         if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Mask.getOperand(1)))
21385           if (auto *AmtConst = AmtBV->getConstantSplatNode())
21386             SraAmt = AmtConst->getZExtValue();
21387       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
21388         SDValue SraC = Mask.getOperand(1);
21389         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
21390       }
21391       if ((SraAmt + 1) != EltBits)
21392         return SDValue();
21393
21394       SDLoc DL(N);
21395
21396       // Now we know we at least have a plendvb with the mask val.  See if
21397       // we can form a psignb/w/d.
21398       // psign = x.type == y.type == mask.type && y = sub(0, x);
21399       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
21400           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
21401           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
21402         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
21403                "Unsupported VT for PSIGN");
21404         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
21405         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
21406       }
21407       // PBLENDVB only available on SSE 4.1
21408       if (!Subtarget->hasSSE41())
21409         return SDValue();
21410
21411       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
21412
21413       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
21414       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
21415       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
21416       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
21417       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
21418     }
21419   }
21420
21421   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
21422     return SDValue();
21423
21424   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
21425   MachineFunction &MF = DAG.getMachineFunction();
21426   bool OptForSize = MF.getFunction()->getAttributes().
21427     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
21428
21429   // SHLD/SHRD instructions have lower register pressure, but on some
21430   // platforms they have higher latency than the equivalent
21431   // series of shifts/or that would otherwise be generated.
21432   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
21433   // have higher latencies and we are not optimizing for size.
21434   if (!OptForSize && Subtarget->isSHLDSlow())
21435     return SDValue();
21436
21437   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
21438     std::swap(N0, N1);
21439   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
21440     return SDValue();
21441   if (!N0.hasOneUse() || !N1.hasOneUse())
21442     return SDValue();
21443
21444   SDValue ShAmt0 = N0.getOperand(1);
21445   if (ShAmt0.getValueType() != MVT::i8)
21446     return SDValue();
21447   SDValue ShAmt1 = N1.getOperand(1);
21448   if (ShAmt1.getValueType() != MVT::i8)
21449     return SDValue();
21450   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
21451     ShAmt0 = ShAmt0.getOperand(0);
21452   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
21453     ShAmt1 = ShAmt1.getOperand(0);
21454
21455   SDLoc DL(N);
21456   unsigned Opc = X86ISD::SHLD;
21457   SDValue Op0 = N0.getOperand(0);
21458   SDValue Op1 = N1.getOperand(0);
21459   if (ShAmt0.getOpcode() == ISD::SUB) {
21460     Opc = X86ISD::SHRD;
21461     std::swap(Op0, Op1);
21462     std::swap(ShAmt0, ShAmt1);
21463   }
21464
21465   unsigned Bits = VT.getSizeInBits();
21466   if (ShAmt1.getOpcode() == ISD::SUB) {
21467     SDValue Sum = ShAmt1.getOperand(0);
21468     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
21469       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
21470       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
21471         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
21472       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
21473         return DAG.getNode(Opc, DL, VT,
21474                            Op0, Op1,
21475                            DAG.getNode(ISD::TRUNCATE, DL,
21476                                        MVT::i8, ShAmt0));
21477     }
21478   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
21479     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
21480     if (ShAmt0C &&
21481         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
21482       return DAG.getNode(Opc, DL, VT,
21483                          N0.getOperand(0), N1.getOperand(0),
21484                          DAG.getNode(ISD::TRUNCATE, DL,
21485                                        MVT::i8, ShAmt0));
21486   }
21487
21488   return SDValue();
21489 }
21490
21491 // Generate NEG and CMOV for integer abs.
21492 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
21493   EVT VT = N->getValueType(0);
21494
21495   // Since X86 does not have CMOV for 8-bit integer, we don't convert
21496   // 8-bit integer abs to NEG and CMOV.
21497   if (VT.isInteger() && VT.getSizeInBits() == 8)
21498     return SDValue();
21499
21500   SDValue N0 = N->getOperand(0);
21501   SDValue N1 = N->getOperand(1);
21502   SDLoc DL(N);
21503
21504   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
21505   // and change it to SUB and CMOV.
21506   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
21507       N0.getOpcode() == ISD::ADD &&
21508       N0.getOperand(1) == N1 &&
21509       N1.getOpcode() == ISD::SRA &&
21510       N1.getOperand(0) == N0.getOperand(0))
21511     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
21512       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
21513         // Generate SUB & CMOV.
21514         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
21515                                   DAG.getConstant(0, VT), N0.getOperand(0));
21516
21517         SDValue Ops[] = { N0.getOperand(0), Neg,
21518                           DAG.getConstant(X86::COND_GE, MVT::i8),
21519                           SDValue(Neg.getNode(), 1) };
21520         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
21521       }
21522   return SDValue();
21523 }
21524
21525 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
21526 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
21527                                  TargetLowering::DAGCombinerInfo &DCI,
21528                                  const X86Subtarget *Subtarget) {
21529   if (DCI.isBeforeLegalizeOps())
21530     return SDValue();
21531
21532   if (Subtarget->hasCMov()) {
21533     SDValue RV = performIntegerAbsCombine(N, DAG);
21534     if (RV.getNode())
21535       return RV;
21536   }
21537
21538   return SDValue();
21539 }
21540
21541 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
21542 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
21543                                   TargetLowering::DAGCombinerInfo &DCI,
21544                                   const X86Subtarget *Subtarget) {
21545   LoadSDNode *Ld = cast<LoadSDNode>(N);
21546   EVT RegVT = Ld->getValueType(0);
21547   EVT MemVT = Ld->getMemoryVT();
21548   SDLoc dl(Ld);
21549   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21550
21551   // On Sandybridge unaligned 256bit loads are inefficient.
21552   ISD::LoadExtType Ext = Ld->getExtensionType();
21553   unsigned Alignment = Ld->getAlignment();
21554   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
21555   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
21556       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
21557     unsigned NumElems = RegVT.getVectorNumElements();
21558     if (NumElems < 2)
21559       return SDValue();
21560
21561     SDValue Ptr = Ld->getBasePtr();
21562     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
21563
21564     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
21565                                   NumElems/2);
21566     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
21567                                 Ld->getPointerInfo(), Ld->isVolatile(),
21568                                 Ld->isNonTemporal(), Ld->isInvariant(),
21569                                 Alignment);
21570     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
21571     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
21572                                 Ld->getPointerInfo(), Ld->isVolatile(),
21573                                 Ld->isNonTemporal(), Ld->isInvariant(),
21574                                 std::min(16U, Alignment));
21575     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
21576                              Load1.getValue(1),
21577                              Load2.getValue(1));
21578
21579     SDValue NewVec = DAG.getUNDEF(RegVT);
21580     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
21581     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
21582     return DCI.CombineTo(N, NewVec, TF, true);
21583   }
21584
21585   return SDValue();
21586 }
21587
21588 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
21589 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
21590                                    const X86Subtarget *Subtarget) {
21591   StoreSDNode *St = cast<StoreSDNode>(N);
21592   EVT VT = St->getValue().getValueType();
21593   EVT StVT = St->getMemoryVT();
21594   SDLoc dl(St);
21595   SDValue StoredVal = St->getOperand(1);
21596   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21597
21598   // If we are saving a concatenation of two XMM registers, perform two stores.
21599   // On Sandy Bridge, 256-bit memory operations are executed by two
21600   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
21601   // memory  operation.
21602   unsigned Alignment = St->getAlignment();
21603   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
21604   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
21605       StVT == VT && !IsAligned) {
21606     unsigned NumElems = VT.getVectorNumElements();
21607     if (NumElems < 2)
21608       return SDValue();
21609
21610     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
21611     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
21612
21613     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
21614     SDValue Ptr0 = St->getBasePtr();
21615     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
21616
21617     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
21618                                 St->getPointerInfo(), St->isVolatile(),
21619                                 St->isNonTemporal(), Alignment);
21620     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
21621                                 St->getPointerInfo(), St->isVolatile(),
21622                                 St->isNonTemporal(),
21623                                 std::min(16U, Alignment));
21624     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
21625   }
21626
21627   // Optimize trunc store (of multiple scalars) to shuffle and store.
21628   // First, pack all of the elements in one place. Next, store to memory
21629   // in fewer chunks.
21630   if (St->isTruncatingStore() && VT.isVector()) {
21631     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21632     unsigned NumElems = VT.getVectorNumElements();
21633     assert(StVT != VT && "Cannot truncate to the same type");
21634     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
21635     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
21636
21637     // From, To sizes and ElemCount must be pow of two
21638     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
21639     // We are going to use the original vector elt for storing.
21640     // Accumulated smaller vector elements must be a multiple of the store size.
21641     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
21642
21643     unsigned SizeRatio  = FromSz / ToSz;
21644
21645     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
21646
21647     // Create a type on which we perform the shuffle
21648     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
21649             StVT.getScalarType(), NumElems*SizeRatio);
21650
21651     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
21652
21653     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
21654     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
21655     for (unsigned i = 0; i != NumElems; ++i)
21656       ShuffleVec[i] = i * SizeRatio;
21657
21658     // Can't shuffle using an illegal type.
21659     if (!TLI.isTypeLegal(WideVecVT))
21660       return SDValue();
21661
21662     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
21663                                          DAG.getUNDEF(WideVecVT),
21664                                          &ShuffleVec[0]);
21665     // At this point all of the data is stored at the bottom of the
21666     // register. We now need to save it to mem.
21667
21668     // Find the largest store unit
21669     MVT StoreType = MVT::i8;
21670     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
21671          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
21672       MVT Tp = (MVT::SimpleValueType)tp;
21673       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
21674         StoreType = Tp;
21675     }
21676
21677     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
21678     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
21679         (64 <= NumElems * ToSz))
21680       StoreType = MVT::f64;
21681
21682     // Bitcast the original vector into a vector of store-size units
21683     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
21684             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
21685     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
21686     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
21687     SmallVector<SDValue, 8> Chains;
21688     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
21689                                         TLI.getPointerTy());
21690     SDValue Ptr = St->getBasePtr();
21691
21692     // Perform one or more big stores into memory.
21693     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
21694       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
21695                                    StoreType, ShuffWide,
21696                                    DAG.getIntPtrConstant(i));
21697       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
21698                                 St->getPointerInfo(), St->isVolatile(),
21699                                 St->isNonTemporal(), St->getAlignment());
21700       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
21701       Chains.push_back(Ch);
21702     }
21703
21704     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
21705   }
21706
21707   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
21708   // the FP state in cases where an emms may be missing.
21709   // A preferable solution to the general problem is to figure out the right
21710   // places to insert EMMS.  This qualifies as a quick hack.
21711
21712   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
21713   if (VT.getSizeInBits() != 64)
21714     return SDValue();
21715
21716   const Function *F = DAG.getMachineFunction().getFunction();
21717   bool NoImplicitFloatOps = F->getAttributes().
21718     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
21719   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
21720                      && Subtarget->hasSSE2();
21721   if ((VT.isVector() ||
21722        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
21723       isa<LoadSDNode>(St->getValue()) &&
21724       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
21725       St->getChain().hasOneUse() && !St->isVolatile()) {
21726     SDNode* LdVal = St->getValue().getNode();
21727     LoadSDNode *Ld = nullptr;
21728     int TokenFactorIndex = -1;
21729     SmallVector<SDValue, 8> Ops;
21730     SDNode* ChainVal = St->getChain().getNode();
21731     // Must be a store of a load.  We currently handle two cases:  the load
21732     // is a direct child, and it's under an intervening TokenFactor.  It is
21733     // possible to dig deeper under nested TokenFactors.
21734     if (ChainVal == LdVal)
21735       Ld = cast<LoadSDNode>(St->getChain());
21736     else if (St->getValue().hasOneUse() &&
21737              ChainVal->getOpcode() == ISD::TokenFactor) {
21738       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
21739         if (ChainVal->getOperand(i).getNode() == LdVal) {
21740           TokenFactorIndex = i;
21741           Ld = cast<LoadSDNode>(St->getValue());
21742         } else
21743           Ops.push_back(ChainVal->getOperand(i));
21744       }
21745     }
21746
21747     if (!Ld || !ISD::isNormalLoad(Ld))
21748       return SDValue();
21749
21750     // If this is not the MMX case, i.e. we are just turning i64 load/store
21751     // into f64 load/store, avoid the transformation if there are multiple
21752     // uses of the loaded value.
21753     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
21754       return SDValue();
21755
21756     SDLoc LdDL(Ld);
21757     SDLoc StDL(N);
21758     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
21759     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
21760     // pair instead.
21761     if (Subtarget->is64Bit() || F64IsLegal) {
21762       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
21763       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
21764                                   Ld->getPointerInfo(), Ld->isVolatile(),
21765                                   Ld->isNonTemporal(), Ld->isInvariant(),
21766                                   Ld->getAlignment());
21767       SDValue NewChain = NewLd.getValue(1);
21768       if (TokenFactorIndex != -1) {
21769         Ops.push_back(NewChain);
21770         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
21771       }
21772       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
21773                           St->getPointerInfo(),
21774                           St->isVolatile(), St->isNonTemporal(),
21775                           St->getAlignment());
21776     }
21777
21778     // Otherwise, lower to two pairs of 32-bit loads / stores.
21779     SDValue LoAddr = Ld->getBasePtr();
21780     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
21781                                  DAG.getConstant(4, MVT::i32));
21782
21783     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
21784                                Ld->getPointerInfo(),
21785                                Ld->isVolatile(), Ld->isNonTemporal(),
21786                                Ld->isInvariant(), Ld->getAlignment());
21787     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
21788                                Ld->getPointerInfo().getWithOffset(4),
21789                                Ld->isVolatile(), Ld->isNonTemporal(),
21790                                Ld->isInvariant(),
21791                                MinAlign(Ld->getAlignment(), 4));
21792
21793     SDValue NewChain = LoLd.getValue(1);
21794     if (TokenFactorIndex != -1) {
21795       Ops.push_back(LoLd);
21796       Ops.push_back(HiLd);
21797       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
21798     }
21799
21800     LoAddr = St->getBasePtr();
21801     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
21802                          DAG.getConstant(4, MVT::i32));
21803
21804     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
21805                                 St->getPointerInfo(),
21806                                 St->isVolatile(), St->isNonTemporal(),
21807                                 St->getAlignment());
21808     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
21809                                 St->getPointerInfo().getWithOffset(4),
21810                                 St->isVolatile(),
21811                                 St->isNonTemporal(),
21812                                 MinAlign(St->getAlignment(), 4));
21813     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
21814   }
21815   return SDValue();
21816 }
21817
21818 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
21819 /// and return the operands for the horizontal operation in LHS and RHS.  A
21820 /// horizontal operation performs the binary operation on successive elements
21821 /// of its first operand, then on successive elements of its second operand,
21822 /// returning the resulting values in a vector.  For example, if
21823 ///   A = < float a0, float a1, float a2, float a3 >
21824 /// and
21825 ///   B = < float b0, float b1, float b2, float b3 >
21826 /// then the result of doing a horizontal operation on A and B is
21827 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
21828 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
21829 /// A horizontal-op B, for some already available A and B, and if so then LHS is
21830 /// set to A, RHS to B, and the routine returns 'true'.
21831 /// Note that the binary operation should have the property that if one of the
21832 /// operands is UNDEF then the result is UNDEF.
21833 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
21834   // Look for the following pattern: if
21835   //   A = < float a0, float a1, float a2, float a3 >
21836   //   B = < float b0, float b1, float b2, float b3 >
21837   // and
21838   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
21839   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
21840   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
21841   // which is A horizontal-op B.
21842
21843   // At least one of the operands should be a vector shuffle.
21844   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
21845       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
21846     return false;
21847
21848   MVT VT = LHS.getSimpleValueType();
21849
21850   assert((VT.is128BitVector() || VT.is256BitVector()) &&
21851          "Unsupported vector type for horizontal add/sub");
21852
21853   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
21854   // operate independently on 128-bit lanes.
21855   unsigned NumElts = VT.getVectorNumElements();
21856   unsigned NumLanes = VT.getSizeInBits()/128;
21857   unsigned NumLaneElts = NumElts / NumLanes;
21858   assert((NumLaneElts % 2 == 0) &&
21859          "Vector type should have an even number of elements in each lane");
21860   unsigned HalfLaneElts = NumLaneElts/2;
21861
21862   // View LHS in the form
21863   //   LHS = VECTOR_SHUFFLE A, B, LMask
21864   // If LHS is not a shuffle then pretend it is the shuffle
21865   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
21866   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
21867   // type VT.
21868   SDValue A, B;
21869   SmallVector<int, 16> LMask(NumElts);
21870   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
21871     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
21872       A = LHS.getOperand(0);
21873     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
21874       B = LHS.getOperand(1);
21875     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
21876     std::copy(Mask.begin(), Mask.end(), LMask.begin());
21877   } else {
21878     if (LHS.getOpcode() != ISD::UNDEF)
21879       A = LHS;
21880     for (unsigned i = 0; i != NumElts; ++i)
21881       LMask[i] = i;
21882   }
21883
21884   // Likewise, view RHS in the form
21885   //   RHS = VECTOR_SHUFFLE C, D, RMask
21886   SDValue C, D;
21887   SmallVector<int, 16> RMask(NumElts);
21888   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
21889     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
21890       C = RHS.getOperand(0);
21891     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
21892       D = RHS.getOperand(1);
21893     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
21894     std::copy(Mask.begin(), Mask.end(), RMask.begin());
21895   } else {
21896     if (RHS.getOpcode() != ISD::UNDEF)
21897       C = RHS;
21898     for (unsigned i = 0; i != NumElts; ++i)
21899       RMask[i] = i;
21900   }
21901
21902   // Check that the shuffles are both shuffling the same vectors.
21903   if (!(A == C && B == D) && !(A == D && B == C))
21904     return false;
21905
21906   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
21907   if (!A.getNode() && !B.getNode())
21908     return false;
21909
21910   // If A and B occur in reverse order in RHS, then "swap" them (which means
21911   // rewriting the mask).
21912   if (A != C)
21913     CommuteVectorShuffleMask(RMask, NumElts);
21914
21915   // At this point LHS and RHS are equivalent to
21916   //   LHS = VECTOR_SHUFFLE A, B, LMask
21917   //   RHS = VECTOR_SHUFFLE A, B, RMask
21918   // Check that the masks correspond to performing a horizontal operation.
21919   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
21920     for (unsigned i = 0; i != NumLaneElts; ++i) {
21921       int LIdx = LMask[i+l], RIdx = RMask[i+l];
21922
21923       // Ignore any UNDEF components.
21924       if (LIdx < 0 || RIdx < 0 ||
21925           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
21926           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
21927         continue;
21928
21929       // Check that successive elements are being operated on.  If not, this is
21930       // not a horizontal operation.
21931       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
21932       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
21933       if (!(LIdx == Index && RIdx == Index + 1) &&
21934           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
21935         return false;
21936     }
21937   }
21938
21939   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
21940   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
21941   return true;
21942 }
21943
21944 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
21945 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
21946                                   const X86Subtarget *Subtarget) {
21947   EVT VT = N->getValueType(0);
21948   SDValue LHS = N->getOperand(0);
21949   SDValue RHS = N->getOperand(1);
21950
21951   // Try to synthesize horizontal adds from adds of shuffles.
21952   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
21953        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
21954       isHorizontalBinOp(LHS, RHS, true))
21955     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
21956   return SDValue();
21957 }
21958
21959 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
21960 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
21961                                   const X86Subtarget *Subtarget) {
21962   EVT VT = N->getValueType(0);
21963   SDValue LHS = N->getOperand(0);
21964   SDValue RHS = N->getOperand(1);
21965
21966   // Try to synthesize horizontal subs from subs of shuffles.
21967   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
21968        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
21969       isHorizontalBinOp(LHS, RHS, false))
21970     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
21971   return SDValue();
21972 }
21973
21974 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
21975 /// X86ISD::FXOR nodes.
21976 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
21977   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
21978   // F[X]OR(0.0, x) -> x
21979   // F[X]OR(x, 0.0) -> x
21980   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
21981     if (C->getValueAPF().isPosZero())
21982       return N->getOperand(1);
21983   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
21984     if (C->getValueAPF().isPosZero())
21985       return N->getOperand(0);
21986   return SDValue();
21987 }
21988
21989 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
21990 /// X86ISD::FMAX nodes.
21991 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
21992   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
21993
21994   // Only perform optimizations if UnsafeMath is used.
21995   if (!DAG.getTarget().Options.UnsafeFPMath)
21996     return SDValue();
21997
21998   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
21999   // into FMINC and FMAXC, which are Commutative operations.
22000   unsigned NewOp = 0;
22001   switch (N->getOpcode()) {
22002     default: llvm_unreachable("unknown opcode");
22003     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
22004     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
22005   }
22006
22007   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
22008                      N->getOperand(0), N->getOperand(1));
22009 }
22010
22011 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
22012 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
22013   // FAND(0.0, x) -> 0.0
22014   // FAND(x, 0.0) -> 0.0
22015   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
22016     if (C->getValueAPF().isPosZero())
22017       return N->getOperand(0);
22018   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
22019     if (C->getValueAPF().isPosZero())
22020       return N->getOperand(1);
22021   return SDValue();
22022 }
22023
22024 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
22025 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
22026   // FANDN(x, 0.0) -> 0.0
22027   // FANDN(0.0, x) -> x
22028   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
22029     if (C->getValueAPF().isPosZero())
22030       return N->getOperand(1);
22031   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
22032     if (C->getValueAPF().isPosZero())
22033       return N->getOperand(1);
22034   return SDValue();
22035 }
22036
22037 static SDValue PerformBTCombine(SDNode *N,
22038                                 SelectionDAG &DAG,
22039                                 TargetLowering::DAGCombinerInfo &DCI) {
22040   // BT ignores high bits in the bit index operand.
22041   SDValue Op1 = N->getOperand(1);
22042   if (Op1.hasOneUse()) {
22043     unsigned BitWidth = Op1.getValueSizeInBits();
22044     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
22045     APInt KnownZero, KnownOne;
22046     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
22047                                           !DCI.isBeforeLegalizeOps());
22048     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22049     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
22050         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
22051       DCI.CommitTargetLoweringOpt(TLO);
22052   }
22053   return SDValue();
22054 }
22055
22056 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
22057   SDValue Op = N->getOperand(0);
22058   if (Op.getOpcode() == ISD::BITCAST)
22059     Op = Op.getOperand(0);
22060   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
22061   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
22062       VT.getVectorElementType().getSizeInBits() ==
22063       OpVT.getVectorElementType().getSizeInBits()) {
22064     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
22065   }
22066   return SDValue();
22067 }
22068
22069 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
22070                                                const X86Subtarget *Subtarget) {
22071   EVT VT = N->getValueType(0);
22072   if (!VT.isVector())
22073     return SDValue();
22074
22075   SDValue N0 = N->getOperand(0);
22076   SDValue N1 = N->getOperand(1);
22077   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
22078   SDLoc dl(N);
22079
22080   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
22081   // both SSE and AVX2 since there is no sign-extended shift right
22082   // operation on a vector with 64-bit elements.
22083   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
22084   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
22085   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
22086       N0.getOpcode() == ISD::SIGN_EXTEND)) {
22087     SDValue N00 = N0.getOperand(0);
22088
22089     // EXTLOAD has a better solution on AVX2,
22090     // it may be replaced with X86ISD::VSEXT node.
22091     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
22092       if (!ISD::isNormalLoad(N00.getNode()))
22093         return SDValue();
22094
22095     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
22096         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
22097                                   N00, N1);
22098       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
22099     }
22100   }
22101   return SDValue();
22102 }
22103
22104 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
22105                                   TargetLowering::DAGCombinerInfo &DCI,
22106                                   const X86Subtarget *Subtarget) {
22107   if (!DCI.isBeforeLegalizeOps())
22108     return SDValue();
22109
22110   if (!Subtarget->hasFp256())
22111     return SDValue();
22112
22113   EVT VT = N->getValueType(0);
22114   if (VT.isVector() && VT.getSizeInBits() == 256) {
22115     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
22116     if (R.getNode())
22117       return R;
22118   }
22119
22120   return SDValue();
22121 }
22122
22123 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
22124                                  const X86Subtarget* Subtarget) {
22125   SDLoc dl(N);
22126   EVT VT = N->getValueType(0);
22127
22128   // Let legalize expand this if it isn't a legal type yet.
22129   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
22130     return SDValue();
22131
22132   EVT ScalarVT = VT.getScalarType();
22133   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
22134       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
22135     return SDValue();
22136
22137   SDValue A = N->getOperand(0);
22138   SDValue B = N->getOperand(1);
22139   SDValue C = N->getOperand(2);
22140
22141   bool NegA = (A.getOpcode() == ISD::FNEG);
22142   bool NegB = (B.getOpcode() == ISD::FNEG);
22143   bool NegC = (C.getOpcode() == ISD::FNEG);
22144
22145   // Negative multiplication when NegA xor NegB
22146   bool NegMul = (NegA != NegB);
22147   if (NegA)
22148     A = A.getOperand(0);
22149   if (NegB)
22150     B = B.getOperand(0);
22151   if (NegC)
22152     C = C.getOperand(0);
22153
22154   unsigned Opcode;
22155   if (!NegMul)
22156     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
22157   else
22158     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
22159
22160   return DAG.getNode(Opcode, dl, VT, A, B, C);
22161 }
22162
22163 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
22164                                   TargetLowering::DAGCombinerInfo &DCI,
22165                                   const X86Subtarget *Subtarget) {
22166   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
22167   //           (and (i32 x86isd::setcc_carry), 1)
22168   // This eliminates the zext. This transformation is necessary because
22169   // ISD::SETCC is always legalized to i8.
22170   SDLoc dl(N);
22171   SDValue N0 = N->getOperand(0);
22172   EVT VT = N->getValueType(0);
22173
22174   if (N0.getOpcode() == ISD::AND &&
22175       N0.hasOneUse() &&
22176       N0.getOperand(0).hasOneUse()) {
22177     SDValue N00 = N0.getOperand(0);
22178     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
22179       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
22180       if (!C || C->getZExtValue() != 1)
22181         return SDValue();
22182       return DAG.getNode(ISD::AND, dl, VT,
22183                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
22184                                      N00.getOperand(0), N00.getOperand(1)),
22185                          DAG.getConstant(1, VT));
22186     }
22187   }
22188
22189   if (N0.getOpcode() == ISD::TRUNCATE &&
22190       N0.hasOneUse() &&
22191       N0.getOperand(0).hasOneUse()) {
22192     SDValue N00 = N0.getOperand(0);
22193     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
22194       return DAG.getNode(ISD::AND, dl, VT,
22195                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
22196                                      N00.getOperand(0), N00.getOperand(1)),
22197                          DAG.getConstant(1, VT));
22198     }
22199   }
22200   if (VT.is256BitVector()) {
22201     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
22202     if (R.getNode())
22203       return R;
22204   }
22205
22206   return SDValue();
22207 }
22208
22209 // Optimize x == -y --> x+y == 0
22210 //          x != -y --> x+y != 0
22211 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
22212                                       const X86Subtarget* Subtarget) {
22213   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
22214   SDValue LHS = N->getOperand(0);
22215   SDValue RHS = N->getOperand(1);
22216   EVT VT = N->getValueType(0);
22217   SDLoc DL(N);
22218
22219   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
22220     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
22221       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
22222         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
22223                                    LHS.getValueType(), RHS, LHS.getOperand(1));
22224         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
22225                             addV, DAG.getConstant(0, addV.getValueType()), CC);
22226       }
22227   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
22228     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
22229       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
22230         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
22231                                    RHS.getValueType(), LHS, RHS.getOperand(1));
22232         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
22233                             addV, DAG.getConstant(0, addV.getValueType()), CC);
22234       }
22235
22236   if (VT.getScalarType() == MVT::i1) {
22237     bool IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
22238       (LHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
22239     bool IsVZero0 = ISD::isBuildVectorAllZeros(LHS.getNode());
22240     if (!IsSEXT0 && !IsVZero0)
22241       return SDValue();
22242     bool IsSEXT1 = (RHS.getOpcode() == ISD::SIGN_EXTEND) &&
22243       (RHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
22244     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
22245
22246     if (!IsSEXT1 && !IsVZero1)
22247       return SDValue();
22248
22249     if (IsSEXT0 && IsVZero1) {
22250       assert(VT == LHS.getOperand(0).getValueType() && "Uexpected operand type");
22251       if (CC == ISD::SETEQ)
22252         return DAG.getNOT(DL, LHS.getOperand(0), VT);
22253       return LHS.getOperand(0);
22254     }
22255     if (IsSEXT1 && IsVZero0) {
22256       assert(VT == RHS.getOperand(0).getValueType() && "Uexpected operand type");
22257       if (CC == ISD::SETEQ)
22258         return DAG.getNOT(DL, RHS.getOperand(0), VT);
22259       return RHS.getOperand(0);
22260     }
22261   }
22262
22263   return SDValue();
22264 }
22265
22266 static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG,
22267                                       const X86Subtarget *Subtarget) {
22268   SDLoc dl(N);
22269   MVT VT = N->getOperand(1)->getSimpleValueType(0);
22270   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
22271          "X86insertps is only defined for v4x32");
22272
22273   SDValue Ld = N->getOperand(1);
22274   if (MayFoldLoad(Ld)) {
22275     // Extract the countS bits from the immediate so we can get the proper
22276     // address when narrowing the vector load to a specific element.
22277     // When the second source op is a memory address, interps doesn't use
22278     // countS and just gets an f32 from that address.
22279     unsigned DestIndex =
22280         cast<ConstantSDNode>(N->getOperand(2))->getZExtValue() >> 6;
22281     Ld = NarrowVectorLoadToElement(cast<LoadSDNode>(Ld), DestIndex, DAG);
22282   } else
22283     return SDValue();
22284
22285   // Create this as a scalar to vector to match the instruction pattern.
22286   SDValue LoadScalarToVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Ld);
22287   // countS bits are ignored when loading from memory on insertps, which
22288   // means we don't need to explicitly set them to 0.
22289   return DAG.getNode(X86ISD::INSERTPS, dl, VT, N->getOperand(0),
22290                      LoadScalarToVector, N->getOperand(2));
22291 }
22292
22293 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
22294 // as "sbb reg,reg", since it can be extended without zext and produces
22295 // an all-ones bit which is more useful than 0/1 in some cases.
22296 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
22297                                MVT VT) {
22298   if (VT == MVT::i8)
22299     return DAG.getNode(ISD::AND, DL, VT,
22300                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
22301                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
22302                        DAG.getConstant(1, VT));
22303   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
22304   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
22305                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
22306                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
22307 }
22308
22309 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
22310 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
22311                                    TargetLowering::DAGCombinerInfo &DCI,
22312                                    const X86Subtarget *Subtarget) {
22313   SDLoc DL(N);
22314   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
22315   SDValue EFLAGS = N->getOperand(1);
22316
22317   if (CC == X86::COND_A) {
22318     // Try to convert COND_A into COND_B in an attempt to facilitate
22319     // materializing "setb reg".
22320     //
22321     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
22322     // cannot take an immediate as its first operand.
22323     //
22324     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
22325         EFLAGS.getValueType().isInteger() &&
22326         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
22327       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
22328                                    EFLAGS.getNode()->getVTList(),
22329                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
22330       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
22331       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
22332     }
22333   }
22334
22335   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
22336   // a zext and produces an all-ones bit which is more useful than 0/1 in some
22337   // cases.
22338   if (CC == X86::COND_B)
22339     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
22340
22341   SDValue Flags;
22342
22343   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
22344   if (Flags.getNode()) {
22345     SDValue Cond = DAG.getConstant(CC, MVT::i8);
22346     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
22347   }
22348
22349   return SDValue();
22350 }
22351
22352 // Optimize branch condition evaluation.
22353 //
22354 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
22355                                     TargetLowering::DAGCombinerInfo &DCI,
22356                                     const X86Subtarget *Subtarget) {
22357   SDLoc DL(N);
22358   SDValue Chain = N->getOperand(0);
22359   SDValue Dest = N->getOperand(1);
22360   SDValue EFLAGS = N->getOperand(3);
22361   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
22362
22363   SDValue Flags;
22364
22365   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
22366   if (Flags.getNode()) {
22367     SDValue Cond = DAG.getConstant(CC, MVT::i8);
22368     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
22369                        Flags);
22370   }
22371
22372   return SDValue();
22373 }
22374
22375 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
22376                                                          SelectionDAG &DAG) {
22377   // Take advantage of vector comparisons producing 0 or -1 in each lane to
22378   // optimize away operation when it's from a constant.
22379   //
22380   // The general transformation is:
22381   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
22382   //       AND(VECTOR_CMP(x,y), constant2)
22383   //    constant2 = UNARYOP(constant)
22384
22385   // Early exit if this isn't a vector operation, the operand of the
22386   // unary operation isn't a bitwise AND, or if the sizes of the operations
22387   // aren't the same.
22388   EVT VT = N->getValueType(0);
22389   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
22390       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
22391       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
22392     return SDValue();
22393
22394   // Now check that the other operand of the AND is a constant. We could
22395   // make the transformation for non-constant splats as well, but it's unclear
22396   // that would be a benefit as it would not eliminate any operations, just
22397   // perform one more step in scalar code before moving to the vector unit.
22398   if (BuildVectorSDNode *BV =
22399           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
22400     // Bail out if the vector isn't a constant.
22401     if (!BV->isConstant())
22402       return SDValue();
22403
22404     // Everything checks out. Build up the new and improved node.
22405     SDLoc DL(N);
22406     EVT IntVT = BV->getValueType(0);
22407     // Create a new constant of the appropriate type for the transformed
22408     // DAG.
22409     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
22410     // The AND node needs bitcasts to/from an integer vector type around it.
22411     SDValue MaskConst = DAG.getNode(ISD::BITCAST, DL, IntVT, SourceConst);
22412     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
22413                                  N->getOperand(0)->getOperand(0), MaskConst);
22414     SDValue Res = DAG.getNode(ISD::BITCAST, DL, VT, NewAnd);
22415     return Res;
22416   }
22417
22418   return SDValue();
22419 }
22420
22421 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
22422                                         const X86TargetLowering *XTLI) {
22423   // First try to optimize away the conversion entirely when it's
22424   // conditionally from a constant. Vectors only.
22425   SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG);
22426   if (Res != SDValue())
22427     return Res;
22428
22429   // Now move on to more general possibilities.
22430   SDValue Op0 = N->getOperand(0);
22431   EVT InVT = Op0->getValueType(0);
22432
22433   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
22434   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
22435     SDLoc dl(N);
22436     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
22437     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
22438     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
22439   }
22440
22441   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
22442   // a 32-bit target where SSE doesn't support i64->FP operations.
22443   if (Op0.getOpcode() == ISD::LOAD) {
22444     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
22445     EVT VT = Ld->getValueType(0);
22446     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
22447         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
22448         !XTLI->getSubtarget()->is64Bit() &&
22449         VT == MVT::i64) {
22450       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
22451                                           Ld->getChain(), Op0, DAG);
22452       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
22453       return FILDChain;
22454     }
22455   }
22456   return SDValue();
22457 }
22458
22459 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
22460 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
22461                                  X86TargetLowering::DAGCombinerInfo &DCI) {
22462   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
22463   // the result is either zero or one (depending on the input carry bit).
22464   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
22465   if (X86::isZeroNode(N->getOperand(0)) &&
22466       X86::isZeroNode(N->getOperand(1)) &&
22467       // We don't have a good way to replace an EFLAGS use, so only do this when
22468       // dead right now.
22469       SDValue(N, 1).use_empty()) {
22470     SDLoc DL(N);
22471     EVT VT = N->getValueType(0);
22472     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
22473     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
22474                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
22475                                            DAG.getConstant(X86::COND_B,MVT::i8),
22476                                            N->getOperand(2)),
22477                                DAG.getConstant(1, VT));
22478     return DCI.CombineTo(N, Res1, CarryOut);
22479   }
22480
22481   return SDValue();
22482 }
22483
22484 // fold (add Y, (sete  X, 0)) -> adc  0, Y
22485 //      (add Y, (setne X, 0)) -> sbb -1, Y
22486 //      (sub (sete  X, 0), Y) -> sbb  0, Y
22487 //      (sub (setne X, 0), Y) -> adc -1, Y
22488 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
22489   SDLoc DL(N);
22490
22491   // Look through ZExts.
22492   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
22493   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
22494     return SDValue();
22495
22496   SDValue SetCC = Ext.getOperand(0);
22497   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
22498     return SDValue();
22499
22500   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
22501   if (CC != X86::COND_E && CC != X86::COND_NE)
22502     return SDValue();
22503
22504   SDValue Cmp = SetCC.getOperand(1);
22505   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
22506       !X86::isZeroNode(Cmp.getOperand(1)) ||
22507       !Cmp.getOperand(0).getValueType().isInteger())
22508     return SDValue();
22509
22510   SDValue CmpOp0 = Cmp.getOperand(0);
22511   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
22512                                DAG.getConstant(1, CmpOp0.getValueType()));
22513
22514   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
22515   if (CC == X86::COND_NE)
22516     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
22517                        DL, OtherVal.getValueType(), OtherVal,
22518                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
22519   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
22520                      DL, OtherVal.getValueType(), OtherVal,
22521                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
22522 }
22523
22524 /// PerformADDCombine - Do target-specific dag combines on integer adds.
22525 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
22526                                  const X86Subtarget *Subtarget) {
22527   EVT VT = N->getValueType(0);
22528   SDValue Op0 = N->getOperand(0);
22529   SDValue Op1 = N->getOperand(1);
22530
22531   // Try to synthesize horizontal adds from adds of shuffles.
22532   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
22533        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
22534       isHorizontalBinOp(Op0, Op1, true))
22535     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
22536
22537   return OptimizeConditionalInDecrement(N, DAG);
22538 }
22539
22540 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
22541                                  const X86Subtarget *Subtarget) {
22542   SDValue Op0 = N->getOperand(0);
22543   SDValue Op1 = N->getOperand(1);
22544
22545   // X86 can't encode an immediate LHS of a sub. See if we can push the
22546   // negation into a preceding instruction.
22547   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
22548     // If the RHS of the sub is a XOR with one use and a constant, invert the
22549     // immediate. Then add one to the LHS of the sub so we can turn
22550     // X-Y -> X+~Y+1, saving one register.
22551     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
22552         isa<ConstantSDNode>(Op1.getOperand(1))) {
22553       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
22554       EVT VT = Op0.getValueType();
22555       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
22556                                    Op1.getOperand(0),
22557                                    DAG.getConstant(~XorC, VT));
22558       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
22559                          DAG.getConstant(C->getAPIntValue()+1, VT));
22560     }
22561   }
22562
22563   // Try to synthesize horizontal adds from adds of shuffles.
22564   EVT VT = N->getValueType(0);
22565   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
22566        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
22567       isHorizontalBinOp(Op0, Op1, true))
22568     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
22569
22570   return OptimizeConditionalInDecrement(N, DAG);
22571 }
22572
22573 /// performVZEXTCombine - Performs build vector combines
22574 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
22575                                         TargetLowering::DAGCombinerInfo &DCI,
22576                                         const X86Subtarget *Subtarget) {
22577   // (vzext (bitcast (vzext (x)) -> (vzext x)
22578   SDValue In = N->getOperand(0);
22579   while (In.getOpcode() == ISD::BITCAST)
22580     In = In.getOperand(0);
22581
22582   if (In.getOpcode() != X86ISD::VZEXT)
22583     return SDValue();
22584
22585   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
22586                      In.getOperand(0));
22587 }
22588
22589 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
22590                                              DAGCombinerInfo &DCI) const {
22591   SelectionDAG &DAG = DCI.DAG;
22592   switch (N->getOpcode()) {
22593   default: break;
22594   case ISD::EXTRACT_VECTOR_ELT:
22595     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
22596   case ISD::VSELECT:
22597   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
22598   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
22599   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
22600   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
22601   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
22602   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
22603   case ISD::SHL:
22604   case ISD::SRA:
22605   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
22606   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
22607   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
22608   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
22609   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
22610   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
22611   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
22612   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
22613   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
22614   case X86ISD::FXOR:
22615   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
22616   case X86ISD::FMIN:
22617   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
22618   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
22619   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
22620   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
22621   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
22622   case ISD::ANY_EXTEND:
22623   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
22624   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
22625   case ISD::SIGN_EXTEND_INREG:
22626     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
22627   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
22628   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
22629   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
22630   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
22631   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
22632   case X86ISD::SHUFP:       // Handle all target specific shuffles
22633   case X86ISD::PALIGNR:
22634   case X86ISD::UNPCKH:
22635   case X86ISD::UNPCKL:
22636   case X86ISD::MOVHLPS:
22637   case X86ISD::MOVLHPS:
22638   case X86ISD::PSHUFB:
22639   case X86ISD::PSHUFD:
22640   case X86ISD::PSHUFHW:
22641   case X86ISD::PSHUFLW:
22642   case X86ISD::MOVSS:
22643   case X86ISD::MOVSD:
22644   case X86ISD::VPERMILP:
22645   case X86ISD::VPERM2X128:
22646   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
22647   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
22648   case ISD::INTRINSIC_WO_CHAIN:
22649     return PerformINTRINSIC_WO_CHAINCombine(N, DAG, Subtarget);
22650   case X86ISD::INSERTPS:
22651     return PerformINSERTPSCombine(N, DAG, Subtarget);
22652   case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DAG, Subtarget);
22653   }
22654
22655   return SDValue();
22656 }
22657
22658 /// isTypeDesirableForOp - Return true if the target has native support for
22659 /// the specified value type and it is 'desirable' to use the type for the
22660 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
22661 /// instruction encodings are longer and some i16 instructions are slow.
22662 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
22663   if (!isTypeLegal(VT))
22664     return false;
22665   if (VT != MVT::i16)
22666     return true;
22667
22668   switch (Opc) {
22669   default:
22670     return true;
22671   case ISD::LOAD:
22672   case ISD::SIGN_EXTEND:
22673   case ISD::ZERO_EXTEND:
22674   case ISD::ANY_EXTEND:
22675   case ISD::SHL:
22676   case ISD::SRL:
22677   case ISD::SUB:
22678   case ISD::ADD:
22679   case ISD::MUL:
22680   case ISD::AND:
22681   case ISD::OR:
22682   case ISD::XOR:
22683     return false;
22684   }
22685 }
22686
22687 /// IsDesirableToPromoteOp - This method query the target whether it is
22688 /// beneficial for dag combiner to promote the specified node. If true, it
22689 /// should return the desired promotion type by reference.
22690 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
22691   EVT VT = Op.getValueType();
22692   if (VT != MVT::i16)
22693     return false;
22694
22695   bool Promote = false;
22696   bool Commute = false;
22697   switch (Op.getOpcode()) {
22698   default: break;
22699   case ISD::LOAD: {
22700     LoadSDNode *LD = cast<LoadSDNode>(Op);
22701     // If the non-extending load has a single use and it's not live out, then it
22702     // might be folded.
22703     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
22704                                                      Op.hasOneUse()*/) {
22705       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
22706              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
22707         // The only case where we'd want to promote LOAD (rather then it being
22708         // promoted as an operand is when it's only use is liveout.
22709         if (UI->getOpcode() != ISD::CopyToReg)
22710           return false;
22711       }
22712     }
22713     Promote = true;
22714     break;
22715   }
22716   case ISD::SIGN_EXTEND:
22717   case ISD::ZERO_EXTEND:
22718   case ISD::ANY_EXTEND:
22719     Promote = true;
22720     break;
22721   case ISD::SHL:
22722   case ISD::SRL: {
22723     SDValue N0 = Op.getOperand(0);
22724     // Look out for (store (shl (load), x)).
22725     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
22726       return false;
22727     Promote = true;
22728     break;
22729   }
22730   case ISD::ADD:
22731   case ISD::MUL:
22732   case ISD::AND:
22733   case ISD::OR:
22734   case ISD::XOR:
22735     Commute = true;
22736     // fallthrough
22737   case ISD::SUB: {
22738     SDValue N0 = Op.getOperand(0);
22739     SDValue N1 = Op.getOperand(1);
22740     if (!Commute && MayFoldLoad(N1))
22741       return false;
22742     // Avoid disabling potential load folding opportunities.
22743     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
22744       return false;
22745     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
22746       return false;
22747     Promote = true;
22748   }
22749   }
22750
22751   PVT = MVT::i32;
22752   return Promote;
22753 }
22754
22755 //===----------------------------------------------------------------------===//
22756 //                           X86 Inline Assembly Support
22757 //===----------------------------------------------------------------------===//
22758
22759 namespace {
22760   // Helper to match a string separated by whitespace.
22761   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
22762     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
22763
22764     for (unsigned i = 0, e = args.size(); i != e; ++i) {
22765       StringRef piece(*args[i]);
22766       if (!s.startswith(piece)) // Check if the piece matches.
22767         return false;
22768
22769       s = s.substr(piece.size());
22770       StringRef::size_type pos = s.find_first_not_of(" \t");
22771       if (pos == 0) // We matched a prefix.
22772         return false;
22773
22774       s = s.substr(pos);
22775     }
22776
22777     return s.empty();
22778   }
22779   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
22780 }
22781
22782 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
22783
22784   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
22785     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
22786         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
22787         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
22788
22789       if (AsmPieces.size() == 3)
22790         return true;
22791       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
22792         return true;
22793     }
22794   }
22795   return false;
22796 }
22797
22798 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
22799   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
22800
22801   std::string AsmStr = IA->getAsmString();
22802
22803   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
22804   if (!Ty || Ty->getBitWidth() % 16 != 0)
22805     return false;
22806
22807   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
22808   SmallVector<StringRef, 4> AsmPieces;
22809   SplitString(AsmStr, AsmPieces, ";\n");
22810
22811   switch (AsmPieces.size()) {
22812   default: return false;
22813   case 1:
22814     // FIXME: this should verify that we are targeting a 486 or better.  If not,
22815     // we will turn this bswap into something that will be lowered to logical
22816     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
22817     // lower so don't worry about this.
22818     // bswap $0
22819     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
22820         matchAsm(AsmPieces[0], "bswapl", "$0") ||
22821         matchAsm(AsmPieces[0], "bswapq", "$0") ||
22822         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
22823         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
22824         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
22825       // No need to check constraints, nothing other than the equivalent of
22826       // "=r,0" would be valid here.
22827       return IntrinsicLowering::LowerToByteSwap(CI);
22828     }
22829
22830     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
22831     if (CI->getType()->isIntegerTy(16) &&
22832         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
22833         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
22834          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
22835       AsmPieces.clear();
22836       const std::string &ConstraintsStr = IA->getConstraintString();
22837       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
22838       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
22839       if (clobbersFlagRegisters(AsmPieces))
22840         return IntrinsicLowering::LowerToByteSwap(CI);
22841     }
22842     break;
22843   case 3:
22844     if (CI->getType()->isIntegerTy(32) &&
22845         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
22846         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
22847         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
22848         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
22849       AsmPieces.clear();
22850       const std::string &ConstraintsStr = IA->getConstraintString();
22851       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
22852       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
22853       if (clobbersFlagRegisters(AsmPieces))
22854         return IntrinsicLowering::LowerToByteSwap(CI);
22855     }
22856
22857     if (CI->getType()->isIntegerTy(64)) {
22858       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
22859       if (Constraints.size() >= 2 &&
22860           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
22861           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
22862         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
22863         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
22864             matchAsm(AsmPieces[1], "bswap", "%edx") &&
22865             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
22866           return IntrinsicLowering::LowerToByteSwap(CI);
22867       }
22868     }
22869     break;
22870   }
22871   return false;
22872 }
22873
22874 /// getConstraintType - Given a constraint letter, return the type of
22875 /// constraint it is for this target.
22876 X86TargetLowering::ConstraintType
22877 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
22878   if (Constraint.size() == 1) {
22879     switch (Constraint[0]) {
22880     case 'R':
22881     case 'q':
22882     case 'Q':
22883     case 'f':
22884     case 't':
22885     case 'u':
22886     case 'y':
22887     case 'x':
22888     case 'Y':
22889     case 'l':
22890       return C_RegisterClass;
22891     case 'a':
22892     case 'b':
22893     case 'c':
22894     case 'd':
22895     case 'S':
22896     case 'D':
22897     case 'A':
22898       return C_Register;
22899     case 'I':
22900     case 'J':
22901     case 'K':
22902     case 'L':
22903     case 'M':
22904     case 'N':
22905     case 'G':
22906     case 'C':
22907     case 'e':
22908     case 'Z':
22909       return C_Other;
22910     default:
22911       break;
22912     }
22913   }
22914   return TargetLowering::getConstraintType(Constraint);
22915 }
22916
22917 /// Examine constraint type and operand type and determine a weight value.
22918 /// This object must already have been set up with the operand type
22919 /// and the current alternative constraint selected.
22920 TargetLowering::ConstraintWeight
22921   X86TargetLowering::getSingleConstraintMatchWeight(
22922     AsmOperandInfo &info, const char *constraint) const {
22923   ConstraintWeight weight = CW_Invalid;
22924   Value *CallOperandVal = info.CallOperandVal;
22925     // If we don't have a value, we can't do a match,
22926     // but allow it at the lowest weight.
22927   if (!CallOperandVal)
22928     return CW_Default;
22929   Type *type = CallOperandVal->getType();
22930   // Look at the constraint type.
22931   switch (*constraint) {
22932   default:
22933     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
22934   case 'R':
22935   case 'q':
22936   case 'Q':
22937   case 'a':
22938   case 'b':
22939   case 'c':
22940   case 'd':
22941   case 'S':
22942   case 'D':
22943   case 'A':
22944     if (CallOperandVal->getType()->isIntegerTy())
22945       weight = CW_SpecificReg;
22946     break;
22947   case 'f':
22948   case 't':
22949   case 'u':
22950     if (type->isFloatingPointTy())
22951       weight = CW_SpecificReg;
22952     break;
22953   case 'y':
22954     if (type->isX86_MMXTy() && Subtarget->hasMMX())
22955       weight = CW_SpecificReg;
22956     break;
22957   case 'x':
22958   case 'Y':
22959     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
22960         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
22961       weight = CW_Register;
22962     break;
22963   case 'I':
22964     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
22965       if (C->getZExtValue() <= 31)
22966         weight = CW_Constant;
22967     }
22968     break;
22969   case 'J':
22970     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22971       if (C->getZExtValue() <= 63)
22972         weight = CW_Constant;
22973     }
22974     break;
22975   case 'K':
22976     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22977       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
22978         weight = CW_Constant;
22979     }
22980     break;
22981   case 'L':
22982     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22983       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
22984         weight = CW_Constant;
22985     }
22986     break;
22987   case 'M':
22988     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22989       if (C->getZExtValue() <= 3)
22990         weight = CW_Constant;
22991     }
22992     break;
22993   case 'N':
22994     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22995       if (C->getZExtValue() <= 0xff)
22996         weight = CW_Constant;
22997     }
22998     break;
22999   case 'G':
23000   case 'C':
23001     if (dyn_cast<ConstantFP>(CallOperandVal)) {
23002       weight = CW_Constant;
23003     }
23004     break;
23005   case 'e':
23006     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
23007       if ((C->getSExtValue() >= -0x80000000LL) &&
23008           (C->getSExtValue() <= 0x7fffffffLL))
23009         weight = CW_Constant;
23010     }
23011     break;
23012   case 'Z':
23013     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
23014       if (C->getZExtValue() <= 0xffffffff)
23015         weight = CW_Constant;
23016     }
23017     break;
23018   }
23019   return weight;
23020 }
23021
23022 /// LowerXConstraint - try to replace an X constraint, which matches anything,
23023 /// with another that has more specific requirements based on the type of the
23024 /// corresponding operand.
23025 const char *X86TargetLowering::
23026 LowerXConstraint(EVT ConstraintVT) const {
23027   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
23028   // 'f' like normal targets.
23029   if (ConstraintVT.isFloatingPoint()) {
23030     if (Subtarget->hasSSE2())
23031       return "Y";
23032     if (Subtarget->hasSSE1())
23033       return "x";
23034   }
23035
23036   return TargetLowering::LowerXConstraint(ConstraintVT);
23037 }
23038
23039 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
23040 /// vector.  If it is invalid, don't add anything to Ops.
23041 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
23042                                                      std::string &Constraint,
23043                                                      std::vector<SDValue>&Ops,
23044                                                      SelectionDAG &DAG) const {
23045   SDValue Result;
23046
23047   // Only support length 1 constraints for now.
23048   if (Constraint.length() > 1) return;
23049
23050   char ConstraintLetter = Constraint[0];
23051   switch (ConstraintLetter) {
23052   default: break;
23053   case 'I':
23054     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
23055       if (C->getZExtValue() <= 31) {
23056         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
23057         break;
23058       }
23059     }
23060     return;
23061   case 'J':
23062     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
23063       if (C->getZExtValue() <= 63) {
23064         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
23065         break;
23066       }
23067     }
23068     return;
23069   case 'K':
23070     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
23071       if (isInt<8>(C->getSExtValue())) {
23072         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
23073         break;
23074       }
23075     }
23076     return;
23077   case 'N':
23078     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
23079       if (C->getZExtValue() <= 255) {
23080         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
23081         break;
23082       }
23083     }
23084     return;
23085   case 'e': {
23086     // 32-bit signed value
23087     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
23088       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
23089                                            C->getSExtValue())) {
23090         // Widen to 64 bits here to get it sign extended.
23091         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
23092         break;
23093       }
23094     // FIXME gcc accepts some relocatable values here too, but only in certain
23095     // memory models; it's complicated.
23096     }
23097     return;
23098   }
23099   case 'Z': {
23100     // 32-bit unsigned value
23101     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
23102       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
23103                                            C->getZExtValue())) {
23104         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
23105         break;
23106       }
23107     }
23108     // FIXME gcc accepts some relocatable values here too, but only in certain
23109     // memory models; it's complicated.
23110     return;
23111   }
23112   case 'i': {
23113     // Literal immediates are always ok.
23114     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
23115       // Widen to 64 bits here to get it sign extended.
23116       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
23117       break;
23118     }
23119
23120     // In any sort of PIC mode addresses need to be computed at runtime by
23121     // adding in a register or some sort of table lookup.  These can't
23122     // be used as immediates.
23123     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
23124       return;
23125
23126     // If we are in non-pic codegen mode, we allow the address of a global (with
23127     // an optional displacement) to be used with 'i'.
23128     GlobalAddressSDNode *GA = nullptr;
23129     int64_t Offset = 0;
23130
23131     // Match either (GA), (GA+C), (GA+C1+C2), etc.
23132     while (1) {
23133       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
23134         Offset += GA->getOffset();
23135         break;
23136       } else if (Op.getOpcode() == ISD::ADD) {
23137         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
23138           Offset += C->getZExtValue();
23139           Op = Op.getOperand(0);
23140           continue;
23141         }
23142       } else if (Op.getOpcode() == ISD::SUB) {
23143         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
23144           Offset += -C->getZExtValue();
23145           Op = Op.getOperand(0);
23146           continue;
23147         }
23148       }
23149
23150       // Otherwise, this isn't something we can handle, reject it.
23151       return;
23152     }
23153
23154     const GlobalValue *GV = GA->getGlobal();
23155     // If we require an extra load to get this address, as in PIC mode, we
23156     // can't accept it.
23157     if (isGlobalStubReference(
23158             Subtarget->ClassifyGlobalReference(GV, DAG.getTarget())))
23159       return;
23160
23161     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
23162                                         GA->getValueType(0), Offset);
23163     break;
23164   }
23165   }
23166
23167   if (Result.getNode()) {
23168     Ops.push_back(Result);
23169     return;
23170   }
23171   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
23172 }
23173
23174 std::pair<unsigned, const TargetRegisterClass*>
23175 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
23176                                                 MVT VT) const {
23177   // First, see if this is a constraint that directly corresponds to an LLVM
23178   // register class.
23179   if (Constraint.size() == 1) {
23180     // GCC Constraint Letters
23181     switch (Constraint[0]) {
23182     default: break;
23183       // TODO: Slight differences here in allocation order and leaving
23184       // RIP in the class. Do they matter any more here than they do
23185       // in the normal allocation?
23186     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
23187       if (Subtarget->is64Bit()) {
23188         if (VT == MVT::i32 || VT == MVT::f32)
23189           return std::make_pair(0U, &X86::GR32RegClass);
23190         if (VT == MVT::i16)
23191           return std::make_pair(0U, &X86::GR16RegClass);
23192         if (VT == MVT::i8 || VT == MVT::i1)
23193           return std::make_pair(0U, &X86::GR8RegClass);
23194         if (VT == MVT::i64 || VT == MVT::f64)
23195           return std::make_pair(0U, &X86::GR64RegClass);
23196         break;
23197       }
23198       // 32-bit fallthrough
23199     case 'Q':   // Q_REGS
23200       if (VT == MVT::i32 || VT == MVT::f32)
23201         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
23202       if (VT == MVT::i16)
23203         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
23204       if (VT == MVT::i8 || VT == MVT::i1)
23205         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
23206       if (VT == MVT::i64)
23207         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
23208       break;
23209     case 'r':   // GENERAL_REGS
23210     case 'l':   // INDEX_REGS
23211       if (VT == MVT::i8 || VT == MVT::i1)
23212         return std::make_pair(0U, &X86::GR8RegClass);
23213       if (VT == MVT::i16)
23214         return std::make_pair(0U, &X86::GR16RegClass);
23215       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
23216         return std::make_pair(0U, &X86::GR32RegClass);
23217       return std::make_pair(0U, &X86::GR64RegClass);
23218     case 'R':   // LEGACY_REGS
23219       if (VT == MVT::i8 || VT == MVT::i1)
23220         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
23221       if (VT == MVT::i16)
23222         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
23223       if (VT == MVT::i32 || !Subtarget->is64Bit())
23224         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
23225       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
23226     case 'f':  // FP Stack registers.
23227       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
23228       // value to the correct fpstack register class.
23229       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
23230         return std::make_pair(0U, &X86::RFP32RegClass);
23231       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
23232         return std::make_pair(0U, &X86::RFP64RegClass);
23233       return std::make_pair(0U, &X86::RFP80RegClass);
23234     case 'y':   // MMX_REGS if MMX allowed.
23235       if (!Subtarget->hasMMX()) break;
23236       return std::make_pair(0U, &X86::VR64RegClass);
23237     case 'Y':   // SSE_REGS if SSE2 allowed
23238       if (!Subtarget->hasSSE2()) break;
23239       // FALL THROUGH.
23240     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
23241       if (!Subtarget->hasSSE1()) break;
23242
23243       switch (VT.SimpleTy) {
23244       default: break;
23245       // Scalar SSE types.
23246       case MVT::f32:
23247       case MVT::i32:
23248         return std::make_pair(0U, &X86::FR32RegClass);
23249       case MVT::f64:
23250       case MVT::i64:
23251         return std::make_pair(0U, &X86::FR64RegClass);
23252       // Vector types.
23253       case MVT::v16i8:
23254       case MVT::v8i16:
23255       case MVT::v4i32:
23256       case MVT::v2i64:
23257       case MVT::v4f32:
23258       case MVT::v2f64:
23259         return std::make_pair(0U, &X86::VR128RegClass);
23260       // AVX types.
23261       case MVT::v32i8:
23262       case MVT::v16i16:
23263       case MVT::v8i32:
23264       case MVT::v4i64:
23265       case MVT::v8f32:
23266       case MVT::v4f64:
23267         return std::make_pair(0U, &X86::VR256RegClass);
23268       case MVT::v8f64:
23269       case MVT::v16f32:
23270       case MVT::v16i32:
23271       case MVT::v8i64:
23272         return std::make_pair(0U, &X86::VR512RegClass);
23273       }
23274       break;
23275     }
23276   }
23277
23278   // Use the default implementation in TargetLowering to convert the register
23279   // constraint into a member of a register class.
23280   std::pair<unsigned, const TargetRegisterClass*> Res;
23281   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
23282
23283   // Not found as a standard register?
23284   if (!Res.second) {
23285     // Map st(0) -> st(7) -> ST0
23286     if (Constraint.size() == 7 && Constraint[0] == '{' &&
23287         tolower(Constraint[1]) == 's' &&
23288         tolower(Constraint[2]) == 't' &&
23289         Constraint[3] == '(' &&
23290         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
23291         Constraint[5] == ')' &&
23292         Constraint[6] == '}') {
23293
23294       Res.first = X86::FP0+Constraint[4]-'0';
23295       Res.second = &X86::RFP80RegClass;
23296       return Res;
23297     }
23298
23299     // GCC allows "st(0)" to be called just plain "st".
23300     if (StringRef("{st}").equals_lower(Constraint)) {
23301       Res.first = X86::FP0;
23302       Res.second = &X86::RFP80RegClass;
23303       return Res;
23304     }
23305
23306     // flags -> EFLAGS
23307     if (StringRef("{flags}").equals_lower(Constraint)) {
23308       Res.first = X86::EFLAGS;
23309       Res.second = &X86::CCRRegClass;
23310       return Res;
23311     }
23312
23313     // 'A' means EAX + EDX.
23314     if (Constraint == "A") {
23315       Res.first = X86::EAX;
23316       Res.second = &X86::GR32_ADRegClass;
23317       return Res;
23318     }
23319     return Res;
23320   }
23321
23322   // Otherwise, check to see if this is a register class of the wrong value
23323   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
23324   // turn into {ax},{dx}.
23325   if (Res.second->hasType(VT))
23326     return Res;   // Correct type already, nothing to do.
23327
23328   // All of the single-register GCC register classes map their values onto
23329   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
23330   // really want an 8-bit or 32-bit register, map to the appropriate register
23331   // class and return the appropriate register.
23332   if (Res.second == &X86::GR16RegClass) {
23333     if (VT == MVT::i8 || VT == MVT::i1) {
23334       unsigned DestReg = 0;
23335       switch (Res.first) {
23336       default: break;
23337       case X86::AX: DestReg = X86::AL; break;
23338       case X86::DX: DestReg = X86::DL; break;
23339       case X86::CX: DestReg = X86::CL; break;
23340       case X86::BX: DestReg = X86::BL; break;
23341       }
23342       if (DestReg) {
23343         Res.first = DestReg;
23344         Res.second = &X86::GR8RegClass;
23345       }
23346     } else if (VT == MVT::i32 || VT == MVT::f32) {
23347       unsigned DestReg = 0;
23348       switch (Res.first) {
23349       default: break;
23350       case X86::AX: DestReg = X86::EAX; break;
23351       case X86::DX: DestReg = X86::EDX; break;
23352       case X86::CX: DestReg = X86::ECX; break;
23353       case X86::BX: DestReg = X86::EBX; break;
23354       case X86::SI: DestReg = X86::ESI; break;
23355       case X86::DI: DestReg = X86::EDI; break;
23356       case X86::BP: DestReg = X86::EBP; break;
23357       case X86::SP: DestReg = X86::ESP; break;
23358       }
23359       if (DestReg) {
23360         Res.first = DestReg;
23361         Res.second = &X86::GR32RegClass;
23362       }
23363     } else if (VT == MVT::i64 || VT == MVT::f64) {
23364       unsigned DestReg = 0;
23365       switch (Res.first) {
23366       default: break;
23367       case X86::AX: DestReg = X86::RAX; break;
23368       case X86::DX: DestReg = X86::RDX; break;
23369       case X86::CX: DestReg = X86::RCX; break;
23370       case X86::BX: DestReg = X86::RBX; break;
23371       case X86::SI: DestReg = X86::RSI; break;
23372       case X86::DI: DestReg = X86::RDI; break;
23373       case X86::BP: DestReg = X86::RBP; break;
23374       case X86::SP: DestReg = X86::RSP; break;
23375       }
23376       if (DestReg) {
23377         Res.first = DestReg;
23378         Res.second = &X86::GR64RegClass;
23379       }
23380     }
23381   } else if (Res.second == &X86::FR32RegClass ||
23382              Res.second == &X86::FR64RegClass ||
23383              Res.second == &X86::VR128RegClass ||
23384              Res.second == &X86::VR256RegClass ||
23385              Res.second == &X86::FR32XRegClass ||
23386              Res.second == &X86::FR64XRegClass ||
23387              Res.second == &X86::VR128XRegClass ||
23388              Res.second == &X86::VR256XRegClass ||
23389              Res.second == &X86::VR512RegClass) {
23390     // Handle references to XMM physical registers that got mapped into the
23391     // wrong class.  This can happen with constraints like {xmm0} where the
23392     // target independent register mapper will just pick the first match it can
23393     // find, ignoring the required type.
23394
23395     if (VT == MVT::f32 || VT == MVT::i32)
23396       Res.second = &X86::FR32RegClass;
23397     else if (VT == MVT::f64 || VT == MVT::i64)
23398       Res.second = &X86::FR64RegClass;
23399     else if (X86::VR128RegClass.hasType(VT))
23400       Res.second = &X86::VR128RegClass;
23401     else if (X86::VR256RegClass.hasType(VT))
23402       Res.second = &X86::VR256RegClass;
23403     else if (X86::VR512RegClass.hasType(VT))
23404       Res.second = &X86::VR512RegClass;
23405   }
23406
23407   return Res;
23408 }
23409
23410 int X86TargetLowering::getScalingFactorCost(const AddrMode &AM,
23411                                             Type *Ty) const {
23412   // Scaling factors are not free at all.
23413   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
23414   // will take 2 allocations in the out of order engine instead of 1
23415   // for plain addressing mode, i.e. inst (reg1).
23416   // E.g.,
23417   // vaddps (%rsi,%drx), %ymm0, %ymm1
23418   // Requires two allocations (one for the load, one for the computation)
23419   // whereas:
23420   // vaddps (%rsi), %ymm0, %ymm1
23421   // Requires just 1 allocation, i.e., freeing allocations for other operations
23422   // and having less micro operations to execute.
23423   //
23424   // For some X86 architectures, this is even worse because for instance for
23425   // stores, the complex addressing mode forces the instruction to use the
23426   // "load" ports instead of the dedicated "store" port.
23427   // E.g., on Haswell:
23428   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
23429   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.   
23430   if (isLegalAddressingMode(AM, Ty))
23431     // Scale represents reg2 * scale, thus account for 1
23432     // as soon as we use a second register.
23433     return AM.Scale != 0;
23434   return -1;
23435 }
23436
23437 bool X86TargetLowering::isTargetFTOL() const {
23438   return Subtarget->isTargetKnownWindowsMSVC() && !Subtarget->is64Bit();
23439 }