[x86] Generalize BuildVectorSDNode::getConstantSplatValue to work for
[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_FP32, MVT::f32, Expand);
523     setOperationAction(ISD::FP32_TO_FP16, MVT::i16, Expand);
524   }
525
526   if (Subtarget->hasPOPCNT()) {
527     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
528   } else {
529     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
530     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
531     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
532     if (Subtarget->is64Bit())
533       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
534   }
535
536   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
537
538   if (!Subtarget->hasMOVBE())
539     setOperationAction(ISD::BSWAP          , MVT::i16  , Expand);
540
541   // These should be promoted to a larger select which is supported.
542   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
543   // X86 wants to expand cmov itself.
544   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
545   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
546   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
547   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
548   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
549   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
550   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
551   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
552   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
553   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
554   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
555   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
556   if (Subtarget->is64Bit()) {
557     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
558     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
559   }
560   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
561   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
562   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
563   // support continuation, user-level threading, and etc.. As a result, no
564   // other SjLj exception interfaces are implemented and please don't build
565   // your own exception handling based on them.
566   // LLVM/Clang supports zero-cost DWARF exception handling.
567   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
568   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
569
570   // Darwin ABI issue.
571   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
572   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
573   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
574   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
575   if (Subtarget->is64Bit())
576     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
577   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
578   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
579   if (Subtarget->is64Bit()) {
580     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
581     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
582     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
583     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
584     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
585   }
586   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
587   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
588   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
589   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
590   if (Subtarget->is64Bit()) {
591     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
592     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
593     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
594   }
595
596   if (Subtarget->hasSSE1())
597     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
598
599   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
600
601   // Expand certain atomics
602   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
603     MVT VT = IntVTs[i];
604     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Custom);
605     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
606     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
607   }
608
609   if (Subtarget->hasCmpxchg16b()) {
610     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i128, Custom);
611   }
612
613   // FIXME - use subtarget debug flags
614   if (!Subtarget->isTargetDarwin() && !Subtarget->isTargetELF() &&
615       !Subtarget->isTargetCygMing() && !Subtarget->isTargetWin64()) {
616     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
617   }
618
619   if (Subtarget->is64Bit()) {
620     setExceptionPointerRegister(X86::RAX);
621     setExceptionSelectorRegister(X86::RDX);
622   } else {
623     setExceptionPointerRegister(X86::EAX);
624     setExceptionSelectorRegister(X86::EDX);
625   }
626   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
627   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
628
629   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
630   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
631
632   setOperationAction(ISD::TRAP, MVT::Other, Legal);
633   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
634
635   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
636   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
637   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
638   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
639     // TargetInfo::X86_64ABIBuiltinVaList
640     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
641     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
642   } else {
643     // TargetInfo::CharPtrBuiltinVaList
644     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
645     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
646   }
647
648   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
649   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
650
651   setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
652                      MVT::i64 : MVT::i32, Custom);
653
654   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
655     // f32 and f64 use SSE.
656     // Set up the FP register classes.
657     addRegisterClass(MVT::f32, &X86::FR32RegClass);
658     addRegisterClass(MVT::f64, &X86::FR64RegClass);
659
660     // Use ANDPD to simulate FABS.
661     setOperationAction(ISD::FABS , MVT::f64, Custom);
662     setOperationAction(ISD::FABS , MVT::f32, Custom);
663
664     // Use XORP to simulate FNEG.
665     setOperationAction(ISD::FNEG , MVT::f64, Custom);
666     setOperationAction(ISD::FNEG , MVT::f32, Custom);
667
668     // Use ANDPD and ORPD to simulate FCOPYSIGN.
669     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
670     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
671
672     // Lower this to FGETSIGNx86 plus an AND.
673     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
674     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
675
676     // We don't support sin/cos/fmod
677     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
678     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
679     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
680     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
681     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
682     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
683
684     // Expand FP immediates into loads from the stack, except for the special
685     // cases we handle.
686     addLegalFPImmediate(APFloat(+0.0)); // xorpd
687     addLegalFPImmediate(APFloat(+0.0f)); // xorps
688   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
689     // Use SSE for f32, x87 for f64.
690     // Set up the FP register classes.
691     addRegisterClass(MVT::f32, &X86::FR32RegClass);
692     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
693
694     // Use ANDPS to simulate FABS.
695     setOperationAction(ISD::FABS , MVT::f32, Custom);
696
697     // Use XORP to simulate FNEG.
698     setOperationAction(ISD::FNEG , MVT::f32, Custom);
699
700     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
701
702     // Use ANDPS and ORPS to simulate FCOPYSIGN.
703     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
704     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
705
706     // We don't support sin/cos/fmod
707     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
708     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
709     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
710
711     // Special cases we handle for FP constants.
712     addLegalFPImmediate(APFloat(+0.0f)); // xorps
713     addLegalFPImmediate(APFloat(+0.0)); // FLD0
714     addLegalFPImmediate(APFloat(+1.0)); // FLD1
715     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
716     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
717
718     if (!TM.Options.UnsafeFPMath) {
719       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
720       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
721       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
722     }
723   } else if (!TM.Options.UseSoftFloat) {
724     // f32 and f64 in x87.
725     // Set up the FP register classes.
726     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
727     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
728
729     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
730     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
731     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
732     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
733
734     if (!TM.Options.UnsafeFPMath) {
735       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
736       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
737       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
738       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
739       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
740       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
741     }
742     addLegalFPImmediate(APFloat(+0.0)); // FLD0
743     addLegalFPImmediate(APFloat(+1.0)); // FLD1
744     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
745     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
746     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
747     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
748     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
749     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
750   }
751
752   // We don't support FMA.
753   setOperationAction(ISD::FMA, MVT::f64, Expand);
754   setOperationAction(ISD::FMA, MVT::f32, Expand);
755
756   // Long double always uses X87.
757   if (!TM.Options.UseSoftFloat) {
758     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
759     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
760     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
761     {
762       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
763       addLegalFPImmediate(TmpFlt);  // FLD0
764       TmpFlt.changeSign();
765       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
766
767       bool ignored;
768       APFloat TmpFlt2(+1.0);
769       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
770                       &ignored);
771       addLegalFPImmediate(TmpFlt2);  // FLD1
772       TmpFlt2.changeSign();
773       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
774     }
775
776     if (!TM.Options.UnsafeFPMath) {
777       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
778       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
779       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
780     }
781
782     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
783     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
784     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
785     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
786     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
787     setOperationAction(ISD::FMA, MVT::f80, Expand);
788   }
789
790   // Always use a library call for pow.
791   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
792   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
793   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
794
795   setOperationAction(ISD::FLOG, MVT::f80, Expand);
796   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
797   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
798   setOperationAction(ISD::FEXP, MVT::f80, Expand);
799   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
800
801   // First set operation action for all vector types to either promote
802   // (for widening) or expand (for scalarization). Then we will selectively
803   // turn on ones that can be effectively codegen'd.
804   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
805            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
806     MVT VT = (MVT::SimpleValueType)i;
807     setOperationAction(ISD::ADD , VT, Expand);
808     setOperationAction(ISD::SUB , VT, Expand);
809     setOperationAction(ISD::FADD, VT, Expand);
810     setOperationAction(ISD::FNEG, VT, Expand);
811     setOperationAction(ISD::FSUB, VT, Expand);
812     setOperationAction(ISD::MUL , VT, Expand);
813     setOperationAction(ISD::FMUL, VT, Expand);
814     setOperationAction(ISD::SDIV, VT, Expand);
815     setOperationAction(ISD::UDIV, VT, Expand);
816     setOperationAction(ISD::FDIV, VT, Expand);
817     setOperationAction(ISD::SREM, VT, Expand);
818     setOperationAction(ISD::UREM, VT, Expand);
819     setOperationAction(ISD::LOAD, VT, Expand);
820     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
821     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
822     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
823     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
824     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
825     setOperationAction(ISD::FABS, VT, Expand);
826     setOperationAction(ISD::FSIN, VT, Expand);
827     setOperationAction(ISD::FSINCOS, VT, Expand);
828     setOperationAction(ISD::FCOS, VT, Expand);
829     setOperationAction(ISD::FSINCOS, VT, Expand);
830     setOperationAction(ISD::FREM, VT, Expand);
831     setOperationAction(ISD::FMA,  VT, Expand);
832     setOperationAction(ISD::FPOWI, VT, Expand);
833     setOperationAction(ISD::FSQRT, VT, Expand);
834     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
835     setOperationAction(ISD::FFLOOR, VT, Expand);
836     setOperationAction(ISD::FCEIL, VT, Expand);
837     setOperationAction(ISD::FTRUNC, VT, Expand);
838     setOperationAction(ISD::FRINT, VT, Expand);
839     setOperationAction(ISD::FNEARBYINT, VT, Expand);
840     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
841     setOperationAction(ISD::MULHS, VT, Expand);
842     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
843     setOperationAction(ISD::MULHU, VT, Expand);
844     setOperationAction(ISD::SDIVREM, VT, Expand);
845     setOperationAction(ISD::UDIVREM, VT, Expand);
846     setOperationAction(ISD::FPOW, VT, Expand);
847     setOperationAction(ISD::CTPOP, VT, Expand);
848     setOperationAction(ISD::CTTZ, VT, Expand);
849     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
850     setOperationAction(ISD::CTLZ, VT, Expand);
851     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
852     setOperationAction(ISD::SHL, VT, Expand);
853     setOperationAction(ISD::SRA, VT, Expand);
854     setOperationAction(ISD::SRL, VT, Expand);
855     setOperationAction(ISD::ROTL, VT, Expand);
856     setOperationAction(ISD::ROTR, VT, Expand);
857     setOperationAction(ISD::BSWAP, VT, Expand);
858     setOperationAction(ISD::SETCC, VT, Expand);
859     setOperationAction(ISD::FLOG, VT, Expand);
860     setOperationAction(ISD::FLOG2, VT, Expand);
861     setOperationAction(ISD::FLOG10, VT, Expand);
862     setOperationAction(ISD::FEXP, VT, Expand);
863     setOperationAction(ISD::FEXP2, VT, Expand);
864     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
865     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
866     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
867     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
868     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
869     setOperationAction(ISD::TRUNCATE, VT, Expand);
870     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
871     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
872     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
873     setOperationAction(ISD::VSELECT, VT, Expand);
874     setOperationAction(ISD::SELECT_CC, VT, Expand);
875     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
876              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
877       setTruncStoreAction(VT,
878                           (MVT::SimpleValueType)InnerVT, Expand);
879     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
880     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
881     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
882   }
883
884   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
885   // with -msoft-float, disable use of MMX as well.
886   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
887     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
888     // No operations on x86mmx supported, everything uses intrinsics.
889   }
890
891   // MMX-sized vectors (other than x86mmx) are expected to be expanded
892   // into smaller operations.
893   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
894   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
895   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
896   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
897   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
898   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
899   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
900   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
901   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
902   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
903   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
904   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
905   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
906   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
907   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
908   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
909   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
910   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
911   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
912   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
913   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
914   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
915   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
916   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
917   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
918   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
919   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
920   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
921   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
922
923   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
924     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
925
926     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
927     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
928     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
929     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
930     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
931     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
932     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
933     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
934     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
935     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
936     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
937     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
938   }
939
940   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
941     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
942
943     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
944     // registers cannot be used even for integer operations.
945     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
946     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
947     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
948     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
949
950     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
951     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
952     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
953     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
954     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
955     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
956     setOperationAction(ISD::UMUL_LOHI,          MVT::v4i32, Custom);
957     setOperationAction(ISD::SMUL_LOHI,          MVT::v4i32, Custom);
958     setOperationAction(ISD::MULHU,              MVT::v8i16, Legal);
959     setOperationAction(ISD::MULHS,              MVT::v8i16, Legal);
960     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
961     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
962     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
963     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
964     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
965     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
966     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
967     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
968     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
969     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
970     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
971     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
972
973     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
974     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
975     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
976     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
977
978     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
979     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
980     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
981     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
982     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
983
984     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
985     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
986       MVT VT = (MVT::SimpleValueType)i;
987       // Do not attempt to custom lower non-power-of-2 vectors
988       if (!isPowerOf2_32(VT.getVectorNumElements()))
989         continue;
990       // Do not attempt to custom lower non-128-bit vectors
991       if (!VT.is128BitVector())
992         continue;
993       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
994       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
995       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
996     }
997
998     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
999     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
1000     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
1001     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
1002     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
1003     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
1004
1005     if (Subtarget->is64Bit()) {
1006       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1007       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1008     }
1009
1010     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
1011     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
1012       MVT VT = (MVT::SimpleValueType)i;
1013
1014       // Do not attempt to promote non-128-bit vectors
1015       if (!VT.is128BitVector())
1016         continue;
1017
1018       setOperationAction(ISD::AND,    VT, Promote);
1019       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1020       setOperationAction(ISD::OR,     VT, Promote);
1021       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1022       setOperationAction(ISD::XOR,    VT, Promote);
1023       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1024       setOperationAction(ISD::LOAD,   VT, Promote);
1025       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1026       setOperationAction(ISD::SELECT, VT, Promote);
1027       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1028     }
1029
1030     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1031
1032     // Custom lower v2i64 and v2f64 selects.
1033     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1034     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1035     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1036     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1037
1038     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1039     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1040
1041     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1042     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1043     // As there is no 64-bit GPR available, we need build a special custom
1044     // sequence to convert from v2i32 to v2f32.
1045     if (!Subtarget->is64Bit())
1046       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1047
1048     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1049     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1050
1051     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1052
1053     setOperationAction(ISD::BITCAST,            MVT::v2i32, Custom);
1054     setOperationAction(ISD::BITCAST,            MVT::v4i16, Custom);
1055     setOperationAction(ISD::BITCAST,            MVT::v8i8,  Custom);
1056   }
1057
1058   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1059     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1060     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1061     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1062     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1063     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1064     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1065     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1066     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1067     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1068     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1069
1070     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1071     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1072     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1073     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1074     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1075     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1076     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1077     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1078     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1079     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1080
1081     // FIXME: Do we need to handle scalar-to-vector here?
1082     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1083
1084     setOperationAction(ISD::VSELECT,            MVT::v2f64, Custom);
1085     setOperationAction(ISD::VSELECT,            MVT::v2i64, Custom);
1086     setOperationAction(ISD::VSELECT,            MVT::v4i32, Custom);
1087     setOperationAction(ISD::VSELECT,            MVT::v4f32, Custom);
1088     setOperationAction(ISD::VSELECT,            MVT::v8i16, Custom);
1089     // There is no BLENDI for byte vectors. We don't need to custom lower
1090     // some vselects for now.
1091     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1092
1093     // i8 and i16 vectors are custom , because the source register and source
1094     // source memory operand types are not the same width.  f32 vectors are
1095     // custom since the immediate controlling the insert encodes additional
1096     // information.
1097     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1098     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1099     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1100     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1101
1102     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1103     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1104     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1105     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1106
1107     // FIXME: these should be Legal but thats only for the case where
1108     // the index is constant.  For now custom expand to deal with that.
1109     if (Subtarget->is64Bit()) {
1110       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1111       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1112     }
1113   }
1114
1115   if (Subtarget->hasSSE2()) {
1116     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1117     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1118
1119     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1120     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1121
1122     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1123     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1124
1125     // In the customized shift lowering, the legal cases in AVX2 will be
1126     // recognized.
1127     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1128     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1129
1130     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1131     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1132
1133     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1134   }
1135
1136   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1137     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1138     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1139     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1140     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1141     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1142     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1143
1144     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1145     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1146     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1147
1148     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1149     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1150     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1151     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1152     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1153     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1154     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1155     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1156     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1157     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1158     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1159     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1160
1161     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1162     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1163     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1164     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1165     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1166     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1167     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1168     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1169     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1170     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1171     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1172     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1173
1174     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1175     // even though v8i16 is a legal type.
1176     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1177     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1178     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1179
1180     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1181     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1182     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1183
1184     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1185     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1186
1187     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1188
1189     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1190     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1191
1192     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1193     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1194
1195     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1196     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1197
1198     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1199     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1200     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1201     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1202
1203     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1204     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1205     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1206
1207     setOperationAction(ISD::VSELECT,           MVT::v4f64, Custom);
1208     setOperationAction(ISD::VSELECT,           MVT::v4i64, Custom);
1209     setOperationAction(ISD::VSELECT,           MVT::v8i32, Custom);
1210     setOperationAction(ISD::VSELECT,           MVT::v8f32, Custom);
1211
1212     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1213     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1214     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1215     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1216     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1217     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1218     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1219     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1220     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1221     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1222     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1223     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1224
1225     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1226       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1227       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1228       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1229       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1230       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1231       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1232     }
1233
1234     if (Subtarget->hasInt256()) {
1235       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1236       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1237       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1238       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1239
1240       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1241       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1242       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1243       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1244
1245       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1246       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1247       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1248       // Don't lower v32i8 because there is no 128-bit byte mul
1249
1250       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1251       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1252       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1253       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1254
1255       setOperationAction(ISD::VSELECT,         MVT::v16i16, Custom);
1256       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1257     } else {
1258       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1259       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1260       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1261       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1262
1263       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1264       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1265       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1266       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1267
1268       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1269       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1270       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1271       // Don't lower v32i8 because there is no 128-bit byte mul
1272     }
1273
1274     // In the customized shift lowering, the legal cases in AVX2 will be
1275     // recognized.
1276     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1277     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1278
1279     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1280     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1281
1282     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1283
1284     // Custom lower several nodes for 256-bit types.
1285     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1286              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1287       MVT VT = (MVT::SimpleValueType)i;
1288
1289       // Extract subvector is special because the value type
1290       // (result) is 128-bit but the source is 256-bit wide.
1291       if (VT.is128BitVector())
1292         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1293
1294       // Do not attempt to custom lower other non-256-bit vectors
1295       if (!VT.is256BitVector())
1296         continue;
1297
1298       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1299       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1300       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1301       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1302       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1303       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1304       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1305     }
1306
1307     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1308     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1309       MVT VT = (MVT::SimpleValueType)i;
1310
1311       // Do not attempt to promote non-256-bit vectors
1312       if (!VT.is256BitVector())
1313         continue;
1314
1315       setOperationAction(ISD::AND,    VT, Promote);
1316       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1317       setOperationAction(ISD::OR,     VT, Promote);
1318       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1319       setOperationAction(ISD::XOR,    VT, Promote);
1320       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1321       setOperationAction(ISD::LOAD,   VT, Promote);
1322       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1323       setOperationAction(ISD::SELECT, VT, Promote);
1324       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1325     }
1326   }
1327
1328   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1329     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1330     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1331     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1332     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1333
1334     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1335     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1336     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1337
1338     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1339     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1340     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1341     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1342     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1343     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1344     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1345     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1346     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1347     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1348     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1349
1350     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1351     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1352     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1353     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1354     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1355     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1356
1357     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1358     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1359     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1360     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1361     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1362     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1363     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1364     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1365
1366     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1367     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1368     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1369     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1370     if (Subtarget->is64Bit()) {
1371       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1372       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1373       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1374       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1375     }
1376     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1377     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1378     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1379     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1380     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1381     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1382     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1383     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1384     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1385     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1386
1387     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1388     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1389     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1390     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1391     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1392     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1393     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1394     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1395     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1396     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1397     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1398     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1399     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1400
1401     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1402     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1403     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1404     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1405     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1406     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1407
1408     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1409     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1410
1411     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1412
1413     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1414     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1415     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1416     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1417     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1418     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1419     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1420     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1421     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1422
1423     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1424     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1425
1426     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1427     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1428
1429     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1430
1431     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1432     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1433
1434     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1435     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1436
1437     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1438     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1439
1440     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1441     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1442     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1443     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1444     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1445     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1446
1447     if (Subtarget->hasCDI()) {
1448       setOperationAction(ISD::CTLZ,             MVT::v8i64, Legal);
1449       setOperationAction(ISD::CTLZ,             MVT::v16i32, Legal);
1450     }
1451
1452     // Custom lower several nodes.
1453     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1454              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1455       MVT VT = (MVT::SimpleValueType)i;
1456
1457       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1458       // Extract subvector is special because the value type
1459       // (result) is 256/128-bit but the source is 512-bit wide.
1460       if (VT.is128BitVector() || VT.is256BitVector())
1461         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1462
1463       if (VT.getVectorElementType() == MVT::i1)
1464         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1465
1466       // Do not attempt to custom lower other non-512-bit vectors
1467       if (!VT.is512BitVector())
1468         continue;
1469
1470       if ( EltSize >= 32) {
1471         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1472         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1473         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1474         setOperationAction(ISD::VSELECT,             VT, Legal);
1475         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1476         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1477         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1478       }
1479     }
1480     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1481       MVT VT = (MVT::SimpleValueType)i;
1482
1483       // Do not attempt to promote non-256-bit vectors
1484       if (!VT.is512BitVector())
1485         continue;
1486
1487       setOperationAction(ISD::SELECT, VT, Promote);
1488       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1489     }
1490   }// has  AVX-512
1491
1492   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1493   // of this type with custom code.
1494   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1495            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1496     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1497                        Custom);
1498   }
1499
1500   // We want to custom lower some of our intrinsics.
1501   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1502   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1503   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1504   if (!Subtarget->is64Bit())
1505     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1506
1507   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1508   // handle type legalization for these operations here.
1509   //
1510   // FIXME: We really should do custom legalization for addition and
1511   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1512   // than generic legalization for 64-bit multiplication-with-overflow, though.
1513   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1514     // Add/Sub/Mul with overflow operations are custom lowered.
1515     MVT VT = IntVTs[i];
1516     setOperationAction(ISD::SADDO, VT, Custom);
1517     setOperationAction(ISD::UADDO, VT, Custom);
1518     setOperationAction(ISD::SSUBO, VT, Custom);
1519     setOperationAction(ISD::USUBO, VT, Custom);
1520     setOperationAction(ISD::SMULO, VT, Custom);
1521     setOperationAction(ISD::UMULO, VT, Custom);
1522   }
1523
1524   // There are no 8-bit 3-address imul/mul instructions
1525   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1526   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1527
1528   if (!Subtarget->is64Bit()) {
1529     // These libcalls are not available in 32-bit.
1530     setLibcallName(RTLIB::SHL_I128, nullptr);
1531     setLibcallName(RTLIB::SRL_I128, nullptr);
1532     setLibcallName(RTLIB::SRA_I128, nullptr);
1533   }
1534
1535   // Combine sin / cos into one node or libcall if possible.
1536   if (Subtarget->hasSinCos()) {
1537     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1538     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1539     if (Subtarget->isTargetDarwin()) {
1540       // For MacOSX, we don't want to the normal expansion of a libcall to
1541       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1542       // traffic.
1543       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1544       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1545     }
1546   }
1547
1548   if (Subtarget->isTargetWin64()) {
1549     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1550     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1551     setOperationAction(ISD::SREM, MVT::i128, Custom);
1552     setOperationAction(ISD::UREM, MVT::i128, Custom);
1553     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1554     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1555   }
1556
1557   // We have target-specific dag combine patterns for the following nodes:
1558   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1559   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1560   setTargetDAGCombine(ISD::VSELECT);
1561   setTargetDAGCombine(ISD::SELECT);
1562   setTargetDAGCombine(ISD::SHL);
1563   setTargetDAGCombine(ISD::SRA);
1564   setTargetDAGCombine(ISD::SRL);
1565   setTargetDAGCombine(ISD::OR);
1566   setTargetDAGCombine(ISD::AND);
1567   setTargetDAGCombine(ISD::ADD);
1568   setTargetDAGCombine(ISD::FADD);
1569   setTargetDAGCombine(ISD::FSUB);
1570   setTargetDAGCombine(ISD::FMA);
1571   setTargetDAGCombine(ISD::SUB);
1572   setTargetDAGCombine(ISD::LOAD);
1573   setTargetDAGCombine(ISD::STORE);
1574   setTargetDAGCombine(ISD::ZERO_EXTEND);
1575   setTargetDAGCombine(ISD::ANY_EXTEND);
1576   setTargetDAGCombine(ISD::SIGN_EXTEND);
1577   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1578   setTargetDAGCombine(ISD::TRUNCATE);
1579   setTargetDAGCombine(ISD::SINT_TO_FP);
1580   setTargetDAGCombine(ISD::SETCC);
1581   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
1582   setTargetDAGCombine(ISD::BUILD_VECTOR);
1583   if (Subtarget->is64Bit())
1584     setTargetDAGCombine(ISD::MUL);
1585   setTargetDAGCombine(ISD::XOR);
1586
1587   computeRegisterProperties();
1588
1589   // On Darwin, -Os means optimize for size without hurting performance,
1590   // do not reduce the limit.
1591   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1592   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1593   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1594   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1595   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1596   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1597   setPrefLoopAlignment(4); // 2^4 bytes.
1598
1599   // Predictable cmov don't hurt on atom because it's in-order.
1600   PredictableSelectIsExpensive = !Subtarget->isAtom();
1601
1602   setPrefFunctionAlignment(4); // 2^4 bytes.
1603 }
1604
1605 TargetLoweringBase::LegalizeTypeAction
1606 X86TargetLowering::getPreferredVectorAction(EVT VT) const {
1607   if (ExperimentalVectorWideningLegalization &&
1608       VT.getVectorNumElements() != 1 &&
1609       VT.getVectorElementType().getSimpleVT() != MVT::i1)
1610     return TypeWidenVector;
1611
1612   return TargetLoweringBase::getPreferredVectorAction(VT);
1613 }
1614
1615 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1616   if (!VT.isVector())
1617     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1618
1619   if (Subtarget->hasAVX512())
1620     switch(VT.getVectorNumElements()) {
1621     case  8: return MVT::v8i1;
1622     case 16: return MVT::v16i1;
1623   }
1624
1625   return VT.changeVectorElementTypeToInteger();
1626 }
1627
1628 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1629 /// the desired ByVal argument alignment.
1630 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1631   if (MaxAlign == 16)
1632     return;
1633   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1634     if (VTy->getBitWidth() == 128)
1635       MaxAlign = 16;
1636   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1637     unsigned EltAlign = 0;
1638     getMaxByValAlign(ATy->getElementType(), EltAlign);
1639     if (EltAlign > MaxAlign)
1640       MaxAlign = EltAlign;
1641   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1642     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1643       unsigned EltAlign = 0;
1644       getMaxByValAlign(STy->getElementType(i), EltAlign);
1645       if (EltAlign > MaxAlign)
1646         MaxAlign = EltAlign;
1647       if (MaxAlign == 16)
1648         break;
1649     }
1650   }
1651 }
1652
1653 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1654 /// function arguments in the caller parameter area. For X86, aggregates
1655 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1656 /// are at 4-byte boundaries.
1657 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1658   if (Subtarget->is64Bit()) {
1659     // Max of 8 and alignment of type.
1660     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1661     if (TyAlign > 8)
1662       return TyAlign;
1663     return 8;
1664   }
1665
1666   unsigned Align = 4;
1667   if (Subtarget->hasSSE1())
1668     getMaxByValAlign(Ty, Align);
1669   return Align;
1670 }
1671
1672 /// getOptimalMemOpType - Returns the target specific optimal type for load
1673 /// and store operations as a result of memset, memcpy, and memmove
1674 /// lowering. If DstAlign is zero that means it's safe to destination
1675 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1676 /// means there isn't a need to check it against alignment requirement,
1677 /// probably because the source does not need to be loaded. If 'IsMemset' is
1678 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1679 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1680 /// source is constant so it does not need to be loaded.
1681 /// It returns EVT::Other if the type should be determined using generic
1682 /// target-independent logic.
1683 EVT
1684 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1685                                        unsigned DstAlign, unsigned SrcAlign,
1686                                        bool IsMemset, bool ZeroMemset,
1687                                        bool MemcpyStrSrc,
1688                                        MachineFunction &MF) const {
1689   const Function *F = MF.getFunction();
1690   if ((!IsMemset || ZeroMemset) &&
1691       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1692                                        Attribute::NoImplicitFloat)) {
1693     if (Size >= 16 &&
1694         (Subtarget->isUnalignedMemAccessFast() ||
1695          ((DstAlign == 0 || DstAlign >= 16) &&
1696           (SrcAlign == 0 || SrcAlign >= 16)))) {
1697       if (Size >= 32) {
1698         if (Subtarget->hasInt256())
1699           return MVT::v8i32;
1700         if (Subtarget->hasFp256())
1701           return MVT::v8f32;
1702       }
1703       if (Subtarget->hasSSE2())
1704         return MVT::v4i32;
1705       if (Subtarget->hasSSE1())
1706         return MVT::v4f32;
1707     } else if (!MemcpyStrSrc && Size >= 8 &&
1708                !Subtarget->is64Bit() &&
1709                Subtarget->hasSSE2()) {
1710       // Do not use f64 to lower memcpy if source is string constant. It's
1711       // better to use i32 to avoid the loads.
1712       return MVT::f64;
1713     }
1714   }
1715   if (Subtarget->is64Bit() && Size >= 8)
1716     return MVT::i64;
1717   return MVT::i32;
1718 }
1719
1720 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1721   if (VT == MVT::f32)
1722     return X86ScalarSSEf32;
1723   else if (VT == MVT::f64)
1724     return X86ScalarSSEf64;
1725   return true;
1726 }
1727
1728 bool
1729 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
1730                                                  unsigned,
1731                                                  bool *Fast) const {
1732   if (Fast)
1733     *Fast = Subtarget->isUnalignedMemAccessFast();
1734   return true;
1735 }
1736
1737 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1738 /// current function.  The returned value is a member of the
1739 /// MachineJumpTableInfo::JTEntryKind enum.
1740 unsigned X86TargetLowering::getJumpTableEncoding() const {
1741   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1742   // symbol.
1743   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1744       Subtarget->isPICStyleGOT())
1745     return MachineJumpTableInfo::EK_Custom32;
1746
1747   // Otherwise, use the normal jump table encoding heuristics.
1748   return TargetLowering::getJumpTableEncoding();
1749 }
1750
1751 const MCExpr *
1752 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1753                                              const MachineBasicBlock *MBB,
1754                                              unsigned uid,MCContext &Ctx) const{
1755   assert(MBB->getParent()->getTarget().getRelocationModel() == Reloc::PIC_ &&
1756          Subtarget->isPICStyleGOT());
1757   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1758   // entries.
1759   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1760                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1761 }
1762
1763 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1764 /// jumptable.
1765 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1766                                                     SelectionDAG &DAG) const {
1767   if (!Subtarget->is64Bit())
1768     // This doesn't have SDLoc associated with it, but is not really the
1769     // same as a Register.
1770     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1771   return Table;
1772 }
1773
1774 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1775 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1776 /// MCExpr.
1777 const MCExpr *X86TargetLowering::
1778 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1779                              MCContext &Ctx) const {
1780   // X86-64 uses RIP relative addressing based on the jump table label.
1781   if (Subtarget->isPICStyleRIPRel())
1782     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1783
1784   // Otherwise, the reference is relative to the PIC base.
1785   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1786 }
1787
1788 // FIXME: Why this routine is here? Move to RegInfo!
1789 std::pair<const TargetRegisterClass*, uint8_t>
1790 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1791   const TargetRegisterClass *RRC = nullptr;
1792   uint8_t Cost = 1;
1793   switch (VT.SimpleTy) {
1794   default:
1795     return TargetLowering::findRepresentativeClass(VT);
1796   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1797     RRC = Subtarget->is64Bit() ?
1798       (const TargetRegisterClass*)&X86::GR64RegClass :
1799       (const TargetRegisterClass*)&X86::GR32RegClass;
1800     break;
1801   case MVT::x86mmx:
1802     RRC = &X86::VR64RegClass;
1803     break;
1804   case MVT::f32: case MVT::f64:
1805   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1806   case MVT::v4f32: case MVT::v2f64:
1807   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1808   case MVT::v4f64:
1809     RRC = &X86::VR128RegClass;
1810     break;
1811   }
1812   return std::make_pair(RRC, Cost);
1813 }
1814
1815 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1816                                                unsigned &Offset) const {
1817   if (!Subtarget->isTargetLinux())
1818     return false;
1819
1820   if (Subtarget->is64Bit()) {
1821     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1822     Offset = 0x28;
1823     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1824       AddressSpace = 256;
1825     else
1826       AddressSpace = 257;
1827   } else {
1828     // %gs:0x14 on i386
1829     Offset = 0x14;
1830     AddressSpace = 256;
1831   }
1832   return true;
1833 }
1834
1835 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1836                                             unsigned DestAS) const {
1837   assert(SrcAS != DestAS && "Expected different address spaces!");
1838
1839   return SrcAS < 256 && DestAS < 256;
1840 }
1841
1842 //===----------------------------------------------------------------------===//
1843 //               Return Value Calling Convention Implementation
1844 //===----------------------------------------------------------------------===//
1845
1846 #include "X86GenCallingConv.inc"
1847
1848 bool
1849 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1850                                   MachineFunction &MF, bool isVarArg,
1851                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1852                         LLVMContext &Context) const {
1853   SmallVector<CCValAssign, 16> RVLocs;
1854   CCState CCInfo(CallConv, isVarArg, MF, MF.getTarget(),
1855                  RVLocs, Context);
1856   return CCInfo.CheckReturn(Outs, RetCC_X86);
1857 }
1858
1859 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1860   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
1861   return ScratchRegs;
1862 }
1863
1864 SDValue
1865 X86TargetLowering::LowerReturn(SDValue Chain,
1866                                CallingConv::ID CallConv, bool isVarArg,
1867                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1868                                const SmallVectorImpl<SDValue> &OutVals,
1869                                SDLoc dl, SelectionDAG &DAG) const {
1870   MachineFunction &MF = DAG.getMachineFunction();
1871   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1872
1873   SmallVector<CCValAssign, 16> RVLocs;
1874   CCState CCInfo(CallConv, isVarArg, MF, DAG.getTarget(),
1875                  RVLocs, *DAG.getContext());
1876   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1877
1878   SDValue Flag;
1879   SmallVector<SDValue, 6> RetOps;
1880   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1881   // Operand #1 = Bytes To Pop
1882   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1883                    MVT::i16));
1884
1885   // Copy the result values into the output registers.
1886   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1887     CCValAssign &VA = RVLocs[i];
1888     assert(VA.isRegLoc() && "Can only return in registers!");
1889     SDValue ValToCopy = OutVals[i];
1890     EVT ValVT = ValToCopy.getValueType();
1891
1892     // Promote values to the appropriate types
1893     if (VA.getLocInfo() == CCValAssign::SExt)
1894       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1895     else if (VA.getLocInfo() == CCValAssign::ZExt)
1896       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1897     else if (VA.getLocInfo() == CCValAssign::AExt)
1898       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1899     else if (VA.getLocInfo() == CCValAssign::BCvt)
1900       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1901
1902     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1903            "Unexpected FP-extend for return value.");  
1904
1905     // If this is x86-64, and we disabled SSE, we can't return FP values,
1906     // or SSE or MMX vectors.
1907     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1908          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1909           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1910       report_fatal_error("SSE register return with SSE disabled");
1911     }
1912     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1913     // llvm-gcc has never done it right and no one has noticed, so this
1914     // should be OK for now.
1915     if (ValVT == MVT::f64 &&
1916         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1917       report_fatal_error("SSE2 register return with SSE2 disabled");
1918
1919     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1920     // the RET instruction and handled by the FP Stackifier.
1921     if (VA.getLocReg() == X86::ST0 ||
1922         VA.getLocReg() == X86::ST1) {
1923       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1924       // change the value to the FP stack register class.
1925       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1926         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1927       RetOps.push_back(ValToCopy);
1928       // Don't emit a copytoreg.
1929       continue;
1930     }
1931
1932     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1933     // which is returned in RAX / RDX.
1934     if (Subtarget->is64Bit()) {
1935       if (ValVT == MVT::x86mmx) {
1936         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1937           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1938           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1939                                   ValToCopy);
1940           // If we don't have SSE2 available, convert to v4f32 so the generated
1941           // register is legal.
1942           if (!Subtarget->hasSSE2())
1943             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1944         }
1945       }
1946     }
1947
1948     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1949     Flag = Chain.getValue(1);
1950     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1951   }
1952
1953   // The x86-64 ABIs require that for returning structs by value we copy
1954   // the sret argument into %rax/%eax (depending on ABI) for the return.
1955   // Win32 requires us to put the sret argument to %eax as well.
1956   // We saved the argument into a virtual register in the entry block,
1957   // so now we copy the value out and into %rax/%eax.
1958   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1959       (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
1960     MachineFunction &MF = DAG.getMachineFunction();
1961     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1962     unsigned Reg = FuncInfo->getSRetReturnReg();
1963     assert(Reg &&
1964            "SRetReturnReg should have been set in LowerFormalArguments().");
1965     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1966
1967     unsigned RetValReg
1968         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1969           X86::RAX : X86::EAX;
1970     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1971     Flag = Chain.getValue(1);
1972
1973     // RAX/EAX now acts like a return value.
1974     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1975   }
1976
1977   RetOps[0] = Chain;  // Update chain.
1978
1979   // Add the flag if we have it.
1980   if (Flag.getNode())
1981     RetOps.push_back(Flag);
1982
1983   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
1984 }
1985
1986 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1987   if (N->getNumValues() != 1)
1988     return false;
1989   if (!N->hasNUsesOfValue(1, 0))
1990     return false;
1991
1992   SDValue TCChain = Chain;
1993   SDNode *Copy = *N->use_begin();
1994   if (Copy->getOpcode() == ISD::CopyToReg) {
1995     // If the copy has a glue operand, we conservatively assume it isn't safe to
1996     // perform a tail call.
1997     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1998       return false;
1999     TCChain = Copy->getOperand(0);
2000   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
2001     return false;
2002
2003   bool HasRet = false;
2004   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2005        UI != UE; ++UI) {
2006     if (UI->getOpcode() != X86ISD::RET_FLAG)
2007       return false;
2008     HasRet = true;
2009   }
2010
2011   if (!HasRet)
2012     return false;
2013
2014   Chain = TCChain;
2015   return true;
2016 }
2017
2018 MVT
2019 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
2020                                             ISD::NodeType ExtendKind) const {
2021   MVT ReturnMVT;
2022   // TODO: Is this also valid on 32-bit?
2023   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
2024     ReturnMVT = MVT::i8;
2025   else
2026     ReturnMVT = MVT::i32;
2027
2028   MVT MinVT = getRegisterType(ReturnMVT);
2029   return VT.bitsLT(MinVT) ? MinVT : VT;
2030 }
2031
2032 /// LowerCallResult - Lower the result values of a call into the
2033 /// appropriate copies out of appropriate physical registers.
2034 ///
2035 SDValue
2036 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2037                                    CallingConv::ID CallConv, bool isVarArg,
2038                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2039                                    SDLoc dl, SelectionDAG &DAG,
2040                                    SmallVectorImpl<SDValue> &InVals) const {
2041
2042   // Assign locations to each value returned by this call.
2043   SmallVector<CCValAssign, 16> RVLocs;
2044   bool Is64Bit = Subtarget->is64Bit();
2045   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2046                  DAG.getTarget(), RVLocs, *DAG.getContext());
2047   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2048
2049   // Copy all of the result registers out of their specified physreg.
2050   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2051     CCValAssign &VA = RVLocs[i];
2052     EVT CopyVT = VA.getValVT();
2053
2054     // If this is x86-64, and we disabled SSE, we can't return FP values
2055     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2056         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2057       report_fatal_error("SSE register return with SSE disabled");
2058     }
2059
2060     SDValue Val;
2061
2062     // If this is a call to a function that returns an fp value on the floating
2063     // point stack, we must guarantee the value is popped from the stack, so
2064     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2065     // if the return value is not used. We use the FpPOP_RETVAL instruction
2066     // instead.
2067     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2068       // If we prefer to use the value in xmm registers, copy it out as f80 and
2069       // use a truncate to move it from fp stack reg to xmm reg.
2070       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2071       SDValue Ops[] = { Chain, InFlag };
2072       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2073                                          MVT::Other, MVT::Glue, Ops), 1);
2074       Val = Chain.getValue(0);
2075
2076       // Round the f80 to the right size, which also moves it to the appropriate
2077       // xmm register.
2078       if (CopyVT != VA.getValVT())
2079         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2080                           // This truncation won't change the value.
2081                           DAG.getIntPtrConstant(1));
2082     } else {
2083       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2084                                  CopyVT, InFlag).getValue(1);
2085       Val = Chain.getValue(0);
2086     }
2087     InFlag = Chain.getValue(2);
2088     InVals.push_back(Val);
2089   }
2090
2091   return Chain;
2092 }
2093
2094 //===----------------------------------------------------------------------===//
2095 //                C & StdCall & Fast Calling Convention implementation
2096 //===----------------------------------------------------------------------===//
2097 //  StdCall calling convention seems to be standard for many Windows' API
2098 //  routines and around. It differs from C calling convention just a little:
2099 //  callee should clean up the stack, not caller. Symbols should be also
2100 //  decorated in some fancy way :) It doesn't support any vector arguments.
2101 //  For info on fast calling convention see Fast Calling Convention (tail call)
2102 //  implementation LowerX86_32FastCCCallTo.
2103
2104 /// CallIsStructReturn - Determines whether a call uses struct return
2105 /// semantics.
2106 enum StructReturnType {
2107   NotStructReturn,
2108   RegStructReturn,
2109   StackStructReturn
2110 };
2111 static StructReturnType
2112 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2113   if (Outs.empty())
2114     return NotStructReturn;
2115
2116   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2117   if (!Flags.isSRet())
2118     return NotStructReturn;
2119   if (Flags.isInReg())
2120     return RegStructReturn;
2121   return StackStructReturn;
2122 }
2123
2124 /// ArgsAreStructReturn - Determines whether a function uses struct
2125 /// return semantics.
2126 static StructReturnType
2127 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2128   if (Ins.empty())
2129     return NotStructReturn;
2130
2131   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2132   if (!Flags.isSRet())
2133     return NotStructReturn;
2134   if (Flags.isInReg())
2135     return RegStructReturn;
2136   return StackStructReturn;
2137 }
2138
2139 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2140 /// by "Src" to address "Dst" with size and alignment information specified by
2141 /// the specific parameter attribute. The copy will be passed as a byval
2142 /// function parameter.
2143 static SDValue
2144 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2145                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2146                           SDLoc dl) {
2147   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2148
2149   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2150                        /*isVolatile*/false, /*AlwaysInline=*/true,
2151                        MachinePointerInfo(), MachinePointerInfo());
2152 }
2153
2154 /// IsTailCallConvention - Return true if the calling convention is one that
2155 /// supports tail call optimization.
2156 static bool IsTailCallConvention(CallingConv::ID CC) {
2157   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2158           CC == CallingConv::HiPE);
2159 }
2160
2161 /// \brief Return true if the calling convention is a C calling convention.
2162 static bool IsCCallConvention(CallingConv::ID CC) {
2163   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2164           CC == CallingConv::X86_64_SysV);
2165 }
2166
2167 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2168   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2169     return false;
2170
2171   CallSite CS(CI);
2172   CallingConv::ID CalleeCC = CS.getCallingConv();
2173   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2174     return false;
2175
2176   return true;
2177 }
2178
2179 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2180 /// a tailcall target by changing its ABI.
2181 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2182                                    bool GuaranteedTailCallOpt) {
2183   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2184 }
2185
2186 SDValue
2187 X86TargetLowering::LowerMemArgument(SDValue Chain,
2188                                     CallingConv::ID CallConv,
2189                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2190                                     SDLoc dl, SelectionDAG &DAG,
2191                                     const CCValAssign &VA,
2192                                     MachineFrameInfo *MFI,
2193                                     unsigned i) const {
2194   // Create the nodes corresponding to a load from this parameter slot.
2195   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2196   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(
2197       CallConv, DAG.getTarget().Options.GuaranteedTailCallOpt);
2198   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2199   EVT ValVT;
2200
2201   // If value is passed by pointer we have address passed instead of the value
2202   // itself.
2203   if (VA.getLocInfo() == CCValAssign::Indirect)
2204     ValVT = VA.getLocVT();
2205   else
2206     ValVT = VA.getValVT();
2207
2208   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2209   // changed with more analysis.
2210   // In case of tail call optimization mark all arguments mutable. Since they
2211   // could be overwritten by lowering of arguments in case of a tail call.
2212   if (Flags.isByVal()) {
2213     unsigned Bytes = Flags.getByValSize();
2214     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2215     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2216     return DAG.getFrameIndex(FI, getPointerTy());
2217   } else {
2218     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2219                                     VA.getLocMemOffset(), isImmutable);
2220     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2221     return DAG.getLoad(ValVT, dl, Chain, FIN,
2222                        MachinePointerInfo::getFixedStack(FI),
2223                        false, false, false, 0);
2224   }
2225 }
2226
2227 SDValue
2228 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2229                                         CallingConv::ID CallConv,
2230                                         bool isVarArg,
2231                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2232                                         SDLoc dl,
2233                                         SelectionDAG &DAG,
2234                                         SmallVectorImpl<SDValue> &InVals)
2235                                           const {
2236   MachineFunction &MF = DAG.getMachineFunction();
2237   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2238
2239   const Function* Fn = MF.getFunction();
2240   if (Fn->hasExternalLinkage() &&
2241       Subtarget->isTargetCygMing() &&
2242       Fn->getName() == "main")
2243     FuncInfo->setForceFramePointer(true);
2244
2245   MachineFrameInfo *MFI = MF.getFrameInfo();
2246   bool Is64Bit = Subtarget->is64Bit();
2247   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2248
2249   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2250          "Var args not supported with calling convention fastcc, ghc or hipe");
2251
2252   // Assign locations to all of the incoming arguments.
2253   SmallVector<CCValAssign, 16> ArgLocs;
2254   CCState CCInfo(CallConv, isVarArg, MF, DAG.getTarget(),
2255                  ArgLocs, *DAG.getContext());
2256
2257   // Allocate shadow area for Win64
2258   if (IsWin64)
2259     CCInfo.AllocateStack(32, 8);
2260
2261   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2262
2263   unsigned LastVal = ~0U;
2264   SDValue ArgValue;
2265   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2266     CCValAssign &VA = ArgLocs[i];
2267     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2268     // places.
2269     assert(VA.getValNo() != LastVal &&
2270            "Don't support value assigned to multiple locs yet");
2271     (void)LastVal;
2272     LastVal = VA.getValNo();
2273
2274     if (VA.isRegLoc()) {
2275       EVT RegVT = VA.getLocVT();
2276       const TargetRegisterClass *RC;
2277       if (RegVT == MVT::i32)
2278         RC = &X86::GR32RegClass;
2279       else if (Is64Bit && RegVT == MVT::i64)
2280         RC = &X86::GR64RegClass;
2281       else if (RegVT == MVT::f32)
2282         RC = &X86::FR32RegClass;
2283       else if (RegVT == MVT::f64)
2284         RC = &X86::FR64RegClass;
2285       else if (RegVT.is512BitVector())
2286         RC = &X86::VR512RegClass;
2287       else if (RegVT.is256BitVector())
2288         RC = &X86::VR256RegClass;
2289       else if (RegVT.is128BitVector())
2290         RC = &X86::VR128RegClass;
2291       else if (RegVT == MVT::x86mmx)
2292         RC = &X86::VR64RegClass;
2293       else if (RegVT == MVT::i1)
2294         RC = &X86::VK1RegClass;
2295       else if (RegVT == MVT::v8i1)
2296         RC = &X86::VK8RegClass;
2297       else if (RegVT == MVT::v16i1)
2298         RC = &X86::VK16RegClass;
2299       else
2300         llvm_unreachable("Unknown argument type!");
2301
2302       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2303       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2304
2305       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2306       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2307       // right size.
2308       if (VA.getLocInfo() == CCValAssign::SExt)
2309         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2310                                DAG.getValueType(VA.getValVT()));
2311       else if (VA.getLocInfo() == CCValAssign::ZExt)
2312         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2313                                DAG.getValueType(VA.getValVT()));
2314       else if (VA.getLocInfo() == CCValAssign::BCvt)
2315         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2316
2317       if (VA.isExtInLoc()) {
2318         // Handle MMX values passed in XMM regs.
2319         if (RegVT.isVector())
2320           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2321         else
2322           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2323       }
2324     } else {
2325       assert(VA.isMemLoc());
2326       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2327     }
2328
2329     // If value is passed via pointer - do a load.
2330     if (VA.getLocInfo() == CCValAssign::Indirect)
2331       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2332                              MachinePointerInfo(), false, false, false, 0);
2333
2334     InVals.push_back(ArgValue);
2335   }
2336
2337   if (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC()) {
2338     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2339       // The x86-64 ABIs require that for returning structs by value we copy
2340       // the sret argument into %rax/%eax (depending on ABI) for the return.
2341       // Win32 requires us to put the sret argument to %eax as well.
2342       // Save the argument into a virtual register so that we can access it
2343       // from the return points.
2344       if (Ins[i].Flags.isSRet()) {
2345         unsigned Reg = FuncInfo->getSRetReturnReg();
2346         if (!Reg) {
2347           MVT PtrTy = getPointerTy();
2348           Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2349           FuncInfo->setSRetReturnReg(Reg);
2350         }
2351         SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]);
2352         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2353         break;
2354       }
2355     }
2356   }
2357
2358   unsigned StackSize = CCInfo.getNextStackOffset();
2359   // Align stack specially for tail calls.
2360   if (FuncIsMadeTailCallSafe(CallConv,
2361                              MF.getTarget().Options.GuaranteedTailCallOpt))
2362     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2363
2364   // If the function takes variable number of arguments, make a frame index for
2365   // the start of the first vararg value... for expansion of llvm.va_start.
2366   if (isVarArg) {
2367     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2368                     CallConv != CallingConv::X86_ThisCall)) {
2369       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2370     }
2371     if (Is64Bit) {
2372       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2373
2374       // FIXME: We should really autogenerate these arrays
2375       static const MCPhysReg GPR64ArgRegsWin64[] = {
2376         X86::RCX, X86::RDX, X86::R8,  X86::R9
2377       };
2378       static const MCPhysReg GPR64ArgRegs64Bit[] = {
2379         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2380       };
2381       static const MCPhysReg XMMArgRegs64Bit[] = {
2382         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2383         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2384       };
2385       const MCPhysReg *GPR64ArgRegs;
2386       unsigned NumXMMRegs = 0;
2387
2388       if (IsWin64) {
2389         // The XMM registers which might contain var arg parameters are shadowed
2390         // in their paired GPR.  So we only need to save the GPR to their home
2391         // slots.
2392         TotalNumIntRegs = 4;
2393         GPR64ArgRegs = GPR64ArgRegsWin64;
2394       } else {
2395         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2396         GPR64ArgRegs = GPR64ArgRegs64Bit;
2397
2398         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2399                                                 TotalNumXMMRegs);
2400       }
2401       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2402                                                        TotalNumIntRegs);
2403
2404       bool NoImplicitFloatOps = Fn->getAttributes().
2405         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2406       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2407              "SSE register cannot be used when SSE is disabled!");
2408       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2409                NoImplicitFloatOps) &&
2410              "SSE register cannot be used when SSE is disabled!");
2411       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2412           !Subtarget->hasSSE1())
2413         // Kernel mode asks for SSE to be disabled, so don't push them
2414         // on the stack.
2415         TotalNumXMMRegs = 0;
2416
2417       if (IsWin64) {
2418         const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
2419         // Get to the caller-allocated home save location.  Add 8 to account
2420         // for the return address.
2421         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2422         FuncInfo->setRegSaveFrameIndex(
2423           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2424         // Fixup to set vararg frame on shadow area (4 x i64).
2425         if (NumIntRegs < 4)
2426           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2427       } else {
2428         // For X86-64, if there are vararg parameters that are passed via
2429         // registers, then we must store them to their spots on the stack so
2430         // they may be loaded by deferencing the result of va_next.
2431         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2432         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2433         FuncInfo->setRegSaveFrameIndex(
2434           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2435                                false));
2436       }
2437
2438       // Store the integer parameter registers.
2439       SmallVector<SDValue, 8> MemOps;
2440       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2441                                         getPointerTy());
2442       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2443       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2444         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2445                                   DAG.getIntPtrConstant(Offset));
2446         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2447                                      &X86::GR64RegClass);
2448         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2449         SDValue Store =
2450           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2451                        MachinePointerInfo::getFixedStack(
2452                          FuncInfo->getRegSaveFrameIndex(), Offset),
2453                        false, false, 0);
2454         MemOps.push_back(Store);
2455         Offset += 8;
2456       }
2457
2458       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2459         // Now store the XMM (fp + vector) parameter registers.
2460         SmallVector<SDValue, 11> SaveXMMOps;
2461         SaveXMMOps.push_back(Chain);
2462
2463         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2464         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2465         SaveXMMOps.push_back(ALVal);
2466
2467         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2468                                FuncInfo->getRegSaveFrameIndex()));
2469         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2470                                FuncInfo->getVarArgsFPOffset()));
2471
2472         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2473           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2474                                        &X86::VR128RegClass);
2475           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2476           SaveXMMOps.push_back(Val);
2477         }
2478         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2479                                      MVT::Other, SaveXMMOps));
2480       }
2481
2482       if (!MemOps.empty())
2483         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2484     }
2485   }
2486
2487   // Some CCs need callee pop.
2488   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2489                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2490     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2491   } else {
2492     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2493     // If this is an sret function, the return should pop the hidden pointer.
2494     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2495         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2496         argsAreStructReturn(Ins) == StackStructReturn)
2497       FuncInfo->setBytesToPopOnReturn(4);
2498   }
2499
2500   if (!Is64Bit) {
2501     // RegSaveFrameIndex is X86-64 only.
2502     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2503     if (CallConv == CallingConv::X86_FastCall ||
2504         CallConv == CallingConv::X86_ThisCall)
2505       // fastcc functions can't have varargs.
2506       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2507   }
2508
2509   FuncInfo->setArgumentStackSize(StackSize);
2510
2511   return Chain;
2512 }
2513
2514 SDValue
2515 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2516                                     SDValue StackPtr, SDValue Arg,
2517                                     SDLoc dl, SelectionDAG &DAG,
2518                                     const CCValAssign &VA,
2519                                     ISD::ArgFlagsTy Flags) const {
2520   unsigned LocMemOffset = VA.getLocMemOffset();
2521   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2522   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2523   if (Flags.isByVal())
2524     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2525
2526   return DAG.getStore(Chain, dl, Arg, PtrOff,
2527                       MachinePointerInfo::getStack(LocMemOffset),
2528                       false, false, 0);
2529 }
2530
2531 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2532 /// optimization is performed and it is required.
2533 SDValue
2534 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2535                                            SDValue &OutRetAddr, SDValue Chain,
2536                                            bool IsTailCall, bool Is64Bit,
2537                                            int FPDiff, SDLoc dl) const {
2538   // Adjust the Return address stack slot.
2539   EVT VT = getPointerTy();
2540   OutRetAddr = getReturnAddressFrameIndex(DAG);
2541
2542   // Load the "old" Return address.
2543   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2544                            false, false, false, 0);
2545   return SDValue(OutRetAddr.getNode(), 1);
2546 }
2547
2548 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2549 /// optimization is performed and it is required (FPDiff!=0).
2550 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2551                                         SDValue Chain, SDValue RetAddrFrIdx,
2552                                         EVT PtrVT, unsigned SlotSize,
2553                                         int FPDiff, SDLoc dl) {
2554   // Store the return address to the appropriate stack slot.
2555   if (!FPDiff) return Chain;
2556   // Calculate the new stack slot for the return address.
2557   int NewReturnAddrFI =
2558     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2559                                          false);
2560   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2561   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2562                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2563                        false, false, 0);
2564   return Chain;
2565 }
2566
2567 SDValue
2568 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2569                              SmallVectorImpl<SDValue> &InVals) const {
2570   SelectionDAG &DAG                     = CLI.DAG;
2571   SDLoc &dl                             = CLI.DL;
2572   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2573   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2574   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2575   SDValue Chain                         = CLI.Chain;
2576   SDValue Callee                        = CLI.Callee;
2577   CallingConv::ID CallConv              = CLI.CallConv;
2578   bool &isTailCall                      = CLI.IsTailCall;
2579   bool isVarArg                         = CLI.IsVarArg;
2580
2581   MachineFunction &MF = DAG.getMachineFunction();
2582   bool Is64Bit        = Subtarget->is64Bit();
2583   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2584   StructReturnType SR = callIsStructReturn(Outs);
2585   bool IsSibcall      = false;
2586
2587   if (MF.getTarget().Options.DisableTailCalls)
2588     isTailCall = false;
2589
2590   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
2591   if (IsMustTail) {
2592     // Force this to be a tail call.  The verifier rules are enough to ensure
2593     // that we can lower this successfully without moving the return address
2594     // around.
2595     isTailCall = true;
2596   } else if (isTailCall) {
2597     // Check if it's really possible to do a tail call.
2598     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2599                     isVarArg, SR != NotStructReturn,
2600                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2601                     Outs, OutVals, Ins, DAG);
2602
2603     // Sibcalls are automatically detected tailcalls which do not require
2604     // ABI changes.
2605     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2606       IsSibcall = true;
2607
2608     if (isTailCall)
2609       ++NumTailCalls;
2610   }
2611
2612   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2613          "Var args not supported with calling convention fastcc, ghc or hipe");
2614
2615   // Analyze operands of the call, assigning locations to each operand.
2616   SmallVector<CCValAssign, 16> ArgLocs;
2617   CCState CCInfo(CallConv, isVarArg, MF, MF.getTarget(),
2618                  ArgLocs, *DAG.getContext());
2619
2620   // Allocate shadow area for Win64
2621   if (IsWin64)
2622     CCInfo.AllocateStack(32, 8);
2623
2624   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2625
2626   // Get a count of how many bytes are to be pushed on the stack.
2627   unsigned NumBytes = CCInfo.getNextStackOffset();
2628   if (IsSibcall)
2629     // This is a sibcall. The memory operands are available in caller's
2630     // own caller's stack.
2631     NumBytes = 0;
2632   else if (MF.getTarget().Options.GuaranteedTailCallOpt &&
2633            IsTailCallConvention(CallConv))
2634     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2635
2636   int FPDiff = 0;
2637   if (isTailCall && !IsSibcall && !IsMustTail) {
2638     // Lower arguments at fp - stackoffset + fpdiff.
2639     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2640     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2641
2642     FPDiff = NumBytesCallerPushed - NumBytes;
2643
2644     // Set the delta of movement of the returnaddr stackslot.
2645     // But only set if delta is greater than previous delta.
2646     if (FPDiff < X86Info->getTCReturnAddrDelta())
2647       X86Info->setTCReturnAddrDelta(FPDiff);
2648   }
2649
2650   unsigned NumBytesToPush = NumBytes;
2651   unsigned NumBytesToPop = NumBytes;
2652
2653   // If we have an inalloca argument, all stack space has already been allocated
2654   // for us and be right at the top of the stack.  We don't support multiple
2655   // arguments passed in memory when using inalloca.
2656   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2657     NumBytesToPush = 0;
2658     assert(ArgLocs.back().getLocMemOffset() == 0 &&
2659            "an inalloca argument must be the only memory argument");
2660   }
2661
2662   if (!IsSibcall)
2663     Chain = DAG.getCALLSEQ_START(
2664         Chain, DAG.getIntPtrConstant(NumBytesToPush, true), dl);
2665
2666   SDValue RetAddrFrIdx;
2667   // Load return address for tail calls.
2668   if (isTailCall && FPDiff)
2669     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2670                                     Is64Bit, FPDiff, dl);
2671
2672   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2673   SmallVector<SDValue, 8> MemOpChains;
2674   SDValue StackPtr;
2675
2676   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2677   // of tail call optimization arguments are handle later.
2678   const X86RegisterInfo *RegInfo =
2679     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
2680   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2681     // Skip inalloca arguments, they have already been written.
2682     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2683     if (Flags.isInAlloca())
2684       continue;
2685
2686     CCValAssign &VA = ArgLocs[i];
2687     EVT RegVT = VA.getLocVT();
2688     SDValue Arg = OutVals[i];
2689     bool isByVal = Flags.isByVal();
2690
2691     // Promote the value if needed.
2692     switch (VA.getLocInfo()) {
2693     default: llvm_unreachable("Unknown loc info!");
2694     case CCValAssign::Full: break;
2695     case CCValAssign::SExt:
2696       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2697       break;
2698     case CCValAssign::ZExt:
2699       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2700       break;
2701     case CCValAssign::AExt:
2702       if (RegVT.is128BitVector()) {
2703         // Special case: passing MMX values in XMM registers.
2704         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2705         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2706         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2707       } else
2708         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2709       break;
2710     case CCValAssign::BCvt:
2711       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2712       break;
2713     case CCValAssign::Indirect: {
2714       // Store the argument.
2715       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2716       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2717       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2718                            MachinePointerInfo::getFixedStack(FI),
2719                            false, false, 0);
2720       Arg = SpillSlot;
2721       break;
2722     }
2723     }
2724
2725     if (VA.isRegLoc()) {
2726       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2727       if (isVarArg && IsWin64) {
2728         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2729         // shadow reg if callee is a varargs function.
2730         unsigned ShadowReg = 0;
2731         switch (VA.getLocReg()) {
2732         case X86::XMM0: ShadowReg = X86::RCX; break;
2733         case X86::XMM1: ShadowReg = X86::RDX; break;
2734         case X86::XMM2: ShadowReg = X86::R8; break;
2735         case X86::XMM3: ShadowReg = X86::R9; break;
2736         }
2737         if (ShadowReg)
2738           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2739       }
2740     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2741       assert(VA.isMemLoc());
2742       if (!StackPtr.getNode())
2743         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2744                                       getPointerTy());
2745       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2746                                              dl, DAG, VA, Flags));
2747     }
2748   }
2749
2750   if (!MemOpChains.empty())
2751     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
2752
2753   if (Subtarget->isPICStyleGOT()) {
2754     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2755     // GOT pointer.
2756     if (!isTailCall) {
2757       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2758                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2759     } else {
2760       // If we are tail calling and generating PIC/GOT style code load the
2761       // address of the callee into ECX. The value in ecx is used as target of
2762       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2763       // for tail calls on PIC/GOT architectures. Normally we would just put the
2764       // address of GOT into ebx and then call target@PLT. But for tail calls
2765       // ebx would be restored (since ebx is callee saved) before jumping to the
2766       // target@PLT.
2767
2768       // Note: The actual moving to ECX is done further down.
2769       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2770       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2771           !G->getGlobal()->hasProtectedVisibility())
2772         Callee = LowerGlobalAddress(Callee, DAG);
2773       else if (isa<ExternalSymbolSDNode>(Callee))
2774         Callee = LowerExternalSymbol(Callee, DAG);
2775     }
2776   }
2777
2778   if (Is64Bit && isVarArg && !IsWin64) {
2779     // From AMD64 ABI document:
2780     // For calls that may call functions that use varargs or stdargs
2781     // (prototype-less calls or calls to functions containing ellipsis (...) in
2782     // the declaration) %al is used as hidden argument to specify the number
2783     // of SSE registers used. The contents of %al do not need to match exactly
2784     // the number of registers, but must be an ubound on the number of SSE
2785     // registers used and is in the range 0 - 8 inclusive.
2786
2787     // Count the number of XMM registers allocated.
2788     static const MCPhysReg XMMArgRegs[] = {
2789       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2790       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2791     };
2792     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2793     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2794            && "SSE registers cannot be used when SSE is disabled");
2795
2796     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2797                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2798   }
2799
2800   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
2801   // don't need this because the eligibility check rejects calls that require
2802   // shuffling arguments passed in memory.
2803   if (!IsSibcall && isTailCall) {
2804     // Force all the incoming stack arguments to be loaded from the stack
2805     // before any new outgoing arguments are stored to the stack, because the
2806     // outgoing stack slots may alias the incoming argument stack slots, and
2807     // the alias isn't otherwise explicit. This is slightly more conservative
2808     // than necessary, because it means that each store effectively depends
2809     // on every argument instead of just those arguments it would clobber.
2810     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2811
2812     SmallVector<SDValue, 8> MemOpChains2;
2813     SDValue FIN;
2814     int FI = 0;
2815     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2816       CCValAssign &VA = ArgLocs[i];
2817       if (VA.isRegLoc())
2818         continue;
2819       assert(VA.isMemLoc());
2820       SDValue Arg = OutVals[i];
2821       ISD::ArgFlagsTy Flags = Outs[i].Flags;
2822       // Skip inalloca arguments.  They don't require any work.
2823       if (Flags.isInAlloca())
2824         continue;
2825       // Create frame index.
2826       int32_t Offset = VA.getLocMemOffset()+FPDiff;
2827       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2828       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2829       FIN = DAG.getFrameIndex(FI, getPointerTy());
2830
2831       if (Flags.isByVal()) {
2832         // Copy relative to framepointer.
2833         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2834         if (!StackPtr.getNode())
2835           StackPtr = DAG.getCopyFromReg(Chain, dl,
2836                                         RegInfo->getStackRegister(),
2837                                         getPointerTy());
2838         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2839
2840         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2841                                                          ArgChain,
2842                                                          Flags, DAG, dl));
2843       } else {
2844         // Store relative to framepointer.
2845         MemOpChains2.push_back(
2846           DAG.getStore(ArgChain, dl, Arg, FIN,
2847                        MachinePointerInfo::getFixedStack(FI),
2848                        false, false, 0));
2849       }
2850     }
2851
2852     if (!MemOpChains2.empty())
2853       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
2854
2855     // Store the return address to the appropriate stack slot.
2856     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2857                                      getPointerTy(), RegInfo->getSlotSize(),
2858                                      FPDiff, dl);
2859   }
2860
2861   // Build a sequence of copy-to-reg nodes chained together with token chain
2862   // and flag operands which copy the outgoing args into registers.
2863   SDValue InFlag;
2864   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2865     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2866                              RegsToPass[i].second, InFlag);
2867     InFlag = Chain.getValue(1);
2868   }
2869
2870   if (DAG.getTarget().getCodeModel() == CodeModel::Large) {
2871     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2872     // In the 64-bit large code model, we have to make all calls
2873     // through a register, since the call instruction's 32-bit
2874     // pc-relative offset may not be large enough to hold the whole
2875     // address.
2876   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2877     // If the callee is a GlobalAddress node (quite common, every direct call
2878     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2879     // it.
2880
2881     // We should use extra load for direct calls to dllimported functions in
2882     // non-JIT mode.
2883     const GlobalValue *GV = G->getGlobal();
2884     if (!GV->hasDLLImportStorageClass()) {
2885       unsigned char OpFlags = 0;
2886       bool ExtraLoad = false;
2887       unsigned WrapperKind = ISD::DELETED_NODE;
2888
2889       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2890       // external symbols most go through the PLT in PIC mode.  If the symbol
2891       // has hidden or protected visibility, or if it is static or local, then
2892       // we don't need to use the PLT - we can directly call it.
2893       if (Subtarget->isTargetELF() &&
2894           DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
2895           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2896         OpFlags = X86II::MO_PLT;
2897       } else if (Subtarget->isPICStyleStubAny() &&
2898                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2899                  (!Subtarget->getTargetTriple().isMacOSX() ||
2900                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2901         // PC-relative references to external symbols should go through $stub,
2902         // unless we're building with the leopard linker or later, which
2903         // automatically synthesizes these stubs.
2904         OpFlags = X86II::MO_DARWIN_STUB;
2905       } else if (Subtarget->isPICStyleRIPRel() &&
2906                  isa<Function>(GV) &&
2907                  cast<Function>(GV)->getAttributes().
2908                    hasAttribute(AttributeSet::FunctionIndex,
2909                                 Attribute::NonLazyBind)) {
2910         // If the function is marked as non-lazy, generate an indirect call
2911         // which loads from the GOT directly. This avoids runtime overhead
2912         // at the cost of eager binding (and one extra byte of encoding).
2913         OpFlags = X86II::MO_GOTPCREL;
2914         WrapperKind = X86ISD::WrapperRIP;
2915         ExtraLoad = true;
2916       }
2917
2918       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2919                                           G->getOffset(), OpFlags);
2920
2921       // Add a wrapper if needed.
2922       if (WrapperKind != ISD::DELETED_NODE)
2923         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2924       // Add extra indirection if needed.
2925       if (ExtraLoad)
2926         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2927                              MachinePointerInfo::getGOT(),
2928                              false, false, false, 0);
2929     }
2930   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2931     unsigned char OpFlags = 0;
2932
2933     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2934     // external symbols should go through the PLT.
2935     if (Subtarget->isTargetELF() &&
2936         DAG.getTarget().getRelocationModel() == Reloc::PIC_) {
2937       OpFlags = X86II::MO_PLT;
2938     } else if (Subtarget->isPICStyleStubAny() &&
2939                (!Subtarget->getTargetTriple().isMacOSX() ||
2940                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2941       // PC-relative references to external symbols should go through $stub,
2942       // unless we're building with the leopard linker or later, which
2943       // automatically synthesizes these stubs.
2944       OpFlags = X86II::MO_DARWIN_STUB;
2945     }
2946
2947     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2948                                          OpFlags);
2949   }
2950
2951   // Returns a chain & a flag for retval copy to use.
2952   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2953   SmallVector<SDValue, 8> Ops;
2954
2955   if (!IsSibcall && isTailCall) {
2956     Chain = DAG.getCALLSEQ_END(Chain,
2957                                DAG.getIntPtrConstant(NumBytesToPop, true),
2958                                DAG.getIntPtrConstant(0, true), InFlag, dl);
2959     InFlag = Chain.getValue(1);
2960   }
2961
2962   Ops.push_back(Chain);
2963   Ops.push_back(Callee);
2964
2965   if (isTailCall)
2966     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2967
2968   // Add argument registers to the end of the list so that they are known live
2969   // into the call.
2970   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2971     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2972                                   RegsToPass[i].second.getValueType()));
2973
2974   // Add a register mask operand representing the call-preserved registers.
2975   const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
2976   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2977   assert(Mask && "Missing call preserved mask for calling convention");
2978   Ops.push_back(DAG.getRegisterMask(Mask));
2979
2980   if (InFlag.getNode())
2981     Ops.push_back(InFlag);
2982
2983   if (isTailCall) {
2984     // We used to do:
2985     //// If this is the first return lowered for this function, add the regs
2986     //// to the liveout set for the function.
2987     // This isn't right, although it's probably harmless on x86; liveouts
2988     // should be computed from returns not tail calls.  Consider a void
2989     // function making a tail call to a function returning int.
2990     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
2991   }
2992
2993   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
2994   InFlag = Chain.getValue(1);
2995
2996   // Create the CALLSEQ_END node.
2997   unsigned NumBytesForCalleeToPop;
2998   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2999                        DAG.getTarget().Options.GuaranteedTailCallOpt))
3000     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
3001   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
3002            !Subtarget->getTargetTriple().isOSMSVCRT() &&
3003            SR == StackStructReturn)
3004     // If this is a call to a struct-return function, the callee
3005     // pops the hidden struct pointer, so we have to push it back.
3006     // This is common for Darwin/X86, Linux & Mingw32 targets.
3007     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
3008     NumBytesForCalleeToPop = 4;
3009   else
3010     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
3011
3012   // Returns a flag for retval copy to use.
3013   if (!IsSibcall) {
3014     Chain = DAG.getCALLSEQ_END(Chain,
3015                                DAG.getIntPtrConstant(NumBytesToPop, true),
3016                                DAG.getIntPtrConstant(NumBytesForCalleeToPop,
3017                                                      true),
3018                                InFlag, dl);
3019     InFlag = Chain.getValue(1);
3020   }
3021
3022   // Handle result values, copying them out of physregs into vregs that we
3023   // return.
3024   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3025                          Ins, dl, DAG, InVals);
3026 }
3027
3028 //===----------------------------------------------------------------------===//
3029 //                Fast Calling Convention (tail call) implementation
3030 //===----------------------------------------------------------------------===//
3031
3032 //  Like std call, callee cleans arguments, convention except that ECX is
3033 //  reserved for storing the tail called function address. Only 2 registers are
3034 //  free for argument passing (inreg). Tail call optimization is performed
3035 //  provided:
3036 //                * tailcallopt is enabled
3037 //                * caller/callee are fastcc
3038 //  On X86_64 architecture with GOT-style position independent code only local
3039 //  (within module) calls are supported at the moment.
3040 //  To keep the stack aligned according to platform abi the function
3041 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3042 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3043 //  If a tail called function callee has more arguments than the caller the
3044 //  caller needs to make sure that there is room to move the RETADDR to. This is
3045 //  achieved by reserving an area the size of the argument delta right after the
3046 //  original REtADDR, but before the saved framepointer or the spilled registers
3047 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3048 //  stack layout:
3049 //    arg1
3050 //    arg2
3051 //    RETADDR
3052 //    [ new RETADDR
3053 //      move area ]
3054 //    (possible EBP)
3055 //    ESI
3056 //    EDI
3057 //    local1 ..
3058
3059 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
3060 /// for a 16 byte align requirement.
3061 unsigned
3062 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3063                                                SelectionDAG& DAG) const {
3064   MachineFunction &MF = DAG.getMachineFunction();
3065   const TargetMachine &TM = MF.getTarget();
3066   const X86RegisterInfo *RegInfo =
3067     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
3068   const TargetFrameLowering &TFI = *TM.getFrameLowering();
3069   unsigned StackAlignment = TFI.getStackAlignment();
3070   uint64_t AlignMask = StackAlignment - 1;
3071   int64_t Offset = StackSize;
3072   unsigned SlotSize = RegInfo->getSlotSize();
3073   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3074     // Number smaller than 12 so just add the difference.
3075     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3076   } else {
3077     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3078     Offset = ((~AlignMask) & Offset) + StackAlignment +
3079       (StackAlignment-SlotSize);
3080   }
3081   return Offset;
3082 }
3083
3084 /// MatchingStackOffset - Return true if the given stack call argument is
3085 /// already available in the same position (relatively) of the caller's
3086 /// incoming argument stack.
3087 static
3088 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3089                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3090                          const X86InstrInfo *TII) {
3091   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3092   int FI = INT_MAX;
3093   if (Arg.getOpcode() == ISD::CopyFromReg) {
3094     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3095     if (!TargetRegisterInfo::isVirtualRegister(VR))
3096       return false;
3097     MachineInstr *Def = MRI->getVRegDef(VR);
3098     if (!Def)
3099       return false;
3100     if (!Flags.isByVal()) {
3101       if (!TII->isLoadFromStackSlot(Def, FI))
3102         return false;
3103     } else {
3104       unsigned Opcode = Def->getOpcode();
3105       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3106           Def->getOperand(1).isFI()) {
3107         FI = Def->getOperand(1).getIndex();
3108         Bytes = Flags.getByValSize();
3109       } else
3110         return false;
3111     }
3112   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3113     if (Flags.isByVal())
3114       // ByVal argument is passed in as a pointer but it's now being
3115       // dereferenced. e.g.
3116       // define @foo(%struct.X* %A) {
3117       //   tail call @bar(%struct.X* byval %A)
3118       // }
3119       return false;
3120     SDValue Ptr = Ld->getBasePtr();
3121     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3122     if (!FINode)
3123       return false;
3124     FI = FINode->getIndex();
3125   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3126     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3127     FI = FINode->getIndex();
3128     Bytes = Flags.getByValSize();
3129   } else
3130     return false;
3131
3132   assert(FI != INT_MAX);
3133   if (!MFI->isFixedObjectIndex(FI))
3134     return false;
3135   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3136 }
3137
3138 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3139 /// for tail call optimization. Targets which want to do tail call
3140 /// optimization should implement this function.
3141 bool
3142 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3143                                                      CallingConv::ID CalleeCC,
3144                                                      bool isVarArg,
3145                                                      bool isCalleeStructRet,
3146                                                      bool isCallerStructRet,
3147                                                      Type *RetTy,
3148                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3149                                     const SmallVectorImpl<SDValue> &OutVals,
3150                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3151                                                      SelectionDAG &DAG) const {
3152   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3153     return false;
3154
3155   // If -tailcallopt is specified, make fastcc functions tail-callable.
3156   const MachineFunction &MF = DAG.getMachineFunction();
3157   const Function *CallerF = MF.getFunction();
3158
3159   // If the function return type is x86_fp80 and the callee return type is not,
3160   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3161   // perform a tailcall optimization here.
3162   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3163     return false;
3164
3165   CallingConv::ID CallerCC = CallerF->getCallingConv();
3166   bool CCMatch = CallerCC == CalleeCC;
3167   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3168   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3169
3170   if (DAG.getTarget().Options.GuaranteedTailCallOpt) {
3171     if (IsTailCallConvention(CalleeCC) && CCMatch)
3172       return true;
3173     return false;
3174   }
3175
3176   // Look for obvious safe cases to perform tail call optimization that do not
3177   // require ABI changes. This is what gcc calls sibcall.
3178
3179   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3180   // emit a special epilogue.
3181   const X86RegisterInfo *RegInfo =
3182     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
3183   if (RegInfo->needsStackRealignment(MF))
3184     return false;
3185
3186   // Also avoid sibcall optimization if either caller or callee uses struct
3187   // return semantics.
3188   if (isCalleeStructRet || isCallerStructRet)
3189     return false;
3190
3191   // An stdcall/thiscall caller is expected to clean up its arguments; the
3192   // callee isn't going to do that.
3193   // FIXME: this is more restrictive than needed. We could produce a tailcall
3194   // when the stack adjustment matches. For example, with a thiscall that takes
3195   // only one argument.
3196   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3197                    CallerCC == CallingConv::X86_ThisCall))
3198     return false;
3199
3200   // Do not sibcall optimize vararg calls unless all arguments are passed via
3201   // registers.
3202   if (isVarArg && !Outs.empty()) {
3203
3204     // Optimizing for varargs on Win64 is unlikely to be safe without
3205     // additional testing.
3206     if (IsCalleeWin64 || IsCallerWin64)
3207       return false;
3208
3209     SmallVector<CCValAssign, 16> ArgLocs;
3210     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3211                    DAG.getTarget(), ArgLocs, *DAG.getContext());
3212
3213     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3214     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3215       if (!ArgLocs[i].isRegLoc())
3216         return false;
3217   }
3218
3219   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3220   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3221   // this into a sibcall.
3222   bool Unused = false;
3223   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3224     if (!Ins[i].Used) {
3225       Unused = true;
3226       break;
3227     }
3228   }
3229   if (Unused) {
3230     SmallVector<CCValAssign, 16> RVLocs;
3231     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3232                    DAG.getTarget(), RVLocs, *DAG.getContext());
3233     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3234     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3235       CCValAssign &VA = RVLocs[i];
3236       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3237         return false;
3238     }
3239   }
3240
3241   // If the calling conventions do not match, then we'd better make sure the
3242   // results are returned in the same way as what the caller expects.
3243   if (!CCMatch) {
3244     SmallVector<CCValAssign, 16> RVLocs1;
3245     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3246                     DAG.getTarget(), RVLocs1, *DAG.getContext());
3247     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3248
3249     SmallVector<CCValAssign, 16> RVLocs2;
3250     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3251                     DAG.getTarget(), RVLocs2, *DAG.getContext());
3252     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3253
3254     if (RVLocs1.size() != RVLocs2.size())
3255       return false;
3256     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3257       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3258         return false;
3259       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3260         return false;
3261       if (RVLocs1[i].isRegLoc()) {
3262         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3263           return false;
3264       } else {
3265         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3266           return false;
3267       }
3268     }
3269   }
3270
3271   // If the callee takes no arguments then go on to check the results of the
3272   // call.
3273   if (!Outs.empty()) {
3274     // Check if stack adjustment is needed. For now, do not do this if any
3275     // argument is passed on the stack.
3276     SmallVector<CCValAssign, 16> ArgLocs;
3277     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3278                    DAG.getTarget(), ArgLocs, *DAG.getContext());
3279
3280     // Allocate shadow area for Win64
3281     if (IsCalleeWin64)
3282       CCInfo.AllocateStack(32, 8);
3283
3284     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3285     if (CCInfo.getNextStackOffset()) {
3286       MachineFunction &MF = DAG.getMachineFunction();
3287       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3288         return false;
3289
3290       // Check if the arguments are already laid out in the right way as
3291       // the caller's fixed stack objects.
3292       MachineFrameInfo *MFI = MF.getFrameInfo();
3293       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3294       const X86InstrInfo *TII =
3295           static_cast<const X86InstrInfo *>(DAG.getTarget().getInstrInfo());
3296       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3297         CCValAssign &VA = ArgLocs[i];
3298         SDValue Arg = OutVals[i];
3299         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3300         if (VA.getLocInfo() == CCValAssign::Indirect)
3301           return false;
3302         if (!VA.isRegLoc()) {
3303           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3304                                    MFI, MRI, TII))
3305             return false;
3306         }
3307       }
3308     }
3309
3310     // If the tailcall address may be in a register, then make sure it's
3311     // possible to register allocate for it. In 32-bit, the call address can
3312     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3313     // callee-saved registers are restored. These happen to be the same
3314     // registers used to pass 'inreg' arguments so watch out for those.
3315     if (!Subtarget->is64Bit() &&
3316         ((!isa<GlobalAddressSDNode>(Callee) &&
3317           !isa<ExternalSymbolSDNode>(Callee)) ||
3318          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3319       unsigned NumInRegs = 0;
3320       // In PIC we need an extra register to formulate the address computation
3321       // for the callee.
3322       unsigned MaxInRegs =
3323         (DAG.getTarget().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3324
3325       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3326         CCValAssign &VA = ArgLocs[i];
3327         if (!VA.isRegLoc())
3328           continue;
3329         unsigned Reg = VA.getLocReg();
3330         switch (Reg) {
3331         default: break;
3332         case X86::EAX: case X86::EDX: case X86::ECX:
3333           if (++NumInRegs == MaxInRegs)
3334             return false;
3335           break;
3336         }
3337       }
3338     }
3339   }
3340
3341   return true;
3342 }
3343
3344 FastISel *
3345 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3346                                   const TargetLibraryInfo *libInfo) const {
3347   return X86::createFastISel(funcInfo, libInfo);
3348 }
3349
3350 //===----------------------------------------------------------------------===//
3351 //                           Other Lowering Hooks
3352 //===----------------------------------------------------------------------===//
3353
3354 static bool MayFoldLoad(SDValue Op) {
3355   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3356 }
3357
3358 static bool MayFoldIntoStore(SDValue Op) {
3359   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3360 }
3361
3362 static bool isTargetShuffle(unsigned Opcode) {
3363   switch(Opcode) {
3364   default: return false;
3365   case X86ISD::PSHUFD:
3366   case X86ISD::PSHUFHW:
3367   case X86ISD::PSHUFLW:
3368   case X86ISD::SHUFP:
3369   case X86ISD::PALIGNR:
3370   case X86ISD::MOVLHPS:
3371   case X86ISD::MOVLHPD:
3372   case X86ISD::MOVHLPS:
3373   case X86ISD::MOVLPS:
3374   case X86ISD::MOVLPD:
3375   case X86ISD::MOVSHDUP:
3376   case X86ISD::MOVSLDUP:
3377   case X86ISD::MOVDDUP:
3378   case X86ISD::MOVSS:
3379   case X86ISD::MOVSD:
3380   case X86ISD::UNPCKL:
3381   case X86ISD::UNPCKH:
3382   case X86ISD::VPERMILP:
3383   case X86ISD::VPERM2X128:
3384   case X86ISD::VPERMI:
3385     return true;
3386   }
3387 }
3388
3389 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3390                                     SDValue V1, SelectionDAG &DAG) {
3391   switch(Opc) {
3392   default: llvm_unreachable("Unknown x86 shuffle node");
3393   case X86ISD::MOVSHDUP:
3394   case X86ISD::MOVSLDUP:
3395   case X86ISD::MOVDDUP:
3396     return DAG.getNode(Opc, dl, VT, V1);
3397   }
3398 }
3399
3400 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3401                                     SDValue V1, unsigned TargetMask,
3402                                     SelectionDAG &DAG) {
3403   switch(Opc) {
3404   default: llvm_unreachable("Unknown x86 shuffle node");
3405   case X86ISD::PSHUFD:
3406   case X86ISD::PSHUFHW:
3407   case X86ISD::PSHUFLW:
3408   case X86ISD::VPERMILP:
3409   case X86ISD::VPERMI:
3410     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3411   }
3412 }
3413
3414 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3415                                     SDValue V1, SDValue V2, unsigned TargetMask,
3416                                     SelectionDAG &DAG) {
3417   switch(Opc) {
3418   default: llvm_unreachable("Unknown x86 shuffle node");
3419   case X86ISD::PALIGNR:
3420   case X86ISD::SHUFP:
3421   case X86ISD::VPERM2X128:
3422     return DAG.getNode(Opc, dl, VT, V1, V2,
3423                        DAG.getConstant(TargetMask, MVT::i8));
3424   }
3425 }
3426
3427 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3428                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3429   switch(Opc) {
3430   default: llvm_unreachable("Unknown x86 shuffle node");
3431   case X86ISD::MOVLHPS:
3432   case X86ISD::MOVLHPD:
3433   case X86ISD::MOVHLPS:
3434   case X86ISD::MOVLPS:
3435   case X86ISD::MOVLPD:
3436   case X86ISD::MOVSS:
3437   case X86ISD::MOVSD:
3438   case X86ISD::UNPCKL:
3439   case X86ISD::UNPCKH:
3440     return DAG.getNode(Opc, dl, VT, V1, V2);
3441   }
3442 }
3443
3444 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3445   MachineFunction &MF = DAG.getMachineFunction();
3446   const X86RegisterInfo *RegInfo =
3447     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
3448   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3449   int ReturnAddrIndex = FuncInfo->getRAIndex();
3450
3451   if (ReturnAddrIndex == 0) {
3452     // Set up a frame object for the return address.
3453     unsigned SlotSize = RegInfo->getSlotSize();
3454     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3455                                                            -(int64_t)SlotSize,
3456                                                            false);
3457     FuncInfo->setRAIndex(ReturnAddrIndex);
3458   }
3459
3460   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3461 }
3462
3463 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3464                                        bool hasSymbolicDisplacement) {
3465   // Offset should fit into 32 bit immediate field.
3466   if (!isInt<32>(Offset))
3467     return false;
3468
3469   // If we don't have a symbolic displacement - we don't have any extra
3470   // restrictions.
3471   if (!hasSymbolicDisplacement)
3472     return true;
3473
3474   // FIXME: Some tweaks might be needed for medium code model.
3475   if (M != CodeModel::Small && M != CodeModel::Kernel)
3476     return false;
3477
3478   // For small code model we assume that latest object is 16MB before end of 31
3479   // bits boundary. We may also accept pretty large negative constants knowing
3480   // that all objects are in the positive half of address space.
3481   if (M == CodeModel::Small && Offset < 16*1024*1024)
3482     return true;
3483
3484   // For kernel code model we know that all object resist in the negative half
3485   // of 32bits address space. We may not accept negative offsets, since they may
3486   // be just off and we may accept pretty large positive ones.
3487   if (M == CodeModel::Kernel && Offset > 0)
3488     return true;
3489
3490   return false;
3491 }
3492
3493 /// isCalleePop - Determines whether the callee is required to pop its
3494 /// own arguments. Callee pop is necessary to support tail calls.
3495 bool X86::isCalleePop(CallingConv::ID CallingConv,
3496                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3497   if (IsVarArg)
3498     return false;
3499
3500   switch (CallingConv) {
3501   default:
3502     return false;
3503   case CallingConv::X86_StdCall:
3504     return !is64Bit;
3505   case CallingConv::X86_FastCall:
3506     return !is64Bit;
3507   case CallingConv::X86_ThisCall:
3508     return !is64Bit;
3509   case CallingConv::Fast:
3510     return TailCallOpt;
3511   case CallingConv::GHC:
3512     return TailCallOpt;
3513   case CallingConv::HiPE:
3514     return TailCallOpt;
3515   }
3516 }
3517
3518 /// \brief Return true if the condition is an unsigned comparison operation.
3519 static bool isX86CCUnsigned(unsigned X86CC) {
3520   switch (X86CC) {
3521   default: llvm_unreachable("Invalid integer condition!");
3522   case X86::COND_E:     return true;
3523   case X86::COND_G:     return false;
3524   case X86::COND_GE:    return false;
3525   case X86::COND_L:     return false;
3526   case X86::COND_LE:    return false;
3527   case X86::COND_NE:    return true;
3528   case X86::COND_B:     return true;
3529   case X86::COND_A:     return true;
3530   case X86::COND_BE:    return true;
3531   case X86::COND_AE:    return true;
3532   }
3533   llvm_unreachable("covered switch fell through?!");
3534 }
3535
3536 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3537 /// specific condition code, returning the condition code and the LHS/RHS of the
3538 /// comparison to make.
3539 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3540                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3541   if (!isFP) {
3542     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3543       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3544         // X > -1   -> X == 0, jump !sign.
3545         RHS = DAG.getConstant(0, RHS.getValueType());
3546         return X86::COND_NS;
3547       }
3548       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3549         // X < 0   -> X == 0, jump on sign.
3550         return X86::COND_S;
3551       }
3552       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3553         // X < 1   -> X <= 0
3554         RHS = DAG.getConstant(0, RHS.getValueType());
3555         return X86::COND_LE;
3556       }
3557     }
3558
3559     switch (SetCCOpcode) {
3560     default: llvm_unreachable("Invalid integer condition!");
3561     case ISD::SETEQ:  return X86::COND_E;
3562     case ISD::SETGT:  return X86::COND_G;
3563     case ISD::SETGE:  return X86::COND_GE;
3564     case ISD::SETLT:  return X86::COND_L;
3565     case ISD::SETLE:  return X86::COND_LE;
3566     case ISD::SETNE:  return X86::COND_NE;
3567     case ISD::SETULT: return X86::COND_B;
3568     case ISD::SETUGT: return X86::COND_A;
3569     case ISD::SETULE: return X86::COND_BE;
3570     case ISD::SETUGE: return X86::COND_AE;
3571     }
3572   }
3573
3574   // First determine if it is required or is profitable to flip the operands.
3575
3576   // If LHS is a foldable load, but RHS is not, flip the condition.
3577   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3578       !ISD::isNON_EXTLoad(RHS.getNode())) {
3579     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3580     std::swap(LHS, RHS);
3581   }
3582
3583   switch (SetCCOpcode) {
3584   default: break;
3585   case ISD::SETOLT:
3586   case ISD::SETOLE:
3587   case ISD::SETUGT:
3588   case ISD::SETUGE:
3589     std::swap(LHS, RHS);
3590     break;
3591   }
3592
3593   // On a floating point condition, the flags are set as follows:
3594   // ZF  PF  CF   op
3595   //  0 | 0 | 0 | X > Y
3596   //  0 | 0 | 1 | X < Y
3597   //  1 | 0 | 0 | X == Y
3598   //  1 | 1 | 1 | unordered
3599   switch (SetCCOpcode) {
3600   default: llvm_unreachable("Condcode should be pre-legalized away");
3601   case ISD::SETUEQ:
3602   case ISD::SETEQ:   return X86::COND_E;
3603   case ISD::SETOLT:              // flipped
3604   case ISD::SETOGT:
3605   case ISD::SETGT:   return X86::COND_A;
3606   case ISD::SETOLE:              // flipped
3607   case ISD::SETOGE:
3608   case ISD::SETGE:   return X86::COND_AE;
3609   case ISD::SETUGT:              // flipped
3610   case ISD::SETULT:
3611   case ISD::SETLT:   return X86::COND_B;
3612   case ISD::SETUGE:              // flipped
3613   case ISD::SETULE:
3614   case ISD::SETLE:   return X86::COND_BE;
3615   case ISD::SETONE:
3616   case ISD::SETNE:   return X86::COND_NE;
3617   case ISD::SETUO:   return X86::COND_P;
3618   case ISD::SETO:    return X86::COND_NP;
3619   case ISD::SETOEQ:
3620   case ISD::SETUNE:  return X86::COND_INVALID;
3621   }
3622 }
3623
3624 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3625 /// code. Current x86 isa includes the following FP cmov instructions:
3626 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3627 static bool hasFPCMov(unsigned X86CC) {
3628   switch (X86CC) {
3629   default:
3630     return false;
3631   case X86::COND_B:
3632   case X86::COND_BE:
3633   case X86::COND_E:
3634   case X86::COND_P:
3635   case X86::COND_A:
3636   case X86::COND_AE:
3637   case X86::COND_NE:
3638   case X86::COND_NP:
3639     return true;
3640   }
3641 }
3642
3643 /// isFPImmLegal - Returns true if the target can instruction select the
3644 /// specified FP immediate natively. If false, the legalizer will
3645 /// materialize the FP immediate as a load from a constant pool.
3646 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3647   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3648     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3649       return true;
3650   }
3651   return false;
3652 }
3653
3654 /// \brief Returns true if it is beneficial to convert a load of a constant
3655 /// to just the constant itself.
3656 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3657                                                           Type *Ty) const {
3658   assert(Ty->isIntegerTy());
3659
3660   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3661   if (BitSize == 0 || BitSize > 64)
3662     return false;
3663   return true;
3664 }
3665
3666 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3667 /// the specified range (L, H].
3668 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3669   return (Val < 0) || (Val >= Low && Val < Hi);
3670 }
3671
3672 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3673 /// specified value.
3674 static bool isUndefOrEqual(int Val, int CmpVal) {
3675   return (Val < 0 || Val == CmpVal);
3676 }
3677
3678 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3679 /// from position Pos and ending in Pos+Size, falls within the specified
3680 /// sequential range (L, L+Pos]. or is undef.
3681 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3682                                        unsigned Pos, unsigned Size, int Low) {
3683   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3684     if (!isUndefOrEqual(Mask[i], Low))
3685       return false;
3686   return true;
3687 }
3688
3689 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3690 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3691 /// the second operand.
3692 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3693   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3694     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3695   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3696     return (Mask[0] < 2 && Mask[1] < 2);
3697   return false;
3698 }
3699
3700 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3701 /// is suitable for input to PSHUFHW.
3702 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3703   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3704     return false;
3705
3706   // Lower quadword copied in order or undef.
3707   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3708     return false;
3709
3710   // Upper quadword shuffled.
3711   for (unsigned i = 4; i != 8; ++i)
3712     if (!isUndefOrInRange(Mask[i], 4, 8))
3713       return false;
3714
3715   if (VT == MVT::v16i16) {
3716     // Lower quadword copied in order or undef.
3717     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3718       return false;
3719
3720     // Upper quadword shuffled.
3721     for (unsigned i = 12; i != 16; ++i)
3722       if (!isUndefOrInRange(Mask[i], 12, 16))
3723         return false;
3724   }
3725
3726   return true;
3727 }
3728
3729 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3730 /// is suitable for input to PSHUFLW.
3731 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3732   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3733     return false;
3734
3735   // Upper quadword copied in order.
3736   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3737     return false;
3738
3739   // Lower quadword shuffled.
3740   for (unsigned i = 0; i != 4; ++i)
3741     if (!isUndefOrInRange(Mask[i], 0, 4))
3742       return false;
3743
3744   if (VT == MVT::v16i16) {
3745     // Upper quadword copied in order.
3746     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3747       return false;
3748
3749     // Lower quadword shuffled.
3750     for (unsigned i = 8; i != 12; ++i)
3751       if (!isUndefOrInRange(Mask[i], 8, 12))
3752         return false;
3753   }
3754
3755   return true;
3756 }
3757
3758 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3759 /// is suitable for input to PALIGNR.
3760 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3761                           const X86Subtarget *Subtarget) {
3762   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3763       (VT.is256BitVector() && !Subtarget->hasInt256()))
3764     return false;
3765
3766   unsigned NumElts = VT.getVectorNumElements();
3767   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3768   unsigned NumLaneElts = NumElts/NumLanes;
3769
3770   // Do not handle 64-bit element shuffles with palignr.
3771   if (NumLaneElts == 2)
3772     return false;
3773
3774   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3775     unsigned i;
3776     for (i = 0; i != NumLaneElts; ++i) {
3777       if (Mask[i+l] >= 0)
3778         break;
3779     }
3780
3781     // Lane is all undef, go to next lane
3782     if (i == NumLaneElts)
3783       continue;
3784
3785     int Start = Mask[i+l];
3786
3787     // Make sure its in this lane in one of the sources
3788     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3789         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3790       return false;
3791
3792     // If not lane 0, then we must match lane 0
3793     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3794       return false;
3795
3796     // Correct second source to be contiguous with first source
3797     if (Start >= (int)NumElts)
3798       Start -= NumElts - NumLaneElts;
3799
3800     // Make sure we're shifting in the right direction.
3801     if (Start <= (int)(i+l))
3802       return false;
3803
3804     Start -= i;
3805
3806     // Check the rest of the elements to see if they are consecutive.
3807     for (++i; i != NumLaneElts; ++i) {
3808       int Idx = Mask[i+l];
3809
3810       // Make sure its in this lane
3811       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3812           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3813         return false;
3814
3815       // If not lane 0, then we must match lane 0
3816       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3817         return false;
3818
3819       if (Idx >= (int)NumElts)
3820         Idx -= NumElts - NumLaneElts;
3821
3822       if (!isUndefOrEqual(Idx, Start+i))
3823         return false;
3824
3825     }
3826   }
3827
3828   return true;
3829 }
3830
3831 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3832 /// the two vector operands have swapped position.
3833 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3834                                      unsigned NumElems) {
3835   for (unsigned i = 0; i != NumElems; ++i) {
3836     int idx = Mask[i];
3837     if (idx < 0)
3838       continue;
3839     else if (idx < (int)NumElems)
3840       Mask[i] = idx + NumElems;
3841     else
3842       Mask[i] = idx - NumElems;
3843   }
3844 }
3845
3846 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3847 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3848 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3849 /// reverse of what x86 shuffles want.
3850 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3851
3852   unsigned NumElems = VT.getVectorNumElements();
3853   unsigned NumLanes = VT.getSizeInBits()/128;
3854   unsigned NumLaneElems = NumElems/NumLanes;
3855
3856   if (NumLaneElems != 2 && NumLaneElems != 4)
3857     return false;
3858
3859   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3860   bool symetricMaskRequired =
3861     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3862
3863   // VSHUFPSY divides the resulting vector into 4 chunks.
3864   // The sources are also splitted into 4 chunks, and each destination
3865   // chunk must come from a different source chunk.
3866   //
3867   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3868   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3869   //
3870   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3871   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3872   //
3873   // VSHUFPDY divides the resulting vector into 4 chunks.
3874   // The sources are also splitted into 4 chunks, and each destination
3875   // chunk must come from a different source chunk.
3876   //
3877   //  SRC1 =>      X3       X2       X1       X0
3878   //  SRC2 =>      Y3       Y2       Y1       Y0
3879   //
3880   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3881   //
3882   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3883   unsigned HalfLaneElems = NumLaneElems/2;
3884   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3885     for (unsigned i = 0; i != NumLaneElems; ++i) {
3886       int Idx = Mask[i+l];
3887       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3888       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3889         return false;
3890       // For VSHUFPSY, the mask of the second half must be the same as the
3891       // first but with the appropriate offsets. This works in the same way as
3892       // VPERMILPS works with masks.
3893       if (!symetricMaskRequired || Idx < 0)
3894         continue;
3895       if (MaskVal[i] < 0) {
3896         MaskVal[i] = Idx - l;
3897         continue;
3898       }
3899       if ((signed)(Idx - l) != MaskVal[i])
3900         return false;
3901     }
3902   }
3903
3904   return true;
3905 }
3906
3907 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3908 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3909 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3910   if (!VT.is128BitVector())
3911     return false;
3912
3913   unsigned NumElems = VT.getVectorNumElements();
3914
3915   if (NumElems != 4)
3916     return false;
3917
3918   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3919   return isUndefOrEqual(Mask[0], 6) &&
3920          isUndefOrEqual(Mask[1], 7) &&
3921          isUndefOrEqual(Mask[2], 2) &&
3922          isUndefOrEqual(Mask[3], 3);
3923 }
3924
3925 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3926 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3927 /// <2, 3, 2, 3>
3928 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3929   if (!VT.is128BitVector())
3930     return false;
3931
3932   unsigned NumElems = VT.getVectorNumElements();
3933
3934   if (NumElems != 4)
3935     return false;
3936
3937   return isUndefOrEqual(Mask[0], 2) &&
3938          isUndefOrEqual(Mask[1], 3) &&
3939          isUndefOrEqual(Mask[2], 2) &&
3940          isUndefOrEqual(Mask[3], 3);
3941 }
3942
3943 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3944 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3945 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3946   if (!VT.is128BitVector())
3947     return false;
3948
3949   unsigned NumElems = VT.getVectorNumElements();
3950
3951   if (NumElems != 2 && NumElems != 4)
3952     return false;
3953
3954   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3955     if (!isUndefOrEqual(Mask[i], i + NumElems))
3956       return false;
3957
3958   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3959     if (!isUndefOrEqual(Mask[i], i))
3960       return false;
3961
3962   return true;
3963 }
3964
3965 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3966 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3967 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3968   if (!VT.is128BitVector())
3969     return false;
3970
3971   unsigned NumElems = VT.getVectorNumElements();
3972
3973   if (NumElems != 2 && NumElems != 4)
3974     return false;
3975
3976   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3977     if (!isUndefOrEqual(Mask[i], i))
3978       return false;
3979
3980   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3981     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3982       return false;
3983
3984   return true;
3985 }
3986
3987 /// isINSERTPSMask - Return true if the specified VECTOR_SHUFFLE operand
3988 /// specifies a shuffle of elements that is suitable for input to INSERTPS.
3989 /// i. e: If all but one element come from the same vector.
3990 static bool isINSERTPSMask(ArrayRef<int> Mask, MVT VT) {
3991   // TODO: Deal with AVX's VINSERTPS
3992   if (!VT.is128BitVector() || (VT != MVT::v4f32 && VT != MVT::v4i32))
3993     return false;
3994
3995   unsigned CorrectPosV1 = 0;
3996   unsigned CorrectPosV2 = 0;
3997   for (int i = 0, e = (int)VT.getVectorNumElements(); i != e; ++i) {
3998     if (Mask[i] == -1) {
3999       ++CorrectPosV1;
4000       ++CorrectPosV2;
4001       continue;
4002     }
4003
4004     if (Mask[i] == i)
4005       ++CorrectPosV1;
4006     else if (Mask[i] == i + 4)
4007       ++CorrectPosV2;
4008   }
4009
4010   if (CorrectPosV1 == 3 || CorrectPosV2 == 3)
4011     // We have 3 elements (undefs count as elements from any vector) from one
4012     // vector, and one from another.
4013     return true;
4014
4015   return false;
4016 }
4017
4018 //
4019 // Some special combinations that can be optimized.
4020 //
4021 static
4022 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
4023                                SelectionDAG &DAG) {
4024   MVT VT = SVOp->getSimpleValueType(0);
4025   SDLoc dl(SVOp);
4026
4027   if (VT != MVT::v8i32 && VT != MVT::v8f32)
4028     return SDValue();
4029
4030   ArrayRef<int> Mask = SVOp->getMask();
4031
4032   // These are the special masks that may be optimized.
4033   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
4034   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
4035   bool MatchEvenMask = true;
4036   bool MatchOddMask  = true;
4037   for (int i=0; i<8; ++i) {
4038     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
4039       MatchEvenMask = false;
4040     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
4041       MatchOddMask = false;
4042   }
4043
4044   if (!MatchEvenMask && !MatchOddMask)
4045     return SDValue();
4046
4047   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
4048
4049   SDValue Op0 = SVOp->getOperand(0);
4050   SDValue Op1 = SVOp->getOperand(1);
4051
4052   if (MatchEvenMask) {
4053     // Shift the second operand right to 32 bits.
4054     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
4055     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
4056   } else {
4057     // Shift the first operand left to 32 bits.
4058     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
4059     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
4060   }
4061   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
4062   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
4063 }
4064
4065 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
4066 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
4067 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
4068                          bool HasInt256, bool V2IsSplat = false) {
4069
4070   assert(VT.getSizeInBits() >= 128 &&
4071          "Unsupported vector type for unpckl");
4072
4073   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4074   unsigned NumLanes;
4075   unsigned NumOf256BitLanes;
4076   unsigned NumElts = VT.getVectorNumElements();
4077   if (VT.is256BitVector()) {
4078     if (NumElts != 4 && NumElts != 8 &&
4079         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4080     return false;
4081     NumLanes = 2;
4082     NumOf256BitLanes = 1;
4083   } else if (VT.is512BitVector()) {
4084     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4085            "Unsupported vector type for unpckh");
4086     NumLanes = 2;
4087     NumOf256BitLanes = 2;
4088   } else {
4089     NumLanes = 1;
4090     NumOf256BitLanes = 1;
4091   }
4092
4093   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4094   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4095
4096   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4097     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4098       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4099         int BitI  = Mask[l256*NumEltsInStride+l+i];
4100         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4101         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4102           return false;
4103         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4104           return false;
4105         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4106           return false;
4107       }
4108     }
4109   }
4110   return true;
4111 }
4112
4113 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
4114 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
4115 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
4116                          bool HasInt256, bool V2IsSplat = false) {
4117   assert(VT.getSizeInBits() >= 128 &&
4118          "Unsupported vector type for unpckh");
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+NumLaneElts/2; 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 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4161 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4162 /// <0, 0, 1, 1>
4163 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4164   unsigned NumElts = VT.getVectorNumElements();
4165   bool Is256BitVec = VT.is256BitVector();
4166
4167   if (VT.is512BitVector())
4168     return false;
4169   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4170          "Unsupported vector type for unpckh");
4171
4172   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4173       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4174     return false;
4175
4176   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4177   // FIXME: Need a better way to get rid of this, there's no latency difference
4178   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4179   // the former later. We should also remove the "_undef" special mask.
4180   if (NumElts == 4 && Is256BitVec)
4181     return false;
4182
4183   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4184   // independently on 128-bit lanes.
4185   unsigned NumLanes = VT.getSizeInBits()/128;
4186   unsigned NumLaneElts = NumElts/NumLanes;
4187
4188   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4189     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4190       int BitI  = Mask[l+i];
4191       int BitI1 = Mask[l+i+1];
4192
4193       if (!isUndefOrEqual(BitI, j))
4194         return false;
4195       if (!isUndefOrEqual(BitI1, j))
4196         return false;
4197     }
4198   }
4199
4200   return true;
4201 }
4202
4203 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4204 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4205 /// <2, 2, 3, 3>
4206 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4207   unsigned NumElts = VT.getVectorNumElements();
4208
4209   if (VT.is512BitVector())
4210     return false;
4211
4212   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4213          "Unsupported vector type for unpckh");
4214
4215   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4216       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4217     return false;
4218
4219   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4220   // independently on 128-bit lanes.
4221   unsigned NumLanes = VT.getSizeInBits()/128;
4222   unsigned NumLaneElts = NumElts/NumLanes;
4223
4224   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4225     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4226       int BitI  = Mask[l+i];
4227       int BitI1 = Mask[l+i+1];
4228       if (!isUndefOrEqual(BitI, j))
4229         return false;
4230       if (!isUndefOrEqual(BitI1, j))
4231         return false;
4232     }
4233   }
4234   return true;
4235 }
4236
4237 // Match for INSERTI64x4 INSERTF64x4 instructions (src0[0], src1[0]) or
4238 // (src1[0], src0[1]), manipulation with 256-bit sub-vectors
4239 static bool isINSERT64x4Mask(ArrayRef<int> Mask, MVT VT, unsigned int *Imm) {
4240   if (!VT.is512BitVector())
4241     return false;
4242
4243   unsigned NumElts = VT.getVectorNumElements();
4244   unsigned HalfSize = NumElts/2;
4245   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, 0)) {
4246     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, NumElts)) {
4247       *Imm = 1;
4248       return true;
4249     }
4250   }
4251   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, NumElts)) {
4252     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, HalfSize)) {
4253       *Imm = 0;
4254       return true;
4255     }
4256   }
4257   return false;
4258 }
4259
4260 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4261 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4262 /// MOVSD, and MOVD, i.e. setting the lowest element.
4263 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4264   if (VT.getVectorElementType().getSizeInBits() < 32)
4265     return false;
4266   if (!VT.is128BitVector())
4267     return false;
4268
4269   unsigned NumElts = VT.getVectorNumElements();
4270
4271   if (!isUndefOrEqual(Mask[0], NumElts))
4272     return false;
4273
4274   for (unsigned i = 1; i != NumElts; ++i)
4275     if (!isUndefOrEqual(Mask[i], i))
4276       return false;
4277
4278   return true;
4279 }
4280
4281 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4282 /// as permutations between 128-bit chunks or halves. As an example: this
4283 /// shuffle bellow:
4284 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4285 /// The first half comes from the second half of V1 and the second half from the
4286 /// the second half of V2.
4287 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4288   if (!HasFp256 || !VT.is256BitVector())
4289     return false;
4290
4291   // The shuffle result is divided into half A and half B. In total the two
4292   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4293   // B must come from C, D, E or F.
4294   unsigned HalfSize = VT.getVectorNumElements()/2;
4295   bool MatchA = false, MatchB = false;
4296
4297   // Check if A comes from one of C, D, E, F.
4298   for (unsigned Half = 0; Half != 4; ++Half) {
4299     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4300       MatchA = true;
4301       break;
4302     }
4303   }
4304
4305   // Check if B comes from one of C, D, E, F.
4306   for (unsigned Half = 0; Half != 4; ++Half) {
4307     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4308       MatchB = true;
4309       break;
4310     }
4311   }
4312
4313   return MatchA && MatchB;
4314 }
4315
4316 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4317 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4318 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4319   MVT VT = SVOp->getSimpleValueType(0);
4320
4321   unsigned HalfSize = VT.getVectorNumElements()/2;
4322
4323   unsigned FstHalf = 0, SndHalf = 0;
4324   for (unsigned i = 0; i < HalfSize; ++i) {
4325     if (SVOp->getMaskElt(i) > 0) {
4326       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4327       break;
4328     }
4329   }
4330   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4331     if (SVOp->getMaskElt(i) > 0) {
4332       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4333       break;
4334     }
4335   }
4336
4337   return (FstHalf | (SndHalf << 4));
4338 }
4339
4340 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4341 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4342   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4343   if (EltSize < 32)
4344     return false;
4345
4346   unsigned NumElts = VT.getVectorNumElements();
4347   Imm8 = 0;
4348   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4349     for (unsigned i = 0; i != NumElts; ++i) {
4350       if (Mask[i] < 0)
4351         continue;
4352       Imm8 |= Mask[i] << (i*2);
4353     }
4354     return true;
4355   }
4356
4357   unsigned LaneSize = 4;
4358   SmallVector<int, 4> MaskVal(LaneSize, -1);
4359
4360   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4361     for (unsigned i = 0; i != LaneSize; ++i) {
4362       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4363         return false;
4364       if (Mask[i+l] < 0)
4365         continue;
4366       if (MaskVal[i] < 0) {
4367         MaskVal[i] = Mask[i+l] - l;
4368         Imm8 |= MaskVal[i] << (i*2);
4369         continue;
4370       }
4371       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4372         return false;
4373     }
4374   }
4375   return true;
4376 }
4377
4378 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4379 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4380 /// Note that VPERMIL mask matching is different depending whether theunderlying
4381 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4382 /// to the same elements of the low, but to the higher half of the source.
4383 /// In VPERMILPD the two lanes could be shuffled independently of each other
4384 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4385 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4386   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4387   if (VT.getSizeInBits() < 256 || EltSize < 32)
4388     return false;
4389   bool symetricMaskRequired = (EltSize == 32);
4390   unsigned NumElts = VT.getVectorNumElements();
4391
4392   unsigned NumLanes = VT.getSizeInBits()/128;
4393   unsigned LaneSize = NumElts/NumLanes;
4394   // 2 or 4 elements in one lane
4395
4396   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4397   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4398     for (unsigned i = 0; i != LaneSize; ++i) {
4399       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4400         return false;
4401       if (symetricMaskRequired) {
4402         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4403           ExpectedMaskVal[i] = Mask[i+l] - l;
4404           continue;
4405         }
4406         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4407           return false;
4408       }
4409     }
4410   }
4411   return true;
4412 }
4413
4414 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4415 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4416 /// element of vector 2 and the other elements to come from vector 1 in order.
4417 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4418                                bool V2IsSplat = false, bool V2IsUndef = false) {
4419   if (!VT.is128BitVector())
4420     return false;
4421
4422   unsigned NumOps = VT.getVectorNumElements();
4423   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4424     return false;
4425
4426   if (!isUndefOrEqual(Mask[0], 0))
4427     return false;
4428
4429   for (unsigned i = 1; i != NumOps; ++i)
4430     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4431           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4432           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4433       return false;
4434
4435   return true;
4436 }
4437
4438 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4439 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4440 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4441 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4442                            const X86Subtarget *Subtarget) {
4443   if (!Subtarget->hasSSE3())
4444     return false;
4445
4446   unsigned NumElems = VT.getVectorNumElements();
4447
4448   if ((VT.is128BitVector() && NumElems != 4) ||
4449       (VT.is256BitVector() && NumElems != 8) ||
4450       (VT.is512BitVector() && NumElems != 16))
4451     return false;
4452
4453   // "i+1" is the value the indexed mask element must have
4454   for (unsigned i = 0; i != NumElems; i += 2)
4455     if (!isUndefOrEqual(Mask[i], i+1) ||
4456         !isUndefOrEqual(Mask[i+1], i+1))
4457       return false;
4458
4459   return true;
4460 }
4461
4462 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4463 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4464 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4465 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4466                            const X86Subtarget *Subtarget) {
4467   if (!Subtarget->hasSSE3())
4468     return false;
4469
4470   unsigned NumElems = VT.getVectorNumElements();
4471
4472   if ((VT.is128BitVector() && NumElems != 4) ||
4473       (VT.is256BitVector() && NumElems != 8) ||
4474       (VT.is512BitVector() && NumElems != 16))
4475     return false;
4476
4477   // "i" is the value the indexed mask element must have
4478   for (unsigned i = 0; i != NumElems; i += 2)
4479     if (!isUndefOrEqual(Mask[i], i) ||
4480         !isUndefOrEqual(Mask[i+1], i))
4481       return false;
4482
4483   return true;
4484 }
4485
4486 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4487 /// specifies a shuffle of elements that is suitable for input to 256-bit
4488 /// version of MOVDDUP.
4489 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4490   if (!HasFp256 || !VT.is256BitVector())
4491     return false;
4492
4493   unsigned NumElts = VT.getVectorNumElements();
4494   if (NumElts != 4)
4495     return false;
4496
4497   for (unsigned i = 0; i != NumElts/2; ++i)
4498     if (!isUndefOrEqual(Mask[i], 0))
4499       return false;
4500   for (unsigned i = NumElts/2; i != NumElts; ++i)
4501     if (!isUndefOrEqual(Mask[i], NumElts/2))
4502       return false;
4503   return true;
4504 }
4505
4506 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4507 /// specifies a shuffle of elements that is suitable for input to 128-bit
4508 /// version of MOVDDUP.
4509 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4510   if (!VT.is128BitVector())
4511     return false;
4512
4513   unsigned e = VT.getVectorNumElements() / 2;
4514   for (unsigned i = 0; i != e; ++i)
4515     if (!isUndefOrEqual(Mask[i], i))
4516       return false;
4517   for (unsigned i = 0; i != e; ++i)
4518     if (!isUndefOrEqual(Mask[e+i], i))
4519       return false;
4520   return true;
4521 }
4522
4523 /// isVEXTRACTIndex - Return true if the specified
4524 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4525 /// suitable for instruction that extract 128 or 256 bit vectors
4526 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4527   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4528   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4529     return false;
4530
4531   // The index should be aligned on a vecWidth-bit boundary.
4532   uint64_t Index =
4533     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4534
4535   MVT VT = N->getSimpleValueType(0);
4536   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4537   bool Result = (Index * ElSize) % vecWidth == 0;
4538
4539   return Result;
4540 }
4541
4542 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4543 /// operand specifies a subvector insert that is suitable for input to
4544 /// insertion of 128 or 256-bit subvectors
4545 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4546   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4547   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4548     return false;
4549   // The index should be aligned on a vecWidth-bit boundary.
4550   uint64_t Index =
4551     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4552
4553   MVT VT = N->getSimpleValueType(0);
4554   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4555   bool Result = (Index * ElSize) % vecWidth == 0;
4556
4557   return Result;
4558 }
4559
4560 bool X86::isVINSERT128Index(SDNode *N) {
4561   return isVINSERTIndex(N, 128);
4562 }
4563
4564 bool X86::isVINSERT256Index(SDNode *N) {
4565   return isVINSERTIndex(N, 256);
4566 }
4567
4568 bool X86::isVEXTRACT128Index(SDNode *N) {
4569   return isVEXTRACTIndex(N, 128);
4570 }
4571
4572 bool X86::isVEXTRACT256Index(SDNode *N) {
4573   return isVEXTRACTIndex(N, 256);
4574 }
4575
4576 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4577 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4578 /// Handles 128-bit and 256-bit.
4579 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4580   MVT VT = N->getSimpleValueType(0);
4581
4582   assert((VT.getSizeInBits() >= 128) &&
4583          "Unsupported vector type for PSHUF/SHUFP");
4584
4585   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4586   // independently on 128-bit lanes.
4587   unsigned NumElts = VT.getVectorNumElements();
4588   unsigned NumLanes = VT.getSizeInBits()/128;
4589   unsigned NumLaneElts = NumElts/NumLanes;
4590
4591   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4592          "Only supports 2, 4 or 8 elements per lane");
4593
4594   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4595   unsigned Mask = 0;
4596   for (unsigned i = 0; i != NumElts; ++i) {
4597     int Elt = N->getMaskElt(i);
4598     if (Elt < 0) continue;
4599     Elt &= NumLaneElts - 1;
4600     unsigned ShAmt = (i << Shift) % 8;
4601     Mask |= Elt << ShAmt;
4602   }
4603
4604   return Mask;
4605 }
4606
4607 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4608 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4609 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4610   MVT VT = N->getSimpleValueType(0);
4611
4612   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4613          "Unsupported vector type for PSHUFHW");
4614
4615   unsigned NumElts = VT.getVectorNumElements();
4616
4617   unsigned Mask = 0;
4618   for (unsigned l = 0; l != NumElts; l += 8) {
4619     // 8 nodes per lane, but we only care about the last 4.
4620     for (unsigned i = 0; i < 4; ++i) {
4621       int Elt = N->getMaskElt(l+i+4);
4622       if (Elt < 0) continue;
4623       Elt &= 0x3; // only 2-bits.
4624       Mask |= Elt << (i * 2);
4625     }
4626   }
4627
4628   return Mask;
4629 }
4630
4631 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4632 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4633 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4634   MVT VT = N->getSimpleValueType(0);
4635
4636   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4637          "Unsupported vector type for PSHUFHW");
4638
4639   unsigned NumElts = VT.getVectorNumElements();
4640
4641   unsigned Mask = 0;
4642   for (unsigned l = 0; l != NumElts; l += 8) {
4643     // 8 nodes per lane, but we only care about the first 4.
4644     for (unsigned i = 0; i < 4; ++i) {
4645       int Elt = N->getMaskElt(l+i);
4646       if (Elt < 0) continue;
4647       Elt &= 0x3; // only 2-bits
4648       Mask |= Elt << (i * 2);
4649     }
4650   }
4651
4652   return Mask;
4653 }
4654
4655 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4656 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4657 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4658   MVT VT = SVOp->getSimpleValueType(0);
4659   unsigned EltSize = VT.is512BitVector() ? 1 :
4660     VT.getVectorElementType().getSizeInBits() >> 3;
4661
4662   unsigned NumElts = VT.getVectorNumElements();
4663   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4664   unsigned NumLaneElts = NumElts/NumLanes;
4665
4666   int Val = 0;
4667   unsigned i;
4668   for (i = 0; i != NumElts; ++i) {
4669     Val = SVOp->getMaskElt(i);
4670     if (Val >= 0)
4671       break;
4672   }
4673   if (Val >= (int)NumElts)
4674     Val -= NumElts - NumLaneElts;
4675
4676   assert(Val - i > 0 && "PALIGNR imm should be positive");
4677   return (Val - i) * EltSize;
4678 }
4679
4680 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4681   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4682   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4683     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4684
4685   uint64_t Index =
4686     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4687
4688   MVT VecVT = N->getOperand(0).getSimpleValueType();
4689   MVT ElVT = VecVT.getVectorElementType();
4690
4691   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4692   return Index / NumElemsPerChunk;
4693 }
4694
4695 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4696   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4697   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4698     llvm_unreachable("Illegal insert subvector for VINSERT");
4699
4700   uint64_t Index =
4701     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4702
4703   MVT VecVT = N->getSimpleValueType(0);
4704   MVT ElVT = VecVT.getVectorElementType();
4705
4706   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4707   return Index / NumElemsPerChunk;
4708 }
4709
4710 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4711 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4712 /// and VINSERTI128 instructions.
4713 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4714   return getExtractVEXTRACTImmediate(N, 128);
4715 }
4716
4717 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4718 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4719 /// and VINSERTI64x4 instructions.
4720 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4721   return getExtractVEXTRACTImmediate(N, 256);
4722 }
4723
4724 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4725 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4726 /// and VINSERTI128 instructions.
4727 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4728   return getInsertVINSERTImmediate(N, 128);
4729 }
4730
4731 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4732 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4733 /// and VINSERTI64x4 instructions.
4734 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4735   return getInsertVINSERTImmediate(N, 256);
4736 }
4737
4738 /// isZero - Returns true if Elt is a constant integer zero
4739 static bool isZero(SDValue V) {
4740   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
4741   return C && C->isNullValue();
4742 }
4743
4744 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4745 /// constant +0.0.
4746 bool X86::isZeroNode(SDValue Elt) {
4747   if (isZero(Elt))
4748     return true;
4749   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4750     return CFP->getValueAPF().isPosZero();
4751   return false;
4752 }
4753
4754 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4755 /// their permute mask.
4756 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4757                                     SelectionDAG &DAG) {
4758   MVT VT = SVOp->getSimpleValueType(0);
4759   unsigned NumElems = VT.getVectorNumElements();
4760   SmallVector<int, 8> MaskVec;
4761
4762   for (unsigned i = 0; i != NumElems; ++i) {
4763     int Idx = SVOp->getMaskElt(i);
4764     if (Idx >= 0) {
4765       if (Idx < (int)NumElems)
4766         Idx += NumElems;
4767       else
4768         Idx -= NumElems;
4769     }
4770     MaskVec.push_back(Idx);
4771   }
4772   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4773                               SVOp->getOperand(0), &MaskVec[0]);
4774 }
4775
4776 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4777 /// match movhlps. The lower half elements should come from upper half of
4778 /// V1 (and in order), and the upper half elements should come from the upper
4779 /// half of V2 (and in order).
4780 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4781   if (!VT.is128BitVector())
4782     return false;
4783   if (VT.getVectorNumElements() != 4)
4784     return false;
4785   for (unsigned i = 0, e = 2; i != e; ++i)
4786     if (!isUndefOrEqual(Mask[i], i+2))
4787       return false;
4788   for (unsigned i = 2; i != 4; ++i)
4789     if (!isUndefOrEqual(Mask[i], i+4))
4790       return false;
4791   return true;
4792 }
4793
4794 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4795 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4796 /// required.
4797 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = nullptr) {
4798   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4799     return false;
4800   N = N->getOperand(0).getNode();
4801   if (!ISD::isNON_EXTLoad(N))
4802     return false;
4803   if (LD)
4804     *LD = cast<LoadSDNode>(N);
4805   return true;
4806 }
4807
4808 // Test whether the given value is a vector value which will be legalized
4809 // into a load.
4810 static bool WillBeConstantPoolLoad(SDNode *N) {
4811   if (N->getOpcode() != ISD::BUILD_VECTOR)
4812     return false;
4813
4814   // Check for any non-constant elements.
4815   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4816     switch (N->getOperand(i).getNode()->getOpcode()) {
4817     case ISD::UNDEF:
4818     case ISD::ConstantFP:
4819     case ISD::Constant:
4820       break;
4821     default:
4822       return false;
4823     }
4824
4825   // Vectors of all-zeros and all-ones are materialized with special
4826   // instructions rather than being loaded.
4827   return !ISD::isBuildVectorAllZeros(N) &&
4828          !ISD::isBuildVectorAllOnes(N);
4829 }
4830
4831 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4832 /// match movlp{s|d}. The lower half elements should come from lower half of
4833 /// V1 (and in order), and the upper half elements should come from the upper
4834 /// half of V2 (and in order). And since V1 will become the source of the
4835 /// MOVLP, it must be either a vector load or a scalar load to vector.
4836 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4837                                ArrayRef<int> Mask, MVT VT) {
4838   if (!VT.is128BitVector())
4839     return false;
4840
4841   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4842     return false;
4843   // Is V2 is a vector load, don't do this transformation. We will try to use
4844   // load folding shufps op.
4845   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4846     return false;
4847
4848   unsigned NumElems = VT.getVectorNumElements();
4849
4850   if (NumElems != 2 && NumElems != 4)
4851     return false;
4852   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4853     if (!isUndefOrEqual(Mask[i], i))
4854       return false;
4855   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4856     if (!isUndefOrEqual(Mask[i], i+NumElems))
4857       return false;
4858   return true;
4859 }
4860
4861 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4862 /// to an zero vector.
4863 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4864 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4865   SDValue V1 = N->getOperand(0);
4866   SDValue V2 = N->getOperand(1);
4867   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4868   for (unsigned i = 0; i != NumElems; ++i) {
4869     int Idx = N->getMaskElt(i);
4870     if (Idx >= (int)NumElems) {
4871       unsigned Opc = V2.getOpcode();
4872       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4873         continue;
4874       if (Opc != ISD::BUILD_VECTOR ||
4875           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4876         return false;
4877     } else if (Idx >= 0) {
4878       unsigned Opc = V1.getOpcode();
4879       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4880         continue;
4881       if (Opc != ISD::BUILD_VECTOR ||
4882           !X86::isZeroNode(V1.getOperand(Idx)))
4883         return false;
4884     }
4885   }
4886   return true;
4887 }
4888
4889 /// getZeroVector - Returns a vector of specified type with all zero elements.
4890 ///
4891 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4892                              SelectionDAG &DAG, SDLoc dl) {
4893   assert(VT.isVector() && "Expected a vector type");
4894
4895   // Always build SSE zero vectors as <4 x i32> bitcasted
4896   // to their dest type. This ensures they get CSE'd.
4897   SDValue Vec;
4898   if (VT.is128BitVector()) {  // SSE
4899     if (Subtarget->hasSSE2()) {  // SSE2
4900       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4901       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4902     } else { // SSE1
4903       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4904       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4905     }
4906   } else if (VT.is256BitVector()) { // AVX
4907     if (Subtarget->hasInt256()) { // AVX2
4908       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4909       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4910       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4911     } else {
4912       // 256-bit logic and arithmetic instructions in AVX are all
4913       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4914       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4915       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4916       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4917     }
4918   } else if (VT.is512BitVector()) { // AVX-512
4919       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4920       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4921                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4922       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4923   } else if (VT.getScalarType() == MVT::i1) {
4924     assert(VT.getVectorNumElements() <= 16 && "Unexpected vector type");
4925     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
4926     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
4927     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4928   } else
4929     llvm_unreachable("Unexpected vector type");
4930
4931   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4932 }
4933
4934 /// getOnesVector - Returns a vector of specified type with all bits set.
4935 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4936 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4937 /// Then bitcast to their original type, ensuring they get CSE'd.
4938 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4939                              SDLoc dl) {
4940   assert(VT.isVector() && "Expected a vector type");
4941
4942   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4943   SDValue Vec;
4944   if (VT.is256BitVector()) {
4945     if (HasInt256) { // AVX2
4946       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4947       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4948     } else { // AVX
4949       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4950       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4951     }
4952   } else if (VT.is128BitVector()) {
4953     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4954   } else
4955     llvm_unreachable("Unexpected vector type");
4956
4957   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4958 }
4959
4960 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4961 /// that point to V2 points to its first element.
4962 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4963   for (unsigned i = 0; i != NumElems; ++i) {
4964     if (Mask[i] > (int)NumElems) {
4965       Mask[i] = NumElems;
4966     }
4967   }
4968 }
4969
4970 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4971 /// operation of specified width.
4972 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4973                        SDValue V2) {
4974   unsigned NumElems = VT.getVectorNumElements();
4975   SmallVector<int, 8> Mask;
4976   Mask.push_back(NumElems);
4977   for (unsigned i = 1; i != NumElems; ++i)
4978     Mask.push_back(i);
4979   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4980 }
4981
4982 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4983 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4984                           SDValue V2) {
4985   unsigned NumElems = VT.getVectorNumElements();
4986   SmallVector<int, 8> Mask;
4987   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4988     Mask.push_back(i);
4989     Mask.push_back(i + NumElems);
4990   }
4991   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4992 }
4993
4994 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4995 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4996                           SDValue V2) {
4997   unsigned NumElems = VT.getVectorNumElements();
4998   SmallVector<int, 8> Mask;
4999   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
5000     Mask.push_back(i + Half);
5001     Mask.push_back(i + NumElems + Half);
5002   }
5003   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
5004 }
5005
5006 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
5007 // a generic shuffle instruction because the target has no such instructions.
5008 // Generate shuffles which repeat i16 and i8 several times until they can be
5009 // represented by v4f32 and then be manipulated by target suported shuffles.
5010 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
5011   MVT VT = V.getSimpleValueType();
5012   int NumElems = VT.getVectorNumElements();
5013   SDLoc dl(V);
5014
5015   while (NumElems > 4) {
5016     if (EltNo < NumElems/2) {
5017       V = getUnpackl(DAG, dl, VT, V, V);
5018     } else {
5019       V = getUnpackh(DAG, dl, VT, V, V);
5020       EltNo -= NumElems/2;
5021     }
5022     NumElems >>= 1;
5023   }
5024   return V;
5025 }
5026
5027 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
5028 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
5029   MVT VT = V.getSimpleValueType();
5030   SDLoc dl(V);
5031
5032   if (VT.is128BitVector()) {
5033     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
5034     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
5035     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
5036                              &SplatMask[0]);
5037   } else if (VT.is256BitVector()) {
5038     // To use VPERMILPS to splat scalars, the second half of indicies must
5039     // refer to the higher part, which is a duplication of the lower one,
5040     // because VPERMILPS can only handle in-lane permutations.
5041     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
5042                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
5043
5044     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
5045     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
5046                              &SplatMask[0]);
5047   } else
5048     llvm_unreachable("Vector size not supported");
5049
5050   return DAG.getNode(ISD::BITCAST, dl, VT, V);
5051 }
5052
5053 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
5054 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
5055   MVT SrcVT = SV->getSimpleValueType(0);
5056   SDValue V1 = SV->getOperand(0);
5057   SDLoc dl(SV);
5058
5059   int EltNo = SV->getSplatIndex();
5060   int NumElems = SrcVT.getVectorNumElements();
5061   bool Is256BitVec = SrcVT.is256BitVector();
5062
5063   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
5064          "Unknown how to promote splat for type");
5065
5066   // Extract the 128-bit part containing the splat element and update
5067   // the splat element index when it refers to the higher register.
5068   if (Is256BitVec) {
5069     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
5070     if (EltNo >= NumElems/2)
5071       EltNo -= NumElems/2;
5072   }
5073
5074   // All i16 and i8 vector types can't be used directly by a generic shuffle
5075   // instruction because the target has no such instruction. Generate shuffles
5076   // which repeat i16 and i8 several times until they fit in i32, and then can
5077   // be manipulated by target suported shuffles.
5078   MVT EltVT = SrcVT.getVectorElementType();
5079   if (EltVT == MVT::i8 || EltVT == MVT::i16)
5080     V1 = PromoteSplati8i16(V1, DAG, EltNo);
5081
5082   // Recreate the 256-bit vector and place the same 128-bit vector
5083   // into the low and high part. This is necessary because we want
5084   // to use VPERM* to shuffle the vectors
5085   if (Is256BitVec) {
5086     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
5087   }
5088
5089   return getLegalSplat(DAG, V1, EltNo);
5090 }
5091
5092 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
5093 /// vector of zero or undef vector.  This produces a shuffle where the low
5094 /// element of V2 is swizzled into the zero/undef vector, landing at element
5095 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
5096 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
5097                                            bool IsZero,
5098                                            const X86Subtarget *Subtarget,
5099                                            SelectionDAG &DAG) {
5100   MVT VT = V2.getSimpleValueType();
5101   SDValue V1 = IsZero
5102     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
5103   unsigned NumElems = VT.getVectorNumElements();
5104   SmallVector<int, 16> MaskVec;
5105   for (unsigned i = 0; i != NumElems; ++i)
5106     // If this is the insertion idx, put the low elt of V2 here.
5107     MaskVec.push_back(i == Idx ? NumElems : i);
5108   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
5109 }
5110
5111 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
5112 /// target specific opcode. Returns true if the Mask could be calculated.
5113 /// Sets IsUnary to true if only uses one source.
5114 static bool getTargetShuffleMask(SDNode *N, MVT VT,
5115                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
5116   unsigned NumElems = VT.getVectorNumElements();
5117   SDValue ImmN;
5118
5119   IsUnary = false;
5120   switch(N->getOpcode()) {
5121   case X86ISD::SHUFP:
5122     ImmN = N->getOperand(N->getNumOperands()-1);
5123     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5124     break;
5125   case X86ISD::UNPCKH:
5126     DecodeUNPCKHMask(VT, Mask);
5127     break;
5128   case X86ISD::UNPCKL:
5129     DecodeUNPCKLMask(VT, Mask);
5130     break;
5131   case X86ISD::MOVHLPS:
5132     DecodeMOVHLPSMask(NumElems, Mask);
5133     break;
5134   case X86ISD::MOVLHPS:
5135     DecodeMOVLHPSMask(NumElems, Mask);
5136     break;
5137   case X86ISD::PALIGNR:
5138     ImmN = N->getOperand(N->getNumOperands()-1);
5139     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5140     break;
5141   case X86ISD::PSHUFD:
5142   case X86ISD::VPERMILP:
5143     ImmN = N->getOperand(N->getNumOperands()-1);
5144     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5145     IsUnary = true;
5146     break;
5147   case X86ISD::PSHUFHW:
5148     ImmN = N->getOperand(N->getNumOperands()-1);
5149     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5150     IsUnary = true;
5151     break;
5152   case X86ISD::PSHUFLW:
5153     ImmN = N->getOperand(N->getNumOperands()-1);
5154     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5155     IsUnary = true;
5156     break;
5157   case X86ISD::VPERMI:
5158     ImmN = N->getOperand(N->getNumOperands()-1);
5159     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5160     IsUnary = true;
5161     break;
5162   case X86ISD::MOVSS:
5163   case X86ISD::MOVSD: {
5164     // The index 0 always comes from the first element of the second source,
5165     // this is why MOVSS and MOVSD are used in the first place. The other
5166     // elements come from the other positions of the first source vector
5167     Mask.push_back(NumElems);
5168     for (unsigned i = 1; i != NumElems; ++i) {
5169       Mask.push_back(i);
5170     }
5171     break;
5172   }
5173   case X86ISD::VPERM2X128:
5174     ImmN = N->getOperand(N->getNumOperands()-1);
5175     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5176     if (Mask.empty()) return false;
5177     break;
5178   case X86ISD::MOVDDUP:
5179   case X86ISD::MOVLHPD:
5180   case X86ISD::MOVLPD:
5181   case X86ISD::MOVLPS:
5182   case X86ISD::MOVSHDUP:
5183   case X86ISD::MOVSLDUP:
5184     // Not yet implemented
5185     return false;
5186   default: llvm_unreachable("unknown target shuffle node");
5187   }
5188
5189   return true;
5190 }
5191
5192 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5193 /// element of the result of the vector shuffle.
5194 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5195                                    unsigned Depth) {
5196   if (Depth == 6)
5197     return SDValue();  // Limit search depth.
5198
5199   SDValue V = SDValue(N, 0);
5200   EVT VT = V.getValueType();
5201   unsigned Opcode = V.getOpcode();
5202
5203   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5204   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5205     int Elt = SV->getMaskElt(Index);
5206
5207     if (Elt < 0)
5208       return DAG.getUNDEF(VT.getVectorElementType());
5209
5210     unsigned NumElems = VT.getVectorNumElements();
5211     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5212                                          : SV->getOperand(1);
5213     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5214   }
5215
5216   // Recurse into target specific vector shuffles to find scalars.
5217   if (isTargetShuffle(Opcode)) {
5218     MVT ShufVT = V.getSimpleValueType();
5219     unsigned NumElems = ShufVT.getVectorNumElements();
5220     SmallVector<int, 16> ShuffleMask;
5221     bool IsUnary;
5222
5223     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5224       return SDValue();
5225
5226     int Elt = ShuffleMask[Index];
5227     if (Elt < 0)
5228       return DAG.getUNDEF(ShufVT.getVectorElementType());
5229
5230     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5231                                          : N->getOperand(1);
5232     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5233                                Depth+1);
5234   }
5235
5236   // Actual nodes that may contain scalar elements
5237   if (Opcode == ISD::BITCAST) {
5238     V = V.getOperand(0);
5239     EVT SrcVT = V.getValueType();
5240     unsigned NumElems = VT.getVectorNumElements();
5241
5242     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5243       return SDValue();
5244   }
5245
5246   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5247     return (Index == 0) ? V.getOperand(0)
5248                         : DAG.getUNDEF(VT.getVectorElementType());
5249
5250   if (V.getOpcode() == ISD::BUILD_VECTOR)
5251     return V.getOperand(Index);
5252
5253   return SDValue();
5254 }
5255
5256 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5257 /// shuffle operation which come from a consecutively from a zero. The
5258 /// search can start in two different directions, from left or right.
5259 /// We count undefs as zeros until PreferredNum is reached.
5260 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5261                                          unsigned NumElems, bool ZerosFromLeft,
5262                                          SelectionDAG &DAG,
5263                                          unsigned PreferredNum = -1U) {
5264   unsigned NumZeros = 0;
5265   for (unsigned i = 0; i != NumElems; ++i) {
5266     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5267     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5268     if (!Elt.getNode())
5269       break;
5270
5271     if (X86::isZeroNode(Elt))
5272       ++NumZeros;
5273     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5274       NumZeros = std::min(NumZeros + 1, PreferredNum);
5275     else
5276       break;
5277   }
5278
5279   return NumZeros;
5280 }
5281
5282 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5283 /// correspond consecutively to elements from one of the vector operands,
5284 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5285 static
5286 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5287                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5288                               unsigned NumElems, unsigned &OpNum) {
5289   bool SeenV1 = false;
5290   bool SeenV2 = false;
5291
5292   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5293     int Idx = SVOp->getMaskElt(i);
5294     // Ignore undef indicies
5295     if (Idx < 0)
5296       continue;
5297
5298     if (Idx < (int)NumElems)
5299       SeenV1 = true;
5300     else
5301       SeenV2 = true;
5302
5303     // Only accept consecutive elements from the same vector
5304     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5305       return false;
5306   }
5307
5308   OpNum = SeenV1 ? 0 : 1;
5309   return true;
5310 }
5311
5312 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5313 /// logical left shift of a vector.
5314 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5315                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5316   unsigned NumElems =
5317     SVOp->getSimpleValueType(0).getVectorNumElements();
5318   unsigned NumZeros = getNumOfConsecutiveZeros(
5319       SVOp, NumElems, false /* check zeros from right */, DAG,
5320       SVOp->getMaskElt(0));
5321   unsigned OpSrc;
5322
5323   if (!NumZeros)
5324     return false;
5325
5326   // Considering the elements in the mask that are not consecutive zeros,
5327   // check if they consecutively come from only one of the source vectors.
5328   //
5329   //               V1 = {X, A, B, C}     0
5330   //                         \  \  \    /
5331   //   vector_shuffle V1, V2 <1, 2, 3, X>
5332   //
5333   if (!isShuffleMaskConsecutive(SVOp,
5334             0,                   // Mask Start Index
5335             NumElems-NumZeros,   // Mask End Index(exclusive)
5336             NumZeros,            // Where to start looking in the src vector
5337             NumElems,            // Number of elements in vector
5338             OpSrc))              // Which source operand ?
5339     return false;
5340
5341   isLeft = false;
5342   ShAmt = NumZeros;
5343   ShVal = SVOp->getOperand(OpSrc);
5344   return true;
5345 }
5346
5347 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5348 /// logical left shift of a vector.
5349 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5350                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5351   unsigned NumElems =
5352     SVOp->getSimpleValueType(0).getVectorNumElements();
5353   unsigned NumZeros = getNumOfConsecutiveZeros(
5354       SVOp, NumElems, true /* check zeros from left */, DAG,
5355       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5356   unsigned OpSrc;
5357
5358   if (!NumZeros)
5359     return false;
5360
5361   // Considering the elements in the mask that are not consecutive zeros,
5362   // check if they consecutively come from only one of the source vectors.
5363   //
5364   //                           0    { A, B, X, X } = V2
5365   //                          / \    /  /
5366   //   vector_shuffle V1, V2 <X, X, 4, 5>
5367   //
5368   if (!isShuffleMaskConsecutive(SVOp,
5369             NumZeros,     // Mask Start Index
5370             NumElems,     // Mask End Index(exclusive)
5371             0,            // Where to start looking in the src vector
5372             NumElems,     // Number of elements in vector
5373             OpSrc))       // Which source operand ?
5374     return false;
5375
5376   isLeft = true;
5377   ShAmt = NumZeros;
5378   ShVal = SVOp->getOperand(OpSrc);
5379   return true;
5380 }
5381
5382 /// isVectorShift - Returns true if the shuffle can be implemented as a
5383 /// logical left or right shift of a vector.
5384 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5385                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5386   // Although the logic below support any bitwidth size, there are no
5387   // shift instructions which handle more than 128-bit vectors.
5388   if (!SVOp->getSimpleValueType(0).is128BitVector())
5389     return false;
5390
5391   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5392       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5393     return true;
5394
5395   return false;
5396 }
5397
5398 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5399 ///
5400 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5401                                        unsigned NumNonZero, unsigned NumZero,
5402                                        SelectionDAG &DAG,
5403                                        const X86Subtarget* Subtarget,
5404                                        const TargetLowering &TLI) {
5405   if (NumNonZero > 8)
5406     return SDValue();
5407
5408   SDLoc dl(Op);
5409   SDValue V;
5410   bool First = true;
5411   for (unsigned i = 0; i < 16; ++i) {
5412     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5413     if (ThisIsNonZero && First) {
5414       if (NumZero)
5415         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5416       else
5417         V = DAG.getUNDEF(MVT::v8i16);
5418       First = false;
5419     }
5420
5421     if ((i & 1) != 0) {
5422       SDValue ThisElt, LastElt;
5423       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5424       if (LastIsNonZero) {
5425         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5426                               MVT::i16, Op.getOperand(i-1));
5427       }
5428       if (ThisIsNonZero) {
5429         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5430         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5431                               ThisElt, DAG.getConstant(8, MVT::i8));
5432         if (LastIsNonZero)
5433           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5434       } else
5435         ThisElt = LastElt;
5436
5437       if (ThisElt.getNode())
5438         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5439                         DAG.getIntPtrConstant(i/2));
5440     }
5441   }
5442
5443   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5444 }
5445
5446 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5447 ///
5448 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5449                                      unsigned NumNonZero, unsigned NumZero,
5450                                      SelectionDAG &DAG,
5451                                      const X86Subtarget* Subtarget,
5452                                      const TargetLowering &TLI) {
5453   if (NumNonZero > 4)
5454     return SDValue();
5455
5456   SDLoc dl(Op);
5457   SDValue V;
5458   bool First = true;
5459   for (unsigned i = 0; i < 8; ++i) {
5460     bool isNonZero = (NonZeros & (1 << i)) != 0;
5461     if (isNonZero) {
5462       if (First) {
5463         if (NumZero)
5464           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5465         else
5466           V = DAG.getUNDEF(MVT::v8i16);
5467         First = false;
5468       }
5469       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5470                       MVT::v8i16, V, Op.getOperand(i),
5471                       DAG.getIntPtrConstant(i));
5472     }
5473   }
5474
5475   return V;
5476 }
5477
5478 /// LowerBuildVectorv4x32 - Custom lower build_vector of v4i32 or v4f32.
5479 static SDValue LowerBuildVectorv4x32(SDValue Op, unsigned NumElems,
5480                                      unsigned NonZeros, unsigned NumNonZero,
5481                                      unsigned NumZero, SelectionDAG &DAG,
5482                                      const X86Subtarget *Subtarget,
5483                                      const TargetLowering &TLI) {
5484   // We know there's at least one non-zero element
5485   unsigned FirstNonZeroIdx = 0;
5486   SDValue FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5487   while (FirstNonZero.getOpcode() == ISD::UNDEF ||
5488          X86::isZeroNode(FirstNonZero)) {
5489     ++FirstNonZeroIdx;
5490     FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5491   }
5492
5493   if (FirstNonZero.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5494       !isa<ConstantSDNode>(FirstNonZero.getOperand(1)))
5495     return SDValue();
5496
5497   SDValue V = FirstNonZero.getOperand(0);
5498   MVT VVT = V.getSimpleValueType();
5499   if (!Subtarget->hasSSE41() || (VVT != MVT::v4f32 && VVT != MVT::v4i32))
5500     return SDValue();
5501
5502   unsigned FirstNonZeroDst =
5503       cast<ConstantSDNode>(FirstNonZero.getOperand(1))->getZExtValue();
5504   unsigned CorrectIdx = FirstNonZeroDst == FirstNonZeroIdx;
5505   unsigned IncorrectIdx = CorrectIdx ? -1U : FirstNonZeroIdx;
5506   unsigned IncorrectDst = CorrectIdx ? -1U : FirstNonZeroDst;
5507
5508   for (unsigned Idx = FirstNonZeroIdx + 1; Idx < NumElems; ++Idx) {
5509     SDValue Elem = Op.getOperand(Idx);
5510     if (Elem.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elem))
5511       continue;
5512
5513     // TODO: What else can be here? Deal with it.
5514     if (Elem.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5515       return SDValue();
5516
5517     // TODO: Some optimizations are still possible here
5518     // ex: Getting one element from a vector, and the rest from another.
5519     if (Elem.getOperand(0) != V)
5520       return SDValue();
5521
5522     unsigned Dst = cast<ConstantSDNode>(Elem.getOperand(1))->getZExtValue();
5523     if (Dst == Idx)
5524       ++CorrectIdx;
5525     else if (IncorrectIdx == -1U) {
5526       IncorrectIdx = Idx;
5527       IncorrectDst = Dst;
5528     } else
5529       // There was already one element with an incorrect index.
5530       // We can't optimize this case to an insertps.
5531       return SDValue();
5532   }
5533
5534   if (NumNonZero == CorrectIdx || NumNonZero == CorrectIdx + 1) {
5535     SDLoc dl(Op);
5536     EVT VT = Op.getSimpleValueType();
5537     unsigned ElementMoveMask = 0;
5538     if (IncorrectIdx == -1U)
5539       ElementMoveMask = FirstNonZeroIdx << 6 | FirstNonZeroIdx << 4;
5540     else
5541       ElementMoveMask = IncorrectDst << 6 | IncorrectIdx << 4;
5542
5543     SDValue InsertpsMask =
5544         DAG.getIntPtrConstant(ElementMoveMask | (~NonZeros & 0xf));
5545     return DAG.getNode(X86ISD::INSERTPS, dl, VT, V, V, InsertpsMask);
5546   }
5547
5548   return SDValue();
5549 }
5550
5551 /// getVShift - Return a vector logical shift node.
5552 ///
5553 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5554                          unsigned NumBits, SelectionDAG &DAG,
5555                          const TargetLowering &TLI, SDLoc dl) {
5556   assert(VT.is128BitVector() && "Unknown type for VShift");
5557   EVT ShVT = MVT::v2i64;
5558   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5559   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5560   return DAG.getNode(ISD::BITCAST, dl, VT,
5561                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5562                              DAG.getConstant(NumBits,
5563                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5564 }
5565
5566 static SDValue
5567 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5568
5569   // Check if the scalar load can be widened into a vector load. And if
5570   // the address is "base + cst" see if the cst can be "absorbed" into
5571   // the shuffle mask.
5572   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5573     SDValue Ptr = LD->getBasePtr();
5574     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5575       return SDValue();
5576     EVT PVT = LD->getValueType(0);
5577     if (PVT != MVT::i32 && PVT != MVT::f32)
5578       return SDValue();
5579
5580     int FI = -1;
5581     int64_t Offset = 0;
5582     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5583       FI = FINode->getIndex();
5584       Offset = 0;
5585     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5586                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5587       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5588       Offset = Ptr.getConstantOperandVal(1);
5589       Ptr = Ptr.getOperand(0);
5590     } else {
5591       return SDValue();
5592     }
5593
5594     // FIXME: 256-bit vector instructions don't require a strict alignment,
5595     // improve this code to support it better.
5596     unsigned RequiredAlign = VT.getSizeInBits()/8;
5597     SDValue Chain = LD->getChain();
5598     // Make sure the stack object alignment is at least 16 or 32.
5599     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5600     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5601       if (MFI->isFixedObjectIndex(FI)) {
5602         // Can't change the alignment. FIXME: It's possible to compute
5603         // the exact stack offset and reference FI + adjust offset instead.
5604         // If someone *really* cares about this. That's the way to implement it.
5605         return SDValue();
5606       } else {
5607         MFI->setObjectAlignment(FI, RequiredAlign);
5608       }
5609     }
5610
5611     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5612     // Ptr + (Offset & ~15).
5613     if (Offset < 0)
5614       return SDValue();
5615     if ((Offset % RequiredAlign) & 3)
5616       return SDValue();
5617     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5618     if (StartOffset)
5619       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5620                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5621
5622     int EltNo = (Offset - StartOffset) >> 2;
5623     unsigned NumElems = VT.getVectorNumElements();
5624
5625     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5626     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5627                              LD->getPointerInfo().getWithOffset(StartOffset),
5628                              false, false, false, 0);
5629
5630     SmallVector<int, 8> Mask;
5631     for (unsigned i = 0; i != NumElems; ++i)
5632       Mask.push_back(EltNo);
5633
5634     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5635   }
5636
5637   return SDValue();
5638 }
5639
5640 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5641 /// vector of type 'VT', see if the elements can be replaced by a single large
5642 /// load which has the same value as a build_vector whose operands are 'elts'.
5643 ///
5644 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5645 ///
5646 /// FIXME: we'd also like to handle the case where the last elements are zero
5647 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5648 /// There's even a handy isZeroNode for that purpose.
5649 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5650                                         SDLoc &DL, SelectionDAG &DAG,
5651                                         bool isAfterLegalize) {
5652   EVT EltVT = VT.getVectorElementType();
5653   unsigned NumElems = Elts.size();
5654
5655   LoadSDNode *LDBase = nullptr;
5656   unsigned LastLoadedElt = -1U;
5657
5658   // For each element in the initializer, see if we've found a load or an undef.
5659   // If we don't find an initial load element, or later load elements are
5660   // non-consecutive, bail out.
5661   for (unsigned i = 0; i < NumElems; ++i) {
5662     SDValue Elt = Elts[i];
5663
5664     if (!Elt.getNode() ||
5665         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5666       return SDValue();
5667     if (!LDBase) {
5668       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5669         return SDValue();
5670       LDBase = cast<LoadSDNode>(Elt.getNode());
5671       LastLoadedElt = i;
5672       continue;
5673     }
5674     if (Elt.getOpcode() == ISD::UNDEF)
5675       continue;
5676
5677     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5678     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5679       return SDValue();
5680     LastLoadedElt = i;
5681   }
5682
5683   // If we have found an entire vector of loads and undefs, then return a large
5684   // load of the entire vector width starting at the base pointer.  If we found
5685   // consecutive loads for the low half, generate a vzext_load node.
5686   if (LastLoadedElt == NumElems - 1) {
5687
5688     if (isAfterLegalize &&
5689         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5690       return SDValue();
5691
5692     SDValue NewLd = SDValue();
5693
5694     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5695       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5696                           LDBase->getPointerInfo(),
5697                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5698                           LDBase->isInvariant(), 0);
5699     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5700                         LDBase->getPointerInfo(),
5701                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5702                         LDBase->isInvariant(), LDBase->getAlignment());
5703
5704     if (LDBase->hasAnyUseOfValue(1)) {
5705       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5706                                      SDValue(LDBase, 1),
5707                                      SDValue(NewLd.getNode(), 1));
5708       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5709       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5710                              SDValue(NewLd.getNode(), 1));
5711     }
5712
5713     return NewLd;
5714   }
5715   if (NumElems == 4 && LastLoadedElt == 1 &&
5716       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5717     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5718     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5719     SDValue ResNode =
5720         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
5721                                 LDBase->getPointerInfo(),
5722                                 LDBase->getAlignment(),
5723                                 false/*isVolatile*/, true/*ReadMem*/,
5724                                 false/*WriteMem*/);
5725
5726     // Make sure the newly-created LOAD is in the same position as LDBase in
5727     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5728     // update uses of LDBase's output chain to use the TokenFactor.
5729     if (LDBase->hasAnyUseOfValue(1)) {
5730       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5731                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5732       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5733       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5734                              SDValue(ResNode.getNode(), 1));
5735     }
5736
5737     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5738   }
5739   return SDValue();
5740 }
5741
5742 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5743 /// to generate a splat value for the following cases:
5744 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5745 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5746 /// a scalar load, or a constant.
5747 /// The VBROADCAST node is returned when a pattern is found,
5748 /// or SDValue() otherwise.
5749 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5750                                     SelectionDAG &DAG) {
5751   if (!Subtarget->hasFp256())
5752     return SDValue();
5753
5754   MVT VT = Op.getSimpleValueType();
5755   SDLoc dl(Op);
5756
5757   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5758          "Unsupported vector type for broadcast.");
5759
5760   SDValue Ld;
5761   bool ConstSplatVal;
5762
5763   switch (Op.getOpcode()) {
5764     default:
5765       // Unknown pattern found.
5766       return SDValue();
5767
5768     case ISD::BUILD_VECTOR: {
5769       auto *BVOp = cast<BuildVectorSDNode>(Op.getNode());
5770       // The BUILD_VECTOR node must be a splat.
5771       SDValue Splat = BVOp->getConstantSplatValue();
5772       if (!Splat)
5773         return SDValue();
5774
5775       Ld = Splat;
5776       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5777                      Ld.getOpcode() == ISD::ConstantFP);
5778
5779       // The suspected load node has several users. Make sure that all
5780       // of its users are from the BUILD_VECTOR node.
5781       // Constants may have multiple users.
5782       // FIXME: This doesn't make sense if the build vector contains undefs.
5783       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5784         return SDValue();
5785       break;
5786     }
5787
5788     case ISD::VECTOR_SHUFFLE: {
5789       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5790
5791       // Shuffles must have a splat mask where the first element is
5792       // broadcasted.
5793       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5794         return SDValue();
5795
5796       SDValue Sc = Op.getOperand(0);
5797       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5798           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5799
5800         if (!Subtarget->hasInt256())
5801           return SDValue();
5802
5803         // Use the register form of the broadcast instruction available on AVX2.
5804         if (VT.getSizeInBits() >= 256)
5805           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5806         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5807       }
5808
5809       Ld = Sc.getOperand(0);
5810       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5811                        Ld.getOpcode() == ISD::ConstantFP);
5812
5813       // The scalar_to_vector node and the suspected
5814       // load node must have exactly one user.
5815       // Constants may have multiple users.
5816
5817       // AVX-512 has register version of the broadcast
5818       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5819         Ld.getValueType().getSizeInBits() >= 32;
5820       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5821           !hasRegVer))
5822         return SDValue();
5823       break;
5824     }
5825   }
5826
5827   bool IsGE256 = (VT.getSizeInBits() >= 256);
5828
5829   // Handle the broadcasting a single constant scalar from the constant pool
5830   // into a vector. On Sandybridge it is still better to load a constant vector
5831   // from the constant pool and not to broadcast it from a scalar.
5832   if (ConstSplatVal && Subtarget->hasInt256()) {
5833     EVT CVT = Ld.getValueType();
5834     assert(!CVT.isVector() && "Must not broadcast a vector type");
5835     unsigned ScalarSize = CVT.getSizeInBits();
5836
5837     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5838       const Constant *C = nullptr;
5839       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5840         C = CI->getConstantIntValue();
5841       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5842         C = CF->getConstantFPValue();
5843
5844       assert(C && "Invalid constant type");
5845
5846       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5847       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5848       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5849       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5850                        MachinePointerInfo::getConstantPool(),
5851                        false, false, false, Alignment);
5852
5853       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5854     }
5855   }
5856
5857   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5858   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5859
5860   // Handle AVX2 in-register broadcasts.
5861   if (!IsLoad && Subtarget->hasInt256() &&
5862       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5863     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5864
5865   // The scalar source must be a normal load.
5866   if (!IsLoad)
5867     return SDValue();
5868
5869   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5870     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5871
5872   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5873   // double since there is no vbroadcastsd xmm
5874   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5875     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5876       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5877   }
5878
5879   // Unsupported broadcast.
5880   return SDValue();
5881 }
5882
5883 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5884 /// underlying vector and index.
5885 ///
5886 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5887 /// index.
5888 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5889                                          SDValue ExtIdx) {
5890   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5891   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5892     return Idx;
5893
5894   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5895   // lowered this:
5896   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
5897   // to:
5898   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
5899   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
5900   //                           undef)
5901   //                       Constant<0>)
5902   // In this case the vector is the extract_subvector expression and the index
5903   // is 2, as specified by the shuffle.
5904   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
5905   SDValue ShuffleVec = SVOp->getOperand(0);
5906   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
5907   assert(ShuffleVecVT.getVectorElementType() ==
5908          ExtractedFromVec.getSimpleValueType().getVectorElementType());
5909
5910   int ShuffleIdx = SVOp->getMaskElt(Idx);
5911   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
5912     ExtractedFromVec = ShuffleVec;
5913     return ShuffleIdx;
5914   }
5915   return Idx;
5916 }
5917
5918 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5919   MVT VT = Op.getSimpleValueType();
5920
5921   // Skip if insert_vec_elt is not supported.
5922   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5923   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5924     return SDValue();
5925
5926   SDLoc DL(Op);
5927   unsigned NumElems = Op.getNumOperands();
5928
5929   SDValue VecIn1;
5930   SDValue VecIn2;
5931   SmallVector<unsigned, 4> InsertIndices;
5932   SmallVector<int, 8> Mask(NumElems, -1);
5933
5934   for (unsigned i = 0; i != NumElems; ++i) {
5935     unsigned Opc = Op.getOperand(i).getOpcode();
5936
5937     if (Opc == ISD::UNDEF)
5938       continue;
5939
5940     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5941       // Quit if more than 1 elements need inserting.
5942       if (InsertIndices.size() > 1)
5943         return SDValue();
5944
5945       InsertIndices.push_back(i);
5946       continue;
5947     }
5948
5949     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5950     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5951     // Quit if non-constant index.
5952     if (!isa<ConstantSDNode>(ExtIdx))
5953       return SDValue();
5954     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
5955
5956     // Quit if extracted from vector of different type.
5957     if (ExtractedFromVec.getValueType() != VT)
5958       return SDValue();
5959
5960     if (!VecIn1.getNode())
5961       VecIn1 = ExtractedFromVec;
5962     else if (VecIn1 != ExtractedFromVec) {
5963       if (!VecIn2.getNode())
5964         VecIn2 = ExtractedFromVec;
5965       else if (VecIn2 != ExtractedFromVec)
5966         // Quit if more than 2 vectors to shuffle
5967         return SDValue();
5968     }
5969
5970     if (ExtractedFromVec == VecIn1)
5971       Mask[i] = Idx;
5972     else if (ExtractedFromVec == VecIn2)
5973       Mask[i] = Idx + NumElems;
5974   }
5975
5976   if (!VecIn1.getNode())
5977     return SDValue();
5978
5979   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5980   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5981   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5982     unsigned Idx = InsertIndices[i];
5983     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5984                      DAG.getIntPtrConstant(Idx));
5985   }
5986
5987   return NV;
5988 }
5989
5990 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5991 SDValue
5992 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5993
5994   MVT VT = Op.getSimpleValueType();
5995   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5996          "Unexpected type in LowerBUILD_VECTORvXi1!");
5997
5998   SDLoc dl(Op);
5999   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6000     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
6001     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
6002     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
6003   }
6004
6005   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
6006     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
6007     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
6008     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
6009   }
6010
6011   bool AllContants = true;
6012   uint64_t Immediate = 0;
6013   int NonConstIdx = -1;
6014   bool IsSplat = true;
6015   unsigned NumNonConsts = 0;
6016   unsigned NumConsts = 0;
6017   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
6018     SDValue In = Op.getOperand(idx);
6019     if (In.getOpcode() == ISD::UNDEF)
6020       continue;
6021     if (!isa<ConstantSDNode>(In)) {
6022       AllContants = false;
6023       NonConstIdx = idx;
6024       NumNonConsts++;
6025     }
6026     else {
6027       NumConsts++;
6028       if (cast<ConstantSDNode>(In)->getZExtValue())
6029       Immediate |= (1ULL << idx);
6030     }
6031     if (In != Op.getOperand(0))
6032       IsSplat = false;
6033   }
6034
6035   if (AllContants) {
6036     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
6037       DAG.getConstant(Immediate, MVT::i16));
6038     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
6039                        DAG.getIntPtrConstant(0));
6040   }
6041
6042   if (NumNonConsts == 1 && NonConstIdx != 0) {
6043     SDValue DstVec;
6044     if (NumConsts) {
6045       SDValue VecAsImm = DAG.getConstant(Immediate,
6046                                          MVT::getIntegerVT(VT.getSizeInBits()));
6047       DstVec = DAG.getNode(ISD::BITCAST, dl, VT, VecAsImm);
6048     }
6049     else 
6050       DstVec = DAG.getUNDEF(VT);
6051     return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
6052                        Op.getOperand(NonConstIdx),
6053                        DAG.getIntPtrConstant(NonConstIdx));
6054   }
6055   if (!IsSplat && (NonConstIdx != 0))
6056     llvm_unreachable("Unsupported BUILD_VECTOR operation");
6057   MVT SelectVT = (VT == MVT::v16i1)? MVT::i16 : MVT::i8;
6058   SDValue Select;
6059   if (IsSplat)
6060     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6061                           DAG.getConstant(-1, SelectVT),
6062                           DAG.getConstant(0, SelectVT));
6063   else
6064     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6065                          DAG.getConstant((Immediate | 1), SelectVT),
6066                          DAG.getConstant(Immediate, SelectVT));
6067   return DAG.getNode(ISD::BITCAST, dl, VT, Select);
6068 }
6069
6070 /// \brief Return true if \p N implements a horizontal binop and return the
6071 /// operands for the horizontal binop into V0 and V1.
6072 /// 
6073 /// This is a helper function of PerformBUILD_VECTORCombine.
6074 /// This function checks that the build_vector \p N in input implements a
6075 /// horizontal operation. Parameter \p Opcode defines the kind of horizontal
6076 /// operation to match.
6077 /// For example, if \p Opcode is equal to ISD::ADD, then this function
6078 /// checks if \p N implements a horizontal arithmetic add; if instead \p Opcode
6079 /// is equal to ISD::SUB, then this function checks if this is a horizontal
6080 /// arithmetic sub.
6081 ///
6082 /// This function only analyzes elements of \p N whose indices are
6083 /// in range [BaseIdx, LastIdx).
6084 static bool isHorizontalBinOp(const BuildVectorSDNode *N, unsigned Opcode,
6085                               SelectionDAG &DAG,
6086                               unsigned BaseIdx, unsigned LastIdx,
6087                               SDValue &V0, SDValue &V1) {
6088   EVT VT = N->getValueType(0);
6089
6090   assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!");
6091   assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx &&
6092          "Invalid Vector in input!");
6093   
6094   bool IsCommutable = (Opcode == ISD::ADD || Opcode == ISD::FADD);
6095   bool CanFold = true;
6096   unsigned ExpectedVExtractIdx = BaseIdx;
6097   unsigned NumElts = LastIdx - BaseIdx;
6098   V0 = DAG.getUNDEF(VT);
6099   V1 = DAG.getUNDEF(VT);
6100
6101   // Check if N implements a horizontal binop.
6102   for (unsigned i = 0, e = NumElts; i != e && CanFold; ++i) {
6103     SDValue Op = N->getOperand(i + BaseIdx);
6104
6105     // Skip UNDEFs.
6106     if (Op->getOpcode() == ISD::UNDEF) {
6107       // Update the expected vector extract index.
6108       if (i * 2 == NumElts)
6109         ExpectedVExtractIdx = BaseIdx;
6110       ExpectedVExtractIdx += 2;
6111       continue;
6112     }
6113
6114     CanFold = Op->getOpcode() == Opcode && Op->hasOneUse();
6115
6116     if (!CanFold)
6117       break;
6118
6119     SDValue Op0 = Op.getOperand(0);
6120     SDValue Op1 = Op.getOperand(1);
6121
6122     // Try to match the following pattern:
6123     // (BINOP (extract_vector_elt A, I), (extract_vector_elt A, I+1))
6124     CanFold = (Op0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
6125         Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
6126         Op0.getOperand(0) == Op1.getOperand(0) &&
6127         isa<ConstantSDNode>(Op0.getOperand(1)) &&
6128         isa<ConstantSDNode>(Op1.getOperand(1)));
6129     if (!CanFold)
6130       break;
6131
6132     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
6133     unsigned I1 = cast<ConstantSDNode>(Op1.getOperand(1))->getZExtValue();
6134
6135     if (i * 2 < NumElts) {
6136       if (V0.getOpcode() == ISD::UNDEF)
6137         V0 = Op0.getOperand(0);
6138     } else {
6139       if (V1.getOpcode() == ISD::UNDEF)
6140         V1 = Op0.getOperand(0);
6141       if (i * 2 == NumElts)
6142         ExpectedVExtractIdx = BaseIdx;
6143     }
6144
6145     SDValue Expected = (i * 2 < NumElts) ? V0 : V1;
6146     if (I0 == ExpectedVExtractIdx)
6147       CanFold = I1 == I0 + 1 && Op0.getOperand(0) == Expected;
6148     else if (IsCommutable && I1 == ExpectedVExtractIdx) {
6149       // Try to match the following dag sequence:
6150       // (BINOP (extract_vector_elt A, I+1), (extract_vector_elt A, I))
6151       CanFold = I0 == I1 + 1 && Op1.getOperand(0) == Expected;
6152     } else
6153       CanFold = false;
6154
6155     ExpectedVExtractIdx += 2;
6156   }
6157
6158   return CanFold;
6159 }
6160
6161 /// \brief Emit a sequence of two 128-bit horizontal add/sub followed by
6162 /// a concat_vector. 
6163 ///
6164 /// This is a helper function of PerformBUILD_VECTORCombine.
6165 /// This function expects two 256-bit vectors called V0 and V1.
6166 /// At first, each vector is split into two separate 128-bit vectors.
6167 /// Then, the resulting 128-bit vectors are used to implement two
6168 /// horizontal binary operations. 
6169 ///
6170 /// The kind of horizontal binary operation is defined by \p X86Opcode.
6171 ///
6172 /// \p Mode specifies how the 128-bit parts of V0 and V1 are passed in input to
6173 /// the two new horizontal binop.
6174 /// When Mode is set, the first horizontal binop dag node would take as input
6175 /// the lower 128-bit of V0 and the upper 128-bit of V0. The second
6176 /// horizontal binop dag node would take as input the lower 128-bit of V1
6177 /// and the upper 128-bit of V1.
6178 ///   Example:
6179 ///     HADD V0_LO, V0_HI
6180 ///     HADD V1_LO, V1_HI
6181 ///
6182 /// Otherwise, the first horizontal binop dag node takes as input the lower
6183 /// 128-bit of V0 and the lower 128-bit of V1, and the second horizontal binop
6184 /// dag node takes the the upper 128-bit of V0 and the upper 128-bit of V1.
6185 ///   Example:
6186 ///     HADD V0_LO, V1_LO
6187 ///     HADD V0_HI, V1_HI
6188 ///
6189 /// If \p isUndefLO is set, then the algorithm propagates UNDEF to the lower
6190 /// 128-bits of the result. If \p isUndefHI is set, then UNDEF is propagated to
6191 /// the upper 128-bits of the result.
6192 static SDValue ExpandHorizontalBinOp(const SDValue &V0, const SDValue &V1,
6193                                      SDLoc DL, SelectionDAG &DAG,
6194                                      unsigned X86Opcode, bool Mode,
6195                                      bool isUndefLO, bool isUndefHI) {
6196   EVT VT = V0.getValueType();
6197   assert(VT.is256BitVector() && VT == V1.getValueType() &&
6198          "Invalid nodes in input!");
6199
6200   unsigned NumElts = VT.getVectorNumElements();
6201   SDValue V0_LO = Extract128BitVector(V0, 0, DAG, DL);
6202   SDValue V0_HI = Extract128BitVector(V0, NumElts/2, DAG, DL);
6203   SDValue V1_LO = Extract128BitVector(V1, 0, DAG, DL);
6204   SDValue V1_HI = Extract128BitVector(V1, NumElts/2, DAG, DL);
6205   EVT NewVT = V0_LO.getValueType();
6206
6207   SDValue LO = DAG.getUNDEF(NewVT);
6208   SDValue HI = DAG.getUNDEF(NewVT);
6209
6210   if (Mode) {
6211     // Don't emit a horizontal binop if the result is expected to be UNDEF.
6212     if (!isUndefLO && V0->getOpcode() != ISD::UNDEF)
6213       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V0_HI);
6214     if (!isUndefHI && V1->getOpcode() != ISD::UNDEF)
6215       HI = DAG.getNode(X86Opcode, DL, NewVT, V1_LO, V1_HI);
6216   } else {
6217     // Don't emit a horizontal binop if the result is expected to be UNDEF.
6218     if (!isUndefLO && (V0_LO->getOpcode() != ISD::UNDEF ||
6219                        V1_LO->getOpcode() != ISD::UNDEF))
6220       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V1_LO);
6221
6222     if (!isUndefHI && (V0_HI->getOpcode() != ISD::UNDEF ||
6223                        V1_HI->getOpcode() != ISD::UNDEF))
6224       HI = DAG.getNode(X86Opcode, DL, NewVT, V0_HI, V1_HI);
6225   }
6226
6227   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LO, HI);
6228 }
6229
6230 /// \brief Try to fold a build_vector that performs an 'addsub' into the
6231 /// sequence of 'vadd + vsub + blendi'.
6232 static SDValue matchAddSub(const BuildVectorSDNode *BV, SelectionDAG &DAG,
6233                            const X86Subtarget *Subtarget) {
6234   SDLoc DL(BV);
6235   EVT VT = BV->getValueType(0);
6236   unsigned NumElts = VT.getVectorNumElements();
6237   SDValue InVec0 = DAG.getUNDEF(VT);
6238   SDValue InVec1 = DAG.getUNDEF(VT);
6239
6240   assert((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v4f32 ||
6241           VT == MVT::v2f64) && "build_vector with an invalid type found!");
6242
6243   // Don't try to emit a VSELECT that cannot be lowered into a blend.
6244   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6245   if (!TLI.isOperationLegalOrCustom(ISD::VSELECT, VT))
6246     return SDValue();
6247
6248   // Odd-numbered elements in the input build vector are obtained from
6249   // adding two integer/float elements.
6250   // Even-numbered elements in the input build vector are obtained from
6251   // subtracting two integer/float elements.
6252   unsigned ExpectedOpcode = ISD::FSUB;
6253   unsigned NextExpectedOpcode = ISD::FADD;
6254   bool AddFound = false;
6255   bool SubFound = false;
6256
6257   for (unsigned i = 0, e = NumElts; i != e; i++) {
6258     SDValue Op = BV->getOperand(i);
6259       
6260     // Skip 'undef' values.
6261     unsigned Opcode = Op.getOpcode();
6262     if (Opcode == ISD::UNDEF) {
6263       std::swap(ExpectedOpcode, NextExpectedOpcode);
6264       continue;
6265     }
6266       
6267     // Early exit if we found an unexpected opcode.
6268     if (Opcode != ExpectedOpcode)
6269       return SDValue();
6270
6271     SDValue Op0 = Op.getOperand(0);
6272     SDValue Op1 = Op.getOperand(1);
6273
6274     // Try to match the following pattern:
6275     // (BINOP (extract_vector_elt A, i), (extract_vector_elt B, i))
6276     // Early exit if we cannot match that sequence.
6277     if (Op0.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6278         Op1.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6279         !isa<ConstantSDNode>(Op0.getOperand(1)) ||
6280         !isa<ConstantSDNode>(Op1.getOperand(1)) ||
6281         Op0.getOperand(1) != Op1.getOperand(1))
6282       return SDValue();
6283
6284     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
6285     if (I0 != i)
6286       return SDValue();
6287
6288     // We found a valid add/sub node. Update the information accordingly.
6289     if (i & 1)
6290       AddFound = true;
6291     else
6292       SubFound = true;
6293
6294     // Update InVec0 and InVec1.
6295     if (InVec0.getOpcode() == ISD::UNDEF)
6296       InVec0 = Op0.getOperand(0);
6297     if (InVec1.getOpcode() == ISD::UNDEF)
6298       InVec1 = Op1.getOperand(0);
6299
6300     // Make sure that operands in input to each add/sub node always
6301     // come from a same pair of vectors.
6302     if (InVec0 != Op0.getOperand(0)) {
6303       if (ExpectedOpcode == ISD::FSUB)
6304         return SDValue();
6305
6306       // FADD is commutable. Try to commute the operands
6307       // and then test again.
6308       std::swap(Op0, Op1);
6309       if (InVec0 != Op0.getOperand(0))
6310         return SDValue();
6311     }
6312
6313     if (InVec1 != Op1.getOperand(0))
6314       return SDValue();
6315
6316     // Update the pair of expected opcodes.
6317     std::swap(ExpectedOpcode, NextExpectedOpcode);
6318   }
6319
6320   // Don't try to fold this build_vector into a VSELECT if it has
6321   // too many UNDEF operands.
6322   if (AddFound && SubFound && InVec0.getOpcode() != ISD::UNDEF &&
6323       InVec1.getOpcode() != ISD::UNDEF) {
6324     // Emit a sequence of vector add and sub followed by a VSELECT.
6325     // The new VSELECT will be lowered into a BLENDI.
6326     // At ISel stage, we pattern-match the sequence 'add + sub + BLENDI'
6327     // and emit a single ADDSUB instruction.
6328     SDValue Sub = DAG.getNode(ExpectedOpcode, DL, VT, InVec0, InVec1);
6329     SDValue Add = DAG.getNode(NextExpectedOpcode, DL, VT, InVec0, InVec1);
6330
6331     // Construct the VSELECT mask.
6332     EVT MaskVT = VT.changeVectorElementTypeToInteger();
6333     EVT SVT = MaskVT.getVectorElementType();
6334     unsigned SVTBits = SVT.getSizeInBits();
6335     SmallVector<SDValue, 8> Ops;
6336
6337     for (unsigned i = 0, e = NumElts; i != e; ++i) {
6338       APInt Value = i & 1 ? APInt::getNullValue(SVTBits) :
6339                             APInt::getAllOnesValue(SVTBits);
6340       SDValue Constant = DAG.getConstant(Value, SVT);
6341       Ops.push_back(Constant);
6342     }
6343
6344     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVT, Ops);
6345     return DAG.getSelect(DL, VT, Mask, Sub, Add);
6346   }
6347   
6348   return SDValue();
6349 }
6350
6351 static SDValue PerformBUILD_VECTORCombine(SDNode *N, SelectionDAG &DAG,
6352                                           const X86Subtarget *Subtarget) {
6353   SDLoc DL(N);
6354   EVT VT = N->getValueType(0);
6355   unsigned NumElts = VT.getVectorNumElements();
6356   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
6357   SDValue InVec0, InVec1;
6358
6359   // Try to match an ADDSUB.
6360   if ((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
6361       (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) {
6362     SDValue Value = matchAddSub(BV, DAG, Subtarget);
6363     if (Value.getNode())
6364       return Value;
6365   }
6366
6367   // Try to match horizontal ADD/SUB.
6368   unsigned NumUndefsLO = 0;
6369   unsigned NumUndefsHI = 0;
6370   unsigned Half = NumElts/2;
6371
6372   // Count the number of UNDEF operands in the build_vector in input.
6373   for (unsigned i = 0, e = Half; i != e; ++i)
6374     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
6375       NumUndefsLO++;
6376
6377   for (unsigned i = Half, e = NumElts; i != e; ++i)
6378     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
6379       NumUndefsHI++;
6380
6381   // Early exit if this is either a build_vector of all UNDEFs or all the
6382   // operands but one are UNDEF.
6383   if (NumUndefsLO + NumUndefsHI + 1 >= NumElts)
6384     return SDValue();
6385
6386   if ((VT == MVT::v4f32 || VT == MVT::v2f64) && Subtarget->hasSSE3()) {
6387     // Try to match an SSE3 float HADD/HSUB.
6388     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6389       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
6390     
6391     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6392       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
6393   } else if ((VT == MVT::v4i32 || VT == MVT::v8i16) && Subtarget->hasSSSE3()) {
6394     // Try to match an SSSE3 integer HADD/HSUB.
6395     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6396       return DAG.getNode(X86ISD::HADD, DL, VT, InVec0, InVec1);
6397     
6398     if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6399       return DAG.getNode(X86ISD::HSUB, DL, VT, InVec0, InVec1);
6400   }
6401   
6402   if (!Subtarget->hasAVX())
6403     return SDValue();
6404
6405   if ((VT == MVT::v8f32 || VT == MVT::v4f64)) {
6406     // Try to match an AVX horizontal add/sub of packed single/double
6407     // precision floating point values from 256-bit vectors.
6408     SDValue InVec2, InVec3;
6409     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, Half, InVec0, InVec1) &&
6410         isHorizontalBinOp(BV, ISD::FADD, DAG, Half, NumElts, InVec2, InVec3) &&
6411         ((InVec0.getOpcode() == ISD::UNDEF ||
6412           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6413         ((InVec1.getOpcode() == ISD::UNDEF ||
6414           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6415       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
6416
6417     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, Half, InVec0, InVec1) &&
6418         isHorizontalBinOp(BV, ISD::FSUB, DAG, Half, NumElts, InVec2, InVec3) &&
6419         ((InVec0.getOpcode() == ISD::UNDEF ||
6420           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6421         ((InVec1.getOpcode() == ISD::UNDEF ||
6422           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6423       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
6424   } else if (VT == MVT::v8i32 || VT == MVT::v16i16) {
6425     // Try to match an AVX2 horizontal add/sub of signed integers.
6426     SDValue InVec2, InVec3;
6427     unsigned X86Opcode;
6428     bool CanFold = true;
6429
6430     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, Half, InVec0, InVec1) &&
6431         isHorizontalBinOp(BV, ISD::ADD, DAG, Half, NumElts, InVec2, InVec3) &&
6432         ((InVec0.getOpcode() == ISD::UNDEF ||
6433           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6434         ((InVec1.getOpcode() == ISD::UNDEF ||
6435           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6436       X86Opcode = X86ISD::HADD;
6437     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, Half, InVec0, InVec1) &&
6438         isHorizontalBinOp(BV, ISD::SUB, DAG, Half, NumElts, InVec2, InVec3) &&
6439         ((InVec0.getOpcode() == ISD::UNDEF ||
6440           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6441         ((InVec1.getOpcode() == ISD::UNDEF ||
6442           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6443       X86Opcode = X86ISD::HSUB;
6444     else
6445       CanFold = false;
6446
6447     if (CanFold) {
6448       // Fold this build_vector into a single horizontal add/sub.
6449       // Do this only if the target has AVX2.
6450       if (Subtarget->hasAVX2())
6451         return DAG.getNode(X86Opcode, DL, VT, InVec0, InVec1);
6452  
6453       // Do not try to expand this build_vector into a pair of horizontal
6454       // add/sub if we can emit a pair of scalar add/sub.
6455       if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6456         return SDValue();
6457
6458       // Convert this build_vector into a pair of horizontal binop followed by
6459       // a concat vector.
6460       bool isUndefLO = NumUndefsLO == Half;
6461       bool isUndefHI = NumUndefsHI == Half;
6462       return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, false,
6463                                    isUndefLO, isUndefHI);
6464     }
6465   }
6466
6467   if ((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v8i32 ||
6468        VT == MVT::v16i16) && Subtarget->hasAVX()) {
6469     unsigned X86Opcode;
6470     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6471       X86Opcode = X86ISD::HADD;
6472     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6473       X86Opcode = X86ISD::HSUB;
6474     else if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6475       X86Opcode = X86ISD::FHADD;
6476     else if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6477       X86Opcode = X86ISD::FHSUB;
6478     else
6479       return SDValue();
6480
6481     // Don't try to expand this build_vector into a pair of horizontal add/sub
6482     // if we can simply emit a pair of scalar add/sub.
6483     if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6484       return SDValue();
6485
6486     // Convert this build_vector into two horizontal add/sub followed by
6487     // a concat vector.
6488     bool isUndefLO = NumUndefsLO == Half;
6489     bool isUndefHI = NumUndefsHI == Half;
6490     return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, true,
6491                                  isUndefLO, isUndefHI);
6492   }
6493
6494   return SDValue();
6495 }
6496
6497 SDValue
6498 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6499   SDLoc dl(Op);
6500
6501   MVT VT = Op.getSimpleValueType();
6502   MVT ExtVT = VT.getVectorElementType();
6503   unsigned NumElems = Op.getNumOperands();
6504
6505   // Generate vectors for predicate vectors.
6506   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
6507     return LowerBUILD_VECTORvXi1(Op, DAG);
6508
6509   // Vectors containing all zeros can be matched by pxor and xorps later
6510   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6511     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
6512     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
6513     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
6514       return Op;
6515
6516     return getZeroVector(VT, Subtarget, DAG, dl);
6517   }
6518
6519   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
6520   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
6521   // vpcmpeqd on 256-bit vectors.
6522   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
6523     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
6524       return Op;
6525
6526     if (!VT.is512BitVector())
6527       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
6528   }
6529
6530   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
6531   if (Broadcast.getNode())
6532     return Broadcast;
6533
6534   unsigned EVTBits = ExtVT.getSizeInBits();
6535
6536   unsigned NumZero  = 0;
6537   unsigned NumNonZero = 0;
6538   unsigned NonZeros = 0;
6539   bool IsAllConstants = true;
6540   SmallSet<SDValue, 8> Values;
6541   for (unsigned i = 0; i < NumElems; ++i) {
6542     SDValue Elt = Op.getOperand(i);
6543     if (Elt.getOpcode() == ISD::UNDEF)
6544       continue;
6545     Values.insert(Elt);
6546     if (Elt.getOpcode() != ISD::Constant &&
6547         Elt.getOpcode() != ISD::ConstantFP)
6548       IsAllConstants = false;
6549     if (X86::isZeroNode(Elt))
6550       NumZero++;
6551     else {
6552       NonZeros |= (1 << i);
6553       NumNonZero++;
6554     }
6555   }
6556
6557   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
6558   if (NumNonZero == 0)
6559     return DAG.getUNDEF(VT);
6560
6561   // Special case for single non-zero, non-undef, element.
6562   if (NumNonZero == 1) {
6563     unsigned Idx = countTrailingZeros(NonZeros);
6564     SDValue Item = Op.getOperand(Idx);
6565
6566     // If this is an insertion of an i64 value on x86-32, and if the top bits of
6567     // the value are obviously zero, truncate the value to i32 and do the
6568     // insertion that way.  Only do this if the value is non-constant or if the
6569     // value is a constant being inserted into element 0.  It is cheaper to do
6570     // a constant pool load than it is to do a movd + shuffle.
6571     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
6572         (!IsAllConstants || Idx == 0)) {
6573       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
6574         // Handle SSE only.
6575         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6576         EVT VecVT = MVT::v4i32;
6577         unsigned VecElts = 4;
6578
6579         // Truncate the value (which may itself be a constant) to i32, and
6580         // convert it to a vector with movd (S2V+shuffle to zero extend).
6581         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
6582         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
6583         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6584
6585         // Now we have our 32-bit value zero extended in the low element of
6586         // a vector.  If Idx != 0, swizzle it into place.
6587         if (Idx != 0) {
6588           SmallVector<int, 4> Mask;
6589           Mask.push_back(Idx);
6590           for (unsigned i = 1; i != VecElts; ++i)
6591             Mask.push_back(i);
6592           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
6593                                       &Mask[0]);
6594         }
6595         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6596       }
6597     }
6598
6599     // If we have a constant or non-constant insertion into the low element of
6600     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
6601     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
6602     // depending on what the source datatype is.
6603     if (Idx == 0) {
6604       if (NumZero == 0)
6605         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6606
6607       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
6608           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
6609         if (VT.is256BitVector() || VT.is512BitVector()) {
6610           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
6611           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
6612                              Item, DAG.getIntPtrConstant(0));
6613         }
6614         assert(VT.is128BitVector() && "Expected an SSE value type!");
6615         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6616         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6617         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6618       }
6619
6620       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6621         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6622         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6623         if (VT.is256BitVector()) {
6624           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6625           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6626         } else {
6627           assert(VT.is128BitVector() && "Expected an SSE value type!");
6628           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6629         }
6630         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6631       }
6632     }
6633
6634     // Is it a vector logical left shift?
6635     if (NumElems == 2 && Idx == 1 &&
6636         X86::isZeroNode(Op.getOperand(0)) &&
6637         !X86::isZeroNode(Op.getOperand(1))) {
6638       unsigned NumBits = VT.getSizeInBits();
6639       return getVShift(true, VT,
6640                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6641                                    VT, Op.getOperand(1)),
6642                        NumBits/2, DAG, *this, dl);
6643     }
6644
6645     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6646       return SDValue();
6647
6648     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6649     // is a non-constant being inserted into an element other than the low one,
6650     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6651     // movd/movss) to move this into the low element, then shuffle it into
6652     // place.
6653     if (EVTBits == 32) {
6654       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6655
6656       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6657       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6658       SmallVector<int, 8> MaskVec;
6659       for (unsigned i = 0; i != NumElems; ++i)
6660         MaskVec.push_back(i == Idx ? 0 : 1);
6661       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6662     }
6663   }
6664
6665   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6666   if (Values.size() == 1) {
6667     if (EVTBits == 32) {
6668       // Instead of a shuffle like this:
6669       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6670       // Check if it's possible to issue this instead.
6671       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6672       unsigned Idx = countTrailingZeros(NonZeros);
6673       SDValue Item = Op.getOperand(Idx);
6674       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6675         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6676     }
6677     return SDValue();
6678   }
6679
6680   // A vector full of immediates; various special cases are already
6681   // handled, so this is best done with a single constant-pool load.
6682   if (IsAllConstants)
6683     return SDValue();
6684
6685   // For AVX-length vectors, build the individual 128-bit pieces and use
6686   // shuffles to put them in place.
6687   if (VT.is256BitVector() || VT.is512BitVector()) {
6688     SmallVector<SDValue, 64> V;
6689     for (unsigned i = 0; i != NumElems; ++i)
6690       V.push_back(Op.getOperand(i));
6691
6692     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6693
6694     // Build both the lower and upper subvector.
6695     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6696                                 makeArrayRef(&V[0], NumElems/2));
6697     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6698                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
6699
6700     // Recreate the wider vector with the lower and upper part.
6701     if (VT.is256BitVector())
6702       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6703     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6704   }
6705
6706   // Let legalizer expand 2-wide build_vectors.
6707   if (EVTBits == 64) {
6708     if (NumNonZero == 1) {
6709       // One half is zero or undef.
6710       unsigned Idx = countTrailingZeros(NonZeros);
6711       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6712                                  Op.getOperand(Idx));
6713       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6714     }
6715     return SDValue();
6716   }
6717
6718   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6719   if (EVTBits == 8 && NumElems == 16) {
6720     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6721                                         Subtarget, *this);
6722     if (V.getNode()) return V;
6723   }
6724
6725   if (EVTBits == 16 && NumElems == 8) {
6726     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6727                                       Subtarget, *this);
6728     if (V.getNode()) return V;
6729   }
6730
6731   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
6732   if (EVTBits == 32 && NumElems == 4) {
6733     SDValue V = LowerBuildVectorv4x32(Op, NumElems, NonZeros, NumNonZero,
6734                                       NumZero, DAG, Subtarget, *this);
6735     if (V.getNode())
6736       return V;
6737   }
6738
6739   // If element VT is == 32 bits, turn it into a number of shuffles.
6740   SmallVector<SDValue, 8> V(NumElems);
6741   if (NumElems == 4 && NumZero > 0) {
6742     for (unsigned i = 0; i < 4; ++i) {
6743       bool isZero = !(NonZeros & (1 << i));
6744       if (isZero)
6745         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6746       else
6747         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6748     }
6749
6750     for (unsigned i = 0; i < 2; ++i) {
6751       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6752         default: break;
6753         case 0:
6754           V[i] = V[i*2];  // Must be a zero vector.
6755           break;
6756         case 1:
6757           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6758           break;
6759         case 2:
6760           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6761           break;
6762         case 3:
6763           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6764           break;
6765       }
6766     }
6767
6768     bool Reverse1 = (NonZeros & 0x3) == 2;
6769     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6770     int MaskVec[] = {
6771       Reverse1 ? 1 : 0,
6772       Reverse1 ? 0 : 1,
6773       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6774       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6775     };
6776     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6777   }
6778
6779   if (Values.size() > 1 && VT.is128BitVector()) {
6780     // Check for a build vector of consecutive loads.
6781     for (unsigned i = 0; i < NumElems; ++i)
6782       V[i] = Op.getOperand(i);
6783
6784     // Check for elements which are consecutive loads.
6785     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6786     if (LD.getNode())
6787       return LD;
6788
6789     // Check for a build vector from mostly shuffle plus few inserting.
6790     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6791     if (Sh.getNode())
6792       return Sh;
6793
6794     // For SSE 4.1, use insertps to put the high elements into the low element.
6795     if (getSubtarget()->hasSSE41()) {
6796       SDValue Result;
6797       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6798         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6799       else
6800         Result = DAG.getUNDEF(VT);
6801
6802       for (unsigned i = 1; i < NumElems; ++i) {
6803         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6804         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6805                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6806       }
6807       return Result;
6808     }
6809
6810     // Otherwise, expand into a number of unpckl*, start by extending each of
6811     // our (non-undef) elements to the full vector width with the element in the
6812     // bottom slot of the vector (which generates no code for SSE).
6813     for (unsigned i = 0; i < NumElems; ++i) {
6814       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6815         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6816       else
6817         V[i] = DAG.getUNDEF(VT);
6818     }
6819
6820     // Next, we iteratively mix elements, e.g. for v4f32:
6821     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6822     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6823     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6824     unsigned EltStride = NumElems >> 1;
6825     while (EltStride != 0) {
6826       for (unsigned i = 0; i < EltStride; ++i) {
6827         // If V[i+EltStride] is undef and this is the first round of mixing,
6828         // then it is safe to just drop this shuffle: V[i] is already in the
6829         // right place, the one element (since it's the first round) being
6830         // inserted as undef can be dropped.  This isn't safe for successive
6831         // rounds because they will permute elements within both vectors.
6832         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6833             EltStride == NumElems/2)
6834           continue;
6835
6836         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6837       }
6838       EltStride >>= 1;
6839     }
6840     return V[0];
6841   }
6842   return SDValue();
6843 }
6844
6845 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6846 // to create 256-bit vectors from two other 128-bit ones.
6847 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6848   SDLoc dl(Op);
6849   MVT ResVT = Op.getSimpleValueType();
6850
6851   assert((ResVT.is256BitVector() ||
6852           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6853
6854   SDValue V1 = Op.getOperand(0);
6855   SDValue V2 = Op.getOperand(1);
6856   unsigned NumElems = ResVT.getVectorNumElements();
6857   if(ResVT.is256BitVector())
6858     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6859
6860   if (Op.getNumOperands() == 4) {
6861     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6862                                 ResVT.getVectorNumElements()/2);
6863     SDValue V3 = Op.getOperand(2);
6864     SDValue V4 = Op.getOperand(3);
6865     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6866       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6867   }
6868   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6869 }
6870
6871 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6872   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6873   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6874          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6875           Op.getNumOperands() == 4)));
6876
6877   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6878   // from two other 128-bit ones.
6879
6880   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6881   return LowerAVXCONCAT_VECTORS(Op, DAG);
6882 }
6883
6884
6885 //===----------------------------------------------------------------------===//
6886 // Vector shuffle lowering
6887 //
6888 // This is an experimental code path for lowering vector shuffles on x86. It is
6889 // designed to handle arbitrary vector shuffles and blends, gracefully
6890 // degrading performance as necessary. It works hard to recognize idiomatic
6891 // shuffles and lower them to optimal instruction patterns without leaving
6892 // a framework that allows reasonably efficient handling of all vector shuffle
6893 // patterns.
6894 //===----------------------------------------------------------------------===//
6895
6896 /// \brief Tiny helper function to identify a no-op mask.
6897 ///
6898 /// This is a somewhat boring predicate function. It checks whether the mask
6899 /// array input, which is assumed to be a single-input shuffle mask of the kind
6900 /// used by the X86 shuffle instructions (not a fully general
6901 /// ShuffleVectorSDNode mask) requires any shuffles to occur. Both undef and an
6902 /// in-place shuffle are 'no-op's.
6903 static bool isNoopShuffleMask(ArrayRef<int> Mask) {
6904   for (int i = 0, Size = Mask.size(); i < Size; ++i)
6905     if (Mask[i] != -1 && Mask[i] != i)
6906       return false;
6907   return true;
6908 }
6909
6910 /// \brief Helper function to classify a mask as a single-input mask.
6911 ///
6912 /// This isn't a generic single-input test because in the vector shuffle
6913 /// lowering we canonicalize single inputs to be the first input operand. This
6914 /// means we can more quickly test for a single input by only checking whether
6915 /// an input from the second operand exists. We also assume that the size of
6916 /// mask corresponds to the size of the input vectors which isn't true in the
6917 /// fully general case.
6918 static bool isSingleInputShuffleMask(ArrayRef<int> Mask) {
6919   for (int M : Mask)
6920     if (M >= (int)Mask.size())
6921       return false;
6922   return true;
6923 }
6924
6925 /// \brief Get a 4-lane 8-bit shuffle immediate for a mask.
6926 ///
6927 /// This helper function produces an 8-bit shuffle immediate corresponding to
6928 /// the ubiquitous shuffle encoding scheme used in x86 instructions for
6929 /// shuffling 4 lanes. It can be used with most of the PSHUF instructions for
6930 /// example.
6931 ///
6932 /// NB: We rely heavily on "undef" masks preserving the input lane.
6933 static SDValue getV4X86ShuffleImm8ForMask(ArrayRef<int> Mask,
6934                                           SelectionDAG &DAG) {
6935   assert(Mask.size() == 4 && "Only 4-lane shuffle masks");
6936   assert(Mask[0] >= -1 && Mask[0] < 4 && "Out of bound mask element!");
6937   assert(Mask[1] >= -1 && Mask[1] < 4 && "Out of bound mask element!");
6938   assert(Mask[2] >= -1 && Mask[2] < 4 && "Out of bound mask element!");
6939   assert(Mask[3] >= -1 && Mask[3] < 4 && "Out of bound mask element!");
6940
6941   unsigned Imm = 0;
6942   Imm |= (Mask[0] == -1 ? 0 : Mask[0]) << 0;
6943   Imm |= (Mask[1] == -1 ? 1 : Mask[1]) << 2;
6944   Imm |= (Mask[2] == -1 ? 2 : Mask[2]) << 4;
6945   Imm |= (Mask[3] == -1 ? 3 : Mask[3]) << 6;
6946   return DAG.getConstant(Imm, MVT::i8);
6947 }
6948
6949 /// \brief Handle lowering of 2-lane 64-bit floating point shuffles.
6950 ///
6951 /// This is the basis function for the 2-lane 64-bit shuffles as we have full
6952 /// support for floating point shuffles but not integer shuffles. These
6953 /// instructions will incur a domain crossing penalty on some chips though so
6954 /// it is better to avoid lowering through this for integer vectors where
6955 /// possible.
6956 static SDValue lowerV2F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
6957                                        const X86Subtarget *Subtarget,
6958                                        SelectionDAG &DAG) {
6959   SDLoc DL(Op);
6960   assert(Op.getSimpleValueType() == MVT::v2f64 && "Bad shuffle type!");
6961   assert(V1.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
6962   assert(V2.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
6963   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6964   ArrayRef<int> Mask = SVOp->getMask();
6965   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
6966
6967   if (isSingleInputShuffleMask(Mask)) {
6968     // Straight shuffle of a single input vector. Simulate this by using the
6969     // single input as both of the "inputs" to this instruction..
6970     unsigned SHUFPDMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1);
6971     return DAG.getNode(X86ISD::SHUFP, SDLoc(Op), MVT::v2f64, V1, V1,
6972                        DAG.getConstant(SHUFPDMask, MVT::i8));
6973   }
6974   assert(Mask[0] >= 0 && Mask[0] < 2 && "Non-canonicalized blend!");
6975   assert(Mask[1] >= 2 && "Non-canonicalized blend!");
6976
6977   unsigned SHUFPDMask = (Mask[0] == 1) | (((Mask[1] - 2) == 1) << 1);
6978   return DAG.getNode(X86ISD::SHUFP, SDLoc(Op), MVT::v2f64, V1, V2,
6979                      DAG.getConstant(SHUFPDMask, MVT::i8));
6980 }
6981
6982 /// \brief Handle lowering of 2-lane 64-bit integer shuffles.
6983 ///
6984 /// Tries to lower a 2-lane 64-bit shuffle using shuffle operations provided by
6985 /// the integer unit to minimize domain crossing penalties. However, for blends
6986 /// it falls back to the floating point shuffle operation with appropriate bit
6987 /// casting.
6988 static SDValue lowerV2I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
6989                                        const X86Subtarget *Subtarget,
6990                                        SelectionDAG &DAG) {
6991   SDLoc DL(Op);
6992   assert(Op.getSimpleValueType() == MVT::v2i64 && "Bad shuffle type!");
6993   assert(V1.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
6994   assert(V2.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
6995   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6996   ArrayRef<int> Mask = SVOp->getMask();
6997   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
6998
6999   if (isSingleInputShuffleMask(Mask)) {
7000     // Straight shuffle of a single input vector. For everything from SSE2
7001     // onward this has a single fast instruction with no scary immediates.
7002     // We have to map the mask as it is actually a v4i32 shuffle instruction.
7003     V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V1);
7004     int WidenedMask[4] = {
7005         std::max(Mask[0], 0) * 2, std::max(Mask[0], 0) * 2 + 1,
7006         std::max(Mask[1], 0) * 2, std::max(Mask[1], 0) * 2 + 1};
7007     return DAG.getNode(
7008         ISD::BITCAST, DL, MVT::v2i64,
7009         DAG.getNode(X86ISD::PSHUFD, SDLoc(Op), MVT::v4i32, V1,
7010                     getV4X86ShuffleImm8ForMask(WidenedMask, DAG)));
7011   }
7012
7013   // We implement this with SHUFPD which is pretty lame because it will likely
7014   // incur 2 cycles of stall for integer vectors on Nehalem and older chips.
7015   // However, all the alternatives are still more cycles and newer chips don't
7016   // have this problem. It would be really nice if x86 had better shuffles here.
7017   V1 = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, V1);
7018   V2 = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, V2);
7019   return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
7020                      DAG.getVectorShuffle(MVT::v2f64, DL, V1, V2, Mask));
7021 }
7022
7023 /// \brief Lower 4-lane 32-bit floating point shuffles.
7024 ///
7025 /// Uses instructions exclusively from the floating point unit to minimize
7026 /// domain crossing penalties, as these are sufficient to implement all v4f32
7027 /// shuffles.
7028 static SDValue lowerV4F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7029                                        const X86Subtarget *Subtarget,
7030                                        SelectionDAG &DAG) {
7031   SDLoc DL(Op);
7032   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
7033   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7034   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7035   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7036   ArrayRef<int> Mask = SVOp->getMask();
7037   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7038
7039   SDValue LowV = V1, HighV = V2;
7040   int NewMask[4] = {Mask[0], Mask[1], Mask[2], Mask[3]};
7041
7042   int NumV2Elements =
7043       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
7044
7045   if (NumV2Elements == 0)
7046     // Straight shuffle of a single input vector. We pass the input vector to
7047     // both operands to simulate this with a SHUFPS.
7048     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V1,
7049                        getV4X86ShuffleImm8ForMask(Mask, DAG));
7050
7051   if (NumV2Elements == 1) {
7052     int V2Index =
7053         std::find_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; }) -
7054         Mask.begin();
7055     // Compute the index adjacent to V2Index and in the same half by toggling
7056     // the low bit.
7057     int V2AdjIndex = V2Index ^ 1;
7058
7059     if (Mask[V2AdjIndex] == -1) {
7060       // Handles all the cases where we have a single V2 element and an undef.
7061       // This will only ever happen in the high lanes because we commute the
7062       // vector otherwise.
7063       if (V2Index < 2)
7064         std::swap(LowV, HighV);
7065       NewMask[V2Index] -= 4;
7066     } else {
7067       // Handle the case where the V2 element ends up adjacent to a V1 element.
7068       // To make this work, blend them together as the first step.
7069       int V1Index = V2AdjIndex;
7070       int BlendMask[4] = {Mask[V2Index] - 4, 0, Mask[V1Index], 0};
7071       V2 = DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V2, V1,
7072                        getV4X86ShuffleImm8ForMask(BlendMask, DAG));
7073
7074       // Now proceed to reconstruct the final blend as we have the necessary
7075       // high or low half formed.
7076       if (V2Index < 2) {
7077         LowV = V2;
7078         HighV = V1;
7079       } else {
7080         HighV = V2;
7081       }
7082       NewMask[V1Index] = 2; // We put the V1 element in V2[2].
7083       NewMask[V2Index] = 0; // We shifted the V2 element into V2[0].
7084     }
7085   } else if (NumV2Elements == 2) {
7086     if (Mask[0] < 4 && Mask[1] < 4) {
7087       // Handle the easy case where we have V1 in the low lanes and V2 in the
7088       // high lanes. We never see this reversed because we sort the shuffle.
7089       NewMask[2] -= 4;
7090       NewMask[3] -= 4;
7091     } else {
7092       // We have a mixture of V1 and V2 in both low and high lanes. Rather than
7093       // trying to place elements directly, just blend them and set up the final
7094       // shuffle to place them.
7095
7096       // The first two blend mask elements are for V1, the second two are for
7097       // V2.
7098       int BlendMask[4] = {Mask[0] < 4 ? Mask[0] : Mask[1],
7099                           Mask[2] < 4 ? Mask[2] : Mask[3],
7100                           (Mask[0] >= 4 ? Mask[0] : Mask[1]) - 4,
7101                           (Mask[2] >= 4 ? Mask[2] : Mask[3]) - 4};
7102       V1 = DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V2,
7103                        getV4X86ShuffleImm8ForMask(BlendMask, DAG));
7104
7105       // Now we do a normal shuffle of V1 by giving V1 as both operands to
7106       // a blend.
7107       LowV = HighV = V1;
7108       NewMask[0] = Mask[0] < 4 ? 0 : 2;
7109       NewMask[1] = Mask[0] < 4 ? 2 : 0;
7110       NewMask[2] = Mask[2] < 4 ? 1 : 3;
7111       NewMask[3] = Mask[2] < 4 ? 3 : 1;
7112     }
7113   }
7114   return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, LowV, HighV,
7115                      getV4X86ShuffleImm8ForMask(NewMask, DAG));
7116 }
7117
7118 /// \brief Lower 4-lane i32 vector shuffles.
7119 ///
7120 /// We try to handle these with integer-domain shuffles where we can, but for
7121 /// blends we use the floating point domain blend instructions.
7122 static SDValue lowerV4I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7123                                        const X86Subtarget *Subtarget,
7124                                        SelectionDAG &DAG) {
7125   SDLoc DL(Op);
7126   assert(Op.getSimpleValueType() == MVT::v4i32 && "Bad shuffle type!");
7127   assert(V1.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
7128   assert(V2.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
7129   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7130   ArrayRef<int> Mask = SVOp->getMask();
7131   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7132
7133   if (isSingleInputShuffleMask(Mask))
7134     // Straight shuffle of a single input vector. For everything from SSE2
7135     // onward this has a single fast instruction with no scary immediates.
7136     return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
7137                        getV4X86ShuffleImm8ForMask(Mask, DAG));
7138
7139   // We implement this with SHUFPS because it can blend from two vectors.
7140   // Because we're going to eventually use SHUFPS, we use SHUFPS even to build
7141   // up the inputs, bypassing domain shift penalties that we would encur if we
7142   // directly used PSHUFD on Nehalem and older. For newer chips, this isn't
7143   // relevant.
7144   return DAG.getNode(ISD::BITCAST, DL, MVT::v4i32,
7145                      DAG.getVectorShuffle(
7146                          MVT::v4f32, DL,
7147                          DAG.getNode(ISD::BITCAST, DL, MVT::v4f32, V1),
7148                          DAG.getNode(ISD::BITCAST, DL, MVT::v4f32, V2), Mask));
7149 }
7150
7151 /// \brief Lowering of single-input v8i16 shuffles is the cornerstone of SSE2
7152 /// shuffle lowering, and the most complex part.
7153 ///
7154 /// The lowering strategy is to try to form pairs of input lanes which are
7155 /// targeted at the same half of the final vector, and then use a dword shuffle
7156 /// to place them onto the right half, and finally unpack the paired lanes into
7157 /// their final position.
7158 ///
7159 /// The exact breakdown of how to form these dword pairs and align them on the
7160 /// correct sides is really tricky. See the comments within the function for
7161 /// more of the details.
7162 static SDValue lowerV8I16SingleInputVectorShuffle(
7163     SDLoc DL, SDValue V, MutableArrayRef<int> Mask,
7164     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7165   assert(V.getSimpleValueType() == MVT::v8i16 && "Bad input type!");
7166   MutableArrayRef<int> LoMask = Mask.slice(0, 4);
7167   MutableArrayRef<int> HiMask = Mask.slice(4, 4);
7168
7169   SmallVector<int, 4> LoInputs;
7170   std::copy_if(LoMask.begin(), LoMask.end(), std::back_inserter(LoInputs),
7171                [](int M) { return M >= 0; });
7172   std::sort(LoInputs.begin(), LoInputs.end());
7173   LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()), LoInputs.end());
7174   SmallVector<int, 4> HiInputs;
7175   std::copy_if(HiMask.begin(), HiMask.end(), std::back_inserter(HiInputs),
7176                [](int M) { return M >= 0; });
7177   std::sort(HiInputs.begin(), HiInputs.end());
7178   HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end());
7179   int NumLToL =
7180       std::lower_bound(LoInputs.begin(), LoInputs.end(), 4) - LoInputs.begin();
7181   int NumHToL = LoInputs.size() - NumLToL;
7182   int NumLToH =
7183       std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin();
7184   int NumHToH = HiInputs.size() - NumLToH;
7185   MutableArrayRef<int> LToLInputs(LoInputs.data(), NumLToL);
7186   MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH);
7187   MutableArrayRef<int> HToLInputs(LoInputs.data() + NumLToL, NumHToL);
7188   MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH);
7189
7190   // Simplify the 1-into-3 and 3-into-1 cases with a single pshufd. For all
7191   // such inputs we can swap two of the dwords across the half mark and end up
7192   // with <=2 inputs to each half in each half. Once there, we can fall through
7193   // to the generic code below. For example:
7194   //
7195   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
7196   // Mask:  [0, 1, 2, 7, 4, 5, 6, 3] -----------------> [0, 1, 4, 7, 2, 3, 6, 5]
7197   //
7198   // Before we had 3-1 in the low half and 3-1 in the high half. Afterward, 2-2
7199   // and 2-2.
7200   auto balanceSides = [&](ArrayRef<int> ThreeInputs, int OneInput,
7201                           int ThreeInputHalfSum, int OneInputHalfOffset) {
7202     // Compute the index of dword with only one word among the three inputs in
7203     // a half by taking the sum of the half with three inputs and subtracting
7204     // the sum of the actual three inputs. The difference is the remaining
7205     // slot.
7206     int DWordA = (ThreeInputHalfSum -
7207                   std::accumulate(ThreeInputs.begin(), ThreeInputs.end(), 0)) /
7208                  2;
7209     int DWordB = OneInputHalfOffset / 2 + (OneInput / 2 + 1) % 2;
7210
7211     int PSHUFDMask[] = {0, 1, 2, 3};
7212     PSHUFDMask[DWordA] = DWordB;
7213     PSHUFDMask[DWordB] = DWordA;
7214     V = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7215                     DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7216                                 DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V),
7217                                 getV4X86ShuffleImm8ForMask(PSHUFDMask, DAG)));
7218
7219     // Adjust the mask to match the new locations of A and B.
7220     for (int &M : Mask)
7221       if (M != -1 && M/2 == DWordA)
7222         M = 2 * DWordB + M % 2;
7223       else if (M != -1 && M/2 == DWordB)
7224         M = 2 * DWordA + M % 2;
7225
7226     // Recurse back into this routine to re-compute state now that this isn't
7227     // a 3 and 1 problem.
7228     return DAG.getVectorShuffle(MVT::v8i16, DL, V, DAG.getUNDEF(MVT::v8i16),
7229                                 Mask);
7230   };
7231   if (NumLToL == 3 && NumHToL == 1)
7232     return balanceSides(LToLInputs, HToLInputs[0], 0 + 1 + 2 + 3, 4);
7233   else if (NumLToL == 1 && NumHToL == 3)
7234     return balanceSides(HToLInputs, LToLInputs[0], 4 + 5 + 6 + 7, 0);
7235   else if (NumLToH == 1 && NumHToH == 3)
7236     return balanceSides(HToHInputs, LToHInputs[0], 4 + 5 + 6 + 7, 0);
7237   else if (NumLToH == 3 && NumHToH == 1)
7238     return balanceSides(LToHInputs, HToHInputs[0], 0 + 1 + 2 + 3, 4);
7239
7240   // At this point there are at most two inputs to the low and high halves from
7241   // each half. That means the inputs can always be grouped into dwords and
7242   // those dwords can then be moved to the correct half with a dword shuffle.
7243   // We use at most one low and one high word shuffle to collect these paired
7244   // inputs into dwords, and finally a dword shuffle to place them.
7245   int PSHUFLMask[4] = {-1, -1, -1, -1};
7246   int PSHUFHMask[4] = {-1, -1, -1, -1};
7247   int PSHUFDMask[4] = {-1, -1, -1, -1};
7248
7249   // First fix the masks for all the inputs that are staying in their
7250   // original halves. This will then dictate the targets of the cross-half
7251   // shuffles.
7252   auto fixInPlaceInputs = [&PSHUFDMask](
7253       ArrayRef<int> InPlaceInputs, MutableArrayRef<int> SourceHalfMask,
7254       MutableArrayRef<int> HalfMask, int HalfOffset) {
7255     if (InPlaceInputs.empty())
7256       return;
7257     if (InPlaceInputs.size() == 1) {
7258       SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
7259           InPlaceInputs[0] - HalfOffset;
7260       PSHUFDMask[InPlaceInputs[0] / 2] = InPlaceInputs[0] / 2;
7261       return;
7262     }
7263
7264     assert(InPlaceInputs.size() == 2 && "Cannot handle 3 or 4 inputs!");
7265     SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
7266         InPlaceInputs[0] - HalfOffset;
7267     // Put the second input next to the first so that they are packed into
7268     // a dword. We find the adjacent index by toggling the low bit.
7269     int AdjIndex = InPlaceInputs[0] ^ 1;
7270     SourceHalfMask[AdjIndex - HalfOffset] = InPlaceInputs[1] - HalfOffset;
7271     std::replace(HalfMask.begin(), HalfMask.end(), InPlaceInputs[1], AdjIndex);
7272     PSHUFDMask[AdjIndex / 2] = AdjIndex / 2;
7273   };
7274   if (!HToLInputs.empty())
7275     fixInPlaceInputs(LToLInputs, PSHUFLMask, LoMask, 0);
7276   if (!LToHInputs.empty())
7277     fixInPlaceInputs(HToHInputs, PSHUFHMask, HiMask, 4);
7278
7279   // Now gather the cross-half inputs and place them into a free dword of
7280   // their target half.
7281   // FIXME: This operation could almost certainly be simplified dramatically to
7282   // look more like the 3-1 fixing operation.
7283   auto moveInputsToRightHalf = [&PSHUFDMask](
7284       MutableArrayRef<int> IncomingInputs, ArrayRef<int> ExistingInputs,
7285       MutableArrayRef<int> SourceHalfMask, MutableArrayRef<int> HalfMask,
7286       int SourceOffset, int DestOffset) {
7287     auto isWordClobbered = [](ArrayRef<int> SourceHalfMask, int Word) {
7288       return SourceHalfMask[Word] != -1 && SourceHalfMask[Word] != Word;
7289     };
7290     auto isDWordClobbered = [&isWordClobbered](ArrayRef<int> SourceHalfMask,
7291                                                int Word) {
7292       int LowWord = Word & ~1;
7293       int HighWord = Word | 1;
7294       return isWordClobbered(SourceHalfMask, LowWord) ||
7295              isWordClobbered(SourceHalfMask, HighWord);
7296     };
7297
7298     if (IncomingInputs.empty())
7299       return;
7300
7301     if (ExistingInputs.empty()) {
7302       // Map any dwords with inputs from them into the right half.
7303       for (int Input : IncomingInputs) {
7304         // If the source half mask maps over the inputs, turn those into
7305         // swaps and use the swapped lane.
7306         if (isWordClobbered(SourceHalfMask, Input - SourceOffset)) {
7307           if (SourceHalfMask[SourceHalfMask[Input - SourceOffset]] == -1) {
7308             SourceHalfMask[SourceHalfMask[Input - SourceOffset]] =
7309                 Input - SourceOffset;
7310             // We have to swap the uses in our half mask in one sweep.
7311             for (int &M : HalfMask)
7312               if (M == SourceHalfMask[Input - SourceOffset])
7313                 M = Input;
7314               else if (M == Input)
7315                 M = SourceHalfMask[Input - SourceOffset] + SourceOffset;
7316           } else {
7317             assert(SourceHalfMask[SourceHalfMask[Input - SourceOffset]] ==
7318                        Input - SourceOffset &&
7319                    "Previous placement doesn't match!");
7320           }
7321           // Note that this correctly re-maps both when we do a swap and when
7322           // we observe the other side of the swap above. We rely on that to
7323           // avoid swapping the members of the input list directly.
7324           Input = SourceHalfMask[Input - SourceOffset] + SourceOffset;
7325         }
7326
7327         // Map the input's dword into the correct half.
7328         if (PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] == -1)
7329           PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] = Input / 2;
7330         else
7331           assert(PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] ==
7332                      Input / 2 &&
7333                  "Previous placement doesn't match!");
7334       }
7335
7336       // And just directly shift any other-half mask elements to be same-half
7337       // as we will have mirrored the dword containing the element into the
7338       // same position within that half.
7339       for (int &M : HalfMask)
7340         if (M >= SourceOffset && M < SourceOffset + 4) {
7341           M = M - SourceOffset + DestOffset;
7342           assert(M >= 0 && "This should never wrap below zero!");
7343         }
7344       return;
7345     }
7346
7347     // Ensure we have the input in a viable dword of its current half. This
7348     // is particularly tricky because the original position may be clobbered
7349     // by inputs being moved and *staying* in that half.
7350     if (IncomingInputs.size() == 1) {
7351       if (isWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
7352         int InputFixed = std::find(std::begin(SourceHalfMask),
7353                                    std::end(SourceHalfMask), -1) -
7354                          std::begin(SourceHalfMask) + SourceOffset;
7355         SourceHalfMask[InputFixed - SourceOffset] =
7356             IncomingInputs[0] - SourceOffset;
7357         std::replace(HalfMask.begin(), HalfMask.end(), IncomingInputs[0],
7358                      InputFixed);
7359         IncomingInputs[0] = InputFixed;
7360       }
7361     } else if (IncomingInputs.size() == 2) {
7362       if (IncomingInputs[0] / 2 != IncomingInputs[1] / 2 ||
7363           isDWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
7364         int SourceDWordBase = !isDWordClobbered(SourceHalfMask, 0) ? 0 : 2;
7365         assert(!isDWordClobbered(SourceHalfMask, SourceDWordBase) &&
7366                "Not all dwords can be clobbered!");
7367         SourceHalfMask[SourceDWordBase] = IncomingInputs[0] - SourceOffset;
7368         SourceHalfMask[SourceDWordBase + 1] = IncomingInputs[1] - SourceOffset;
7369         for (int &M : HalfMask)
7370           if (M == IncomingInputs[0])
7371             M = SourceDWordBase + SourceOffset;
7372           else if (M == IncomingInputs[1])
7373             M = SourceDWordBase + 1 + SourceOffset;
7374         IncomingInputs[0] = SourceDWordBase + SourceOffset;
7375         IncomingInputs[1] = SourceDWordBase + 1 + SourceOffset;
7376       }
7377     } else {
7378       llvm_unreachable("Unhandled input size!");
7379     }
7380
7381     // Now hoist the DWord down to the right half.
7382     int FreeDWord = (PSHUFDMask[DestOffset / 2] == -1 ? 0 : 1) + DestOffset / 2;
7383     assert(PSHUFDMask[FreeDWord] == -1 && "DWord not free");
7384     PSHUFDMask[FreeDWord] = IncomingInputs[0] / 2;
7385     for (int Input : IncomingInputs)
7386       std::replace(HalfMask.begin(), HalfMask.end(), Input,
7387                    FreeDWord * 2 + Input % 2);
7388   };
7389   moveInputsToRightHalf(HToLInputs, LToLInputs, PSHUFHMask, LoMask,
7390                         /*SourceOffset*/ 4, /*DestOffset*/ 0);
7391   moveInputsToRightHalf(LToHInputs, HToHInputs, PSHUFLMask, HiMask,
7392                         /*SourceOffset*/ 0, /*DestOffset*/ 4);
7393
7394   // Now enact all the shuffles we've computed to move the inputs into their
7395   // target half.
7396   if (!isNoopShuffleMask(PSHUFLMask))
7397     V = DAG.getNode(X86ISD::PSHUFLW, DL, MVT::v8i16, V,
7398                     getV4X86ShuffleImm8ForMask(PSHUFLMask, DAG));
7399   if (!isNoopShuffleMask(PSHUFHMask))
7400     V = DAG.getNode(X86ISD::PSHUFHW, DL, MVT::v8i16, V,
7401                     getV4X86ShuffleImm8ForMask(PSHUFHMask, DAG));
7402   if (!isNoopShuffleMask(PSHUFDMask))
7403     V = DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7404                     DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7405                                 DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V),
7406                                 getV4X86ShuffleImm8ForMask(PSHUFDMask, DAG)));
7407
7408   // At this point, each half should contain all its inputs, and we can then
7409   // just shuffle them into their final position.
7410   assert(std::count_if(LoMask.begin(), LoMask.end(),
7411                        [](int M) { return M >= 4; }) == 0 &&
7412          "Failed to lift all the high half inputs to the low mask!");
7413   assert(std::count_if(HiMask.begin(), HiMask.end(),
7414                        [](int M) { return M >= 0 && M < 4; }) == 0 &&
7415          "Failed to lift all the low half inputs to the high mask!");
7416
7417   // Do a half shuffle for the low mask.
7418   if (!isNoopShuffleMask(LoMask))
7419     V = DAG.getNode(X86ISD::PSHUFLW, DL, MVT::v8i16, V,
7420                     getV4X86ShuffleImm8ForMask(LoMask, DAG));
7421
7422   // Do a half shuffle with the high mask after shifting its values down.
7423   for (int &M : HiMask)
7424     if (M >= 0)
7425       M -= 4;
7426   if (!isNoopShuffleMask(HiMask))
7427     V = DAG.getNode(X86ISD::PSHUFHW, DL, MVT::v8i16, V,
7428                     getV4X86ShuffleImm8ForMask(HiMask, DAG));
7429
7430   return V;
7431 }
7432
7433 /// \brief Detect whether the mask pattern should be lowered through
7434 /// interleaving.
7435 ///
7436 /// This essentially tests whether viewing the mask as an interleaving of two
7437 /// sub-sequences reduces the cross-input traffic of a blend operation. If so,
7438 /// lowering it through interleaving is a significantly better strategy.
7439 static bool shouldLowerAsInterleaving(ArrayRef<int> Mask) {
7440   int NumEvenInputs[2] = {0, 0};
7441   int NumOddInputs[2] = {0, 0};
7442   int NumLoInputs[2] = {0, 0};
7443   int NumHiInputs[2] = {0, 0};
7444   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
7445     if (Mask[i] < 0)
7446       continue;
7447
7448     int InputIdx = Mask[i] >= Size;
7449
7450     if (i < Size / 2)
7451       ++NumLoInputs[InputIdx];
7452     else
7453       ++NumHiInputs[InputIdx];
7454
7455     if ((i % 2) == 0)
7456       ++NumEvenInputs[InputIdx];
7457     else
7458       ++NumOddInputs[InputIdx];
7459   }
7460
7461   // The minimum number of cross-input results for both the interleaved and
7462   // split cases. If interleaving results in fewer cross-input results, return
7463   // true.
7464   int InterleavedCrosses = std::min(NumEvenInputs[1] + NumOddInputs[0],
7465                                     NumEvenInputs[0] + NumOddInputs[1]);
7466   int SplitCrosses = std::min(NumLoInputs[1] + NumHiInputs[0],
7467                               NumLoInputs[0] + NumHiInputs[1]);
7468   return InterleavedCrosses < SplitCrosses;
7469 }
7470
7471 /// \brief Blend two v8i16 vectors using a naive unpack strategy.
7472 ///
7473 /// This strategy only works when the inputs from each vector fit into a single
7474 /// half of that vector, and generally there are not so many inputs as to leave
7475 /// the in-place shuffles required highly constrained (and thus expensive). It
7476 /// shifts all the inputs into a single side of both input vectors and then
7477 /// uses an unpack to interleave these inputs in a single vector. At that
7478 /// point, we will fall back on the generic single input shuffle lowering.
7479 static SDValue lowerV8I16BasicBlendVectorShuffle(SDLoc DL, SDValue V1,
7480                                                  SDValue V2,
7481                                                  MutableArrayRef<int> Mask,
7482                                                  const X86Subtarget *Subtarget,
7483                                                  SelectionDAG &DAG) {
7484   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad input type!");
7485   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad input type!");
7486   SmallVector<int, 3> LoV1Inputs, HiV1Inputs, LoV2Inputs, HiV2Inputs;
7487   for (int i = 0; i < 8; ++i)
7488     if (Mask[i] >= 0 && Mask[i] < 4)
7489       LoV1Inputs.push_back(i);
7490     else if (Mask[i] >= 4 && Mask[i] < 8)
7491       HiV1Inputs.push_back(i);
7492     else if (Mask[i] >= 8 && Mask[i] < 12)
7493       LoV2Inputs.push_back(i);
7494     else if (Mask[i] >= 12)
7495       HiV2Inputs.push_back(i);
7496
7497   int NumV1Inputs = LoV1Inputs.size() + HiV1Inputs.size();
7498   int NumV2Inputs = LoV2Inputs.size() + HiV2Inputs.size();
7499   (void)NumV1Inputs;
7500   (void)NumV2Inputs;
7501   assert(NumV1Inputs > 0 && NumV1Inputs <= 3 && "At most 3 inputs supported");
7502   assert(NumV2Inputs > 0 && NumV2Inputs <= 3 && "At most 3 inputs supported");
7503   assert(NumV1Inputs + NumV2Inputs <= 4 && "At most 4 combined inputs");
7504
7505   bool MergeFromLo = LoV1Inputs.size() + LoV2Inputs.size() >=
7506                      HiV1Inputs.size() + HiV2Inputs.size();
7507
7508   auto moveInputsToHalf = [&](SDValue V, ArrayRef<int> LoInputs,
7509                               ArrayRef<int> HiInputs, bool MoveToLo,
7510                               int MaskOffset) {
7511     ArrayRef<int> GoodInputs = MoveToLo ? LoInputs : HiInputs;
7512     ArrayRef<int> BadInputs = MoveToLo ? HiInputs : LoInputs;
7513     if (BadInputs.empty())
7514       return V;
7515
7516     int MoveMask[] = {-1, -1, -1, -1, -1, -1, -1, -1};
7517     int MoveOffset = MoveToLo ? 0 : 4;
7518
7519     if (GoodInputs.empty()) {
7520       for (int BadInput : BadInputs) {
7521         MoveMask[Mask[BadInput] % 4 + MoveOffset] = Mask[BadInput] - MaskOffset;
7522         Mask[BadInput] = Mask[BadInput] % 4 + MoveOffset + MaskOffset;
7523       }
7524     } else {
7525       if (GoodInputs.size() == 2) {
7526         // If the low inputs are spread across two dwords, pack them into
7527         // a single dword.
7528         MoveMask[Mask[GoodInputs[0]] % 2 + MoveOffset] =
7529             Mask[GoodInputs[0]] - MaskOffset;
7530         MoveMask[Mask[GoodInputs[1]] % 2 + MoveOffset] =
7531             Mask[GoodInputs[1]] - MaskOffset;
7532         Mask[GoodInputs[0]] = Mask[GoodInputs[0]] % 2 + MoveOffset + MaskOffset;
7533         Mask[GoodInputs[1]] = Mask[GoodInputs[0]] % 2 + MoveOffset + MaskOffset;
7534       } else {
7535         // Otherwise pin the low inputs.
7536         for (int GoodInput : GoodInputs)
7537           MoveMask[Mask[GoodInput] - MaskOffset] = Mask[GoodInput] - MaskOffset;
7538       }
7539
7540       int MoveMaskIdx =
7541           std::find(std::begin(MoveMask) + MoveOffset, std::end(MoveMask), -1) -
7542           std::begin(MoveMask);
7543       assert(MoveMaskIdx >= MoveOffset && "Established above");
7544
7545       if (BadInputs.size() == 2) {
7546         assert(MoveMask[MoveMaskIdx] == -1 && "Expected empty slot");
7547         assert(MoveMask[MoveMaskIdx + 1] == -1 && "Expected empty slot");
7548         MoveMask[MoveMaskIdx + Mask[BadInputs[0]] % 2] =
7549             Mask[BadInputs[0]] - MaskOffset;
7550         MoveMask[MoveMaskIdx + Mask[BadInputs[1]] % 2] =
7551             Mask[BadInputs[1]] - MaskOffset;
7552         Mask[BadInputs[0]] = MoveMaskIdx + Mask[BadInputs[0]] % 2 + MaskOffset;
7553         Mask[BadInputs[1]] = MoveMaskIdx + Mask[BadInputs[1]] % 2 + MaskOffset;
7554       } else {
7555         assert(BadInputs.size() == 1 && "All sizes handled");
7556         MoveMask[MoveMaskIdx] = Mask[BadInputs[0]] - MaskOffset;
7557         Mask[BadInputs[0]] = MoveMaskIdx + MaskOffset;
7558       }
7559     }
7560
7561     return DAG.getVectorShuffle(MVT::v8i16, DL, V, DAG.getUNDEF(MVT::v8i16),
7562                                 MoveMask);
7563   };
7564   V1 = moveInputsToHalf(V1, LoV1Inputs, HiV1Inputs, MergeFromLo,
7565                         /*MaskOffset*/ 0);
7566   V2 = moveInputsToHalf(V2, LoV2Inputs, HiV2Inputs, MergeFromLo,
7567                         /*MaskOffset*/ 8);
7568
7569   // FIXME: Select an interleaving of the merge of V1 and V2 that minimizes
7570   // cross-half traffic in the final shuffle.
7571
7572   // Munge the mask to be a single-input mask after the unpack merges the
7573   // results.
7574   for (int &M : Mask)
7575     if (M != -1)
7576       M = 2 * (M % 4) + (M / 8);
7577
7578   return DAG.getVectorShuffle(
7579       MVT::v8i16, DL, DAG.getNode(MergeFromLo ? X86ISD::UNPCKL : X86ISD::UNPCKH,
7580                                   DL, MVT::v8i16, V1, V2),
7581       DAG.getUNDEF(MVT::v8i16), Mask);
7582 }
7583
7584 /// \brief Generic lowering of 8-lane i16 shuffles.
7585 ///
7586 /// This handles both single-input shuffles and combined shuffle/blends with
7587 /// two inputs. The single input shuffles are immediately delegated to
7588 /// a dedicated lowering routine.
7589 ///
7590 /// The blends are lowered in one of three fundamental ways. If there are few
7591 /// enough inputs, it delegates to a basic UNPCK-based strategy. If the shuffle
7592 /// of the input is significantly cheaper when lowered as an interleaving of
7593 /// the two inputs, try to interleave them. Otherwise, blend the low and high
7594 /// halves of the inputs separately (making them have relatively few inputs)
7595 /// and then concatenate them.
7596 static SDValue lowerV8I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7597                                        const X86Subtarget *Subtarget,
7598                                        SelectionDAG &DAG) {
7599   SDLoc DL(Op);
7600   assert(Op.getSimpleValueType() == MVT::v8i16 && "Bad shuffle type!");
7601   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
7602   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
7603   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7604   ArrayRef<int> OrigMask = SVOp->getMask();
7605   int MaskStorage[8] = {OrigMask[0], OrigMask[1], OrigMask[2], OrigMask[3],
7606                         OrigMask[4], OrigMask[5], OrigMask[6], OrigMask[7]};
7607   MutableArrayRef<int> Mask(MaskStorage);
7608
7609   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
7610
7611   auto isV1 = [](int M) { return M >= 0 && M < 8; };
7612   auto isV2 = [](int M) { return M >= 8; };
7613
7614   int NumV1Inputs = std::count_if(Mask.begin(), Mask.end(), isV1);
7615   int NumV2Inputs = std::count_if(Mask.begin(), Mask.end(), isV2);
7616
7617   if (NumV2Inputs == 0)
7618     return lowerV8I16SingleInputVectorShuffle(DL, V1, Mask, Subtarget, DAG);
7619
7620   assert(NumV1Inputs > 0 && "All single-input shuffles should be canonicalized "
7621                             "to be V1-input shuffles.");
7622
7623   if (NumV1Inputs + NumV2Inputs <= 4)
7624     return lowerV8I16BasicBlendVectorShuffle(DL, V1, V2, Mask, Subtarget, DAG);
7625
7626   // Check whether an interleaving lowering is likely to be more efficient.
7627   // This isn't perfect but it is a strong heuristic that tends to work well on
7628   // the kinds of shuffles that show up in practice.
7629   //
7630   // FIXME: Handle 1x, 2x, and 4x interleaving.
7631   if (shouldLowerAsInterleaving(Mask)) {
7632     // FIXME: Figure out whether we should pack these into the low or high
7633     // halves.
7634
7635     int EMask[8], OMask[8];
7636     for (int i = 0; i < 4; ++i) {
7637       EMask[i] = Mask[2*i];
7638       OMask[i] = Mask[2*i + 1];
7639       EMask[i + 4] = -1;
7640       OMask[i + 4] = -1;
7641     }
7642
7643     SDValue Evens = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, EMask);
7644     SDValue Odds = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, OMask);
7645
7646     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, Evens, Odds);
7647   }
7648
7649   int LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7650   int HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7651
7652   for (int i = 0; i < 4; ++i) {
7653     LoBlendMask[i] = Mask[i];
7654     HiBlendMask[i] = Mask[i + 4];
7655   }
7656
7657   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, LoBlendMask);
7658   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, V1, V2, HiBlendMask);
7659   LoV = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, LoV);
7660   HiV = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, HiV);
7661
7662   return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7663                      DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, LoV, HiV));
7664 }
7665
7666 /// \brief Generic lowering of v16i8 shuffles.
7667 ///
7668 /// This is a hybrid strategy to lower v16i8 vectors. It first attempts to
7669 /// detect any complexity reducing interleaving. If that doesn't help, it uses
7670 /// UNPCK to spread the i8 elements across two i16-element vectors, and uses
7671 /// the existing lowering for v8i16 blends on each half, finally PACK-ing them
7672 /// back together.
7673 static SDValue lowerV16I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7674                                        const X86Subtarget *Subtarget,
7675                                        SelectionDAG &DAG) {
7676   SDLoc DL(Op);
7677   assert(Op.getSimpleValueType() == MVT::v16i8 && "Bad shuffle type!");
7678   assert(V1.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
7679   assert(V2.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
7680   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7681   ArrayRef<int> OrigMask = SVOp->getMask();
7682   assert(OrigMask.size() == 16 && "Unexpected mask size for v16 shuffle!");
7683   int MaskStorage[16] = {
7684       OrigMask[0],  OrigMask[1],  OrigMask[2],  OrigMask[3],
7685       OrigMask[4],  OrigMask[5],  OrigMask[6],  OrigMask[7],
7686       OrigMask[8],  OrigMask[9],  OrigMask[10], OrigMask[11],
7687       OrigMask[12], OrigMask[13], OrigMask[14], OrigMask[15]};
7688   MutableArrayRef<int> Mask(MaskStorage);
7689   MutableArrayRef<int> LoMask = Mask.slice(0, 8);
7690   MutableArrayRef<int> HiMask = Mask.slice(8, 8);
7691
7692   // For single-input shuffles, there are some nicer lowering tricks we can use.
7693   if (isSingleInputShuffleMask(Mask)) {
7694     // Check whether we can widen this to an i16 shuffle by duplicating bytes.
7695     // Notably, this handles splat and partial-splat shuffles more efficiently.
7696     //
7697     // FIXME: We should check for other patterns which can be widened into an
7698     // i16 shuffle as well.
7699     auto canWidenViaDuplication = [](ArrayRef<int> Mask) {
7700       for (int i = 0; i < 16; i += 2) {
7701         if (Mask[i] != Mask[i + 1])
7702           return false;
7703       }
7704       return true;
7705     };
7706     if (canWidenViaDuplication(Mask)) {
7707       SmallVector<int, 4> LoInputs;
7708       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(LoInputs),
7709                    [](int M) { return M >= 0 && M < 8; });
7710       std::sort(LoInputs.begin(), LoInputs.end());
7711       LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()),
7712                      LoInputs.end());
7713       SmallVector<int, 4> HiInputs;
7714       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(HiInputs),
7715                    [](int M) { return M >= 8; });
7716       std::sort(HiInputs.begin(), HiInputs.end());
7717       HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()),
7718                      HiInputs.end());
7719
7720       bool TargetLo = LoInputs.size() >= HiInputs.size();
7721       ArrayRef<int> InPlaceInputs = TargetLo ? LoInputs : HiInputs;
7722       ArrayRef<int> MovingInputs = TargetLo ? HiInputs : LoInputs;
7723
7724       int ByteMask[16];
7725       SmallDenseMap<int, int, 8> LaneMap;
7726       for (int i = 0; i < 16; ++i)
7727         ByteMask[i] = -1;
7728       for (int I : InPlaceInputs) {
7729         ByteMask[I] = I;
7730         LaneMap[I] = I;
7731       }
7732       int FreeByteIdx = 0;
7733       int TargetOffset = TargetLo ? 0 : 8;
7734       for (int I : MovingInputs) {
7735         // Walk the free index into the byte mask until we find an unoccupied
7736         // spot. We bound this to 8 steps to catch bugs, the pigeonhole
7737         // principle indicates that there *must* be a spot as we can only have
7738         // 8 duplicated inputs. We have to walk the index using modular
7739         // arithmetic to wrap around as necessary.
7740         // FIXME: We could do a much better job of picking an inexpensive slot
7741         // so this doesn't go through the worst case for the byte shuffle.
7742         for (int j = 0; j < 8 && ByteMask[FreeByteIdx + TargetOffset] != -1;
7743              ++j, FreeByteIdx = (FreeByteIdx + 1) % 8)
7744           ;
7745         assert(ByteMask[FreeByteIdx + TargetOffset] == -1 &&
7746                "Failed to find a free byte!");
7747         ByteMask[FreeByteIdx + TargetOffset] = I;
7748         LaneMap[I] = FreeByteIdx + TargetOffset;
7749       }
7750       V1 = DAG.getVectorShuffle(MVT::v16i8, DL, V1, DAG.getUNDEF(MVT::v16i8),
7751                                 ByteMask);
7752       for (int &M : Mask)
7753         if (M != -1)
7754           M = LaneMap[M];
7755
7756       // Unpack the bytes to form the i16s that will be shuffled into place.
7757       V1 = DAG.getNode(TargetLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
7758                        MVT::v16i8, V1, V1);
7759
7760       int I16Shuffle[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7761       for (int i = 0; i < 16; i += 2) {
7762         if (Mask[i] != -1)
7763           I16Shuffle[i / 2] = Mask[i] - (TargetLo ? 0 : 8);
7764         assert(I16Shuffle[i / 2] < 8 && "Invalid v8 shuffle mask!");
7765       }
7766       return DAG.getVectorShuffle(MVT::v8i16, DL,
7767                                   DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V1),
7768                                   DAG.getUNDEF(MVT::v8i16), I16Shuffle);
7769     }
7770   }
7771
7772   // Check whether an interleaving lowering is likely to be more efficient.
7773   // This isn't perfect but it is a strong heuristic that tends to work well on
7774   // the kinds of shuffles that show up in practice.
7775   //
7776   // FIXME: We need to handle other interleaving widths (i16, i32, ...).
7777   if (shouldLowerAsInterleaving(Mask)) {
7778     // FIXME: Figure out whether we should pack these into the low or high
7779     // halves.
7780
7781     int EMask[16], OMask[16];
7782     for (int i = 0; i < 8; ++i) {
7783       EMask[i] = Mask[2*i];
7784       OMask[i] = Mask[2*i + 1];
7785       EMask[i + 8] = -1;
7786       OMask[i + 8] = -1;
7787     }
7788
7789     SDValue Evens = DAG.getVectorShuffle(MVT::v16i8, DL, V1, V2, EMask);
7790     SDValue Odds = DAG.getVectorShuffle(MVT::v16i8, DL, V1, V2, OMask);
7791
7792     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, Evens, Odds);
7793   }
7794   SDValue Zero = getZeroVector(MVT::v8i16, Subtarget, DAG, DL);
7795   SDValue LoV1 =
7796       DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7797                   DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V1, Zero));
7798   SDValue HiV1 =
7799       DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7800                   DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V1, Zero));
7801   SDValue LoV2 =
7802       DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7803                   DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V2, Zero));
7804   SDValue HiV2 =
7805       DAG.getNode(ISD::BITCAST, DL, MVT::v8i16,
7806                   DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V2, Zero));
7807
7808   int V1LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7809   int V1HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7810   int V2LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7811   int V2HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
7812
7813   auto buildBlendMasks = [](MutableArrayRef<int> HalfMask,
7814                             MutableArrayRef<int> V1HalfBlendMask,
7815                             MutableArrayRef<int> V2HalfBlendMask) {
7816     for (int i = 0; i < 8; ++i)
7817       if (HalfMask[i] >= 0 && HalfMask[i] < 16) {
7818         V1HalfBlendMask[i] = HalfMask[i];
7819         HalfMask[i] = i;
7820       } else if (HalfMask[i] >= 16) {
7821         V2HalfBlendMask[i] = HalfMask[i] - 16;
7822         HalfMask[i] = i + 8;
7823       }
7824   };
7825   buildBlendMasks(LoMask, V1LoBlendMask, V2LoBlendMask);
7826   buildBlendMasks(HiMask, V1HiBlendMask, V2HiBlendMask);
7827
7828   SDValue V1Lo = DAG.getVectorShuffle(MVT::v8i16, DL, LoV1, HiV1, V1LoBlendMask);
7829   SDValue V2Lo = DAG.getVectorShuffle(MVT::v8i16, DL, LoV2, HiV2, V2LoBlendMask);
7830   SDValue V1Hi = DAG.getVectorShuffle(MVT::v8i16, DL, LoV1, HiV1, V1HiBlendMask);
7831   SDValue V2Hi = DAG.getVectorShuffle(MVT::v8i16, DL, LoV2, HiV2, V2HiBlendMask);
7832
7833   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, V1Lo, V2Lo, LoMask);
7834   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, V1Hi, V2Hi, HiMask);
7835
7836   return DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, LoV, HiV);
7837 }
7838
7839 /// \brief Dispatching routine to lower various 128-bit x86 vector shuffles.
7840 ///
7841 /// This routine breaks down the specific type of 128-bit shuffle and
7842 /// dispatches to the lowering routines accordingly.
7843 static SDValue lower128BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7844                                         MVT VT, const X86Subtarget *Subtarget,
7845                                         SelectionDAG &DAG) {
7846   switch (VT.SimpleTy) {
7847   case MVT::v2i64:
7848     return lowerV2I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
7849   case MVT::v2f64:
7850     return lowerV2F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
7851   case MVT::v4i32:
7852     return lowerV4I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
7853   case MVT::v4f32:
7854     return lowerV4F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
7855   case MVT::v8i16:
7856     return lowerV8I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
7857   case MVT::v16i8:
7858     return lowerV16I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
7859
7860   default:
7861     llvm_unreachable("Unimplemented!");
7862   }
7863 }
7864
7865 /// \brief Tiny helper function to test whether adjacent masks are sequential.
7866 static bool areAdjacentMasksSequential(ArrayRef<int> Mask) {
7867   for (int i = 0, Size = Mask.size(); i < Size; i += 2)
7868     if (Mask[i] + 1 != Mask[i+1])
7869       return false;
7870
7871   return true;
7872 }
7873
7874 /// \brief Top-level lowering for x86 vector shuffles.
7875 ///
7876 /// This handles decomposition, canonicalization, and lowering of all x86
7877 /// vector shuffles. Most of the specific lowering strategies are encapsulated
7878 /// above in helper routines. The canonicalization attempts to widen shuffles
7879 /// to involve fewer lanes of wider elements, consolidate symmetric patterns
7880 /// s.t. only one of the two inputs needs to be tested, etc.
7881 static SDValue lowerVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7882                                   SelectionDAG &DAG) {
7883   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7884   ArrayRef<int> Mask = SVOp->getMask();
7885   SDValue V1 = Op.getOperand(0);
7886   SDValue V2 = Op.getOperand(1);
7887   MVT VT = Op.getSimpleValueType();
7888   int NumElements = VT.getVectorNumElements();
7889   SDLoc dl(Op);
7890
7891   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7892
7893   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7894   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7895   if (V1IsUndef && V2IsUndef)
7896     return DAG.getUNDEF(VT);
7897
7898   // When we create a shuffle node we put the UNDEF node to second operand,
7899   // but in some cases the first operand may be transformed to UNDEF.
7900   // In this case we should just commute the node.
7901   if (V1IsUndef)
7902     return CommuteVectorShuffle(SVOp, DAG);
7903
7904   // Check for non-undef masks pointing at an undef vector and make the masks
7905   // undef as well. This makes it easier to match the shuffle based solely on
7906   // the mask.
7907   if (V2IsUndef)
7908     for (int M : Mask)
7909       if (M >= NumElements) {
7910         SmallVector<int, 8> NewMask(Mask.begin(), Mask.end());
7911         for (int &M : NewMask)
7912           if (M >= NumElements)
7913             M = -1;
7914         return DAG.getVectorShuffle(VT, dl, V1, V2, NewMask);
7915       }
7916
7917   // For integer vector shuffles, try to collapse them into a shuffle of fewer
7918   // lanes but wider integers. We cap this to not form integers larger than i64
7919   // but it might be interesting to form i128 integers to handle flipping the
7920   // low and high halves of AVX 256-bit vectors.
7921   if (VT.isInteger() && VT.getScalarSizeInBits() < 64 &&
7922       areAdjacentMasksSequential(Mask)) {
7923     SmallVector<int, 8> NewMask;
7924     for (int i = 0, Size = Mask.size(); i < Size; i += 2)
7925       NewMask.push_back(Mask[i] / 2);
7926     MVT NewVT =
7927         MVT::getVectorVT(MVT::getIntegerVT(VT.getScalarSizeInBits() * 2),
7928                          VT.getVectorNumElements() / 2);
7929     V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
7930     V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
7931     return DAG.getNode(ISD::BITCAST, dl, VT,
7932                        DAG.getVectorShuffle(NewVT, dl, V1, V2, NewMask));
7933   }
7934
7935   int NumV1Elements = 0, NumUndefElements = 0, NumV2Elements = 0;
7936   for (int M : SVOp->getMask())
7937     if (M < 0)
7938       ++NumUndefElements;
7939     else if (M < NumElements)
7940       ++NumV1Elements;
7941     else
7942       ++NumV2Elements;
7943
7944   // Commute the shuffle as needed such that more elements come from V1 than
7945   // V2. This allows us to match the shuffle pattern strictly on how many
7946   // elements come from V1 without handling the symmetric cases.
7947   if (NumV2Elements > NumV1Elements)
7948     return CommuteVectorShuffle(SVOp, DAG);
7949
7950   // When the number of V1 and V2 elements are the same, try to minimize the
7951   // number of uses of V2 in the low half of the vector.
7952   if (NumV1Elements == NumV2Elements) {
7953     int LowV1Elements = 0, LowV2Elements = 0;
7954     for (int M : SVOp->getMask().slice(0, NumElements / 2))
7955       if (M >= NumElements)
7956         ++LowV2Elements;
7957       else if (M >= 0)
7958         ++LowV1Elements;
7959     if (LowV2Elements > LowV1Elements)
7960       return CommuteVectorShuffle(SVOp, DAG);
7961   }
7962
7963   // For each vector width, delegate to a specialized lowering routine.
7964   if (VT.getSizeInBits() == 128)
7965     return lower128BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
7966
7967   llvm_unreachable("Unimplemented!");
7968 }
7969
7970
7971 //===----------------------------------------------------------------------===//
7972 // Legacy vector shuffle lowering
7973 //
7974 // This code is the legacy code handling vector shuffles until the above
7975 // replaces its functionality and performance.
7976 //===----------------------------------------------------------------------===//
7977
7978 static bool isBlendMask(ArrayRef<int> MaskVals, MVT VT, bool hasSSE41,
7979                         bool hasInt256, unsigned *MaskOut = nullptr) {
7980   MVT EltVT = VT.getVectorElementType();
7981
7982   // There is no blend with immediate in AVX-512.
7983   if (VT.is512BitVector())
7984     return false;
7985
7986   if (!hasSSE41 || EltVT == MVT::i8)
7987     return false;
7988   if (!hasInt256 && VT == MVT::v16i16)
7989     return false;
7990
7991   unsigned MaskValue = 0;
7992   unsigned NumElems = VT.getVectorNumElements();
7993   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
7994   unsigned NumLanes = (NumElems - 1) / 8 + 1;
7995   unsigned NumElemsInLane = NumElems / NumLanes;
7996
7997   // Blend for v16i16 should be symetric for the both lanes.
7998   for (unsigned i = 0; i < NumElemsInLane; ++i) {
7999
8000     int SndLaneEltIdx = (NumLanes == 2) ? MaskVals[i + NumElemsInLane] : -1;
8001     int EltIdx = MaskVals[i];
8002
8003     if ((EltIdx < 0 || EltIdx == (int)i) &&
8004         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
8005       continue;
8006
8007     if (((unsigned)EltIdx == (i + NumElems)) &&
8008         (SndLaneEltIdx < 0 ||
8009          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
8010       MaskValue |= (1 << i);
8011     else
8012       return false;
8013   }
8014
8015   if (MaskOut)
8016     *MaskOut = MaskValue;
8017   return true;
8018 }
8019
8020 // Try to lower a shuffle node into a simple blend instruction.
8021 // This function assumes isBlendMask returns true for this
8022 // SuffleVectorSDNode
8023 static SDValue LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
8024                                           unsigned MaskValue,
8025                                           const X86Subtarget *Subtarget,
8026                                           SelectionDAG &DAG) {
8027   MVT VT = SVOp->getSimpleValueType(0);
8028   MVT EltVT = VT.getVectorElementType();
8029   assert(isBlendMask(SVOp->getMask(), VT, Subtarget->hasSSE41(),
8030                      Subtarget->hasInt256() && "Trying to lower a "
8031                                                "VECTOR_SHUFFLE to a Blend but "
8032                                                "with the wrong mask"));
8033   SDValue V1 = SVOp->getOperand(0);
8034   SDValue V2 = SVOp->getOperand(1);
8035   SDLoc dl(SVOp);
8036   unsigned NumElems = VT.getVectorNumElements();
8037
8038   // Convert i32 vectors to floating point if it is not AVX2.
8039   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
8040   MVT BlendVT = VT;
8041   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
8042     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
8043                                NumElems);
8044     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
8045     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
8046   }
8047
8048   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
8049                             DAG.getConstant(MaskValue, MVT::i32));
8050   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
8051 }
8052
8053 /// In vector type \p VT, return true if the element at index \p InputIdx
8054 /// falls on a different 128-bit lane than \p OutputIdx.
8055 static bool ShuffleCrosses128bitLane(MVT VT, unsigned InputIdx,
8056                                      unsigned OutputIdx) {
8057   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
8058   return InputIdx * EltSize / 128 != OutputIdx * EltSize / 128;
8059 }
8060
8061 /// Generate a PSHUFB if possible.  Selects elements from \p V1 according to
8062 /// \p MaskVals.  MaskVals[OutputIdx] = InputIdx specifies that we want to
8063 /// shuffle the element at InputIdx in V1 to OutputIdx in the result.  If \p
8064 /// MaskVals refers to elements outside of \p V1 or is undef (-1), insert a
8065 /// zero.
8066 static SDValue getPSHUFB(ArrayRef<int> MaskVals, SDValue V1, SDLoc &dl,
8067                          SelectionDAG &DAG) {
8068   MVT VT = V1.getSimpleValueType();
8069   assert(VT.is128BitVector() || VT.is256BitVector());
8070
8071   MVT EltVT = VT.getVectorElementType();
8072   unsigned EltSizeInBytes = EltVT.getSizeInBits() / 8;
8073   unsigned NumElts = VT.getVectorNumElements();
8074
8075   SmallVector<SDValue, 32> PshufbMask;
8076   for (unsigned OutputIdx = 0; OutputIdx < NumElts; ++OutputIdx) {
8077     int InputIdx = MaskVals[OutputIdx];
8078     unsigned InputByteIdx;
8079
8080     if (InputIdx < 0 || NumElts <= (unsigned)InputIdx)
8081       InputByteIdx = 0x80;
8082     else {
8083       // Cross lane is not allowed.
8084       if (ShuffleCrosses128bitLane(VT, InputIdx, OutputIdx))
8085         return SDValue();
8086       InputByteIdx = InputIdx * EltSizeInBytes;
8087       // Index is an byte offset within the 128-bit lane.
8088       InputByteIdx &= 0xf;
8089     }
8090
8091     for (unsigned j = 0; j < EltSizeInBytes; ++j) {
8092       PshufbMask.push_back(DAG.getConstant(InputByteIdx, MVT::i8));
8093       if (InputByteIdx != 0x80)
8094         ++InputByteIdx;
8095     }
8096   }
8097
8098   MVT ShufVT = MVT::getVectorVT(MVT::i8, PshufbMask.size());
8099   if (ShufVT != VT)
8100     V1 = DAG.getNode(ISD::BITCAST, dl, ShufVT, V1);
8101   return DAG.getNode(X86ISD::PSHUFB, dl, ShufVT, V1,
8102                      DAG.getNode(ISD::BUILD_VECTOR, dl, ShufVT, PshufbMask));
8103 }
8104
8105 // v8i16 shuffles - Prefer shuffles in the following order:
8106 // 1. [all]   pshuflw, pshufhw, optional move
8107 // 2. [ssse3] 1 x pshufb
8108 // 3. [ssse3] 2 x pshufb + 1 x por
8109 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
8110 static SDValue
8111 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
8112                          SelectionDAG &DAG) {
8113   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8114   SDValue V1 = SVOp->getOperand(0);
8115   SDValue V2 = SVOp->getOperand(1);
8116   SDLoc dl(SVOp);
8117   SmallVector<int, 8> MaskVals;
8118
8119   // Determine if more than 1 of the words in each of the low and high quadwords
8120   // of the result come from the same quadword of one of the two inputs.  Undef
8121   // mask values count as coming from any quadword, for better codegen.
8122   //
8123   // Lo/HiQuad[i] = j indicates how many words from the ith quad of the input
8124   // feeds this quad.  For i, 0 and 1 refer to V1, 2 and 3 refer to V2.
8125   unsigned LoQuad[] = { 0, 0, 0, 0 };
8126   unsigned HiQuad[] = { 0, 0, 0, 0 };
8127   // Indices of quads used.
8128   std::bitset<4> InputQuads;
8129   for (unsigned i = 0; i < 8; ++i) {
8130     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
8131     int EltIdx = SVOp->getMaskElt(i);
8132     MaskVals.push_back(EltIdx);
8133     if (EltIdx < 0) {
8134       ++Quad[0];
8135       ++Quad[1];
8136       ++Quad[2];
8137       ++Quad[3];
8138       continue;
8139     }
8140     ++Quad[EltIdx / 4];
8141     InputQuads.set(EltIdx / 4);
8142   }
8143
8144   int BestLoQuad = -1;
8145   unsigned MaxQuad = 1;
8146   for (unsigned i = 0; i < 4; ++i) {
8147     if (LoQuad[i] > MaxQuad) {
8148       BestLoQuad = i;
8149       MaxQuad = LoQuad[i];
8150     }
8151   }
8152
8153   int BestHiQuad = -1;
8154   MaxQuad = 1;
8155   for (unsigned i = 0; i < 4; ++i) {
8156     if (HiQuad[i] > MaxQuad) {
8157       BestHiQuad = i;
8158       MaxQuad = HiQuad[i];
8159     }
8160   }
8161
8162   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
8163   // of the two input vectors, shuffle them into one input vector so only a
8164   // single pshufb instruction is necessary. If there are more than 2 input
8165   // quads, disable the next transformation since it does not help SSSE3.
8166   bool V1Used = InputQuads[0] || InputQuads[1];
8167   bool V2Used = InputQuads[2] || InputQuads[3];
8168   if (Subtarget->hasSSSE3()) {
8169     if (InputQuads.count() == 2 && V1Used && V2Used) {
8170       BestLoQuad = InputQuads[0] ? 0 : 1;
8171       BestHiQuad = InputQuads[2] ? 2 : 3;
8172     }
8173     if (InputQuads.count() > 2) {
8174       BestLoQuad = -1;
8175       BestHiQuad = -1;
8176     }
8177   }
8178
8179   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
8180   // the shuffle mask.  If a quad is scored as -1, that means that it contains
8181   // words from all 4 input quadwords.
8182   SDValue NewV;
8183   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
8184     int MaskV[] = {
8185       BestLoQuad < 0 ? 0 : BestLoQuad,
8186       BestHiQuad < 0 ? 1 : BestHiQuad
8187     };
8188     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
8189                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
8190                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
8191     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
8192
8193     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
8194     // source words for the shuffle, to aid later transformations.
8195     bool AllWordsInNewV = true;
8196     bool InOrder[2] = { true, true };
8197     for (unsigned i = 0; i != 8; ++i) {
8198       int idx = MaskVals[i];
8199       if (idx != (int)i)
8200         InOrder[i/4] = false;
8201       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
8202         continue;
8203       AllWordsInNewV = false;
8204       break;
8205     }
8206
8207     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
8208     if (AllWordsInNewV) {
8209       for (int i = 0; i != 8; ++i) {
8210         int idx = MaskVals[i];
8211         if (idx < 0)
8212           continue;
8213         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
8214         if ((idx != i) && idx < 4)
8215           pshufhw = false;
8216         if ((idx != i) && idx > 3)
8217           pshuflw = false;
8218       }
8219       V1 = NewV;
8220       V2Used = false;
8221       BestLoQuad = 0;
8222       BestHiQuad = 1;
8223     }
8224
8225     // If we've eliminated the use of V2, and the new mask is a pshuflw or
8226     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
8227     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
8228       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
8229       unsigned TargetMask = 0;
8230       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
8231                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
8232       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
8233       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
8234                              getShufflePSHUFLWImmediate(SVOp);
8235       V1 = NewV.getOperand(0);
8236       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
8237     }
8238   }
8239
8240   // Promote splats to a larger type which usually leads to more efficient code.
8241   // FIXME: Is this true if pshufb is available?
8242   if (SVOp->isSplat())
8243     return PromoteSplat(SVOp, DAG);
8244
8245   // If we have SSSE3, and all words of the result are from 1 input vector,
8246   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
8247   // is present, fall back to case 4.
8248   if (Subtarget->hasSSSE3()) {
8249     SmallVector<SDValue,16> pshufbMask;
8250
8251     // If we have elements from both input vectors, set the high bit of the
8252     // shuffle mask element to zero out elements that come from V2 in the V1
8253     // mask, and elements that come from V1 in the V2 mask, so that the two
8254     // results can be OR'd together.
8255     bool TwoInputs = V1Used && V2Used;
8256     V1 = getPSHUFB(MaskVals, V1, dl, DAG);
8257     if (!TwoInputs)
8258       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
8259
8260     // Calculate the shuffle mask for the second input, shuffle it, and
8261     // OR it with the first shuffled input.
8262     CommuteVectorShuffleMask(MaskVals, 8);
8263     V2 = getPSHUFB(MaskVals, V2, dl, DAG);
8264     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
8265     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
8266   }
8267
8268   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
8269   // and update MaskVals with new element order.
8270   std::bitset<8> InOrder;
8271   if (BestLoQuad >= 0) {
8272     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
8273     for (int i = 0; i != 4; ++i) {
8274       int idx = MaskVals[i];
8275       if (idx < 0) {
8276         InOrder.set(i);
8277       } else if ((idx / 4) == BestLoQuad) {
8278         MaskV[i] = idx & 3;
8279         InOrder.set(i);
8280       }
8281     }
8282     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
8283                                 &MaskV[0]);
8284
8285     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSE2()) {
8286       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
8287       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
8288                                   NewV.getOperand(0),
8289                                   getShufflePSHUFLWImmediate(SVOp), DAG);
8290     }
8291   }
8292
8293   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
8294   // and update MaskVals with the new element order.
8295   if (BestHiQuad >= 0) {
8296     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
8297     for (unsigned i = 4; i != 8; ++i) {
8298       int idx = MaskVals[i];
8299       if (idx < 0) {
8300         InOrder.set(i);
8301       } else if ((idx / 4) == BestHiQuad) {
8302         MaskV[i] = (idx & 3) + 4;
8303         InOrder.set(i);
8304       }
8305     }
8306     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
8307                                 &MaskV[0]);
8308
8309     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSE2()) {
8310       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
8311       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
8312                                   NewV.getOperand(0),
8313                                   getShufflePSHUFHWImmediate(SVOp), DAG);
8314     }
8315   }
8316
8317   // In case BestHi & BestLo were both -1, which means each quadword has a word
8318   // from each of the four input quadwords, calculate the InOrder bitvector now
8319   // before falling through to the insert/extract cleanup.
8320   if (BestLoQuad == -1 && BestHiQuad == -1) {
8321     NewV = V1;
8322     for (int i = 0; i != 8; ++i)
8323       if (MaskVals[i] < 0 || MaskVals[i] == i)
8324         InOrder.set(i);
8325   }
8326
8327   // The other elements are put in the right place using pextrw and pinsrw.
8328   for (unsigned i = 0; i != 8; ++i) {
8329     if (InOrder[i])
8330       continue;
8331     int EltIdx = MaskVals[i];
8332     if (EltIdx < 0)
8333       continue;
8334     SDValue ExtOp = (EltIdx < 8) ?
8335       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
8336                   DAG.getIntPtrConstant(EltIdx)) :
8337       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
8338                   DAG.getIntPtrConstant(EltIdx - 8));
8339     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
8340                        DAG.getIntPtrConstant(i));
8341   }
8342   return NewV;
8343 }
8344
8345 /// \brief v16i16 shuffles
8346 ///
8347 /// FIXME: We only support generation of a single pshufb currently.  We can
8348 /// generalize the other applicable cases from LowerVECTOR_SHUFFLEv8i16 as
8349 /// well (e.g 2 x pshufb + 1 x por).
8350 static SDValue
8351 LowerVECTOR_SHUFFLEv16i16(SDValue Op, SelectionDAG &DAG) {
8352   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8353   SDValue V1 = SVOp->getOperand(0);
8354   SDValue V2 = SVOp->getOperand(1);
8355   SDLoc dl(SVOp);
8356
8357   if (V2.getOpcode() != ISD::UNDEF)
8358     return SDValue();
8359
8360   SmallVector<int, 16> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
8361   return getPSHUFB(MaskVals, V1, dl, DAG);
8362 }
8363
8364 // v16i8 shuffles - Prefer shuffles in the following order:
8365 // 1. [ssse3] 1 x pshufb
8366 // 2. [ssse3] 2 x pshufb + 1 x por
8367 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
8368 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
8369                                         const X86Subtarget* Subtarget,
8370                                         SelectionDAG &DAG) {
8371   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8372   SDValue V1 = SVOp->getOperand(0);
8373   SDValue V2 = SVOp->getOperand(1);
8374   SDLoc dl(SVOp);
8375   ArrayRef<int> MaskVals = SVOp->getMask();
8376
8377   // Promote splats to a larger type which usually leads to more efficient code.
8378   // FIXME: Is this true if pshufb is available?
8379   if (SVOp->isSplat())
8380     return PromoteSplat(SVOp, DAG);
8381
8382   // If we have SSSE3, case 1 is generated when all result bytes come from
8383   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
8384   // present, fall back to case 3.
8385
8386   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
8387   if (Subtarget->hasSSSE3()) {
8388     SmallVector<SDValue,16> pshufbMask;
8389
8390     // If all result elements are from one input vector, then only translate
8391     // undef mask values to 0x80 (zero out result) in the pshufb mask.
8392     //
8393     // Otherwise, we have elements from both input vectors, and must zero out
8394     // elements that come from V2 in the first mask, and V1 in the second mask
8395     // so that we can OR them together.
8396     for (unsigned i = 0; i != 16; ++i) {
8397       int EltIdx = MaskVals[i];
8398       if (EltIdx < 0 || EltIdx >= 16)
8399         EltIdx = 0x80;
8400       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
8401     }
8402     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
8403                      DAG.getNode(ISD::BUILD_VECTOR, dl,
8404                                  MVT::v16i8, pshufbMask));
8405
8406     // As PSHUFB will zero elements with negative indices, it's safe to ignore
8407     // the 2nd operand if it's undefined or zero.
8408     if (V2.getOpcode() == ISD::UNDEF ||
8409         ISD::isBuildVectorAllZeros(V2.getNode()))
8410       return V1;
8411
8412     // Calculate the shuffle mask for the second input, shuffle it, and
8413     // OR it with the first shuffled input.
8414     pshufbMask.clear();
8415     for (unsigned i = 0; i != 16; ++i) {
8416       int EltIdx = MaskVals[i];
8417       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
8418       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
8419     }
8420     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
8421                      DAG.getNode(ISD::BUILD_VECTOR, dl,
8422                                  MVT::v16i8, pshufbMask));
8423     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
8424   }
8425
8426   // No SSSE3 - Calculate in place words and then fix all out of place words
8427   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
8428   // the 16 different words that comprise the two doublequadword input vectors.
8429   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
8430   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
8431   SDValue NewV = V1;
8432   for (int i = 0; i != 8; ++i) {
8433     int Elt0 = MaskVals[i*2];
8434     int Elt1 = MaskVals[i*2+1];
8435
8436     // This word of the result is all undef, skip it.
8437     if (Elt0 < 0 && Elt1 < 0)
8438       continue;
8439
8440     // This word of the result is already in the correct place, skip it.
8441     if ((Elt0 == i*2) && (Elt1 == i*2+1))
8442       continue;
8443
8444     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
8445     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
8446     SDValue InsElt;
8447
8448     // If Elt0 and Elt1 are defined, are consecutive, and can be load
8449     // using a single extract together, load it and store it.
8450     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
8451       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
8452                            DAG.getIntPtrConstant(Elt1 / 2));
8453       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
8454                         DAG.getIntPtrConstant(i));
8455       continue;
8456     }
8457
8458     // If Elt1 is defined, extract it from the appropriate source.  If the
8459     // source byte is not also odd, shift the extracted word left 8 bits
8460     // otherwise clear the bottom 8 bits if we need to do an or.
8461     if (Elt1 >= 0) {
8462       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
8463                            DAG.getIntPtrConstant(Elt1 / 2));
8464       if ((Elt1 & 1) == 0)
8465         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
8466                              DAG.getConstant(8,
8467                                   TLI.getShiftAmountTy(InsElt.getValueType())));
8468       else if (Elt0 >= 0)
8469         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
8470                              DAG.getConstant(0xFF00, MVT::i16));
8471     }
8472     // If Elt0 is defined, extract it from the appropriate source.  If the
8473     // source byte is not also even, shift the extracted word right 8 bits. If
8474     // Elt1 was also defined, OR the extracted values together before
8475     // inserting them in the result.
8476     if (Elt0 >= 0) {
8477       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
8478                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
8479       if ((Elt0 & 1) != 0)
8480         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
8481                               DAG.getConstant(8,
8482                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
8483       else if (Elt1 >= 0)
8484         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
8485                              DAG.getConstant(0x00FF, MVT::i16));
8486       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
8487                          : InsElt0;
8488     }
8489     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
8490                        DAG.getIntPtrConstant(i));
8491   }
8492   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
8493 }
8494
8495 // v32i8 shuffles - Translate to VPSHUFB if possible.
8496 static
8497 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
8498                                  const X86Subtarget *Subtarget,
8499                                  SelectionDAG &DAG) {
8500   MVT VT = SVOp->getSimpleValueType(0);
8501   SDValue V1 = SVOp->getOperand(0);
8502   SDValue V2 = SVOp->getOperand(1);
8503   SDLoc dl(SVOp);
8504   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
8505
8506   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
8507   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
8508   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
8509
8510   // VPSHUFB may be generated if
8511   // (1) one of input vector is undefined or zeroinitializer.
8512   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
8513   // And (2) the mask indexes don't cross the 128-bit lane.
8514   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
8515       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
8516     return SDValue();
8517
8518   if (V1IsAllZero && !V2IsAllZero) {
8519     CommuteVectorShuffleMask(MaskVals, 32);
8520     V1 = V2;
8521   }
8522   return getPSHUFB(MaskVals, V1, dl, DAG);
8523 }
8524
8525 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
8526 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
8527 /// done when every pair / quad of shuffle mask elements point to elements in
8528 /// the right sequence. e.g.
8529 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
8530 static
8531 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
8532                                  SelectionDAG &DAG) {
8533   MVT VT = SVOp->getSimpleValueType(0);
8534   SDLoc dl(SVOp);
8535   unsigned NumElems = VT.getVectorNumElements();
8536   MVT NewVT;
8537   unsigned Scale;
8538   switch (VT.SimpleTy) {
8539   default: llvm_unreachable("Unexpected!");
8540   case MVT::v2i64:
8541   case MVT::v2f64:
8542            return SDValue(SVOp, 0);
8543   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
8544   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
8545   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
8546   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
8547   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
8548   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
8549   }
8550
8551   SmallVector<int, 8> MaskVec;
8552   for (unsigned i = 0; i != NumElems; i += Scale) {
8553     int StartIdx = -1;
8554     for (unsigned j = 0; j != Scale; ++j) {
8555       int EltIdx = SVOp->getMaskElt(i+j);
8556       if (EltIdx < 0)
8557         continue;
8558       if (StartIdx < 0)
8559         StartIdx = (EltIdx / Scale);
8560       if (EltIdx != (int)(StartIdx*Scale + j))
8561         return SDValue();
8562     }
8563     MaskVec.push_back(StartIdx);
8564   }
8565
8566   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
8567   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
8568   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
8569 }
8570
8571 /// getVZextMovL - Return a zero-extending vector move low node.
8572 ///
8573 static SDValue getVZextMovL(MVT VT, MVT OpVT,
8574                             SDValue SrcOp, SelectionDAG &DAG,
8575                             const X86Subtarget *Subtarget, SDLoc dl) {
8576   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
8577     LoadSDNode *LD = nullptr;
8578     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
8579       LD = dyn_cast<LoadSDNode>(SrcOp);
8580     if (!LD) {
8581       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
8582       // instead.
8583       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
8584       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
8585           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
8586           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
8587           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
8588         // PR2108
8589         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
8590         return DAG.getNode(ISD::BITCAST, dl, VT,
8591                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
8592                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8593                                                    OpVT,
8594                                                    SrcOp.getOperand(0)
8595                                                           .getOperand(0))));
8596       }
8597     }
8598   }
8599
8600   return DAG.getNode(ISD::BITCAST, dl, VT,
8601                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
8602                                  DAG.getNode(ISD::BITCAST, dl,
8603                                              OpVT, SrcOp)));
8604 }
8605
8606 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
8607 /// which could not be matched by any known target speficic shuffle
8608 static SDValue
8609 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
8610
8611   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
8612   if (NewOp.getNode())
8613     return NewOp;
8614
8615   MVT VT = SVOp->getSimpleValueType(0);
8616
8617   unsigned NumElems = VT.getVectorNumElements();
8618   unsigned NumLaneElems = NumElems / 2;
8619
8620   SDLoc dl(SVOp);
8621   MVT EltVT = VT.getVectorElementType();
8622   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
8623   SDValue Output[2];
8624
8625   SmallVector<int, 16> Mask;
8626   for (unsigned l = 0; l < 2; ++l) {
8627     // Build a shuffle mask for the output, discovering on the fly which
8628     // input vectors to use as shuffle operands (recorded in InputUsed).
8629     // If building a suitable shuffle vector proves too hard, then bail
8630     // out with UseBuildVector set.
8631     bool UseBuildVector = false;
8632     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
8633     unsigned LaneStart = l * NumLaneElems;
8634     for (unsigned i = 0; i != NumLaneElems; ++i) {
8635       // The mask element.  This indexes into the input.
8636       int Idx = SVOp->getMaskElt(i+LaneStart);
8637       if (Idx < 0) {
8638         // the mask element does not index into any input vector.
8639         Mask.push_back(-1);
8640         continue;
8641       }
8642
8643       // The input vector this mask element indexes into.
8644       int Input = Idx / NumLaneElems;
8645
8646       // Turn the index into an offset from the start of the input vector.
8647       Idx -= Input * NumLaneElems;
8648
8649       // Find or create a shuffle vector operand to hold this input.
8650       unsigned OpNo;
8651       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
8652         if (InputUsed[OpNo] == Input)
8653           // This input vector is already an operand.
8654           break;
8655         if (InputUsed[OpNo] < 0) {
8656           // Create a new operand for this input vector.
8657           InputUsed[OpNo] = Input;
8658           break;
8659         }
8660       }
8661
8662       if (OpNo >= array_lengthof(InputUsed)) {
8663         // More than two input vectors used!  Give up on trying to create a
8664         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
8665         UseBuildVector = true;
8666         break;
8667       }
8668
8669       // Add the mask index for the new shuffle vector.
8670       Mask.push_back(Idx + OpNo * NumLaneElems);
8671     }
8672
8673     if (UseBuildVector) {
8674       SmallVector<SDValue, 16> SVOps;
8675       for (unsigned i = 0; i != NumLaneElems; ++i) {
8676         // The mask element.  This indexes into the input.
8677         int Idx = SVOp->getMaskElt(i+LaneStart);
8678         if (Idx < 0) {
8679           SVOps.push_back(DAG.getUNDEF(EltVT));
8680           continue;
8681         }
8682
8683         // The input vector this mask element indexes into.
8684         int Input = Idx / NumElems;
8685
8686         // Turn the index into an offset from the start of the input vector.
8687         Idx -= Input * NumElems;
8688
8689         // Extract the vector element by hand.
8690         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
8691                                     SVOp->getOperand(Input),
8692                                     DAG.getIntPtrConstant(Idx)));
8693       }
8694
8695       // Construct the output using a BUILD_VECTOR.
8696       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, SVOps);
8697     } else if (InputUsed[0] < 0) {
8698       // No input vectors were used! The result is undefined.
8699       Output[l] = DAG.getUNDEF(NVT);
8700     } else {
8701       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
8702                                         (InputUsed[0] % 2) * NumLaneElems,
8703                                         DAG, dl);
8704       // If only one input was used, use an undefined vector for the other.
8705       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
8706         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
8707                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
8708       // At least one input vector was used. Create a new shuffle vector.
8709       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
8710     }
8711
8712     Mask.clear();
8713   }
8714
8715   // Concatenate the result back
8716   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
8717 }
8718
8719 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
8720 /// 4 elements, and match them with several different shuffle types.
8721 static SDValue
8722 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
8723   SDValue V1 = SVOp->getOperand(0);
8724   SDValue V2 = SVOp->getOperand(1);
8725   SDLoc dl(SVOp);
8726   MVT VT = SVOp->getSimpleValueType(0);
8727
8728   assert(VT.is128BitVector() && "Unsupported vector size");
8729
8730   std::pair<int, int> Locs[4];
8731   int Mask1[] = { -1, -1, -1, -1 };
8732   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
8733
8734   unsigned NumHi = 0;
8735   unsigned NumLo = 0;
8736   for (unsigned i = 0; i != 4; ++i) {
8737     int Idx = PermMask[i];
8738     if (Idx < 0) {
8739       Locs[i] = std::make_pair(-1, -1);
8740     } else {
8741       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
8742       if (Idx < 4) {
8743         Locs[i] = std::make_pair(0, NumLo);
8744         Mask1[NumLo] = Idx;
8745         NumLo++;
8746       } else {
8747         Locs[i] = std::make_pair(1, NumHi);
8748         if (2+NumHi < 4)
8749           Mask1[2+NumHi] = Idx;
8750         NumHi++;
8751       }
8752     }
8753   }
8754
8755   if (NumLo <= 2 && NumHi <= 2) {
8756     // If no more than two elements come from either vector. This can be
8757     // implemented with two shuffles. First shuffle gather the elements.
8758     // The second shuffle, which takes the first shuffle as both of its
8759     // vector operands, put the elements into the right order.
8760     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
8761
8762     int Mask2[] = { -1, -1, -1, -1 };
8763
8764     for (unsigned i = 0; i != 4; ++i)
8765       if (Locs[i].first != -1) {
8766         unsigned Idx = (i < 2) ? 0 : 4;
8767         Idx += Locs[i].first * 2 + Locs[i].second;
8768         Mask2[i] = Idx;
8769       }
8770
8771     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
8772   }
8773
8774   if (NumLo == 3 || NumHi == 3) {
8775     // Otherwise, we must have three elements from one vector, call it X, and
8776     // one element from the other, call it Y.  First, use a shufps to build an
8777     // intermediate vector with the one element from Y and the element from X
8778     // that will be in the same half in the final destination (the indexes don't
8779     // matter). Then, use a shufps to build the final vector, taking the half
8780     // containing the element from Y from the intermediate, and the other half
8781     // from X.
8782     if (NumHi == 3) {
8783       // Normalize it so the 3 elements come from V1.
8784       CommuteVectorShuffleMask(PermMask, 4);
8785       std::swap(V1, V2);
8786     }
8787
8788     // Find the element from V2.
8789     unsigned HiIndex;
8790     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
8791       int Val = PermMask[HiIndex];
8792       if (Val < 0)
8793         continue;
8794       if (Val >= 4)
8795         break;
8796     }
8797
8798     Mask1[0] = PermMask[HiIndex];
8799     Mask1[1] = -1;
8800     Mask1[2] = PermMask[HiIndex^1];
8801     Mask1[3] = -1;
8802     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
8803
8804     if (HiIndex >= 2) {
8805       Mask1[0] = PermMask[0];
8806       Mask1[1] = PermMask[1];
8807       Mask1[2] = HiIndex & 1 ? 6 : 4;
8808       Mask1[3] = HiIndex & 1 ? 4 : 6;
8809       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
8810     }
8811
8812     Mask1[0] = HiIndex & 1 ? 2 : 0;
8813     Mask1[1] = HiIndex & 1 ? 0 : 2;
8814     Mask1[2] = PermMask[2];
8815     Mask1[3] = PermMask[3];
8816     if (Mask1[2] >= 0)
8817       Mask1[2] += 4;
8818     if (Mask1[3] >= 0)
8819       Mask1[3] += 4;
8820     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
8821   }
8822
8823   // Break it into (shuffle shuffle_hi, shuffle_lo).
8824   int LoMask[] = { -1, -1, -1, -1 };
8825   int HiMask[] = { -1, -1, -1, -1 };
8826
8827   int *MaskPtr = LoMask;
8828   unsigned MaskIdx = 0;
8829   unsigned LoIdx = 0;
8830   unsigned HiIdx = 2;
8831   for (unsigned i = 0; i != 4; ++i) {
8832     if (i == 2) {
8833       MaskPtr = HiMask;
8834       MaskIdx = 1;
8835       LoIdx = 0;
8836       HiIdx = 2;
8837     }
8838     int Idx = PermMask[i];
8839     if (Idx < 0) {
8840       Locs[i] = std::make_pair(-1, -1);
8841     } else if (Idx < 4) {
8842       Locs[i] = std::make_pair(MaskIdx, LoIdx);
8843       MaskPtr[LoIdx] = Idx;
8844       LoIdx++;
8845     } else {
8846       Locs[i] = std::make_pair(MaskIdx, HiIdx);
8847       MaskPtr[HiIdx] = Idx;
8848       HiIdx++;
8849     }
8850   }
8851
8852   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
8853   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
8854   int MaskOps[] = { -1, -1, -1, -1 };
8855   for (unsigned i = 0; i != 4; ++i)
8856     if (Locs[i].first != -1)
8857       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
8858   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
8859 }
8860
8861 static bool MayFoldVectorLoad(SDValue V) {
8862   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
8863     V = V.getOperand(0);
8864
8865   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
8866     V = V.getOperand(0);
8867   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
8868       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
8869     // BUILD_VECTOR (load), undef
8870     V = V.getOperand(0);
8871
8872   return MayFoldLoad(V);
8873 }
8874
8875 static
8876 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
8877   MVT VT = Op.getSimpleValueType();
8878
8879   // Canonizalize to v2f64.
8880   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
8881   return DAG.getNode(ISD::BITCAST, dl, VT,
8882                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
8883                                           V1, DAG));
8884 }
8885
8886 static
8887 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
8888                         bool HasSSE2) {
8889   SDValue V1 = Op.getOperand(0);
8890   SDValue V2 = Op.getOperand(1);
8891   MVT VT = Op.getSimpleValueType();
8892
8893   assert(VT != MVT::v2i64 && "unsupported shuffle type");
8894
8895   if (HasSSE2 && VT == MVT::v2f64)
8896     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
8897
8898   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
8899   return DAG.getNode(ISD::BITCAST, dl, VT,
8900                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
8901                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
8902                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
8903 }
8904
8905 static
8906 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
8907   SDValue V1 = Op.getOperand(0);
8908   SDValue V2 = Op.getOperand(1);
8909   MVT VT = Op.getSimpleValueType();
8910
8911   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
8912          "unsupported shuffle type");
8913
8914   if (V2.getOpcode() == ISD::UNDEF)
8915     V2 = V1;
8916
8917   // v4i32 or v4f32
8918   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
8919 }
8920
8921 static
8922 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
8923   SDValue V1 = Op.getOperand(0);
8924   SDValue V2 = Op.getOperand(1);
8925   MVT VT = Op.getSimpleValueType();
8926   unsigned NumElems = VT.getVectorNumElements();
8927
8928   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
8929   // operand of these instructions is only memory, so check if there's a
8930   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
8931   // same masks.
8932   bool CanFoldLoad = false;
8933
8934   // Trivial case, when V2 comes from a load.
8935   if (MayFoldVectorLoad(V2))
8936     CanFoldLoad = true;
8937
8938   // When V1 is a load, it can be folded later into a store in isel, example:
8939   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
8940   //    turns into:
8941   //  (MOVLPSmr addr:$src1, VR128:$src2)
8942   // So, recognize this potential and also use MOVLPS or MOVLPD
8943   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
8944     CanFoldLoad = true;
8945
8946   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8947   if (CanFoldLoad) {
8948     if (HasSSE2 && NumElems == 2)
8949       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
8950
8951     if (NumElems == 4)
8952       // If we don't care about the second element, proceed to use movss.
8953       if (SVOp->getMaskElt(1) != -1)
8954         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
8955   }
8956
8957   // movl and movlp will both match v2i64, but v2i64 is never matched by
8958   // movl earlier because we make it strict to avoid messing with the movlp load
8959   // folding logic (see the code above getMOVLP call). Match it here then,
8960   // this is horrible, but will stay like this until we move all shuffle
8961   // matching to x86 specific nodes. Note that for the 1st condition all
8962   // types are matched with movsd.
8963   if (HasSSE2) {
8964     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
8965     // as to remove this logic from here, as much as possible
8966     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
8967       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
8968     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
8969   }
8970
8971   assert(VT != MVT::v4i32 && "unsupported shuffle type");
8972
8973   // Invert the operand order and use SHUFPS to match it.
8974   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
8975                               getShuffleSHUFImmediate(SVOp), DAG);
8976 }
8977
8978 static SDValue NarrowVectorLoadToElement(LoadSDNode *Load, unsigned Index,
8979                                          SelectionDAG &DAG) {
8980   SDLoc dl(Load);
8981   MVT VT = Load->getSimpleValueType(0);
8982   MVT EVT = VT.getVectorElementType();
8983   SDValue Addr = Load->getOperand(1);
8984   SDValue NewAddr = DAG.getNode(
8985       ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
8986       DAG.getConstant(Index * EVT.getStoreSize(), Addr.getSimpleValueType()));
8987
8988   SDValue NewLoad =
8989       DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
8990                   DAG.getMachineFunction().getMachineMemOperand(
8991                       Load->getMemOperand(), 0, EVT.getStoreSize()));
8992   return NewLoad;
8993 }
8994
8995 // It is only safe to call this function if isINSERTPSMask is true for
8996 // this shufflevector mask.
8997 static SDValue getINSERTPS(ShuffleVectorSDNode *SVOp, SDLoc &dl,
8998                            SelectionDAG &DAG) {
8999   // Generate an insertps instruction when inserting an f32 from memory onto a
9000   // v4f32 or when copying a member from one v4f32 to another.
9001   // We also use it for transferring i32 from one register to another,
9002   // since it simply copies the same bits.
9003   // If we're transferring an i32 from memory to a specific element in a
9004   // register, we output a generic DAG that will match the PINSRD
9005   // instruction.
9006   MVT VT = SVOp->getSimpleValueType(0);
9007   MVT EVT = VT.getVectorElementType();
9008   SDValue V1 = SVOp->getOperand(0);
9009   SDValue V2 = SVOp->getOperand(1);
9010   auto Mask = SVOp->getMask();
9011   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
9012          "unsupported vector type for insertps/pinsrd");
9013
9014   auto FromV1Predicate = [](const int &i) { return i < 4 && i > -1; };
9015   auto FromV2Predicate = [](const int &i) { return i >= 4; };
9016   int FromV1 = std::count_if(Mask.begin(), Mask.end(), FromV1Predicate);
9017
9018   SDValue From;
9019   SDValue To;
9020   unsigned DestIndex;
9021   if (FromV1 == 1) {
9022     From = V1;
9023     To = V2;
9024     DestIndex = std::find_if(Mask.begin(), Mask.end(), FromV1Predicate) -
9025                 Mask.begin();
9026   } else {
9027     assert(std::count_if(Mask.begin(), Mask.end(), FromV2Predicate) == 1 &&
9028            "More than one element from V1 and from V2, or no elements from one "
9029            "of the vectors. This case should not have returned true from "
9030            "isINSERTPSMask");
9031     From = V2;
9032     To = V1;
9033     DestIndex =
9034         std::find_if(Mask.begin(), Mask.end(), FromV2Predicate) - Mask.begin();
9035   }
9036
9037   unsigned SrcIndex = Mask[DestIndex] % 4;
9038   if (MayFoldLoad(From)) {
9039     // Trivial case, when From comes from a load and is only used by the
9040     // shuffle. Make it use insertps from the vector that we need from that
9041     // load.
9042     SDValue NewLoad =
9043         NarrowVectorLoadToElement(cast<LoadSDNode>(From), SrcIndex, DAG);
9044     if (!NewLoad.getNode())
9045       return SDValue();
9046
9047     if (EVT == MVT::f32) {
9048       // Create this as a scalar to vector to match the instruction pattern.
9049       SDValue LoadScalarToVector =
9050           DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, NewLoad);
9051       SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4);
9052       return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, LoadScalarToVector,
9053                          InsertpsMask);
9054     } else { // EVT == MVT::i32
9055       // If we're getting an i32 from memory, use an INSERT_VECTOR_ELT
9056       // instruction, to match the PINSRD instruction, which loads an i32 to a
9057       // certain vector element.
9058       return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, To, NewLoad,
9059                          DAG.getConstant(DestIndex, MVT::i32));
9060     }
9061   }
9062
9063   // Vector-element-to-vector
9064   SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4 | SrcIndex << 6);
9065   return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, From, InsertpsMask);
9066 }
9067
9068 // Reduce a vector shuffle to zext.
9069 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
9070                                     SelectionDAG &DAG) {
9071   // PMOVZX is only available from SSE41.
9072   if (!Subtarget->hasSSE41())
9073     return SDValue();
9074
9075   MVT VT = Op.getSimpleValueType();
9076
9077   // Only AVX2 support 256-bit vector integer extending.
9078   if (!Subtarget->hasInt256() && VT.is256BitVector())
9079     return SDValue();
9080
9081   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9082   SDLoc DL(Op);
9083   SDValue V1 = Op.getOperand(0);
9084   SDValue V2 = Op.getOperand(1);
9085   unsigned NumElems = VT.getVectorNumElements();
9086
9087   // Extending is an unary operation and the element type of the source vector
9088   // won't be equal to or larger than i64.
9089   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
9090       VT.getVectorElementType() == MVT::i64)
9091     return SDValue();
9092
9093   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
9094   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
9095   while ((1U << Shift) < NumElems) {
9096     if (SVOp->getMaskElt(1U << Shift) == 1)
9097       break;
9098     Shift += 1;
9099     // The maximal ratio is 8, i.e. from i8 to i64.
9100     if (Shift > 3)
9101       return SDValue();
9102   }
9103
9104   // Check the shuffle mask.
9105   unsigned Mask = (1U << Shift) - 1;
9106   for (unsigned i = 0; i != NumElems; ++i) {
9107     int EltIdx = SVOp->getMaskElt(i);
9108     if ((i & Mask) != 0 && EltIdx != -1)
9109       return SDValue();
9110     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
9111       return SDValue();
9112   }
9113
9114   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
9115   MVT NeVT = MVT::getIntegerVT(NBits);
9116   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
9117
9118   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
9119     return SDValue();
9120
9121   // Simplify the operand as it's prepared to be fed into shuffle.
9122   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
9123   if (V1.getOpcode() == ISD::BITCAST &&
9124       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
9125       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
9126       V1.getOperand(0).getOperand(0)
9127         .getSimpleValueType().getSizeInBits() == SignificantBits) {
9128     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
9129     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
9130     ConstantSDNode *CIdx =
9131       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
9132     // If it's foldable, i.e. normal load with single use, we will let code
9133     // selection to fold it. Otherwise, we will short the conversion sequence.
9134     if (CIdx && CIdx->getZExtValue() == 0 &&
9135         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
9136       MVT FullVT = V.getSimpleValueType();
9137       MVT V1VT = V1.getSimpleValueType();
9138       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
9139         // The "ext_vec_elt" node is wider than the result node.
9140         // In this case we should extract subvector from V.
9141         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
9142         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
9143         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
9144                                         FullVT.getVectorNumElements()/Ratio);
9145         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
9146                         DAG.getIntPtrConstant(0));
9147       }
9148       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
9149     }
9150   }
9151
9152   return DAG.getNode(ISD::BITCAST, DL, VT,
9153                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
9154 }
9155
9156 static SDValue NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
9157                                       SelectionDAG &DAG) {
9158   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9159   MVT VT = Op.getSimpleValueType();
9160   SDLoc dl(Op);
9161   SDValue V1 = Op.getOperand(0);
9162   SDValue V2 = Op.getOperand(1);
9163
9164   if (isZeroShuffle(SVOp))
9165     return getZeroVector(VT, Subtarget, DAG, dl);
9166
9167   // Handle splat operations
9168   if (SVOp->isSplat()) {
9169     // Use vbroadcast whenever the splat comes from a foldable load
9170     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
9171     if (Broadcast.getNode())
9172       return Broadcast;
9173   }
9174
9175   // Check integer expanding shuffles.
9176   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
9177   if (NewOp.getNode())
9178     return NewOp;
9179
9180   // If the shuffle can be profitably rewritten as a narrower shuffle, then
9181   // do it!
9182   if (VT == MVT::v8i16 || VT == MVT::v16i8 || VT == MVT::v16i16 ||
9183       VT == MVT::v32i8) {
9184     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
9185     if (NewOp.getNode())
9186       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
9187   } else if (VT.is128BitVector() && Subtarget->hasSSE2()) {
9188     // FIXME: Figure out a cleaner way to do this.
9189     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
9190       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
9191       if (NewOp.getNode()) {
9192         MVT NewVT = NewOp.getSimpleValueType();
9193         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
9194                                NewVT, true, false))
9195           return getVZextMovL(VT, NewVT, NewOp.getOperand(0), DAG, Subtarget,
9196                               dl);
9197       }
9198     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
9199       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
9200       if (NewOp.getNode()) {
9201         MVT NewVT = NewOp.getSimpleValueType();
9202         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
9203           return getVZextMovL(VT, NewVT, NewOp.getOperand(1), DAG, Subtarget,
9204                               dl);
9205       }
9206     }
9207   }
9208   return SDValue();
9209 }
9210
9211 SDValue
9212 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
9213   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9214   SDValue V1 = Op.getOperand(0);
9215   SDValue V2 = Op.getOperand(1);
9216   MVT VT = Op.getSimpleValueType();
9217   SDLoc dl(Op);
9218   unsigned NumElems = VT.getVectorNumElements();
9219   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
9220   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
9221   bool V1IsSplat = false;
9222   bool V2IsSplat = false;
9223   bool HasSSE2 = Subtarget->hasSSE2();
9224   bool HasFp256    = Subtarget->hasFp256();
9225   bool HasInt256   = Subtarget->hasInt256();
9226   MachineFunction &MF = DAG.getMachineFunction();
9227   bool OptForSize = MF.getFunction()->getAttributes().
9228     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
9229
9230   // Check if we should use the experimental vector shuffle lowering. If so,
9231   // delegate completely to that code path.
9232   if (ExperimentalVectorShuffleLowering)
9233     return lowerVectorShuffle(Op, Subtarget, DAG);
9234
9235   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
9236
9237   if (V1IsUndef && V2IsUndef)
9238     return DAG.getUNDEF(VT);
9239
9240   // When we create a shuffle node we put the UNDEF node to second operand,
9241   // but in some cases the first operand may be transformed to UNDEF.
9242   // In this case we should just commute the node.
9243   if (V1IsUndef)
9244     return CommuteVectorShuffle(SVOp, DAG);
9245
9246   // Vector shuffle lowering takes 3 steps:
9247   //
9248   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
9249   //    narrowing and commutation of operands should be handled.
9250   // 2) Matching of shuffles with known shuffle masks to x86 target specific
9251   //    shuffle nodes.
9252   // 3) Rewriting of unmatched masks into new generic shuffle operations,
9253   //    so the shuffle can be broken into other shuffles and the legalizer can
9254   //    try the lowering again.
9255   //
9256   // The general idea is that no vector_shuffle operation should be left to
9257   // be matched during isel, all of them must be converted to a target specific
9258   // node here.
9259
9260   // Normalize the input vectors. Here splats, zeroed vectors, profitable
9261   // narrowing and commutation of operands should be handled. The actual code
9262   // doesn't include all of those, work in progress...
9263   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
9264   if (NewOp.getNode())
9265     return NewOp;
9266
9267   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
9268
9269   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
9270   // unpckh_undef). Only use pshufd if speed is more important than size.
9271   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
9272     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
9273   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
9274     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
9275
9276   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
9277       V2IsUndef && MayFoldVectorLoad(V1))
9278     return getMOVDDup(Op, dl, V1, DAG);
9279
9280   if (isMOVHLPS_v_undef_Mask(M, VT))
9281     return getMOVHighToLow(Op, dl, DAG);
9282
9283   // Use to match splats
9284   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
9285       (VT == MVT::v2f64 || VT == MVT::v2i64))
9286     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
9287
9288   if (isPSHUFDMask(M, VT)) {
9289     // The actual implementation will match the mask in the if above and then
9290     // during isel it can match several different instructions, not only pshufd
9291     // as its name says, sad but true, emulate the behavior for now...
9292     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
9293       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
9294
9295     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
9296
9297     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
9298       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
9299
9300     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
9301       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
9302                                   DAG);
9303
9304     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
9305                                 TargetMask, DAG);
9306   }
9307
9308   if (isPALIGNRMask(M, VT, Subtarget))
9309     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
9310                                 getShufflePALIGNRImmediate(SVOp),
9311                                 DAG);
9312
9313   // Check if this can be converted into a logical shift.
9314   bool isLeft = false;
9315   unsigned ShAmt = 0;
9316   SDValue ShVal;
9317   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
9318   if (isShift && ShVal.hasOneUse()) {
9319     // If the shifted value has multiple uses, it may be cheaper to use
9320     // v_set0 + movlhps or movhlps, etc.
9321     MVT EltVT = VT.getVectorElementType();
9322     ShAmt *= EltVT.getSizeInBits();
9323     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
9324   }
9325
9326   if (isMOVLMask(M, VT)) {
9327     if (ISD::isBuildVectorAllZeros(V1.getNode()))
9328       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
9329     if (!isMOVLPMask(M, VT)) {
9330       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
9331         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
9332
9333       if (VT == MVT::v4i32 || VT == MVT::v4f32)
9334         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
9335     }
9336   }
9337
9338   // FIXME: fold these into legal mask.
9339   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
9340     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
9341
9342   if (isMOVHLPSMask(M, VT))
9343     return getMOVHighToLow(Op, dl, DAG);
9344
9345   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
9346     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
9347
9348   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
9349     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
9350
9351   if (isMOVLPMask(M, VT))
9352     return getMOVLP(Op, dl, DAG, HasSSE2);
9353
9354   if (ShouldXformToMOVHLPS(M, VT) ||
9355       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
9356     return CommuteVectorShuffle(SVOp, DAG);
9357
9358   if (isShift) {
9359     // No better options. Use a vshldq / vsrldq.
9360     MVT EltVT = VT.getVectorElementType();
9361     ShAmt *= EltVT.getSizeInBits();
9362     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
9363   }
9364
9365   bool Commuted = false;
9366   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
9367   // 1,1,1,1 -> v8i16 though.
9368   if (auto *BVOp = dyn_cast<BuildVectorSDNode>(V1.getNode()))
9369     if (BVOp->getConstantSplatValue())
9370       V1IsSplat = true;
9371   if (auto *BVOp = dyn_cast<BuildVectorSDNode>(V2.getNode()))
9372     if (BVOp->getConstantSplatValue())
9373       V2IsSplat = true;
9374
9375   // Canonicalize the splat or undef, if present, to be on the RHS.
9376   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
9377     CommuteVectorShuffleMask(M, NumElems);
9378     std::swap(V1, V2);
9379     std::swap(V1IsSplat, V2IsSplat);
9380     Commuted = true;
9381   }
9382
9383   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
9384     // Shuffling low element of v1 into undef, just return v1.
9385     if (V2IsUndef)
9386       return V1;
9387     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
9388     // the instruction selector will not match, so get a canonical MOVL with
9389     // swapped operands to undo the commute.
9390     return getMOVL(DAG, dl, VT, V2, V1);
9391   }
9392
9393   if (isUNPCKLMask(M, VT, HasInt256))
9394     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
9395
9396   if (isUNPCKHMask(M, VT, HasInt256))
9397     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
9398
9399   if (V2IsSplat) {
9400     // Normalize mask so all entries that point to V2 points to its first
9401     // element then try to match unpck{h|l} again. If match, return a
9402     // new vector_shuffle with the corrected mask.p
9403     SmallVector<int, 8> NewMask(M.begin(), M.end());
9404     NormalizeMask(NewMask, NumElems);
9405     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
9406       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
9407     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
9408       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
9409   }
9410
9411   if (Commuted) {
9412     // Commute is back and try unpck* again.
9413     // FIXME: this seems wrong.
9414     CommuteVectorShuffleMask(M, NumElems);
9415     std::swap(V1, V2);
9416     std::swap(V1IsSplat, V2IsSplat);
9417
9418     if (isUNPCKLMask(M, VT, HasInt256))
9419       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
9420
9421     if (isUNPCKHMask(M, VT, HasInt256))
9422       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
9423   }
9424
9425   // Normalize the node to match x86 shuffle ops if needed
9426   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
9427     return CommuteVectorShuffle(SVOp, DAG);
9428
9429   // The checks below are all present in isShuffleMaskLegal, but they are
9430   // inlined here right now to enable us to directly emit target specific
9431   // nodes, and remove one by one until they don't return Op anymore.
9432
9433   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
9434       SVOp->getSplatIndex() == 0 && V2IsUndef) {
9435     if (VT == MVT::v2f64 || VT == MVT::v2i64)
9436       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
9437   }
9438
9439   if (isPSHUFHWMask(M, VT, HasInt256))
9440     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
9441                                 getShufflePSHUFHWImmediate(SVOp),
9442                                 DAG);
9443
9444   if (isPSHUFLWMask(M, VT, HasInt256))
9445     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
9446                                 getShufflePSHUFLWImmediate(SVOp),
9447                                 DAG);
9448
9449   unsigned MaskValue;
9450   if (isBlendMask(M, VT, Subtarget->hasSSE41(), Subtarget->hasInt256(),
9451                   &MaskValue))
9452     return LowerVECTOR_SHUFFLEtoBlend(SVOp, MaskValue, Subtarget, DAG);
9453
9454   if (isSHUFPMask(M, VT))
9455     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
9456                                 getShuffleSHUFImmediate(SVOp), DAG);
9457
9458   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
9459     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
9460   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
9461     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
9462
9463   //===--------------------------------------------------------------------===//
9464   // Generate target specific nodes for 128 or 256-bit shuffles only
9465   // supported in the AVX instruction set.
9466   //
9467
9468   // Handle VMOVDDUPY permutations
9469   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
9470     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
9471
9472   // Handle VPERMILPS/D* permutations
9473   if (isVPERMILPMask(M, VT)) {
9474     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
9475       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
9476                                   getShuffleSHUFImmediate(SVOp), DAG);
9477     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
9478                                 getShuffleSHUFImmediate(SVOp), DAG);
9479   }
9480
9481   unsigned Idx;
9482   if (VT.is512BitVector() && isINSERT64x4Mask(M, VT, &Idx))
9483     return Insert256BitVector(V1, Extract256BitVector(V2, 0, DAG, dl),
9484                               Idx*(NumElems/2), DAG, dl);
9485
9486   // Handle VPERM2F128/VPERM2I128 permutations
9487   if (isVPERM2X128Mask(M, VT, HasFp256))
9488     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
9489                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
9490
9491   if (Subtarget->hasSSE41() && isINSERTPSMask(M, VT))
9492     return getINSERTPS(SVOp, dl, DAG);
9493
9494   unsigned Imm8;
9495   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
9496     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
9497
9498   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
9499       VT.is512BitVector()) {
9500     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
9501     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
9502     SmallVector<SDValue, 16> permclMask;
9503     for (unsigned i = 0; i != NumElems; ++i) {
9504       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
9505     }
9506
9507     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT, permclMask);
9508     if (V2IsUndef)
9509       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
9510       return DAG.getNode(X86ISD::VPERMV, dl, VT,
9511                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
9512     return DAG.getNode(X86ISD::VPERMV3, dl, VT, V1,
9513                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V2);
9514   }
9515
9516   //===--------------------------------------------------------------------===//
9517   // Since no target specific shuffle was selected for this generic one,
9518   // lower it into other known shuffles. FIXME: this isn't true yet, but
9519   // this is the plan.
9520   //
9521
9522   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
9523   if (VT == MVT::v8i16) {
9524     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
9525     if (NewOp.getNode())
9526       return NewOp;
9527   }
9528
9529   if (VT == MVT::v16i16 && Subtarget->hasInt256()) {
9530     SDValue NewOp = LowerVECTOR_SHUFFLEv16i16(Op, DAG);
9531     if (NewOp.getNode())
9532       return NewOp;
9533   }
9534
9535   if (VT == MVT::v16i8) {
9536     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
9537     if (NewOp.getNode())
9538       return NewOp;
9539   }
9540
9541   if (VT == MVT::v32i8) {
9542     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
9543     if (NewOp.getNode())
9544       return NewOp;
9545   }
9546
9547   // Handle all 128-bit wide vectors with 4 elements, and match them with
9548   // several different shuffle types.
9549   if (NumElems == 4 && VT.is128BitVector())
9550     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
9551
9552   // Handle general 256-bit shuffles
9553   if (VT.is256BitVector())
9554     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
9555
9556   return SDValue();
9557 }
9558
9559 // This function assumes its argument is a BUILD_VECTOR of constants or
9560 // undef SDNodes. i.e: ISD::isBuildVectorOfConstantSDNodes(BuildVector) is
9561 // true.
9562 static bool BUILD_VECTORtoBlendMask(BuildVectorSDNode *BuildVector,
9563                                     unsigned &MaskValue) {
9564   MaskValue = 0;
9565   unsigned NumElems = BuildVector->getNumOperands();
9566   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
9567   unsigned NumLanes = (NumElems - 1) / 8 + 1;
9568   unsigned NumElemsInLane = NumElems / NumLanes;
9569
9570   // Blend for v16i16 should be symetric for the both lanes.
9571   for (unsigned i = 0; i < NumElemsInLane; ++i) {
9572     SDValue EltCond = BuildVector->getOperand(i);
9573     SDValue SndLaneEltCond =
9574         (NumLanes == 2) ? BuildVector->getOperand(i + NumElemsInLane) : EltCond;
9575
9576     int Lane1Cond = -1, Lane2Cond = -1;
9577     if (isa<ConstantSDNode>(EltCond))
9578       Lane1Cond = !isZero(EltCond);
9579     if (isa<ConstantSDNode>(SndLaneEltCond))
9580       Lane2Cond = !isZero(SndLaneEltCond);
9581
9582     if (Lane1Cond == Lane2Cond || Lane2Cond < 0)
9583       // Lane1Cond != 0, means we want the first argument.
9584       // Lane1Cond == 0, means we want the second argument.
9585       // The encoding of this argument is 0 for the first argument, 1
9586       // for the second. Therefore, invert the condition.
9587       MaskValue |= !Lane1Cond << i;
9588     else if (Lane1Cond < 0)
9589       MaskValue |= !Lane2Cond << i;
9590     else
9591       return false;
9592   }
9593   return true;
9594 }
9595
9596 // Try to lower a vselect node into a simple blend instruction.
9597 static SDValue LowerVSELECTtoBlend(SDValue Op, const X86Subtarget *Subtarget,
9598                                    SelectionDAG &DAG) {
9599   SDValue Cond = Op.getOperand(0);
9600   SDValue LHS = Op.getOperand(1);
9601   SDValue RHS = Op.getOperand(2);
9602   SDLoc dl(Op);
9603   MVT VT = Op.getSimpleValueType();
9604   MVT EltVT = VT.getVectorElementType();
9605   unsigned NumElems = VT.getVectorNumElements();
9606
9607   // There is no blend with immediate in AVX-512.
9608   if (VT.is512BitVector())
9609     return SDValue();
9610
9611   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
9612     return SDValue();
9613   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
9614     return SDValue();
9615
9616   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
9617     return SDValue();
9618
9619   // Check the mask for BLEND and build the value.
9620   unsigned MaskValue = 0;
9621   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
9622     return SDValue();
9623
9624   // Convert i32 vectors to floating point if it is not AVX2.
9625   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
9626   MVT BlendVT = VT;
9627   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
9628     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
9629                                NumElems);
9630     LHS = DAG.getNode(ISD::BITCAST, dl, VT, LHS);
9631     RHS = DAG.getNode(ISD::BITCAST, dl, VT, RHS);
9632   }
9633
9634   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, LHS, RHS,
9635                             DAG.getConstant(MaskValue, MVT::i32));
9636   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
9637 }
9638
9639 SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
9640   SDValue BlendOp = LowerVSELECTtoBlend(Op, Subtarget, DAG);
9641   if (BlendOp.getNode())
9642     return BlendOp;
9643
9644   // Some types for vselect were previously set to Expand, not Legal or
9645   // Custom. Return an empty SDValue so we fall-through to Expand, after
9646   // the Custom lowering phase.
9647   MVT VT = Op.getSimpleValueType();
9648   switch (VT.SimpleTy) {
9649   default:
9650     break;
9651   case MVT::v8i16:
9652   case MVT::v16i16:
9653     return SDValue();
9654   }
9655
9656   // We couldn't create a "Blend with immediate" node.
9657   // This node should still be legal, but we'll have to emit a blendv*
9658   // instruction.
9659   return Op;
9660 }
9661
9662 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
9663   MVT VT = Op.getSimpleValueType();
9664   SDLoc dl(Op);
9665
9666   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
9667     return SDValue();
9668
9669   if (VT.getSizeInBits() == 8) {
9670     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
9671                                   Op.getOperand(0), Op.getOperand(1));
9672     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
9673                                   DAG.getValueType(VT));
9674     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
9675   }
9676
9677   if (VT.getSizeInBits() == 16) {
9678     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9679     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
9680     if (Idx == 0)
9681       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
9682                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
9683                                      DAG.getNode(ISD::BITCAST, dl,
9684                                                  MVT::v4i32,
9685                                                  Op.getOperand(0)),
9686                                      Op.getOperand(1)));
9687     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
9688                                   Op.getOperand(0), Op.getOperand(1));
9689     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
9690                                   DAG.getValueType(VT));
9691     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
9692   }
9693
9694   if (VT == MVT::f32) {
9695     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
9696     // the result back to FR32 register. It's only worth matching if the
9697     // result has a single use which is a store or a bitcast to i32.  And in
9698     // the case of a store, it's not worth it if the index is a constant 0,
9699     // because a MOVSSmr can be used instead, which is smaller and faster.
9700     if (!Op.hasOneUse())
9701       return SDValue();
9702     SDNode *User = *Op.getNode()->use_begin();
9703     if ((User->getOpcode() != ISD::STORE ||
9704          (isa<ConstantSDNode>(Op.getOperand(1)) &&
9705           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
9706         (User->getOpcode() != ISD::BITCAST ||
9707          User->getValueType(0) != MVT::i32))
9708       return SDValue();
9709     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
9710                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
9711                                               Op.getOperand(0)),
9712                                               Op.getOperand(1));
9713     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
9714   }
9715
9716   if (VT == MVT::i32 || VT == MVT::i64) {
9717     // ExtractPS/pextrq works with constant index.
9718     if (isa<ConstantSDNode>(Op.getOperand(1)))
9719       return Op;
9720   }
9721   return SDValue();
9722 }
9723
9724 /// Extract one bit from mask vector, like v16i1 or v8i1.
9725 /// AVX-512 feature.
9726 SDValue
9727 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
9728   SDValue Vec = Op.getOperand(0);
9729   SDLoc dl(Vec);
9730   MVT VecVT = Vec.getSimpleValueType();
9731   SDValue Idx = Op.getOperand(1);
9732   MVT EltVT = Op.getSimpleValueType();
9733
9734   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
9735
9736   // variable index can't be handled in mask registers,
9737   // extend vector to VR512
9738   if (!isa<ConstantSDNode>(Idx)) {
9739     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
9740     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
9741     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
9742                               ExtVT.getVectorElementType(), Ext, Idx);
9743     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
9744   }
9745
9746   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
9747   const TargetRegisterClass* rc = getRegClassFor(VecVT);
9748   unsigned MaxSift = rc->getSize()*8 - 1;
9749   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
9750                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
9751   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
9752                     DAG.getConstant(MaxSift, MVT::i8));
9753   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
9754                        DAG.getIntPtrConstant(0));
9755 }
9756
9757 SDValue
9758 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
9759                                            SelectionDAG &DAG) const {
9760   SDLoc dl(Op);
9761   SDValue Vec = Op.getOperand(0);
9762   MVT VecVT = Vec.getSimpleValueType();
9763   SDValue Idx = Op.getOperand(1);
9764
9765   if (Op.getSimpleValueType() == MVT::i1)
9766     return ExtractBitFromMaskVector(Op, DAG);
9767
9768   if (!isa<ConstantSDNode>(Idx)) {
9769     if (VecVT.is512BitVector() ||
9770         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
9771          VecVT.getVectorElementType().getSizeInBits() == 32)) {
9772
9773       MVT MaskEltVT =
9774         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
9775       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
9776                                     MaskEltVT.getSizeInBits());
9777
9778       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
9779       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
9780                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
9781                                 Idx, DAG.getConstant(0, getPointerTy()));
9782       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
9783       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
9784                         Perm, DAG.getConstant(0, getPointerTy()));
9785     }
9786     return SDValue();
9787   }
9788
9789   // If this is a 256-bit vector result, first extract the 128-bit vector and
9790   // then extract the element from the 128-bit vector.
9791   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
9792
9793     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
9794     // Get the 128-bit vector.
9795     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
9796     MVT EltVT = VecVT.getVectorElementType();
9797
9798     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
9799
9800     //if (IdxVal >= NumElems/2)
9801     //  IdxVal -= NumElems/2;
9802     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
9803     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
9804                        DAG.getConstant(IdxVal, MVT::i32));
9805   }
9806
9807   assert(VecVT.is128BitVector() && "Unexpected vector length");
9808
9809   if (Subtarget->hasSSE41()) {
9810     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
9811     if (Res.getNode())
9812       return Res;
9813   }
9814
9815   MVT VT = Op.getSimpleValueType();
9816   // TODO: handle v16i8.
9817   if (VT.getSizeInBits() == 16) {
9818     SDValue Vec = Op.getOperand(0);
9819     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9820     if (Idx == 0)
9821       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
9822                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
9823                                      DAG.getNode(ISD::BITCAST, dl,
9824                                                  MVT::v4i32, Vec),
9825                                      Op.getOperand(1)));
9826     // Transform it so it match pextrw which produces a 32-bit result.
9827     MVT EltVT = MVT::i32;
9828     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
9829                                   Op.getOperand(0), Op.getOperand(1));
9830     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
9831                                   DAG.getValueType(VT));
9832     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
9833   }
9834
9835   if (VT.getSizeInBits() == 32) {
9836     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9837     if (Idx == 0)
9838       return Op;
9839
9840     // SHUFPS the element to the lowest double word, then movss.
9841     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
9842     MVT VVT = Op.getOperand(0).getSimpleValueType();
9843     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
9844                                        DAG.getUNDEF(VVT), Mask);
9845     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
9846                        DAG.getIntPtrConstant(0));
9847   }
9848
9849   if (VT.getSizeInBits() == 64) {
9850     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
9851     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
9852     //        to match extract_elt for f64.
9853     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9854     if (Idx == 0)
9855       return Op;
9856
9857     // UNPCKHPD the element to the lowest double word, then movsd.
9858     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
9859     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
9860     int Mask[2] = { 1, -1 };
9861     MVT VVT = Op.getOperand(0).getSimpleValueType();
9862     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
9863                                        DAG.getUNDEF(VVT), Mask);
9864     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
9865                        DAG.getIntPtrConstant(0));
9866   }
9867
9868   return SDValue();
9869 }
9870
9871 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
9872   MVT VT = Op.getSimpleValueType();
9873   MVT EltVT = VT.getVectorElementType();
9874   SDLoc dl(Op);
9875
9876   SDValue N0 = Op.getOperand(0);
9877   SDValue N1 = Op.getOperand(1);
9878   SDValue N2 = Op.getOperand(2);
9879
9880   if (!VT.is128BitVector())
9881     return SDValue();
9882
9883   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
9884       isa<ConstantSDNode>(N2)) {
9885     unsigned Opc;
9886     if (VT == MVT::v8i16)
9887       Opc = X86ISD::PINSRW;
9888     else if (VT == MVT::v16i8)
9889       Opc = X86ISD::PINSRB;
9890     else
9891       Opc = X86ISD::PINSRB;
9892
9893     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
9894     // argument.
9895     if (N1.getValueType() != MVT::i32)
9896       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
9897     if (N2.getValueType() != MVT::i32)
9898       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
9899     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
9900   }
9901
9902   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
9903     // Bits [7:6] of the constant are the source select.  This will always be
9904     //  zero here.  The DAG Combiner may combine an extract_elt index into these
9905     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
9906     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
9907     // Bits [5:4] of the constant are the destination select.  This is the
9908     //  value of the incoming immediate.
9909     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
9910     //   combine either bitwise AND or insert of float 0.0 to set these bits.
9911     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
9912     // Create this as a scalar to vector..
9913     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
9914     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
9915   }
9916
9917   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
9918     // PINSR* works with constant index.
9919     return Op;
9920   }
9921   return SDValue();
9922 }
9923
9924 /// Insert one bit to mask vector, like v16i1 or v8i1.
9925 /// AVX-512 feature.
9926 SDValue 
9927 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
9928   SDLoc dl(Op);
9929   SDValue Vec = Op.getOperand(0);
9930   SDValue Elt = Op.getOperand(1);
9931   SDValue Idx = Op.getOperand(2);
9932   MVT VecVT = Vec.getSimpleValueType();
9933
9934   if (!isa<ConstantSDNode>(Idx)) {
9935     // Non constant index. Extend source and destination,
9936     // insert element and then truncate the result.
9937     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
9938     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
9939     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT, 
9940       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
9941       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
9942     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
9943   }
9944
9945   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
9946   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
9947   if (Vec.getOpcode() == ISD::UNDEF)
9948     return DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
9949                        DAG.getConstant(IdxVal, MVT::i8));
9950   const TargetRegisterClass* rc = getRegClassFor(VecVT);
9951   unsigned MaxSift = rc->getSize()*8 - 1;
9952   EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
9953                     DAG.getConstant(MaxSift, MVT::i8));
9954   EltInVec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, EltInVec,
9955                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
9956   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
9957 }
9958 SDValue
9959 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
9960   MVT VT = Op.getSimpleValueType();
9961   MVT EltVT = VT.getVectorElementType();
9962   
9963   if (EltVT == MVT::i1)
9964     return InsertBitToMaskVector(Op, DAG);
9965
9966   SDLoc dl(Op);
9967   SDValue N0 = Op.getOperand(0);
9968   SDValue N1 = Op.getOperand(1);
9969   SDValue N2 = Op.getOperand(2);
9970
9971   // If this is a 256-bit vector result, first extract the 128-bit vector,
9972   // insert the element into the extracted half and then place it back.
9973   if (VT.is256BitVector() || VT.is512BitVector()) {
9974     if (!isa<ConstantSDNode>(N2))
9975       return SDValue();
9976
9977     // Get the desired 128-bit vector half.
9978     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
9979     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
9980
9981     // Insert the element into the desired half.
9982     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
9983     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
9984
9985     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
9986                     DAG.getConstant(IdxIn128, MVT::i32));
9987
9988     // Insert the changed part back to the 256-bit vector
9989     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
9990   }
9991
9992   if (Subtarget->hasSSE41())
9993     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
9994
9995   if (EltVT == MVT::i8)
9996     return SDValue();
9997
9998   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
9999     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
10000     // as its second argument.
10001     if (N1.getValueType() != MVT::i32)
10002       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
10003     if (N2.getValueType() != MVT::i32)
10004       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
10005     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
10006   }
10007   return SDValue();
10008 }
10009
10010 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
10011   SDLoc dl(Op);
10012   MVT OpVT = Op.getSimpleValueType();
10013
10014   // If this is a 256-bit vector result, first insert into a 128-bit
10015   // vector and then insert into the 256-bit vector.
10016   if (!OpVT.is128BitVector()) {
10017     // Insert into a 128-bit vector.
10018     unsigned SizeFactor = OpVT.getSizeInBits()/128;
10019     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
10020                                  OpVT.getVectorNumElements() / SizeFactor);
10021
10022     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
10023
10024     // Insert the 128-bit vector.
10025     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
10026   }
10027
10028   if (OpVT == MVT::v1i64 &&
10029       Op.getOperand(0).getValueType() == MVT::i64)
10030     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
10031
10032   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
10033   assert(OpVT.is128BitVector() && "Expected an SSE type!");
10034   return DAG.getNode(ISD::BITCAST, dl, OpVT,
10035                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
10036 }
10037
10038 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
10039 // a simple subregister reference or explicit instructions to grab
10040 // upper bits of a vector.
10041 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
10042                                       SelectionDAG &DAG) {
10043   SDLoc dl(Op);
10044   SDValue In =  Op.getOperand(0);
10045   SDValue Idx = Op.getOperand(1);
10046   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10047   MVT ResVT   = Op.getSimpleValueType();
10048   MVT InVT    = In.getSimpleValueType();
10049
10050   if (Subtarget->hasFp256()) {
10051     if (ResVT.is128BitVector() &&
10052         (InVT.is256BitVector() || InVT.is512BitVector()) &&
10053         isa<ConstantSDNode>(Idx)) {
10054       return Extract128BitVector(In, IdxVal, DAG, dl);
10055     }
10056     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
10057         isa<ConstantSDNode>(Idx)) {
10058       return Extract256BitVector(In, IdxVal, DAG, dl);
10059     }
10060   }
10061   return SDValue();
10062 }
10063
10064 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
10065 // simple superregister reference or explicit instructions to insert
10066 // the upper bits of a vector.
10067 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
10068                                      SelectionDAG &DAG) {
10069   if (Subtarget->hasFp256()) {
10070     SDLoc dl(Op.getNode());
10071     SDValue Vec = Op.getNode()->getOperand(0);
10072     SDValue SubVec = Op.getNode()->getOperand(1);
10073     SDValue Idx = Op.getNode()->getOperand(2);
10074
10075     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
10076          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
10077         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
10078         isa<ConstantSDNode>(Idx)) {
10079       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10080       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
10081     }
10082
10083     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
10084         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
10085         isa<ConstantSDNode>(Idx)) {
10086       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10087       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
10088     }
10089   }
10090   return SDValue();
10091 }
10092
10093 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
10094 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
10095 // one of the above mentioned nodes. It has to be wrapped because otherwise
10096 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
10097 // be used to form addressing mode. These wrapped nodes will be selected
10098 // into MOV32ri.
10099 SDValue
10100 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
10101   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
10102
10103   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10104   // global base reg.
10105   unsigned char OpFlag = 0;
10106   unsigned WrapperKind = X86ISD::Wrapper;
10107   CodeModel::Model M = DAG.getTarget().getCodeModel();
10108
10109   if (Subtarget->isPICStyleRIPRel() &&
10110       (M == CodeModel::Small || M == CodeModel::Kernel))
10111     WrapperKind = X86ISD::WrapperRIP;
10112   else if (Subtarget->isPICStyleGOT())
10113     OpFlag = X86II::MO_GOTOFF;
10114   else if (Subtarget->isPICStyleStubPIC())
10115     OpFlag = X86II::MO_PIC_BASE_OFFSET;
10116
10117   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
10118                                              CP->getAlignment(),
10119                                              CP->getOffset(), OpFlag);
10120   SDLoc DL(CP);
10121   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10122   // With PIC, the address is actually $g + Offset.
10123   if (OpFlag) {
10124     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10125                          DAG.getNode(X86ISD::GlobalBaseReg,
10126                                      SDLoc(), getPointerTy()),
10127                          Result);
10128   }
10129
10130   return Result;
10131 }
10132
10133 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
10134   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
10135
10136   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10137   // global base reg.
10138   unsigned char OpFlag = 0;
10139   unsigned WrapperKind = X86ISD::Wrapper;
10140   CodeModel::Model M = DAG.getTarget().getCodeModel();
10141
10142   if (Subtarget->isPICStyleRIPRel() &&
10143       (M == CodeModel::Small || M == CodeModel::Kernel))
10144     WrapperKind = X86ISD::WrapperRIP;
10145   else if (Subtarget->isPICStyleGOT())
10146     OpFlag = X86II::MO_GOTOFF;
10147   else if (Subtarget->isPICStyleStubPIC())
10148     OpFlag = X86II::MO_PIC_BASE_OFFSET;
10149
10150   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
10151                                           OpFlag);
10152   SDLoc DL(JT);
10153   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10154
10155   // With PIC, the address is actually $g + Offset.
10156   if (OpFlag)
10157     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10158                          DAG.getNode(X86ISD::GlobalBaseReg,
10159                                      SDLoc(), getPointerTy()),
10160                          Result);
10161
10162   return Result;
10163 }
10164
10165 SDValue
10166 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
10167   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
10168
10169   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10170   // global base reg.
10171   unsigned char OpFlag = 0;
10172   unsigned WrapperKind = X86ISD::Wrapper;
10173   CodeModel::Model M = DAG.getTarget().getCodeModel();
10174
10175   if (Subtarget->isPICStyleRIPRel() &&
10176       (M == CodeModel::Small || M == CodeModel::Kernel)) {
10177     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
10178       OpFlag = X86II::MO_GOTPCREL;
10179     WrapperKind = X86ISD::WrapperRIP;
10180   } else if (Subtarget->isPICStyleGOT()) {
10181     OpFlag = X86II::MO_GOT;
10182   } else if (Subtarget->isPICStyleStubPIC()) {
10183     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
10184   } else if (Subtarget->isPICStyleStubNoDynamic()) {
10185     OpFlag = X86II::MO_DARWIN_NONLAZY;
10186   }
10187
10188   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
10189
10190   SDLoc DL(Op);
10191   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10192
10193   // With PIC, the address is actually $g + Offset.
10194   if (DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
10195       !Subtarget->is64Bit()) {
10196     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10197                          DAG.getNode(X86ISD::GlobalBaseReg,
10198                                      SDLoc(), getPointerTy()),
10199                          Result);
10200   }
10201
10202   // For symbols that require a load from a stub to get the address, emit the
10203   // load.
10204   if (isGlobalStubReference(OpFlag))
10205     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
10206                          MachinePointerInfo::getGOT(), false, false, false, 0);
10207
10208   return Result;
10209 }
10210
10211 SDValue
10212 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
10213   // Create the TargetBlockAddressAddress node.
10214   unsigned char OpFlags =
10215     Subtarget->ClassifyBlockAddressReference();
10216   CodeModel::Model M = DAG.getTarget().getCodeModel();
10217   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
10218   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
10219   SDLoc dl(Op);
10220   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
10221                                              OpFlags);
10222
10223   if (Subtarget->isPICStyleRIPRel() &&
10224       (M == CodeModel::Small || M == CodeModel::Kernel))
10225     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
10226   else
10227     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
10228
10229   // With PIC, the address is actually $g + Offset.
10230   if (isGlobalRelativeToPICBase(OpFlags)) {
10231     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
10232                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
10233                          Result);
10234   }
10235
10236   return Result;
10237 }
10238
10239 SDValue
10240 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
10241                                       int64_t Offset, SelectionDAG &DAG) const {
10242   // Create the TargetGlobalAddress node, folding in the constant
10243   // offset if it is legal.
10244   unsigned char OpFlags =
10245       Subtarget->ClassifyGlobalReference(GV, DAG.getTarget());
10246   CodeModel::Model M = DAG.getTarget().getCodeModel();
10247   SDValue Result;
10248   if (OpFlags == X86II::MO_NO_FLAG &&
10249       X86::isOffsetSuitableForCodeModel(Offset, M)) {
10250     // A direct static reference to a global.
10251     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
10252     Offset = 0;
10253   } else {
10254     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
10255   }
10256
10257   if (Subtarget->isPICStyleRIPRel() &&
10258       (M == CodeModel::Small || M == CodeModel::Kernel))
10259     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
10260   else
10261     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
10262
10263   // With PIC, the address is actually $g + Offset.
10264   if (isGlobalRelativeToPICBase(OpFlags)) {
10265     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
10266                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
10267                          Result);
10268   }
10269
10270   // For globals that require a load from a stub to get the address, emit the
10271   // load.
10272   if (isGlobalStubReference(OpFlags))
10273     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
10274                          MachinePointerInfo::getGOT(), false, false, false, 0);
10275
10276   // If there was a non-zero offset that we didn't fold, create an explicit
10277   // addition for it.
10278   if (Offset != 0)
10279     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
10280                          DAG.getConstant(Offset, getPointerTy()));
10281
10282   return Result;
10283 }
10284
10285 SDValue
10286 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
10287   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
10288   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
10289   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
10290 }
10291
10292 static SDValue
10293 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
10294            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
10295            unsigned char OperandFlags, bool LocalDynamic = false) {
10296   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10297   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10298   SDLoc dl(GA);
10299   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
10300                                            GA->getValueType(0),
10301                                            GA->getOffset(),
10302                                            OperandFlags);
10303
10304   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
10305                                            : X86ISD::TLSADDR;
10306
10307   if (InFlag) {
10308     SDValue Ops[] = { Chain,  TGA, *InFlag };
10309     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
10310   } else {
10311     SDValue Ops[]  = { Chain, TGA };
10312     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
10313   }
10314
10315   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
10316   MFI->setAdjustsStack(true);
10317
10318   SDValue Flag = Chain.getValue(1);
10319   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
10320 }
10321
10322 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
10323 static SDValue
10324 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
10325                                 const EVT PtrVT) {
10326   SDValue InFlag;
10327   SDLoc dl(GA);  // ? function entry point might be better
10328   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
10329                                    DAG.getNode(X86ISD::GlobalBaseReg,
10330                                                SDLoc(), PtrVT), InFlag);
10331   InFlag = Chain.getValue(1);
10332
10333   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
10334 }
10335
10336 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
10337 static SDValue
10338 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
10339                                 const EVT PtrVT) {
10340   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
10341                     X86::RAX, X86II::MO_TLSGD);
10342 }
10343
10344 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
10345                                            SelectionDAG &DAG,
10346                                            const EVT PtrVT,
10347                                            bool is64Bit) {
10348   SDLoc dl(GA);
10349
10350   // Get the start address of the TLS block for this module.
10351   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
10352       .getInfo<X86MachineFunctionInfo>();
10353   MFI->incNumLocalDynamicTLSAccesses();
10354
10355   SDValue Base;
10356   if (is64Bit) {
10357     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
10358                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
10359   } else {
10360     SDValue InFlag;
10361     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
10362         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
10363     InFlag = Chain.getValue(1);
10364     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
10365                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
10366   }
10367
10368   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
10369   // of Base.
10370
10371   // Build x@dtpoff.
10372   unsigned char OperandFlags = X86II::MO_DTPOFF;
10373   unsigned WrapperKind = X86ISD::Wrapper;
10374   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
10375                                            GA->getValueType(0),
10376                                            GA->getOffset(), OperandFlags);
10377   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
10378
10379   // Add x@dtpoff with the base.
10380   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
10381 }
10382
10383 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
10384 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
10385                                    const EVT PtrVT, TLSModel::Model model,
10386                                    bool is64Bit, bool isPIC) {
10387   SDLoc dl(GA);
10388
10389   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
10390   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
10391                                                          is64Bit ? 257 : 256));
10392
10393   SDValue ThreadPointer =
10394       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
10395                   MachinePointerInfo(Ptr), false, false, false, 0);
10396
10397   unsigned char OperandFlags = 0;
10398   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
10399   // initialexec.
10400   unsigned WrapperKind = X86ISD::Wrapper;
10401   if (model == TLSModel::LocalExec) {
10402     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
10403   } else if (model == TLSModel::InitialExec) {
10404     if (is64Bit) {
10405       OperandFlags = X86II::MO_GOTTPOFF;
10406       WrapperKind = X86ISD::WrapperRIP;
10407     } else {
10408       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
10409     }
10410   } else {
10411     llvm_unreachable("Unexpected model");
10412   }
10413
10414   // emit "addl x@ntpoff,%eax" (local exec)
10415   // or "addl x@indntpoff,%eax" (initial exec)
10416   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
10417   SDValue TGA =
10418       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
10419                                  GA->getOffset(), OperandFlags);
10420   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
10421
10422   if (model == TLSModel::InitialExec) {
10423     if (isPIC && !is64Bit) {
10424       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
10425                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
10426                            Offset);
10427     }
10428
10429     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
10430                          MachinePointerInfo::getGOT(), false, false, false, 0);
10431   }
10432
10433   // The address of the thread local variable is the add of the thread
10434   // pointer with the offset of the variable.
10435   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
10436 }
10437
10438 SDValue
10439 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
10440
10441   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
10442   const GlobalValue *GV = GA->getGlobal();
10443
10444   if (Subtarget->isTargetELF()) {
10445     TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
10446
10447     switch (model) {
10448       case TLSModel::GeneralDynamic:
10449         if (Subtarget->is64Bit())
10450           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
10451         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
10452       case TLSModel::LocalDynamic:
10453         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
10454                                            Subtarget->is64Bit());
10455       case TLSModel::InitialExec:
10456       case TLSModel::LocalExec:
10457         return LowerToTLSExecModel(
10458             GA, DAG, getPointerTy(), model, Subtarget->is64Bit(),
10459             DAG.getTarget().getRelocationModel() == Reloc::PIC_);
10460     }
10461     llvm_unreachable("Unknown TLS model.");
10462   }
10463
10464   if (Subtarget->isTargetDarwin()) {
10465     // Darwin only has one model of TLS.  Lower to that.
10466     unsigned char OpFlag = 0;
10467     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
10468                            X86ISD::WrapperRIP : X86ISD::Wrapper;
10469
10470     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10471     // global base reg.
10472     bool PIC32 = (DAG.getTarget().getRelocationModel() == Reloc::PIC_) &&
10473                  !Subtarget->is64Bit();
10474     if (PIC32)
10475       OpFlag = X86II::MO_TLVP_PIC_BASE;
10476     else
10477       OpFlag = X86II::MO_TLVP;
10478     SDLoc DL(Op);
10479     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
10480                                                 GA->getValueType(0),
10481                                                 GA->getOffset(), OpFlag);
10482     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
10483
10484     // With PIC32, the address is actually $g + Offset.
10485     if (PIC32)
10486       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10487                            DAG.getNode(X86ISD::GlobalBaseReg,
10488                                        SDLoc(), getPointerTy()),
10489                            Offset);
10490
10491     // Lowering the machine isd will make sure everything is in the right
10492     // location.
10493     SDValue Chain = DAG.getEntryNode();
10494     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10495     SDValue Args[] = { Chain, Offset };
10496     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
10497
10498     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
10499     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10500     MFI->setAdjustsStack(true);
10501
10502     // And our return value (tls address) is in the standard call return value
10503     // location.
10504     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10505     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
10506                               Chain.getValue(1));
10507   }
10508
10509   if (Subtarget->isTargetKnownWindowsMSVC() ||
10510       Subtarget->isTargetWindowsGNU()) {
10511     // Just use the implicit TLS architecture
10512     // Need to generate someting similar to:
10513     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
10514     //                                  ; from TEB
10515     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
10516     //   mov     rcx, qword [rdx+rcx*8]
10517     //   mov     eax, .tls$:tlsvar
10518     //   [rax+rcx] contains the address
10519     // Windows 64bit: gs:0x58
10520     // Windows 32bit: fs:__tls_array
10521
10522     SDLoc dl(GA);
10523     SDValue Chain = DAG.getEntryNode();
10524
10525     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
10526     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
10527     // use its literal value of 0x2C.
10528     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
10529                                         ? Type::getInt8PtrTy(*DAG.getContext(),
10530                                                              256)
10531                                         : Type::getInt32PtrTy(*DAG.getContext(),
10532                                                               257));
10533
10534     SDValue TlsArray =
10535         Subtarget->is64Bit()
10536             ? DAG.getIntPtrConstant(0x58)
10537             : (Subtarget->isTargetWindowsGNU()
10538                    ? DAG.getIntPtrConstant(0x2C)
10539                    : DAG.getExternalSymbol("_tls_array", getPointerTy()));
10540
10541     SDValue ThreadPointer =
10542         DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
10543                     MachinePointerInfo(Ptr), false, false, false, 0);
10544
10545     // Load the _tls_index variable
10546     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
10547     if (Subtarget->is64Bit())
10548       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
10549                            IDX, MachinePointerInfo(), MVT::i32,
10550                            false, false, 0);
10551     else
10552       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
10553                         false, false, false, 0);
10554
10555     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
10556                                     getPointerTy());
10557     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
10558
10559     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
10560     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
10561                       false, false, false, 0);
10562
10563     // Get the offset of start of .tls section
10564     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
10565                                              GA->getValueType(0),
10566                                              GA->getOffset(), X86II::MO_SECREL);
10567     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
10568
10569     // The address of the thread local variable is the add of the thread
10570     // pointer with the offset of the variable.
10571     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
10572   }
10573
10574   llvm_unreachable("TLS not implemented for this target.");
10575 }
10576
10577 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
10578 /// and take a 2 x i32 value to shift plus a shift amount.
10579 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
10580   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
10581   MVT VT = Op.getSimpleValueType();
10582   unsigned VTBits = VT.getSizeInBits();
10583   SDLoc dl(Op);
10584   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
10585   SDValue ShOpLo = Op.getOperand(0);
10586   SDValue ShOpHi = Op.getOperand(1);
10587   SDValue ShAmt  = Op.getOperand(2);
10588   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
10589   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
10590   // during isel.
10591   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
10592                                   DAG.getConstant(VTBits - 1, MVT::i8));
10593   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
10594                                      DAG.getConstant(VTBits - 1, MVT::i8))
10595                        : DAG.getConstant(0, VT);
10596
10597   SDValue Tmp2, Tmp3;
10598   if (Op.getOpcode() == ISD::SHL_PARTS) {
10599     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
10600     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
10601   } else {
10602     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
10603     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
10604   }
10605
10606   // If the shift amount is larger or equal than the width of a part we can't
10607   // rely on the results of shld/shrd. Insert a test and select the appropriate
10608   // values for large shift amounts.
10609   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
10610                                 DAG.getConstant(VTBits, MVT::i8));
10611   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10612                              AndNode, DAG.getConstant(0, MVT::i8));
10613
10614   SDValue Hi, Lo;
10615   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10616   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
10617   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
10618
10619   if (Op.getOpcode() == ISD::SHL_PARTS) {
10620     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
10621     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
10622   } else {
10623     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
10624     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
10625   }
10626
10627   SDValue Ops[2] = { Lo, Hi };
10628   return DAG.getMergeValues(Ops, dl);
10629 }
10630
10631 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
10632                                            SelectionDAG &DAG) const {
10633   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
10634
10635   if (SrcVT.isVector())
10636     return SDValue();
10637
10638   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
10639          "Unknown SINT_TO_FP to lower!");
10640
10641   // These are really Legal; return the operand so the caller accepts it as
10642   // Legal.
10643   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
10644     return Op;
10645   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
10646       Subtarget->is64Bit()) {
10647     return Op;
10648   }
10649
10650   SDLoc dl(Op);
10651   unsigned Size = SrcVT.getSizeInBits()/8;
10652   MachineFunction &MF = DAG.getMachineFunction();
10653   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
10654   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10655   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
10656                                StackSlot,
10657                                MachinePointerInfo::getFixedStack(SSFI),
10658                                false, false, 0);
10659   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
10660 }
10661
10662 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
10663                                      SDValue StackSlot,
10664                                      SelectionDAG &DAG) const {
10665   // Build the FILD
10666   SDLoc DL(Op);
10667   SDVTList Tys;
10668   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
10669   if (useSSE)
10670     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
10671   else
10672     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
10673
10674   unsigned ByteSize = SrcVT.getSizeInBits()/8;
10675
10676   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
10677   MachineMemOperand *MMO;
10678   if (FI) {
10679     int SSFI = FI->getIndex();
10680     MMO =
10681       DAG.getMachineFunction()
10682       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10683                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
10684   } else {
10685     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
10686     StackSlot = StackSlot.getOperand(1);
10687   }
10688   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
10689   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
10690                                            X86ISD::FILD, DL,
10691                                            Tys, Ops, SrcVT, MMO);
10692
10693   if (useSSE) {
10694     Chain = Result.getValue(1);
10695     SDValue InFlag = Result.getValue(2);
10696
10697     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
10698     // shouldn't be necessary except that RFP cannot be live across
10699     // multiple blocks. When stackifier is fixed, they can be uncoupled.
10700     MachineFunction &MF = DAG.getMachineFunction();
10701     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
10702     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
10703     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10704     Tys = DAG.getVTList(MVT::Other);
10705     SDValue Ops[] = {
10706       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
10707     };
10708     MachineMemOperand *MMO =
10709       DAG.getMachineFunction()
10710       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10711                             MachineMemOperand::MOStore, SSFISize, SSFISize);
10712
10713     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
10714                                     Ops, Op.getValueType(), MMO);
10715     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
10716                          MachinePointerInfo::getFixedStack(SSFI),
10717                          false, false, false, 0);
10718   }
10719
10720   return Result;
10721 }
10722
10723 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
10724 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
10725                                                SelectionDAG &DAG) const {
10726   // This algorithm is not obvious. Here it is what we're trying to output:
10727   /*
10728      movq       %rax,  %xmm0
10729      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
10730      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
10731      #ifdef __SSE3__
10732        haddpd   %xmm0, %xmm0
10733      #else
10734        pshufd   $0x4e, %xmm0, %xmm1
10735        addpd    %xmm1, %xmm0
10736      #endif
10737   */
10738
10739   SDLoc dl(Op);
10740   LLVMContext *Context = DAG.getContext();
10741
10742   // Build some magic constants.
10743   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
10744   Constant *C0 = ConstantDataVector::get(*Context, CV0);
10745   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
10746
10747   SmallVector<Constant*,2> CV1;
10748   CV1.push_back(
10749     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
10750                                       APInt(64, 0x4330000000000000ULL))));
10751   CV1.push_back(
10752     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
10753                                       APInt(64, 0x4530000000000000ULL))));
10754   Constant *C1 = ConstantVector::get(CV1);
10755   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
10756
10757   // Load the 64-bit value into an XMM register.
10758   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
10759                             Op.getOperand(0));
10760   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
10761                               MachinePointerInfo::getConstantPool(),
10762                               false, false, false, 16);
10763   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
10764                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
10765                               CLod0);
10766
10767   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
10768                               MachinePointerInfo::getConstantPool(),
10769                               false, false, false, 16);
10770   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
10771   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
10772   SDValue Result;
10773
10774   if (Subtarget->hasSSE3()) {
10775     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
10776     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
10777   } else {
10778     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
10779     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
10780                                            S2F, 0x4E, DAG);
10781     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
10782                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
10783                          Sub);
10784   }
10785
10786   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
10787                      DAG.getIntPtrConstant(0));
10788 }
10789
10790 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
10791 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
10792                                                SelectionDAG &DAG) const {
10793   SDLoc dl(Op);
10794   // FP constant to bias correct the final result.
10795   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
10796                                    MVT::f64);
10797
10798   // Load the 32-bit value into an XMM register.
10799   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
10800                              Op.getOperand(0));
10801
10802   // Zero out the upper parts of the register.
10803   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
10804
10805   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
10806                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
10807                      DAG.getIntPtrConstant(0));
10808
10809   // Or the load with the bias.
10810   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
10811                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
10812                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
10813                                                    MVT::v2f64, Load)),
10814                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
10815                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
10816                                                    MVT::v2f64, Bias)));
10817   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
10818                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
10819                    DAG.getIntPtrConstant(0));
10820
10821   // Subtract the bias.
10822   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
10823
10824   // Handle final rounding.
10825   EVT DestVT = Op.getValueType();
10826
10827   if (DestVT.bitsLT(MVT::f64))
10828     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
10829                        DAG.getIntPtrConstant(0));
10830   if (DestVT.bitsGT(MVT::f64))
10831     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
10832
10833   // Handle final rounding.
10834   return Sub;
10835 }
10836
10837 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
10838                                                SelectionDAG &DAG) const {
10839   SDValue N0 = Op.getOperand(0);
10840   MVT SVT = N0.getSimpleValueType();
10841   SDLoc dl(Op);
10842
10843   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
10844           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
10845          "Custom UINT_TO_FP is not supported!");
10846
10847   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
10848   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
10849                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
10850 }
10851
10852 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
10853                                            SelectionDAG &DAG) const {
10854   SDValue N0 = Op.getOperand(0);
10855   SDLoc dl(Op);
10856
10857   if (Op.getValueType().isVector())
10858     return lowerUINT_TO_FP_vec(Op, DAG);
10859
10860   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
10861   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
10862   // the optimization here.
10863   if (DAG.SignBitIsZero(N0))
10864     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
10865
10866   MVT SrcVT = N0.getSimpleValueType();
10867   MVT DstVT = Op.getSimpleValueType();
10868   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
10869     return LowerUINT_TO_FP_i64(Op, DAG);
10870   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
10871     return LowerUINT_TO_FP_i32(Op, DAG);
10872   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
10873     return SDValue();
10874
10875   // Make a 64-bit buffer, and use it to build an FILD.
10876   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
10877   if (SrcVT == MVT::i32) {
10878     SDValue WordOff = DAG.getConstant(4, getPointerTy());
10879     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
10880                                      getPointerTy(), StackSlot, WordOff);
10881     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
10882                                   StackSlot, MachinePointerInfo(),
10883                                   false, false, 0);
10884     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
10885                                   OffsetSlot, MachinePointerInfo(),
10886                                   false, false, 0);
10887     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
10888     return Fild;
10889   }
10890
10891   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
10892   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
10893                                StackSlot, MachinePointerInfo(),
10894                                false, false, 0);
10895   // For i64 source, we need to add the appropriate power of 2 if the input
10896   // was negative.  This is the same as the optimization in
10897   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
10898   // we must be careful to do the computation in x87 extended precision, not
10899   // in SSE. (The generic code can't know it's OK to do this, or how to.)
10900   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
10901   MachineMemOperand *MMO =
10902     DAG.getMachineFunction()
10903     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10904                           MachineMemOperand::MOLoad, 8, 8);
10905
10906   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
10907   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
10908   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
10909                                          MVT::i64, MMO);
10910
10911   APInt FF(32, 0x5F800000ULL);
10912
10913   // Check whether the sign bit is set.
10914   SDValue SignSet = DAG.getSetCC(dl,
10915                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
10916                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
10917                                  ISD::SETLT);
10918
10919   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
10920   SDValue FudgePtr = DAG.getConstantPool(
10921                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
10922                                          getPointerTy());
10923
10924   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
10925   SDValue Zero = DAG.getIntPtrConstant(0);
10926   SDValue Four = DAG.getIntPtrConstant(4);
10927   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
10928                                Zero, Four);
10929   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
10930
10931   // Load the value out, extending it from f32 to f80.
10932   // FIXME: Avoid the extend by constructing the right constant pool?
10933   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
10934                                  FudgePtr, MachinePointerInfo::getConstantPool(),
10935                                  MVT::f32, false, false, 4);
10936   // Extend everything to 80 bits to force it to be done on x87.
10937   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
10938   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
10939 }
10940
10941 std::pair<SDValue,SDValue>
10942 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
10943                                     bool IsSigned, bool IsReplace) const {
10944   SDLoc DL(Op);
10945
10946   EVT DstTy = Op.getValueType();
10947
10948   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
10949     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
10950     DstTy = MVT::i64;
10951   }
10952
10953   assert(DstTy.getSimpleVT() <= MVT::i64 &&
10954          DstTy.getSimpleVT() >= MVT::i16 &&
10955          "Unknown FP_TO_INT to lower!");
10956
10957   // These are really Legal.
10958   if (DstTy == MVT::i32 &&
10959       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
10960     return std::make_pair(SDValue(), SDValue());
10961   if (Subtarget->is64Bit() &&
10962       DstTy == MVT::i64 &&
10963       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
10964     return std::make_pair(SDValue(), SDValue());
10965
10966   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
10967   // stack slot, or into the FTOL runtime function.
10968   MachineFunction &MF = DAG.getMachineFunction();
10969   unsigned MemSize = DstTy.getSizeInBits()/8;
10970   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
10971   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10972
10973   unsigned Opc;
10974   if (!IsSigned && isIntegerTypeFTOL(DstTy))
10975     Opc = X86ISD::WIN_FTOL;
10976   else
10977     switch (DstTy.getSimpleVT().SimpleTy) {
10978     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
10979     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
10980     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
10981     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
10982     }
10983
10984   SDValue Chain = DAG.getEntryNode();
10985   SDValue Value = Op.getOperand(0);
10986   EVT TheVT = Op.getOperand(0).getValueType();
10987   // FIXME This causes a redundant load/store if the SSE-class value is already
10988   // in memory, such as if it is on the callstack.
10989   if (isScalarFPTypeInSSEReg(TheVT)) {
10990     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
10991     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
10992                          MachinePointerInfo::getFixedStack(SSFI),
10993                          false, false, 0);
10994     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
10995     SDValue Ops[] = {
10996       Chain, StackSlot, DAG.getValueType(TheVT)
10997     };
10998
10999     MachineMemOperand *MMO =
11000       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11001                               MachineMemOperand::MOLoad, MemSize, MemSize);
11002     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
11003     Chain = Value.getValue(1);
11004     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
11005     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11006   }
11007
11008   MachineMemOperand *MMO =
11009     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11010                             MachineMemOperand::MOStore, MemSize, MemSize);
11011
11012   if (Opc != X86ISD::WIN_FTOL) {
11013     // Build the FP_TO_INT*_IN_MEM
11014     SDValue Ops[] = { Chain, Value, StackSlot };
11015     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
11016                                            Ops, DstTy, MMO);
11017     return std::make_pair(FIST, StackSlot);
11018   } else {
11019     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
11020       DAG.getVTList(MVT::Other, MVT::Glue),
11021       Chain, Value);
11022     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
11023       MVT::i32, ftol.getValue(1));
11024     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
11025       MVT::i32, eax.getValue(2));
11026     SDValue Ops[] = { eax, edx };
11027     SDValue pair = IsReplace
11028       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops)
11029       : DAG.getMergeValues(Ops, DL);
11030     return std::make_pair(pair, SDValue());
11031   }
11032 }
11033
11034 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
11035                               const X86Subtarget *Subtarget) {
11036   MVT VT = Op->getSimpleValueType(0);
11037   SDValue In = Op->getOperand(0);
11038   MVT InVT = In.getSimpleValueType();
11039   SDLoc dl(Op);
11040
11041   // Optimize vectors in AVX mode:
11042   //
11043   //   v8i16 -> v8i32
11044   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
11045   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
11046   //   Concat upper and lower parts.
11047   //
11048   //   v4i32 -> v4i64
11049   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
11050   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
11051   //   Concat upper and lower parts.
11052   //
11053
11054   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
11055       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
11056       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
11057     return SDValue();
11058
11059   if (Subtarget->hasInt256())
11060     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
11061
11062   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
11063   SDValue Undef = DAG.getUNDEF(InVT);
11064   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
11065   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
11066   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
11067
11068   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
11069                              VT.getVectorNumElements()/2);
11070
11071   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
11072   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
11073
11074   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
11075 }
11076
11077 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
11078                                         SelectionDAG &DAG) {
11079   MVT VT = Op->getSimpleValueType(0);
11080   SDValue In = Op->getOperand(0);
11081   MVT InVT = In.getSimpleValueType();
11082   SDLoc DL(Op);
11083   unsigned int NumElts = VT.getVectorNumElements();
11084   if (NumElts != 8 && NumElts != 16)
11085     return SDValue();
11086
11087   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
11088     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
11089
11090   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
11091   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11092   // Now we have only mask extension
11093   assert(InVT.getVectorElementType() == MVT::i1);
11094   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
11095   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
11096   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
11097   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
11098   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
11099                            MachinePointerInfo::getConstantPool(),
11100                            false, false, false, Alignment);
11101
11102   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
11103   if (VT.is512BitVector())
11104     return Brcst;
11105   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
11106 }
11107
11108 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
11109                                SelectionDAG &DAG) {
11110   if (Subtarget->hasFp256()) {
11111     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
11112     if (Res.getNode())
11113       return Res;
11114   }
11115
11116   return SDValue();
11117 }
11118
11119 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
11120                                 SelectionDAG &DAG) {
11121   SDLoc DL(Op);
11122   MVT VT = Op.getSimpleValueType();
11123   SDValue In = Op.getOperand(0);
11124   MVT SVT = In.getSimpleValueType();
11125
11126   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
11127     return LowerZERO_EXTEND_AVX512(Op, DAG);
11128
11129   if (Subtarget->hasFp256()) {
11130     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
11131     if (Res.getNode())
11132       return Res;
11133   }
11134
11135   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
11136          VT.getVectorNumElements() != SVT.getVectorNumElements());
11137   return SDValue();
11138 }
11139
11140 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
11141   SDLoc DL(Op);
11142   MVT VT = Op.getSimpleValueType();
11143   SDValue In = Op.getOperand(0);
11144   MVT InVT = In.getSimpleValueType();
11145
11146   if (VT == MVT::i1) {
11147     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
11148            "Invalid scalar TRUNCATE operation");
11149     if (InVT == MVT::i32)
11150       return SDValue();
11151     if (InVT.getSizeInBits() == 64)
11152       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
11153     else if (InVT.getSizeInBits() < 32)
11154       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
11155     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
11156   }
11157   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
11158          "Invalid TRUNCATE operation");
11159
11160   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
11161     if (VT.getVectorElementType().getSizeInBits() >=8)
11162       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
11163
11164     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
11165     unsigned NumElts = InVT.getVectorNumElements();
11166     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
11167     if (InVT.getSizeInBits() < 512) {
11168       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
11169       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
11170       InVT = ExtVT;
11171     }
11172     
11173     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
11174     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
11175     SDValue CP = DAG.getConstantPool(C, getPointerTy());
11176     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
11177     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
11178                            MachinePointerInfo::getConstantPool(),
11179                            false, false, false, Alignment);
11180     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
11181     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
11182     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
11183   }
11184
11185   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
11186     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
11187     if (Subtarget->hasInt256()) {
11188       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
11189       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
11190       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
11191                                 ShufMask);
11192       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
11193                          DAG.getIntPtrConstant(0));
11194     }
11195
11196     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
11197                                DAG.getIntPtrConstant(0));
11198     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
11199                                DAG.getIntPtrConstant(2));
11200     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
11201     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
11202     static const int ShufMask[] = {0, 2, 4, 6};
11203     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
11204   }
11205
11206   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
11207     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
11208     if (Subtarget->hasInt256()) {
11209       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
11210
11211       SmallVector<SDValue,32> pshufbMask;
11212       for (unsigned i = 0; i < 2; ++i) {
11213         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
11214         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
11215         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
11216         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
11217         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
11218         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
11219         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
11220         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
11221         for (unsigned j = 0; j < 8; ++j)
11222           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
11223       }
11224       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
11225       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
11226       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
11227
11228       static const int ShufMask[] = {0,  2,  -1,  -1};
11229       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
11230                                 &ShufMask[0]);
11231       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
11232                        DAG.getIntPtrConstant(0));
11233       return DAG.getNode(ISD::BITCAST, DL, VT, In);
11234     }
11235
11236     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
11237                                DAG.getIntPtrConstant(0));
11238
11239     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
11240                                DAG.getIntPtrConstant(4));
11241
11242     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
11243     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
11244
11245     // The PSHUFB mask:
11246     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
11247                                    -1, -1, -1, -1, -1, -1, -1, -1};
11248
11249     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
11250     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
11251     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
11252
11253     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
11254     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
11255
11256     // The MOVLHPS Mask:
11257     static const int ShufMask2[] = {0, 1, 4, 5};
11258     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
11259     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
11260   }
11261
11262   // Handle truncation of V256 to V128 using shuffles.
11263   if (!VT.is128BitVector() || !InVT.is256BitVector())
11264     return SDValue();
11265
11266   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
11267
11268   unsigned NumElems = VT.getVectorNumElements();
11269   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
11270
11271   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
11272   // Prepare truncation shuffle mask
11273   for (unsigned i = 0; i != NumElems; ++i)
11274     MaskVec[i] = i * 2;
11275   SDValue V = DAG.getVectorShuffle(NVT, DL,
11276                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
11277                                    DAG.getUNDEF(NVT), &MaskVec[0]);
11278   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
11279                      DAG.getIntPtrConstant(0));
11280 }
11281
11282 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
11283                                            SelectionDAG &DAG) const {
11284   assert(!Op.getSimpleValueType().isVector());
11285
11286   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
11287     /*IsSigned=*/ true, /*IsReplace=*/ false);
11288   SDValue FIST = Vals.first, StackSlot = Vals.second;
11289   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
11290   if (!FIST.getNode()) return Op;
11291
11292   if (StackSlot.getNode())
11293     // Load the result.
11294     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
11295                        FIST, StackSlot, MachinePointerInfo(),
11296                        false, false, false, 0);
11297
11298   // The node is the result.
11299   return FIST;
11300 }
11301
11302 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
11303                                            SelectionDAG &DAG) const {
11304   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
11305     /*IsSigned=*/ false, /*IsReplace=*/ false);
11306   SDValue FIST = Vals.first, StackSlot = Vals.second;
11307   assert(FIST.getNode() && "Unexpected failure");
11308
11309   if (StackSlot.getNode())
11310     // Load the result.
11311     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
11312                        FIST, StackSlot, MachinePointerInfo(),
11313                        false, false, false, 0);
11314
11315   // The node is the result.
11316   return FIST;
11317 }
11318
11319 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
11320   SDLoc DL(Op);
11321   MVT VT = Op.getSimpleValueType();
11322   SDValue In = Op.getOperand(0);
11323   MVT SVT = In.getSimpleValueType();
11324
11325   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
11326
11327   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
11328                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
11329                                  In, DAG.getUNDEF(SVT)));
11330 }
11331
11332 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
11333   LLVMContext *Context = DAG.getContext();
11334   SDLoc dl(Op);
11335   MVT VT = Op.getSimpleValueType();
11336   MVT EltVT = VT;
11337   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
11338   if (VT.isVector()) {
11339     EltVT = VT.getVectorElementType();
11340     NumElts = VT.getVectorNumElements();
11341   }
11342   Constant *C;
11343   if (EltVT == MVT::f64)
11344     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11345                                           APInt(64, ~(1ULL << 63))));
11346   else
11347     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
11348                                           APInt(32, ~(1U << 31))));
11349   C = ConstantVector::getSplat(NumElts, C);
11350   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11351   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
11352   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
11353   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11354                              MachinePointerInfo::getConstantPool(),
11355                              false, false, false, Alignment);
11356   if (VT.isVector()) {
11357     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
11358     return DAG.getNode(ISD::BITCAST, dl, VT,
11359                        DAG.getNode(ISD::AND, dl, ANDVT,
11360                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
11361                                                Op.getOperand(0)),
11362                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
11363   }
11364   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
11365 }
11366
11367 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
11368   LLVMContext *Context = DAG.getContext();
11369   SDLoc dl(Op);
11370   MVT VT = Op.getSimpleValueType();
11371   MVT EltVT = VT;
11372   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
11373   if (VT.isVector()) {
11374     EltVT = VT.getVectorElementType();
11375     NumElts = VT.getVectorNumElements();
11376   }
11377   Constant *C;
11378   if (EltVT == MVT::f64)
11379     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11380                                           APInt(64, 1ULL << 63)));
11381   else
11382     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
11383                                           APInt(32, 1U << 31)));
11384   C = ConstantVector::getSplat(NumElts, C);
11385   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11386   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
11387   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
11388   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11389                              MachinePointerInfo::getConstantPool(),
11390                              false, false, false, Alignment);
11391   if (VT.isVector()) {
11392     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
11393     return DAG.getNode(ISD::BITCAST, dl, VT,
11394                        DAG.getNode(ISD::XOR, dl, XORVT,
11395                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
11396                                                Op.getOperand(0)),
11397                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
11398   }
11399
11400   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
11401 }
11402
11403 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
11404   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11405   LLVMContext *Context = DAG.getContext();
11406   SDValue Op0 = Op.getOperand(0);
11407   SDValue Op1 = Op.getOperand(1);
11408   SDLoc dl(Op);
11409   MVT VT = Op.getSimpleValueType();
11410   MVT SrcVT = Op1.getSimpleValueType();
11411
11412   // If second operand is smaller, extend it first.
11413   if (SrcVT.bitsLT(VT)) {
11414     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
11415     SrcVT = VT;
11416   }
11417   // And if it is bigger, shrink it first.
11418   if (SrcVT.bitsGT(VT)) {
11419     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
11420     SrcVT = VT;
11421   }
11422
11423   // At this point the operands and the result should have the same
11424   // type, and that won't be f80 since that is not custom lowered.
11425
11426   // First get the sign bit of second operand.
11427   SmallVector<Constant*,4> CV;
11428   if (SrcVT == MVT::f64) {
11429     const fltSemantics &Sem = APFloat::IEEEdouble;
11430     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
11431     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
11432   } else {
11433     const fltSemantics &Sem = APFloat::IEEEsingle;
11434     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
11435     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11436     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11437     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11438   }
11439   Constant *C = ConstantVector::get(CV);
11440   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
11441   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
11442                               MachinePointerInfo::getConstantPool(),
11443                               false, false, false, 16);
11444   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
11445
11446   // Shift sign bit right or left if the two operands have different types.
11447   if (SrcVT.bitsGT(VT)) {
11448     // Op0 is MVT::f32, Op1 is MVT::f64.
11449     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
11450     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
11451                           DAG.getConstant(32, MVT::i32));
11452     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
11453     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
11454                           DAG.getIntPtrConstant(0));
11455   }
11456
11457   // Clear first operand sign bit.
11458   CV.clear();
11459   if (VT == MVT::f64) {
11460     const fltSemantics &Sem = APFloat::IEEEdouble;
11461     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
11462                                                    APInt(64, ~(1ULL << 63)))));
11463     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
11464   } else {
11465     const fltSemantics &Sem = APFloat::IEEEsingle;
11466     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
11467                                                    APInt(32, ~(1U << 31)))));
11468     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11469     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11470     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
11471   }
11472   C = ConstantVector::get(CV);
11473   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
11474   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11475                               MachinePointerInfo::getConstantPool(),
11476                               false, false, false, 16);
11477   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
11478
11479   // Or the value with the sign bit.
11480   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
11481 }
11482
11483 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
11484   SDValue N0 = Op.getOperand(0);
11485   SDLoc dl(Op);
11486   MVT VT = Op.getSimpleValueType();
11487
11488   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
11489   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
11490                                   DAG.getConstant(1, VT));
11491   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
11492 }
11493
11494 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
11495 //
11496 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
11497                                       SelectionDAG &DAG) {
11498   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
11499
11500   if (!Subtarget->hasSSE41())
11501     return SDValue();
11502
11503   if (!Op->hasOneUse())
11504     return SDValue();
11505
11506   SDNode *N = Op.getNode();
11507   SDLoc DL(N);
11508
11509   SmallVector<SDValue, 8> Opnds;
11510   DenseMap<SDValue, unsigned> VecInMap;
11511   SmallVector<SDValue, 8> VecIns;
11512   EVT VT = MVT::Other;
11513
11514   // Recognize a special case where a vector is casted into wide integer to
11515   // test all 0s.
11516   Opnds.push_back(N->getOperand(0));
11517   Opnds.push_back(N->getOperand(1));
11518
11519   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
11520     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
11521     // BFS traverse all OR'd operands.
11522     if (I->getOpcode() == ISD::OR) {
11523       Opnds.push_back(I->getOperand(0));
11524       Opnds.push_back(I->getOperand(1));
11525       // Re-evaluate the number of nodes to be traversed.
11526       e += 2; // 2 more nodes (LHS and RHS) are pushed.
11527       continue;
11528     }
11529
11530     // Quit if a non-EXTRACT_VECTOR_ELT
11531     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11532       return SDValue();
11533
11534     // Quit if without a constant index.
11535     SDValue Idx = I->getOperand(1);
11536     if (!isa<ConstantSDNode>(Idx))
11537       return SDValue();
11538
11539     SDValue ExtractedFromVec = I->getOperand(0);
11540     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
11541     if (M == VecInMap.end()) {
11542       VT = ExtractedFromVec.getValueType();
11543       // Quit if not 128/256-bit vector.
11544       if (!VT.is128BitVector() && !VT.is256BitVector())
11545         return SDValue();
11546       // Quit if not the same type.
11547       if (VecInMap.begin() != VecInMap.end() &&
11548           VT != VecInMap.begin()->first.getValueType())
11549         return SDValue();
11550       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
11551       VecIns.push_back(ExtractedFromVec);
11552     }
11553     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
11554   }
11555
11556   assert((VT.is128BitVector() || VT.is256BitVector()) &&
11557          "Not extracted from 128-/256-bit vector.");
11558
11559   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
11560
11561   for (DenseMap<SDValue, unsigned>::const_iterator
11562         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
11563     // Quit if not all elements are used.
11564     if (I->second != FullMask)
11565       return SDValue();
11566   }
11567
11568   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
11569
11570   // Cast all vectors into TestVT for PTEST.
11571   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
11572     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
11573
11574   // If more than one full vectors are evaluated, OR them first before PTEST.
11575   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
11576     // Each iteration will OR 2 nodes and append the result until there is only
11577     // 1 node left, i.e. the final OR'd value of all vectors.
11578     SDValue LHS = VecIns[Slot];
11579     SDValue RHS = VecIns[Slot + 1];
11580     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
11581   }
11582
11583   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
11584                      VecIns.back(), VecIns.back());
11585 }
11586
11587 /// \brief return true if \c Op has a use that doesn't just read flags.
11588 static bool hasNonFlagsUse(SDValue Op) {
11589   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
11590        ++UI) {
11591     SDNode *User = *UI;
11592     unsigned UOpNo = UI.getOperandNo();
11593     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
11594       // Look pass truncate.
11595       UOpNo = User->use_begin().getOperandNo();
11596       User = *User->use_begin();
11597     }
11598
11599     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
11600         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
11601       return true;
11602   }
11603   return false;
11604 }
11605
11606 /// Emit nodes that will be selected as "test Op0,Op0", or something
11607 /// equivalent.
11608 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
11609                                     SelectionDAG &DAG) const {
11610   if (Op.getValueType() == MVT::i1)
11611     // KORTEST instruction should be selected
11612     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
11613                        DAG.getConstant(0, Op.getValueType()));
11614
11615   // CF and OF aren't always set the way we want. Determine which
11616   // of these we need.
11617   bool NeedCF = false;
11618   bool NeedOF = false;
11619   switch (X86CC) {
11620   default: break;
11621   case X86::COND_A: case X86::COND_AE:
11622   case X86::COND_B: case X86::COND_BE:
11623     NeedCF = true;
11624     break;
11625   case X86::COND_G: case X86::COND_GE:
11626   case X86::COND_L: case X86::COND_LE:
11627   case X86::COND_O: case X86::COND_NO: {
11628     // Check if we really need to set the
11629     // Overflow flag. If NoSignedWrap is present
11630     // that is not actually needed.
11631     switch (Op->getOpcode()) {
11632     case ISD::ADD:
11633     case ISD::SUB:
11634     case ISD::MUL:
11635     case ISD::SHL: {
11636       const BinaryWithFlagsSDNode *BinNode =
11637           cast<BinaryWithFlagsSDNode>(Op.getNode());
11638       if (BinNode->hasNoSignedWrap())
11639         break;
11640     }
11641     default:
11642       NeedOF = true;
11643       break;
11644     }
11645     break;
11646   }
11647   }
11648   // See if we can use the EFLAGS value from the operand instead of
11649   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
11650   // we prove that the arithmetic won't overflow, we can't use OF or CF.
11651   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
11652     // Emit a CMP with 0, which is the TEST pattern.
11653     //if (Op.getValueType() == MVT::i1)
11654     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
11655     //                     DAG.getConstant(0, MVT::i1));
11656     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
11657                        DAG.getConstant(0, Op.getValueType()));
11658   }
11659   unsigned Opcode = 0;
11660   unsigned NumOperands = 0;
11661
11662   // Truncate operations may prevent the merge of the SETCC instruction
11663   // and the arithmetic instruction before it. Attempt to truncate the operands
11664   // of the arithmetic instruction and use a reduced bit-width instruction.
11665   bool NeedTruncation = false;
11666   SDValue ArithOp = Op;
11667   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
11668     SDValue Arith = Op->getOperand(0);
11669     // Both the trunc and the arithmetic op need to have one user each.
11670     if (Arith->hasOneUse())
11671       switch (Arith.getOpcode()) {
11672         default: break;
11673         case ISD::ADD:
11674         case ISD::SUB:
11675         case ISD::AND:
11676         case ISD::OR:
11677         case ISD::XOR: {
11678           NeedTruncation = true;
11679           ArithOp = Arith;
11680         }
11681       }
11682   }
11683
11684   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
11685   // which may be the result of a CAST.  We use the variable 'Op', which is the
11686   // non-casted variable when we check for possible users.
11687   switch (ArithOp.getOpcode()) {
11688   case ISD::ADD:
11689     // Due to an isel shortcoming, be conservative if this add is likely to be
11690     // selected as part of a load-modify-store instruction. When the root node
11691     // in a match is a store, isel doesn't know how to remap non-chain non-flag
11692     // uses of other nodes in the match, such as the ADD in this case. This
11693     // leads to the ADD being left around and reselected, with the result being
11694     // two adds in the output.  Alas, even if none our users are stores, that
11695     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
11696     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
11697     // climbing the DAG back to the root, and it doesn't seem to be worth the
11698     // effort.
11699     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11700          UE = Op.getNode()->use_end(); UI != UE; ++UI)
11701       if (UI->getOpcode() != ISD::CopyToReg &&
11702           UI->getOpcode() != ISD::SETCC &&
11703           UI->getOpcode() != ISD::STORE)
11704         goto default_case;
11705
11706     if (ConstantSDNode *C =
11707         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
11708       // An add of one will be selected as an INC.
11709       if (C->getAPIntValue() == 1 && !Subtarget->slowIncDec()) {
11710         Opcode = X86ISD::INC;
11711         NumOperands = 1;
11712         break;
11713       }
11714
11715       // An add of negative one (subtract of one) will be selected as a DEC.
11716       if (C->getAPIntValue().isAllOnesValue() && !Subtarget->slowIncDec()) {
11717         Opcode = X86ISD::DEC;
11718         NumOperands = 1;
11719         break;
11720       }
11721     }
11722
11723     // Otherwise use a regular EFLAGS-setting add.
11724     Opcode = X86ISD::ADD;
11725     NumOperands = 2;
11726     break;
11727   case ISD::SHL:
11728   case ISD::SRL:
11729     // If we have a constant logical shift that's only used in a comparison
11730     // against zero turn it into an equivalent AND. This allows turning it into
11731     // a TEST instruction later.
11732     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) && Op->hasOneUse() &&
11733         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
11734       EVT VT = Op.getValueType();
11735       unsigned BitWidth = VT.getSizeInBits();
11736       unsigned ShAmt = Op->getConstantOperandVal(1);
11737       if (ShAmt >= BitWidth) // Avoid undefined shifts.
11738         break;
11739       APInt Mask = ArithOp.getOpcode() == ISD::SRL
11740                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
11741                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
11742       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
11743         break;
11744       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
11745                                 DAG.getConstant(Mask, VT));
11746       DAG.ReplaceAllUsesWith(Op, New);
11747       Op = New;
11748     }
11749     break;
11750
11751   case ISD::AND:
11752     // If the primary and result isn't used, don't bother using X86ISD::AND,
11753     // because a TEST instruction will be better.
11754     if (!hasNonFlagsUse(Op))
11755       break;
11756     // FALL THROUGH
11757   case ISD::SUB:
11758   case ISD::OR:
11759   case ISD::XOR:
11760     // Due to the ISEL shortcoming noted above, be conservative if this op is
11761     // likely to be selected as part of a load-modify-store instruction.
11762     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11763            UE = Op.getNode()->use_end(); UI != UE; ++UI)
11764       if (UI->getOpcode() == ISD::STORE)
11765         goto default_case;
11766
11767     // Otherwise use a regular EFLAGS-setting instruction.
11768     switch (ArithOp.getOpcode()) {
11769     default: llvm_unreachable("unexpected operator!");
11770     case ISD::SUB: Opcode = X86ISD::SUB; break;
11771     case ISD::XOR: Opcode = X86ISD::XOR; break;
11772     case ISD::AND: Opcode = X86ISD::AND; break;
11773     case ISD::OR: {
11774       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
11775         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
11776         if (EFLAGS.getNode())
11777           return EFLAGS;
11778       }
11779       Opcode = X86ISD::OR;
11780       break;
11781     }
11782     }
11783
11784     NumOperands = 2;
11785     break;
11786   case X86ISD::ADD:
11787   case X86ISD::SUB:
11788   case X86ISD::INC:
11789   case X86ISD::DEC:
11790   case X86ISD::OR:
11791   case X86ISD::XOR:
11792   case X86ISD::AND:
11793     return SDValue(Op.getNode(), 1);
11794   default:
11795   default_case:
11796     break;
11797   }
11798
11799   // If we found that truncation is beneficial, perform the truncation and
11800   // update 'Op'.
11801   if (NeedTruncation) {
11802     EVT VT = Op.getValueType();
11803     SDValue WideVal = Op->getOperand(0);
11804     EVT WideVT = WideVal.getValueType();
11805     unsigned ConvertedOp = 0;
11806     // Use a target machine opcode to prevent further DAGCombine
11807     // optimizations that may separate the arithmetic operations
11808     // from the setcc node.
11809     switch (WideVal.getOpcode()) {
11810       default: break;
11811       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
11812       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
11813       case ISD::AND: ConvertedOp = X86ISD::AND; break;
11814       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
11815       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
11816     }
11817
11818     if (ConvertedOp) {
11819       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11820       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
11821         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
11822         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
11823         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
11824       }
11825     }
11826   }
11827
11828   if (Opcode == 0)
11829     // Emit a CMP with 0, which is the TEST pattern.
11830     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
11831                        DAG.getConstant(0, Op.getValueType()));
11832
11833   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11834   SmallVector<SDValue, 4> Ops;
11835   for (unsigned i = 0; i != NumOperands; ++i)
11836     Ops.push_back(Op.getOperand(i));
11837
11838   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
11839   DAG.ReplaceAllUsesWith(Op, New);
11840   return SDValue(New.getNode(), 1);
11841 }
11842
11843 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
11844 /// equivalent.
11845 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
11846                                    SDLoc dl, SelectionDAG &DAG) const {
11847   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
11848     if (C->getAPIntValue() == 0)
11849       return EmitTest(Op0, X86CC, dl, DAG);
11850
11851      if (Op0.getValueType() == MVT::i1)
11852        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
11853   }
11854  
11855   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
11856        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
11857     // Do the comparison at i32 if it's smaller, besides the Atom case. 
11858     // This avoids subregister aliasing issues. Keep the smaller reference 
11859     // if we're optimizing for size, however, as that'll allow better folding 
11860     // of memory operations.
11861     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
11862         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
11863              AttributeSet::FunctionIndex, Attribute::MinSize) &&
11864         !Subtarget->isAtom()) {
11865       unsigned ExtendOp =
11866           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
11867       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
11868       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
11869     }
11870     // Use SUB instead of CMP to enable CSE between SUB and CMP.
11871     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
11872     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
11873                               Op0, Op1);
11874     return SDValue(Sub.getNode(), 1);
11875   }
11876   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
11877 }
11878
11879 /// Convert a comparison if required by the subtarget.
11880 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
11881                                                  SelectionDAG &DAG) const {
11882   // If the subtarget does not support the FUCOMI instruction, floating-point
11883   // comparisons have to be converted.
11884   if (Subtarget->hasCMov() ||
11885       Cmp.getOpcode() != X86ISD::CMP ||
11886       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
11887       !Cmp.getOperand(1).getValueType().isFloatingPoint())
11888     return Cmp;
11889
11890   // The instruction selector will select an FUCOM instruction instead of
11891   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
11892   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
11893   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
11894   SDLoc dl(Cmp);
11895   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
11896   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
11897   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
11898                             DAG.getConstant(8, MVT::i8));
11899   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
11900   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
11901 }
11902
11903 static bool isAllOnes(SDValue V) {
11904   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
11905   return C && C->isAllOnesValue();
11906 }
11907
11908 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
11909 /// if it's possible.
11910 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
11911                                      SDLoc dl, SelectionDAG &DAG) const {
11912   SDValue Op0 = And.getOperand(0);
11913   SDValue Op1 = And.getOperand(1);
11914   if (Op0.getOpcode() == ISD::TRUNCATE)
11915     Op0 = Op0.getOperand(0);
11916   if (Op1.getOpcode() == ISD::TRUNCATE)
11917     Op1 = Op1.getOperand(0);
11918
11919   SDValue LHS, RHS;
11920   if (Op1.getOpcode() == ISD::SHL)
11921     std::swap(Op0, Op1);
11922   if (Op0.getOpcode() == ISD::SHL) {
11923     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
11924       if (And00C->getZExtValue() == 1) {
11925         // If we looked past a truncate, check that it's only truncating away
11926         // known zeros.
11927         unsigned BitWidth = Op0.getValueSizeInBits();
11928         unsigned AndBitWidth = And.getValueSizeInBits();
11929         if (BitWidth > AndBitWidth) {
11930           APInt Zeros, Ones;
11931           DAG.computeKnownBits(Op0, Zeros, Ones);
11932           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
11933             return SDValue();
11934         }
11935         LHS = Op1;
11936         RHS = Op0.getOperand(1);
11937       }
11938   } else if (Op1.getOpcode() == ISD::Constant) {
11939     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
11940     uint64_t AndRHSVal = AndRHS->getZExtValue();
11941     SDValue AndLHS = Op0;
11942
11943     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
11944       LHS = AndLHS.getOperand(0);
11945       RHS = AndLHS.getOperand(1);
11946     }
11947
11948     // Use BT if the immediate can't be encoded in a TEST instruction.
11949     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
11950       LHS = AndLHS;
11951       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
11952     }
11953   }
11954
11955   if (LHS.getNode()) {
11956     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
11957     // instruction.  Since the shift amount is in-range-or-undefined, we know
11958     // that doing a bittest on the i32 value is ok.  We extend to i32 because
11959     // the encoding for the i16 version is larger than the i32 version.
11960     // Also promote i16 to i32 for performance / code size reason.
11961     if (LHS.getValueType() == MVT::i8 ||
11962         LHS.getValueType() == MVT::i16)
11963       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
11964
11965     // If the operand types disagree, extend the shift amount to match.  Since
11966     // BT ignores high bits (like shifts) we can use anyextend.
11967     if (LHS.getValueType() != RHS.getValueType())
11968       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
11969
11970     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
11971     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
11972     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11973                        DAG.getConstant(Cond, MVT::i8), BT);
11974   }
11975
11976   return SDValue();
11977 }
11978
11979 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
11980 /// mask CMPs.
11981 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
11982                               SDValue &Op1) {
11983   unsigned SSECC;
11984   bool Swap = false;
11985
11986   // SSE Condition code mapping:
11987   //  0 - EQ
11988   //  1 - LT
11989   //  2 - LE
11990   //  3 - UNORD
11991   //  4 - NEQ
11992   //  5 - NLT
11993   //  6 - NLE
11994   //  7 - ORD
11995   switch (SetCCOpcode) {
11996   default: llvm_unreachable("Unexpected SETCC condition");
11997   case ISD::SETOEQ:
11998   case ISD::SETEQ:  SSECC = 0; break;
11999   case ISD::SETOGT:
12000   case ISD::SETGT:  Swap = true; // Fallthrough
12001   case ISD::SETLT:
12002   case ISD::SETOLT: SSECC = 1; break;
12003   case ISD::SETOGE:
12004   case ISD::SETGE:  Swap = true; // Fallthrough
12005   case ISD::SETLE:
12006   case ISD::SETOLE: SSECC = 2; break;
12007   case ISD::SETUO:  SSECC = 3; break;
12008   case ISD::SETUNE:
12009   case ISD::SETNE:  SSECC = 4; break;
12010   case ISD::SETULE: Swap = true; // Fallthrough
12011   case ISD::SETUGE: SSECC = 5; break;
12012   case ISD::SETULT: Swap = true; // Fallthrough
12013   case ISD::SETUGT: SSECC = 6; break;
12014   case ISD::SETO:   SSECC = 7; break;
12015   case ISD::SETUEQ:
12016   case ISD::SETONE: SSECC = 8; break;
12017   }
12018   if (Swap)
12019     std::swap(Op0, Op1);
12020
12021   return SSECC;
12022 }
12023
12024 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
12025 // ones, and then concatenate the result back.
12026 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
12027   MVT VT = Op.getSimpleValueType();
12028
12029   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
12030          "Unsupported value type for operation");
12031
12032   unsigned NumElems = VT.getVectorNumElements();
12033   SDLoc dl(Op);
12034   SDValue CC = Op.getOperand(2);
12035
12036   // Extract the LHS vectors
12037   SDValue LHS = Op.getOperand(0);
12038   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12039   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12040
12041   // Extract the RHS vectors
12042   SDValue RHS = Op.getOperand(1);
12043   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12044   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12045
12046   // Issue the operation on the smaller types and concatenate the result back
12047   MVT EltVT = VT.getVectorElementType();
12048   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12049   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12050                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
12051                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
12052 }
12053
12054 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
12055                                      const X86Subtarget *Subtarget) {
12056   SDValue Op0 = Op.getOperand(0);
12057   SDValue Op1 = Op.getOperand(1);
12058   SDValue CC = Op.getOperand(2);
12059   MVT VT = Op.getSimpleValueType();
12060   SDLoc dl(Op);
12061
12062   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
12063          Op.getValueType().getScalarType() == MVT::i1 &&
12064          "Cannot set masked compare for this operation");
12065
12066   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
12067   unsigned  Opc = 0;
12068   bool Unsigned = false;
12069   bool Swap = false;
12070   unsigned SSECC;
12071   switch (SetCCOpcode) {
12072   default: llvm_unreachable("Unexpected SETCC condition");
12073   case ISD::SETNE:  SSECC = 4; break;
12074   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
12075   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
12076   case ISD::SETLT:  Swap = true; //fall-through
12077   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
12078   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
12079   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
12080   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
12081   case ISD::SETULE: Unsigned = true; //fall-through
12082   case ISD::SETLE:  SSECC = 2; break;
12083   }
12084
12085   if (Swap)
12086     std::swap(Op0, Op1);
12087   if (Opc)
12088     return DAG.getNode(Opc, dl, VT, Op0, Op1);
12089   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
12090   return DAG.getNode(Opc, dl, VT, Op0, Op1,
12091                      DAG.getConstant(SSECC, MVT::i8));
12092 }
12093
12094 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
12095 /// operand \p Op1.  If non-trivial (for example because it's not constant)
12096 /// return an empty value.
12097 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
12098 {
12099   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
12100   if (!BV)
12101     return SDValue();
12102
12103   MVT VT = Op1.getSimpleValueType();
12104   MVT EVT = VT.getVectorElementType();
12105   unsigned n = VT.getVectorNumElements();
12106   SmallVector<SDValue, 8> ULTOp1;
12107
12108   for (unsigned i = 0; i < n; ++i) {
12109     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
12110     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
12111       return SDValue();
12112
12113     // Avoid underflow.
12114     APInt Val = Elt->getAPIntValue();
12115     if (Val == 0)
12116       return SDValue();
12117
12118     ULTOp1.push_back(DAG.getConstant(Val - 1, EVT));
12119   }
12120
12121   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
12122 }
12123
12124 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
12125                            SelectionDAG &DAG) {
12126   SDValue Op0 = Op.getOperand(0);
12127   SDValue Op1 = Op.getOperand(1);
12128   SDValue CC = Op.getOperand(2);
12129   MVT VT = Op.getSimpleValueType();
12130   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
12131   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
12132   SDLoc dl(Op);
12133
12134   if (isFP) {
12135 #ifndef NDEBUG
12136     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
12137     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
12138 #endif
12139
12140     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
12141     unsigned Opc = X86ISD::CMPP;
12142     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
12143       assert(VT.getVectorNumElements() <= 16);
12144       Opc = X86ISD::CMPM;
12145     }
12146     // In the two special cases we can't handle, emit two comparisons.
12147     if (SSECC == 8) {
12148       unsigned CC0, CC1;
12149       unsigned CombineOpc;
12150       if (SetCCOpcode == ISD::SETUEQ) {
12151         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
12152       } else {
12153         assert(SetCCOpcode == ISD::SETONE);
12154         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
12155       }
12156
12157       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
12158                                  DAG.getConstant(CC0, MVT::i8));
12159       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
12160                                  DAG.getConstant(CC1, MVT::i8));
12161       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
12162     }
12163     // Handle all other FP comparisons here.
12164     return DAG.getNode(Opc, dl, VT, Op0, Op1,
12165                        DAG.getConstant(SSECC, MVT::i8));
12166   }
12167
12168   // Break 256-bit integer vector compare into smaller ones.
12169   if (VT.is256BitVector() && !Subtarget->hasInt256())
12170     return Lower256IntVSETCC(Op, DAG);
12171
12172   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
12173   EVT OpVT = Op1.getValueType();
12174   if (Subtarget->hasAVX512()) {
12175     if (Op1.getValueType().is512BitVector() ||
12176         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
12177       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
12178
12179     // In AVX-512 architecture setcc returns mask with i1 elements,
12180     // But there is no compare instruction for i8 and i16 elements.
12181     // We are not talking about 512-bit operands in this case, these
12182     // types are illegal.
12183     if (MaskResult &&
12184         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
12185          OpVT.getVectorElementType().getSizeInBits() >= 8))
12186       return DAG.getNode(ISD::TRUNCATE, dl, VT,
12187                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
12188   }
12189
12190   // We are handling one of the integer comparisons here.  Since SSE only has
12191   // GT and EQ comparisons for integer, swapping operands and multiple
12192   // operations may be required for some comparisons.
12193   unsigned Opc;
12194   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
12195   bool Subus = false;
12196
12197   switch (SetCCOpcode) {
12198   default: llvm_unreachable("Unexpected SETCC condition");
12199   case ISD::SETNE:  Invert = true;
12200   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
12201   case ISD::SETLT:  Swap = true;
12202   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
12203   case ISD::SETGE:  Swap = true;
12204   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
12205                     Invert = true; break;
12206   case ISD::SETULT: Swap = true;
12207   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
12208                     FlipSigns = true; break;
12209   case ISD::SETUGE: Swap = true;
12210   case ISD::SETULE: Opc = X86ISD::PCMPGT;
12211                     FlipSigns = true; Invert = true; break;
12212   }
12213
12214   // Special case: Use min/max operations for SETULE/SETUGE
12215   MVT VET = VT.getVectorElementType();
12216   bool hasMinMax =
12217        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
12218     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
12219
12220   if (hasMinMax) {
12221     switch (SetCCOpcode) {
12222     default: break;
12223     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
12224     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
12225     }
12226
12227     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
12228   }
12229
12230   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
12231   if (!MinMax && hasSubus) {
12232     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
12233     // Op0 u<= Op1:
12234     //   t = psubus Op0, Op1
12235     //   pcmpeq t, <0..0>
12236     switch (SetCCOpcode) {
12237     default: break;
12238     case ISD::SETULT: {
12239       // If the comparison is against a constant we can turn this into a
12240       // setule.  With psubus, setule does not require a swap.  This is
12241       // beneficial because the constant in the register is no longer
12242       // destructed as the destination so it can be hoisted out of a loop.
12243       // Only do this pre-AVX since vpcmp* is no longer destructive.
12244       if (Subtarget->hasAVX())
12245         break;
12246       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
12247       if (ULEOp1.getNode()) {
12248         Op1 = ULEOp1;
12249         Subus = true; Invert = false; Swap = false;
12250       }
12251       break;
12252     }
12253     // Psubus is better than flip-sign because it requires no inversion.
12254     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
12255     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
12256     }
12257
12258     if (Subus) {
12259       Opc = X86ISD::SUBUS;
12260       FlipSigns = false;
12261     }
12262   }
12263
12264   if (Swap)
12265     std::swap(Op0, Op1);
12266
12267   // Check that the operation in question is available (most are plain SSE2,
12268   // but PCMPGTQ and PCMPEQQ have different requirements).
12269   if (VT == MVT::v2i64) {
12270     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
12271       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
12272
12273       // First cast everything to the right type.
12274       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
12275       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
12276
12277       // Since SSE has no unsigned integer comparisons, we need to flip the sign
12278       // bits of the inputs before performing those operations. The lower
12279       // compare is always unsigned.
12280       SDValue SB;
12281       if (FlipSigns) {
12282         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
12283       } else {
12284         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
12285         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
12286         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
12287                          Sign, Zero, Sign, Zero);
12288       }
12289       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
12290       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
12291
12292       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
12293       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
12294       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
12295
12296       // Create masks for only the low parts/high parts of the 64 bit integers.
12297       static const int MaskHi[] = { 1, 1, 3, 3 };
12298       static const int MaskLo[] = { 0, 0, 2, 2 };
12299       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
12300       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
12301       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
12302
12303       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
12304       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
12305
12306       if (Invert)
12307         Result = DAG.getNOT(dl, Result, MVT::v4i32);
12308
12309       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
12310     }
12311
12312     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
12313       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
12314       // pcmpeqd + pshufd + pand.
12315       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
12316
12317       // First cast everything to the right type.
12318       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
12319       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
12320
12321       // Do the compare.
12322       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
12323
12324       // Make sure the lower and upper halves are both all-ones.
12325       static const int Mask[] = { 1, 0, 3, 2 };
12326       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
12327       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
12328
12329       if (Invert)
12330         Result = DAG.getNOT(dl, Result, MVT::v4i32);
12331
12332       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
12333     }
12334   }
12335
12336   // Since SSE has no unsigned integer comparisons, we need to flip the sign
12337   // bits of the inputs before performing those operations.
12338   if (FlipSigns) {
12339     EVT EltVT = VT.getVectorElementType();
12340     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
12341     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
12342     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
12343   }
12344
12345   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
12346
12347   // If the logical-not of the result is required, perform that now.
12348   if (Invert)
12349     Result = DAG.getNOT(dl, Result, VT);
12350
12351   if (MinMax)
12352     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
12353
12354   if (Subus)
12355     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
12356                          getZeroVector(VT, Subtarget, DAG, dl));
12357
12358   return Result;
12359 }
12360
12361 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
12362
12363   MVT VT = Op.getSimpleValueType();
12364
12365   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
12366
12367   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
12368          && "SetCC type must be 8-bit or 1-bit integer");
12369   SDValue Op0 = Op.getOperand(0);
12370   SDValue Op1 = Op.getOperand(1);
12371   SDLoc dl(Op);
12372   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
12373
12374   // Optimize to BT if possible.
12375   // Lower (X & (1 << N)) == 0 to BT(X, N).
12376   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
12377   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
12378   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
12379       Op1.getOpcode() == ISD::Constant &&
12380       cast<ConstantSDNode>(Op1)->isNullValue() &&
12381       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
12382     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
12383     if (NewSetCC.getNode())
12384       return NewSetCC;
12385   }
12386
12387   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
12388   // these.
12389   if (Op1.getOpcode() == ISD::Constant &&
12390       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
12391        cast<ConstantSDNode>(Op1)->isNullValue()) &&
12392       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
12393
12394     // If the input is a setcc, then reuse the input setcc or use a new one with
12395     // the inverted condition.
12396     if (Op0.getOpcode() == X86ISD::SETCC) {
12397       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
12398       bool Invert = (CC == ISD::SETNE) ^
12399         cast<ConstantSDNode>(Op1)->isNullValue();
12400       if (!Invert)
12401         return Op0;
12402
12403       CCode = X86::GetOppositeBranchCondition(CCode);
12404       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12405                                   DAG.getConstant(CCode, MVT::i8),
12406                                   Op0.getOperand(1));
12407       if (VT == MVT::i1)
12408         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
12409       return SetCC;
12410     }
12411   }
12412   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
12413       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
12414       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
12415
12416     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
12417     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, MVT::i1), NewCC);
12418   }
12419
12420   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
12421   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
12422   if (X86CC == X86::COND_INVALID)
12423     return SDValue();
12424
12425   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
12426   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
12427   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12428                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
12429   if (VT == MVT::i1)
12430     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
12431   return SetCC;
12432 }
12433
12434 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
12435 static bool isX86LogicalCmp(SDValue Op) {
12436   unsigned Opc = Op.getNode()->getOpcode();
12437   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
12438       Opc == X86ISD::SAHF)
12439     return true;
12440   if (Op.getResNo() == 1 &&
12441       (Opc == X86ISD::ADD ||
12442        Opc == X86ISD::SUB ||
12443        Opc == X86ISD::ADC ||
12444        Opc == X86ISD::SBB ||
12445        Opc == X86ISD::SMUL ||
12446        Opc == X86ISD::UMUL ||
12447        Opc == X86ISD::INC ||
12448        Opc == X86ISD::DEC ||
12449        Opc == X86ISD::OR ||
12450        Opc == X86ISD::XOR ||
12451        Opc == X86ISD::AND))
12452     return true;
12453
12454   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
12455     return true;
12456
12457   return false;
12458 }
12459
12460 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
12461   if (V.getOpcode() != ISD::TRUNCATE)
12462     return false;
12463
12464   SDValue VOp0 = V.getOperand(0);
12465   unsigned InBits = VOp0.getValueSizeInBits();
12466   unsigned Bits = V.getValueSizeInBits();
12467   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
12468 }
12469
12470 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
12471   bool addTest = true;
12472   SDValue Cond  = Op.getOperand(0);
12473   SDValue Op1 = Op.getOperand(1);
12474   SDValue Op2 = Op.getOperand(2);
12475   SDLoc DL(Op);
12476   EVT VT = Op1.getValueType();
12477   SDValue CC;
12478
12479   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
12480   // are available. Otherwise fp cmovs get lowered into a less efficient branch
12481   // sequence later on.
12482   if (Cond.getOpcode() == ISD::SETCC &&
12483       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
12484        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
12485       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
12486     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
12487     int SSECC = translateX86FSETCC(
12488         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
12489
12490     if (SSECC != 8) {
12491       if (Subtarget->hasAVX512()) {
12492         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
12493                                   DAG.getConstant(SSECC, MVT::i8));
12494         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
12495       }
12496       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
12497                                 DAG.getConstant(SSECC, MVT::i8));
12498       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
12499       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
12500       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
12501     }
12502   }
12503
12504   if (Cond.getOpcode() == ISD::SETCC) {
12505     SDValue NewCond = LowerSETCC(Cond, DAG);
12506     if (NewCond.getNode())
12507       Cond = NewCond;
12508   }
12509
12510   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
12511   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
12512   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
12513   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
12514   if (Cond.getOpcode() == X86ISD::SETCC &&
12515       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
12516       isZero(Cond.getOperand(1).getOperand(1))) {
12517     SDValue Cmp = Cond.getOperand(1);
12518
12519     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
12520
12521     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
12522         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
12523       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
12524
12525       SDValue CmpOp0 = Cmp.getOperand(0);
12526       // Apply further optimizations for special cases
12527       // (select (x != 0), -1, 0) -> neg & sbb
12528       // (select (x == 0), 0, -1) -> neg & sbb
12529       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
12530         if (YC->isNullValue() &&
12531             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
12532           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
12533           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
12534                                     DAG.getConstant(0, CmpOp0.getValueType()),
12535                                     CmpOp0);
12536           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
12537                                     DAG.getConstant(X86::COND_B, MVT::i8),
12538                                     SDValue(Neg.getNode(), 1));
12539           return Res;
12540         }
12541
12542       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
12543                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
12544       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
12545
12546       SDValue Res =   // Res = 0 or -1.
12547         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
12548                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
12549
12550       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
12551         Res = DAG.getNOT(DL, Res, Res.getValueType());
12552
12553       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
12554       if (!N2C || !N2C->isNullValue())
12555         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
12556       return Res;
12557     }
12558   }
12559
12560   // Look past (and (setcc_carry (cmp ...)), 1).
12561   if (Cond.getOpcode() == ISD::AND &&
12562       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
12563     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
12564     if (C && C->getAPIntValue() == 1)
12565       Cond = Cond.getOperand(0);
12566   }
12567
12568   // If condition flag is set by a X86ISD::CMP, then use it as the condition
12569   // setting operand in place of the X86ISD::SETCC.
12570   unsigned CondOpcode = Cond.getOpcode();
12571   if (CondOpcode == X86ISD::SETCC ||
12572       CondOpcode == X86ISD::SETCC_CARRY) {
12573     CC = Cond.getOperand(0);
12574
12575     SDValue Cmp = Cond.getOperand(1);
12576     unsigned Opc = Cmp.getOpcode();
12577     MVT VT = Op.getSimpleValueType();
12578
12579     bool IllegalFPCMov = false;
12580     if (VT.isFloatingPoint() && !VT.isVector() &&
12581         !isScalarFPTypeInSSEReg(VT))  // FPStack?
12582       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
12583
12584     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
12585         Opc == X86ISD::BT) { // FIXME
12586       Cond = Cmp;
12587       addTest = false;
12588     }
12589   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
12590              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
12591              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
12592               Cond.getOperand(0).getValueType() != MVT::i8)) {
12593     SDValue LHS = Cond.getOperand(0);
12594     SDValue RHS = Cond.getOperand(1);
12595     unsigned X86Opcode;
12596     unsigned X86Cond;
12597     SDVTList VTs;
12598     switch (CondOpcode) {
12599     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
12600     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
12601     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
12602     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
12603     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
12604     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
12605     default: llvm_unreachable("unexpected overflowing operator");
12606     }
12607     if (CondOpcode == ISD::UMULO)
12608       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
12609                           MVT::i32);
12610     else
12611       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
12612
12613     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
12614
12615     if (CondOpcode == ISD::UMULO)
12616       Cond = X86Op.getValue(2);
12617     else
12618       Cond = X86Op.getValue(1);
12619
12620     CC = DAG.getConstant(X86Cond, MVT::i8);
12621     addTest = false;
12622   }
12623
12624   if (addTest) {
12625     // Look pass the truncate if the high bits are known zero.
12626     if (isTruncWithZeroHighBitsInput(Cond, DAG))
12627         Cond = Cond.getOperand(0);
12628
12629     // We know the result of AND is compared against zero. Try to match
12630     // it to BT.
12631     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
12632       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
12633       if (NewSetCC.getNode()) {
12634         CC = NewSetCC.getOperand(0);
12635         Cond = NewSetCC.getOperand(1);
12636         addTest = false;
12637       }
12638     }
12639   }
12640
12641   if (addTest) {
12642     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
12643     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
12644   }
12645
12646   // a <  b ? -1 :  0 -> RES = ~setcc_carry
12647   // a <  b ?  0 : -1 -> RES = setcc_carry
12648   // a >= b ? -1 :  0 -> RES = setcc_carry
12649   // a >= b ?  0 : -1 -> RES = ~setcc_carry
12650   if (Cond.getOpcode() == X86ISD::SUB) {
12651     Cond = ConvertCmpIfNecessary(Cond, DAG);
12652     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
12653
12654     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
12655         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
12656       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
12657                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
12658       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
12659         return DAG.getNOT(DL, Res, Res.getValueType());
12660       return Res;
12661     }
12662   }
12663
12664   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
12665   // widen the cmov and push the truncate through. This avoids introducing a new
12666   // branch during isel and doesn't add any extensions.
12667   if (Op.getValueType() == MVT::i8 &&
12668       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
12669     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
12670     if (T1.getValueType() == T2.getValueType() &&
12671         // Blacklist CopyFromReg to avoid partial register stalls.
12672         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
12673       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
12674       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
12675       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
12676     }
12677   }
12678
12679   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
12680   // condition is true.
12681   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
12682   SDValue Ops[] = { Op2, Op1, CC, Cond };
12683   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
12684 }
12685
12686 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
12687   MVT VT = Op->getSimpleValueType(0);
12688   SDValue In = Op->getOperand(0);
12689   MVT InVT = In.getSimpleValueType();
12690   SDLoc dl(Op);
12691
12692   unsigned int NumElts = VT.getVectorNumElements();
12693   if (NumElts != 8 && NumElts != 16)
12694     return SDValue();
12695
12696   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
12697     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
12698
12699   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12700   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
12701
12702   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
12703   Constant *C = ConstantInt::get(*DAG.getContext(),
12704     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
12705
12706   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
12707   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
12708   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
12709                           MachinePointerInfo::getConstantPool(),
12710                           false, false, false, Alignment);
12711   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
12712   if (VT.is512BitVector())
12713     return Brcst;
12714   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
12715 }
12716
12717 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
12718                                 SelectionDAG &DAG) {
12719   MVT VT = Op->getSimpleValueType(0);
12720   SDValue In = Op->getOperand(0);
12721   MVT InVT = In.getSimpleValueType();
12722   SDLoc dl(Op);
12723
12724   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
12725     return LowerSIGN_EXTEND_AVX512(Op, DAG);
12726
12727   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
12728       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
12729       (VT != MVT::v16i16 || InVT != MVT::v16i8))
12730     return SDValue();
12731
12732   if (Subtarget->hasInt256())
12733     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
12734
12735   // Optimize vectors in AVX mode
12736   // Sign extend  v8i16 to v8i32 and
12737   //              v4i32 to v4i64
12738   //
12739   // Divide input vector into two parts
12740   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
12741   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
12742   // concat the vectors to original VT
12743
12744   unsigned NumElems = InVT.getVectorNumElements();
12745   SDValue Undef = DAG.getUNDEF(InVT);
12746
12747   SmallVector<int,8> ShufMask1(NumElems, -1);
12748   for (unsigned i = 0; i != NumElems/2; ++i)
12749     ShufMask1[i] = i;
12750
12751   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
12752
12753   SmallVector<int,8> ShufMask2(NumElems, -1);
12754   for (unsigned i = 0; i != NumElems/2; ++i)
12755     ShufMask2[i] = i + NumElems/2;
12756
12757   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
12758
12759   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
12760                                 VT.getVectorNumElements()/2);
12761
12762   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
12763   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
12764
12765   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
12766 }
12767
12768 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
12769 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
12770 // from the AND / OR.
12771 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
12772   Opc = Op.getOpcode();
12773   if (Opc != ISD::OR && Opc != ISD::AND)
12774     return false;
12775   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
12776           Op.getOperand(0).hasOneUse() &&
12777           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
12778           Op.getOperand(1).hasOneUse());
12779 }
12780
12781 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
12782 // 1 and that the SETCC node has a single use.
12783 static bool isXor1OfSetCC(SDValue Op) {
12784   if (Op.getOpcode() != ISD::XOR)
12785     return false;
12786   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
12787   if (N1C && N1C->getAPIntValue() == 1) {
12788     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
12789       Op.getOperand(0).hasOneUse();
12790   }
12791   return false;
12792 }
12793
12794 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
12795   bool addTest = true;
12796   SDValue Chain = Op.getOperand(0);
12797   SDValue Cond  = Op.getOperand(1);
12798   SDValue Dest  = Op.getOperand(2);
12799   SDLoc dl(Op);
12800   SDValue CC;
12801   bool Inverted = false;
12802
12803   if (Cond.getOpcode() == ISD::SETCC) {
12804     // Check for setcc([su]{add,sub,mul}o == 0).
12805     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
12806         isa<ConstantSDNode>(Cond.getOperand(1)) &&
12807         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
12808         Cond.getOperand(0).getResNo() == 1 &&
12809         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
12810          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
12811          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
12812          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
12813          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
12814          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
12815       Inverted = true;
12816       Cond = Cond.getOperand(0);
12817     } else {
12818       SDValue NewCond = LowerSETCC(Cond, DAG);
12819       if (NewCond.getNode())
12820         Cond = NewCond;
12821     }
12822   }
12823 #if 0
12824   // FIXME: LowerXALUO doesn't handle these!!
12825   else if (Cond.getOpcode() == X86ISD::ADD  ||
12826            Cond.getOpcode() == X86ISD::SUB  ||
12827            Cond.getOpcode() == X86ISD::SMUL ||
12828            Cond.getOpcode() == X86ISD::UMUL)
12829     Cond = LowerXALUO(Cond, DAG);
12830 #endif
12831
12832   // Look pass (and (setcc_carry (cmp ...)), 1).
12833   if (Cond.getOpcode() == ISD::AND &&
12834       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
12835     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
12836     if (C && C->getAPIntValue() == 1)
12837       Cond = Cond.getOperand(0);
12838   }
12839
12840   // If condition flag is set by a X86ISD::CMP, then use it as the condition
12841   // setting operand in place of the X86ISD::SETCC.
12842   unsigned CondOpcode = Cond.getOpcode();
12843   if (CondOpcode == X86ISD::SETCC ||
12844       CondOpcode == X86ISD::SETCC_CARRY) {
12845     CC = Cond.getOperand(0);
12846
12847     SDValue Cmp = Cond.getOperand(1);
12848     unsigned Opc = Cmp.getOpcode();
12849     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
12850     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
12851       Cond = Cmp;
12852       addTest = false;
12853     } else {
12854       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
12855       default: break;
12856       case X86::COND_O:
12857       case X86::COND_B:
12858         // These can only come from an arithmetic instruction with overflow,
12859         // e.g. SADDO, UADDO.
12860         Cond = Cond.getNode()->getOperand(1);
12861         addTest = false;
12862         break;
12863       }
12864     }
12865   }
12866   CondOpcode = Cond.getOpcode();
12867   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
12868       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
12869       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
12870        Cond.getOperand(0).getValueType() != MVT::i8)) {
12871     SDValue LHS = Cond.getOperand(0);
12872     SDValue RHS = Cond.getOperand(1);
12873     unsigned X86Opcode;
12874     unsigned X86Cond;
12875     SDVTList VTs;
12876     // Keep this in sync with LowerXALUO, otherwise we might create redundant
12877     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
12878     // X86ISD::INC).
12879     switch (CondOpcode) {
12880     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
12881     case ISD::SADDO:
12882       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12883         if (C->isOne()) {
12884           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
12885           break;
12886         }
12887       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
12888     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
12889     case ISD::SSUBO:
12890       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12891         if (C->isOne()) {
12892           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
12893           break;
12894         }
12895       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
12896     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
12897     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
12898     default: llvm_unreachable("unexpected overflowing operator");
12899     }
12900     if (Inverted)
12901       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
12902     if (CondOpcode == ISD::UMULO)
12903       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
12904                           MVT::i32);
12905     else
12906       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
12907
12908     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
12909
12910     if (CondOpcode == ISD::UMULO)
12911       Cond = X86Op.getValue(2);
12912     else
12913       Cond = X86Op.getValue(1);
12914
12915     CC = DAG.getConstant(X86Cond, MVT::i8);
12916     addTest = false;
12917   } else {
12918     unsigned CondOpc;
12919     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
12920       SDValue Cmp = Cond.getOperand(0).getOperand(1);
12921       if (CondOpc == ISD::OR) {
12922         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
12923         // two branches instead of an explicit OR instruction with a
12924         // separate test.
12925         if (Cmp == Cond.getOperand(1).getOperand(1) &&
12926             isX86LogicalCmp(Cmp)) {
12927           CC = Cond.getOperand(0).getOperand(0);
12928           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
12929                               Chain, Dest, CC, Cmp);
12930           CC = Cond.getOperand(1).getOperand(0);
12931           Cond = Cmp;
12932           addTest = false;
12933         }
12934       } else { // ISD::AND
12935         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
12936         // two branches instead of an explicit AND instruction with a
12937         // separate test. However, we only do this if this block doesn't
12938         // have a fall-through edge, because this requires an explicit
12939         // jmp when the condition is false.
12940         if (Cmp == Cond.getOperand(1).getOperand(1) &&
12941             isX86LogicalCmp(Cmp) &&
12942             Op.getNode()->hasOneUse()) {
12943           X86::CondCode CCode =
12944             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
12945           CCode = X86::GetOppositeBranchCondition(CCode);
12946           CC = DAG.getConstant(CCode, MVT::i8);
12947           SDNode *User = *Op.getNode()->use_begin();
12948           // Look for an unconditional branch following this conditional branch.
12949           // We need this because we need to reverse the successors in order
12950           // to implement FCMP_OEQ.
12951           if (User->getOpcode() == ISD::BR) {
12952             SDValue FalseBB = User->getOperand(1);
12953             SDNode *NewBR =
12954               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
12955             assert(NewBR == User);
12956             (void)NewBR;
12957             Dest = FalseBB;
12958
12959             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
12960                                 Chain, Dest, CC, Cmp);
12961             X86::CondCode CCode =
12962               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
12963             CCode = X86::GetOppositeBranchCondition(CCode);
12964             CC = DAG.getConstant(CCode, MVT::i8);
12965             Cond = Cmp;
12966             addTest = false;
12967           }
12968         }
12969       }
12970     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
12971       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
12972       // It should be transformed during dag combiner except when the condition
12973       // is set by a arithmetics with overflow node.
12974       X86::CondCode CCode =
12975         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
12976       CCode = X86::GetOppositeBranchCondition(CCode);
12977       CC = DAG.getConstant(CCode, MVT::i8);
12978       Cond = Cond.getOperand(0).getOperand(1);
12979       addTest = false;
12980     } else if (Cond.getOpcode() == ISD::SETCC &&
12981                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
12982       // For FCMP_OEQ, we can emit
12983       // two branches instead of an explicit AND instruction with a
12984       // separate test. However, we only do this if this block doesn't
12985       // have a fall-through edge, because this requires an explicit
12986       // jmp when the condition is false.
12987       if (Op.getNode()->hasOneUse()) {
12988         SDNode *User = *Op.getNode()->use_begin();
12989         // Look for an unconditional branch following this conditional branch.
12990         // We need this because we need to reverse the successors in order
12991         // to implement FCMP_OEQ.
12992         if (User->getOpcode() == ISD::BR) {
12993           SDValue FalseBB = User->getOperand(1);
12994           SDNode *NewBR =
12995             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
12996           assert(NewBR == User);
12997           (void)NewBR;
12998           Dest = FalseBB;
12999
13000           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
13001                                     Cond.getOperand(0), Cond.getOperand(1));
13002           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
13003           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
13004           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13005                               Chain, Dest, CC, Cmp);
13006           CC = DAG.getConstant(X86::COND_P, MVT::i8);
13007           Cond = Cmp;
13008           addTest = false;
13009         }
13010       }
13011     } else if (Cond.getOpcode() == ISD::SETCC &&
13012                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
13013       // For FCMP_UNE, we can emit
13014       // two branches instead of an explicit AND instruction with a
13015       // separate test. However, we only do this if this block doesn't
13016       // have a fall-through edge, because this requires an explicit
13017       // jmp when the condition is false.
13018       if (Op.getNode()->hasOneUse()) {
13019         SDNode *User = *Op.getNode()->use_begin();
13020         // Look for an unconditional branch following this conditional branch.
13021         // We need this because we need to reverse the successors in order
13022         // to implement FCMP_UNE.
13023         if (User->getOpcode() == ISD::BR) {
13024           SDValue FalseBB = User->getOperand(1);
13025           SDNode *NewBR =
13026             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
13027           assert(NewBR == User);
13028           (void)NewBR;
13029
13030           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
13031                                     Cond.getOperand(0), Cond.getOperand(1));
13032           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
13033           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
13034           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13035                               Chain, Dest, CC, Cmp);
13036           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
13037           Cond = Cmp;
13038           addTest = false;
13039           Dest = FalseBB;
13040         }
13041       }
13042     }
13043   }
13044
13045   if (addTest) {
13046     // Look pass the truncate if the high bits are known zero.
13047     if (isTruncWithZeroHighBitsInput(Cond, DAG))
13048         Cond = Cond.getOperand(0);
13049
13050     // We know the result of AND is compared against zero. Try to match
13051     // it to BT.
13052     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
13053       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
13054       if (NewSetCC.getNode()) {
13055         CC = NewSetCC.getOperand(0);
13056         Cond = NewSetCC.getOperand(1);
13057         addTest = false;
13058       }
13059     }
13060   }
13061
13062   if (addTest) {
13063     X86::CondCode X86Cond = Inverted ? X86::COND_E : X86::COND_NE;
13064     CC = DAG.getConstant(X86Cond, MVT::i8);
13065     Cond = EmitTest(Cond, X86Cond, dl, DAG);
13066   }
13067   Cond = ConvertCmpIfNecessary(Cond, DAG);
13068   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
13069                      Chain, Dest, CC, Cond);
13070 }
13071
13072 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
13073 // Calls to _alloca is needed to probe the stack when allocating more than 4k
13074 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
13075 // that the guard pages used by the OS virtual memory manager are allocated in
13076 // correct sequence.
13077 SDValue
13078 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
13079                                            SelectionDAG &DAG) const {
13080   MachineFunction &MF = DAG.getMachineFunction();
13081   bool SplitStack = MF.shouldSplitStack();
13082   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMacho()) ||
13083                SplitStack;
13084   SDLoc dl(Op);
13085
13086   if (!Lower) {
13087     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13088     SDNode* Node = Op.getNode();
13089
13090     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
13091     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
13092         " not tell us which reg is the stack pointer!");
13093     EVT VT = Node->getValueType(0);
13094     SDValue Tmp1 = SDValue(Node, 0);
13095     SDValue Tmp2 = SDValue(Node, 1);
13096     SDValue Tmp3 = Node->getOperand(2);
13097     SDValue Chain = Tmp1.getOperand(0);
13098
13099     // Chain the dynamic stack allocation so that it doesn't modify the stack
13100     // pointer when other instructions are using the stack.
13101     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
13102         SDLoc(Node));
13103
13104     SDValue Size = Tmp2.getOperand(1);
13105     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
13106     Chain = SP.getValue(1);
13107     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
13108     const TargetFrameLowering &TFI = *DAG.getTarget().getFrameLowering();
13109     unsigned StackAlign = TFI.getStackAlignment();
13110     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
13111     if (Align > StackAlign)
13112       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
13113           DAG.getConstant(-(uint64_t)Align, VT));
13114     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
13115
13116     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
13117         DAG.getIntPtrConstant(0, true), SDValue(),
13118         SDLoc(Node));
13119
13120     SDValue Ops[2] = { Tmp1, Tmp2 };
13121     return DAG.getMergeValues(Ops, dl);
13122   }
13123
13124   // Get the inputs.
13125   SDValue Chain = Op.getOperand(0);
13126   SDValue Size  = Op.getOperand(1);
13127   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
13128   EVT VT = Op.getNode()->getValueType(0);
13129
13130   bool Is64Bit = Subtarget->is64Bit();
13131   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
13132
13133   if (SplitStack) {
13134     MachineRegisterInfo &MRI = MF.getRegInfo();
13135
13136     if (Is64Bit) {
13137       // The 64 bit implementation of segmented stacks needs to clobber both r10
13138       // r11. This makes it impossible to use it along with nested parameters.
13139       const Function *F = MF.getFunction();
13140
13141       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
13142            I != E; ++I)
13143         if (I->hasNestAttr())
13144           report_fatal_error("Cannot use segmented stacks with functions that "
13145                              "have nested arguments.");
13146     }
13147
13148     const TargetRegisterClass *AddrRegClass =
13149       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
13150     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
13151     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
13152     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
13153                                 DAG.getRegister(Vreg, SPTy));
13154     SDValue Ops1[2] = { Value, Chain };
13155     return DAG.getMergeValues(Ops1, dl);
13156   } else {
13157     SDValue Flag;
13158     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
13159
13160     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
13161     Flag = Chain.getValue(1);
13162     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
13163
13164     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
13165
13166     const X86RegisterInfo *RegInfo =
13167       static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
13168     unsigned SPReg = RegInfo->getStackRegister();
13169     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
13170     Chain = SP.getValue(1);
13171
13172     if (Align) {
13173       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
13174                        DAG.getConstant(-(uint64_t)Align, VT));
13175       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
13176     }
13177
13178     SDValue Ops1[2] = { SP, Chain };
13179     return DAG.getMergeValues(Ops1, dl);
13180   }
13181 }
13182
13183 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
13184   MachineFunction &MF = DAG.getMachineFunction();
13185   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
13186
13187   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
13188   SDLoc DL(Op);
13189
13190   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
13191     // vastart just stores the address of the VarArgsFrameIndex slot into the
13192     // memory location argument.
13193     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
13194                                    getPointerTy());
13195     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
13196                         MachinePointerInfo(SV), false, false, 0);
13197   }
13198
13199   // __va_list_tag:
13200   //   gp_offset         (0 - 6 * 8)
13201   //   fp_offset         (48 - 48 + 8 * 16)
13202   //   overflow_arg_area (point to parameters coming in memory).
13203   //   reg_save_area
13204   SmallVector<SDValue, 8> MemOps;
13205   SDValue FIN = Op.getOperand(1);
13206   // Store gp_offset
13207   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
13208                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
13209                                                MVT::i32),
13210                                FIN, MachinePointerInfo(SV), false, false, 0);
13211   MemOps.push_back(Store);
13212
13213   // Store fp_offset
13214   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
13215                     FIN, DAG.getIntPtrConstant(4));
13216   Store = DAG.getStore(Op.getOperand(0), DL,
13217                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
13218                                        MVT::i32),
13219                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
13220   MemOps.push_back(Store);
13221
13222   // Store ptr to overflow_arg_area
13223   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
13224                     FIN, DAG.getIntPtrConstant(4));
13225   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
13226                                     getPointerTy());
13227   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
13228                        MachinePointerInfo(SV, 8),
13229                        false, false, 0);
13230   MemOps.push_back(Store);
13231
13232   // Store ptr to reg_save_area.
13233   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
13234                     FIN, DAG.getIntPtrConstant(8));
13235   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
13236                                     getPointerTy());
13237   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
13238                        MachinePointerInfo(SV, 16), false, false, 0);
13239   MemOps.push_back(Store);
13240   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
13241 }
13242
13243 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
13244   assert(Subtarget->is64Bit() &&
13245          "LowerVAARG only handles 64-bit va_arg!");
13246   assert((Subtarget->isTargetLinux() ||
13247           Subtarget->isTargetDarwin()) &&
13248           "Unhandled target in LowerVAARG");
13249   assert(Op.getNode()->getNumOperands() == 4);
13250   SDValue Chain = Op.getOperand(0);
13251   SDValue SrcPtr = Op.getOperand(1);
13252   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
13253   unsigned Align = Op.getConstantOperandVal(3);
13254   SDLoc dl(Op);
13255
13256   EVT ArgVT = Op.getNode()->getValueType(0);
13257   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13258   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
13259   uint8_t ArgMode;
13260
13261   // Decide which area this value should be read from.
13262   // TODO: Implement the AMD64 ABI in its entirety. This simple
13263   // selection mechanism works only for the basic types.
13264   if (ArgVT == MVT::f80) {
13265     llvm_unreachable("va_arg for f80 not yet implemented");
13266   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
13267     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
13268   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
13269     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
13270   } else {
13271     llvm_unreachable("Unhandled argument type in LowerVAARG");
13272   }
13273
13274   if (ArgMode == 2) {
13275     // Sanity Check: Make sure using fp_offset makes sense.
13276     assert(!DAG.getTarget().Options.UseSoftFloat &&
13277            !(DAG.getMachineFunction()
13278                 .getFunction()->getAttributes()
13279                 .hasAttribute(AttributeSet::FunctionIndex,
13280                               Attribute::NoImplicitFloat)) &&
13281            Subtarget->hasSSE1());
13282   }
13283
13284   // Insert VAARG_64 node into the DAG
13285   // VAARG_64 returns two values: Variable Argument Address, Chain
13286   SmallVector<SDValue, 11> InstOps;
13287   InstOps.push_back(Chain);
13288   InstOps.push_back(SrcPtr);
13289   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
13290   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
13291   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
13292   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
13293   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
13294                                           VTs, InstOps, MVT::i64,
13295                                           MachinePointerInfo(SV),
13296                                           /*Align=*/0,
13297                                           /*Volatile=*/false,
13298                                           /*ReadMem=*/true,
13299                                           /*WriteMem=*/true);
13300   Chain = VAARG.getValue(1);
13301
13302   // Load the next argument and return it
13303   return DAG.getLoad(ArgVT, dl,
13304                      Chain,
13305                      VAARG,
13306                      MachinePointerInfo(),
13307                      false, false, false, 0);
13308 }
13309
13310 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
13311                            SelectionDAG &DAG) {
13312   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
13313   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
13314   SDValue Chain = Op.getOperand(0);
13315   SDValue DstPtr = Op.getOperand(1);
13316   SDValue SrcPtr = Op.getOperand(2);
13317   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
13318   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
13319   SDLoc DL(Op);
13320
13321   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
13322                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
13323                        false,
13324                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
13325 }
13326
13327 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
13328 // amount is a constant. Takes immediate version of shift as input.
13329 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
13330                                           SDValue SrcOp, uint64_t ShiftAmt,
13331                                           SelectionDAG &DAG) {
13332   MVT ElementType = VT.getVectorElementType();
13333
13334   // Fold this packed shift into its first operand if ShiftAmt is 0.
13335   if (ShiftAmt == 0)
13336     return SrcOp;
13337
13338   // Check for ShiftAmt >= element width
13339   if (ShiftAmt >= ElementType.getSizeInBits()) {
13340     if (Opc == X86ISD::VSRAI)
13341       ShiftAmt = ElementType.getSizeInBits() - 1;
13342     else
13343       return DAG.getConstant(0, VT);
13344   }
13345
13346   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
13347          && "Unknown target vector shift-by-constant node");
13348
13349   // Fold this packed vector shift into a build vector if SrcOp is a
13350   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
13351   if (VT == SrcOp.getSimpleValueType() &&
13352       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
13353     SmallVector<SDValue, 8> Elts;
13354     unsigned NumElts = SrcOp->getNumOperands();
13355     ConstantSDNode *ND;
13356
13357     switch(Opc) {
13358     default: llvm_unreachable(nullptr);
13359     case X86ISD::VSHLI:
13360       for (unsigned i=0; i!=NumElts; ++i) {
13361         SDValue CurrentOp = SrcOp->getOperand(i);
13362         if (CurrentOp->getOpcode() == ISD::UNDEF) {
13363           Elts.push_back(CurrentOp);
13364           continue;
13365         }
13366         ND = cast<ConstantSDNode>(CurrentOp);
13367         const APInt &C = ND->getAPIntValue();
13368         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
13369       }
13370       break;
13371     case X86ISD::VSRLI:
13372       for (unsigned i=0; i!=NumElts; ++i) {
13373         SDValue CurrentOp = SrcOp->getOperand(i);
13374         if (CurrentOp->getOpcode() == ISD::UNDEF) {
13375           Elts.push_back(CurrentOp);
13376           continue;
13377         }
13378         ND = cast<ConstantSDNode>(CurrentOp);
13379         const APInt &C = ND->getAPIntValue();
13380         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
13381       }
13382       break;
13383     case X86ISD::VSRAI:
13384       for (unsigned i=0; i!=NumElts; ++i) {
13385         SDValue CurrentOp = SrcOp->getOperand(i);
13386         if (CurrentOp->getOpcode() == ISD::UNDEF) {
13387           Elts.push_back(CurrentOp);
13388           continue;
13389         }
13390         ND = cast<ConstantSDNode>(CurrentOp);
13391         const APInt &C = ND->getAPIntValue();
13392         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
13393       }
13394       break;
13395     }
13396
13397     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
13398   }
13399
13400   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
13401 }
13402
13403 // getTargetVShiftNode - Handle vector element shifts where the shift amount
13404 // may or may not be a constant. Takes immediate version of shift as input.
13405 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
13406                                    SDValue SrcOp, SDValue ShAmt,
13407                                    SelectionDAG &DAG) {
13408   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
13409
13410   // Catch shift-by-constant.
13411   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
13412     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
13413                                       CShAmt->getZExtValue(), DAG);
13414
13415   // Change opcode to non-immediate version
13416   switch (Opc) {
13417     default: llvm_unreachable("Unknown target vector shift node");
13418     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
13419     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
13420     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
13421   }
13422
13423   // Need to build a vector containing shift amount
13424   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
13425   SDValue ShOps[4];
13426   ShOps[0] = ShAmt;
13427   ShOps[1] = DAG.getConstant(0, MVT::i32);
13428   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
13429   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, ShOps);
13430
13431   // The return type has to be a 128-bit type with the same element
13432   // type as the input type.
13433   MVT EltVT = VT.getVectorElementType();
13434   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
13435
13436   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
13437   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
13438 }
13439
13440 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
13441   SDLoc dl(Op);
13442   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
13443   switch (IntNo) {
13444   default: return SDValue();    // Don't custom lower most intrinsics.
13445   // Comparison intrinsics.
13446   case Intrinsic::x86_sse_comieq_ss:
13447   case Intrinsic::x86_sse_comilt_ss:
13448   case Intrinsic::x86_sse_comile_ss:
13449   case Intrinsic::x86_sse_comigt_ss:
13450   case Intrinsic::x86_sse_comige_ss:
13451   case Intrinsic::x86_sse_comineq_ss:
13452   case Intrinsic::x86_sse_ucomieq_ss:
13453   case Intrinsic::x86_sse_ucomilt_ss:
13454   case Intrinsic::x86_sse_ucomile_ss:
13455   case Intrinsic::x86_sse_ucomigt_ss:
13456   case Intrinsic::x86_sse_ucomige_ss:
13457   case Intrinsic::x86_sse_ucomineq_ss:
13458   case Intrinsic::x86_sse2_comieq_sd:
13459   case Intrinsic::x86_sse2_comilt_sd:
13460   case Intrinsic::x86_sse2_comile_sd:
13461   case Intrinsic::x86_sse2_comigt_sd:
13462   case Intrinsic::x86_sse2_comige_sd:
13463   case Intrinsic::x86_sse2_comineq_sd:
13464   case Intrinsic::x86_sse2_ucomieq_sd:
13465   case Intrinsic::x86_sse2_ucomilt_sd:
13466   case Intrinsic::x86_sse2_ucomile_sd:
13467   case Intrinsic::x86_sse2_ucomigt_sd:
13468   case Intrinsic::x86_sse2_ucomige_sd:
13469   case Intrinsic::x86_sse2_ucomineq_sd: {
13470     unsigned Opc;
13471     ISD::CondCode CC;
13472     switch (IntNo) {
13473     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13474     case Intrinsic::x86_sse_comieq_ss:
13475     case Intrinsic::x86_sse2_comieq_sd:
13476       Opc = X86ISD::COMI;
13477       CC = ISD::SETEQ;
13478       break;
13479     case Intrinsic::x86_sse_comilt_ss:
13480     case Intrinsic::x86_sse2_comilt_sd:
13481       Opc = X86ISD::COMI;
13482       CC = ISD::SETLT;
13483       break;
13484     case Intrinsic::x86_sse_comile_ss:
13485     case Intrinsic::x86_sse2_comile_sd:
13486       Opc = X86ISD::COMI;
13487       CC = ISD::SETLE;
13488       break;
13489     case Intrinsic::x86_sse_comigt_ss:
13490     case Intrinsic::x86_sse2_comigt_sd:
13491       Opc = X86ISD::COMI;
13492       CC = ISD::SETGT;
13493       break;
13494     case Intrinsic::x86_sse_comige_ss:
13495     case Intrinsic::x86_sse2_comige_sd:
13496       Opc = X86ISD::COMI;
13497       CC = ISD::SETGE;
13498       break;
13499     case Intrinsic::x86_sse_comineq_ss:
13500     case Intrinsic::x86_sse2_comineq_sd:
13501       Opc = X86ISD::COMI;
13502       CC = ISD::SETNE;
13503       break;
13504     case Intrinsic::x86_sse_ucomieq_ss:
13505     case Intrinsic::x86_sse2_ucomieq_sd:
13506       Opc = X86ISD::UCOMI;
13507       CC = ISD::SETEQ;
13508       break;
13509     case Intrinsic::x86_sse_ucomilt_ss:
13510     case Intrinsic::x86_sse2_ucomilt_sd:
13511       Opc = X86ISD::UCOMI;
13512       CC = ISD::SETLT;
13513       break;
13514     case Intrinsic::x86_sse_ucomile_ss:
13515     case Intrinsic::x86_sse2_ucomile_sd:
13516       Opc = X86ISD::UCOMI;
13517       CC = ISD::SETLE;
13518       break;
13519     case Intrinsic::x86_sse_ucomigt_ss:
13520     case Intrinsic::x86_sse2_ucomigt_sd:
13521       Opc = X86ISD::UCOMI;
13522       CC = ISD::SETGT;
13523       break;
13524     case Intrinsic::x86_sse_ucomige_ss:
13525     case Intrinsic::x86_sse2_ucomige_sd:
13526       Opc = X86ISD::UCOMI;
13527       CC = ISD::SETGE;
13528       break;
13529     case Intrinsic::x86_sse_ucomineq_ss:
13530     case Intrinsic::x86_sse2_ucomineq_sd:
13531       Opc = X86ISD::UCOMI;
13532       CC = ISD::SETNE;
13533       break;
13534     }
13535
13536     SDValue LHS = Op.getOperand(1);
13537     SDValue RHS = Op.getOperand(2);
13538     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
13539     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
13540     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
13541     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
13542                                 DAG.getConstant(X86CC, MVT::i8), Cond);
13543     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
13544   }
13545
13546   // Arithmetic intrinsics.
13547   case Intrinsic::x86_sse2_pmulu_dq:
13548   case Intrinsic::x86_avx2_pmulu_dq:
13549     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
13550                        Op.getOperand(1), Op.getOperand(2));
13551
13552   case Intrinsic::x86_sse41_pmuldq:
13553   case Intrinsic::x86_avx2_pmul_dq:
13554     return DAG.getNode(X86ISD::PMULDQ, dl, Op.getValueType(),
13555                        Op.getOperand(1), Op.getOperand(2));
13556
13557   case Intrinsic::x86_sse2_pmulhu_w:
13558   case Intrinsic::x86_avx2_pmulhu_w:
13559     return DAG.getNode(ISD::MULHU, dl, Op.getValueType(),
13560                        Op.getOperand(1), Op.getOperand(2));
13561
13562   case Intrinsic::x86_sse2_pmulh_w:
13563   case Intrinsic::x86_avx2_pmulh_w:
13564     return DAG.getNode(ISD::MULHS, dl, Op.getValueType(),
13565                        Op.getOperand(1), Op.getOperand(2));
13566
13567   // SSE2/AVX2 sub with unsigned saturation intrinsics
13568   case Intrinsic::x86_sse2_psubus_b:
13569   case Intrinsic::x86_sse2_psubus_w:
13570   case Intrinsic::x86_avx2_psubus_b:
13571   case Intrinsic::x86_avx2_psubus_w:
13572     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
13573                        Op.getOperand(1), Op.getOperand(2));
13574
13575   // SSE3/AVX horizontal add/sub intrinsics
13576   case Intrinsic::x86_sse3_hadd_ps:
13577   case Intrinsic::x86_sse3_hadd_pd:
13578   case Intrinsic::x86_avx_hadd_ps_256:
13579   case Intrinsic::x86_avx_hadd_pd_256:
13580   case Intrinsic::x86_sse3_hsub_ps:
13581   case Intrinsic::x86_sse3_hsub_pd:
13582   case Intrinsic::x86_avx_hsub_ps_256:
13583   case Intrinsic::x86_avx_hsub_pd_256:
13584   case Intrinsic::x86_ssse3_phadd_w_128:
13585   case Intrinsic::x86_ssse3_phadd_d_128:
13586   case Intrinsic::x86_avx2_phadd_w:
13587   case Intrinsic::x86_avx2_phadd_d:
13588   case Intrinsic::x86_ssse3_phsub_w_128:
13589   case Intrinsic::x86_ssse3_phsub_d_128:
13590   case Intrinsic::x86_avx2_phsub_w:
13591   case Intrinsic::x86_avx2_phsub_d: {
13592     unsigned Opcode;
13593     switch (IntNo) {
13594     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13595     case Intrinsic::x86_sse3_hadd_ps:
13596     case Intrinsic::x86_sse3_hadd_pd:
13597     case Intrinsic::x86_avx_hadd_ps_256:
13598     case Intrinsic::x86_avx_hadd_pd_256:
13599       Opcode = X86ISD::FHADD;
13600       break;
13601     case Intrinsic::x86_sse3_hsub_ps:
13602     case Intrinsic::x86_sse3_hsub_pd:
13603     case Intrinsic::x86_avx_hsub_ps_256:
13604     case Intrinsic::x86_avx_hsub_pd_256:
13605       Opcode = X86ISD::FHSUB;
13606       break;
13607     case Intrinsic::x86_ssse3_phadd_w_128:
13608     case Intrinsic::x86_ssse3_phadd_d_128:
13609     case Intrinsic::x86_avx2_phadd_w:
13610     case Intrinsic::x86_avx2_phadd_d:
13611       Opcode = X86ISD::HADD;
13612       break;
13613     case Intrinsic::x86_ssse3_phsub_w_128:
13614     case Intrinsic::x86_ssse3_phsub_d_128:
13615     case Intrinsic::x86_avx2_phsub_w:
13616     case Intrinsic::x86_avx2_phsub_d:
13617       Opcode = X86ISD::HSUB;
13618       break;
13619     }
13620     return DAG.getNode(Opcode, dl, Op.getValueType(),
13621                        Op.getOperand(1), Op.getOperand(2));
13622   }
13623
13624   // SSE2/SSE41/AVX2 integer max/min intrinsics.
13625   case Intrinsic::x86_sse2_pmaxu_b:
13626   case Intrinsic::x86_sse41_pmaxuw:
13627   case Intrinsic::x86_sse41_pmaxud:
13628   case Intrinsic::x86_avx2_pmaxu_b:
13629   case Intrinsic::x86_avx2_pmaxu_w:
13630   case Intrinsic::x86_avx2_pmaxu_d:
13631   case Intrinsic::x86_sse2_pminu_b:
13632   case Intrinsic::x86_sse41_pminuw:
13633   case Intrinsic::x86_sse41_pminud:
13634   case Intrinsic::x86_avx2_pminu_b:
13635   case Intrinsic::x86_avx2_pminu_w:
13636   case Intrinsic::x86_avx2_pminu_d:
13637   case Intrinsic::x86_sse41_pmaxsb:
13638   case Intrinsic::x86_sse2_pmaxs_w:
13639   case Intrinsic::x86_sse41_pmaxsd:
13640   case Intrinsic::x86_avx2_pmaxs_b:
13641   case Intrinsic::x86_avx2_pmaxs_w:
13642   case Intrinsic::x86_avx2_pmaxs_d:
13643   case Intrinsic::x86_sse41_pminsb:
13644   case Intrinsic::x86_sse2_pmins_w:
13645   case Intrinsic::x86_sse41_pminsd:
13646   case Intrinsic::x86_avx2_pmins_b:
13647   case Intrinsic::x86_avx2_pmins_w:
13648   case Intrinsic::x86_avx2_pmins_d: {
13649     unsigned Opcode;
13650     switch (IntNo) {
13651     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13652     case Intrinsic::x86_sse2_pmaxu_b:
13653     case Intrinsic::x86_sse41_pmaxuw:
13654     case Intrinsic::x86_sse41_pmaxud:
13655     case Intrinsic::x86_avx2_pmaxu_b:
13656     case Intrinsic::x86_avx2_pmaxu_w:
13657     case Intrinsic::x86_avx2_pmaxu_d:
13658       Opcode = X86ISD::UMAX;
13659       break;
13660     case Intrinsic::x86_sse2_pminu_b:
13661     case Intrinsic::x86_sse41_pminuw:
13662     case Intrinsic::x86_sse41_pminud:
13663     case Intrinsic::x86_avx2_pminu_b:
13664     case Intrinsic::x86_avx2_pminu_w:
13665     case Intrinsic::x86_avx2_pminu_d:
13666       Opcode = X86ISD::UMIN;
13667       break;
13668     case Intrinsic::x86_sse41_pmaxsb:
13669     case Intrinsic::x86_sse2_pmaxs_w:
13670     case Intrinsic::x86_sse41_pmaxsd:
13671     case Intrinsic::x86_avx2_pmaxs_b:
13672     case Intrinsic::x86_avx2_pmaxs_w:
13673     case Intrinsic::x86_avx2_pmaxs_d:
13674       Opcode = X86ISD::SMAX;
13675       break;
13676     case Intrinsic::x86_sse41_pminsb:
13677     case Intrinsic::x86_sse2_pmins_w:
13678     case Intrinsic::x86_sse41_pminsd:
13679     case Intrinsic::x86_avx2_pmins_b:
13680     case Intrinsic::x86_avx2_pmins_w:
13681     case Intrinsic::x86_avx2_pmins_d:
13682       Opcode = X86ISD::SMIN;
13683       break;
13684     }
13685     return DAG.getNode(Opcode, dl, Op.getValueType(),
13686                        Op.getOperand(1), Op.getOperand(2));
13687   }
13688
13689   // SSE/SSE2/AVX floating point max/min intrinsics.
13690   case Intrinsic::x86_sse_max_ps:
13691   case Intrinsic::x86_sse2_max_pd:
13692   case Intrinsic::x86_avx_max_ps_256:
13693   case Intrinsic::x86_avx_max_pd_256:
13694   case Intrinsic::x86_sse_min_ps:
13695   case Intrinsic::x86_sse2_min_pd:
13696   case Intrinsic::x86_avx_min_ps_256:
13697   case Intrinsic::x86_avx_min_pd_256: {
13698     unsigned Opcode;
13699     switch (IntNo) {
13700     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13701     case Intrinsic::x86_sse_max_ps:
13702     case Intrinsic::x86_sse2_max_pd:
13703     case Intrinsic::x86_avx_max_ps_256:
13704     case Intrinsic::x86_avx_max_pd_256:
13705       Opcode = X86ISD::FMAX;
13706       break;
13707     case Intrinsic::x86_sse_min_ps:
13708     case Intrinsic::x86_sse2_min_pd:
13709     case Intrinsic::x86_avx_min_ps_256:
13710     case Intrinsic::x86_avx_min_pd_256:
13711       Opcode = X86ISD::FMIN;
13712       break;
13713     }
13714     return DAG.getNode(Opcode, dl, Op.getValueType(),
13715                        Op.getOperand(1), Op.getOperand(2));
13716   }
13717
13718   // AVX2 variable shift intrinsics
13719   case Intrinsic::x86_avx2_psllv_d:
13720   case Intrinsic::x86_avx2_psllv_q:
13721   case Intrinsic::x86_avx2_psllv_d_256:
13722   case Intrinsic::x86_avx2_psllv_q_256:
13723   case Intrinsic::x86_avx2_psrlv_d:
13724   case Intrinsic::x86_avx2_psrlv_q:
13725   case Intrinsic::x86_avx2_psrlv_d_256:
13726   case Intrinsic::x86_avx2_psrlv_q_256:
13727   case Intrinsic::x86_avx2_psrav_d:
13728   case Intrinsic::x86_avx2_psrav_d_256: {
13729     unsigned Opcode;
13730     switch (IntNo) {
13731     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13732     case Intrinsic::x86_avx2_psllv_d:
13733     case Intrinsic::x86_avx2_psllv_q:
13734     case Intrinsic::x86_avx2_psllv_d_256:
13735     case Intrinsic::x86_avx2_psllv_q_256:
13736       Opcode = ISD::SHL;
13737       break;
13738     case Intrinsic::x86_avx2_psrlv_d:
13739     case Intrinsic::x86_avx2_psrlv_q:
13740     case Intrinsic::x86_avx2_psrlv_d_256:
13741     case Intrinsic::x86_avx2_psrlv_q_256:
13742       Opcode = ISD::SRL;
13743       break;
13744     case Intrinsic::x86_avx2_psrav_d:
13745     case Intrinsic::x86_avx2_psrav_d_256:
13746       Opcode = ISD::SRA;
13747       break;
13748     }
13749     return DAG.getNode(Opcode, dl, Op.getValueType(),
13750                        Op.getOperand(1), Op.getOperand(2));
13751   }
13752
13753   case Intrinsic::x86_sse2_packssdw_128:
13754   case Intrinsic::x86_sse2_packsswb_128:
13755   case Intrinsic::x86_avx2_packssdw:
13756   case Intrinsic::x86_avx2_packsswb:
13757     return DAG.getNode(X86ISD::PACKSS, dl, Op.getValueType(),
13758                        Op.getOperand(1), Op.getOperand(2));
13759
13760   case Intrinsic::x86_sse2_packuswb_128:
13761   case Intrinsic::x86_sse41_packusdw:
13762   case Intrinsic::x86_avx2_packuswb:
13763   case Intrinsic::x86_avx2_packusdw:
13764     return DAG.getNode(X86ISD::PACKUS, dl, Op.getValueType(),
13765                        Op.getOperand(1), Op.getOperand(2));
13766
13767   case Intrinsic::x86_ssse3_pshuf_b_128:
13768   case Intrinsic::x86_avx2_pshuf_b:
13769     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
13770                        Op.getOperand(1), Op.getOperand(2));
13771
13772   case Intrinsic::x86_sse2_pshuf_d:
13773     return DAG.getNode(X86ISD::PSHUFD, dl, Op.getValueType(),
13774                        Op.getOperand(1), Op.getOperand(2));
13775
13776   case Intrinsic::x86_sse2_pshufl_w:
13777     return DAG.getNode(X86ISD::PSHUFLW, dl, Op.getValueType(),
13778                        Op.getOperand(1), Op.getOperand(2));
13779
13780   case Intrinsic::x86_sse2_pshufh_w:
13781     return DAG.getNode(X86ISD::PSHUFHW, dl, Op.getValueType(),
13782                        Op.getOperand(1), Op.getOperand(2));
13783
13784   case Intrinsic::x86_ssse3_psign_b_128:
13785   case Intrinsic::x86_ssse3_psign_w_128:
13786   case Intrinsic::x86_ssse3_psign_d_128:
13787   case Intrinsic::x86_avx2_psign_b:
13788   case Intrinsic::x86_avx2_psign_w:
13789   case Intrinsic::x86_avx2_psign_d:
13790     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
13791                        Op.getOperand(1), Op.getOperand(2));
13792
13793   case Intrinsic::x86_sse41_insertps:
13794     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
13795                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
13796
13797   case Intrinsic::x86_avx_vperm2f128_ps_256:
13798   case Intrinsic::x86_avx_vperm2f128_pd_256:
13799   case Intrinsic::x86_avx_vperm2f128_si_256:
13800   case Intrinsic::x86_avx2_vperm2i128:
13801     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
13802                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
13803
13804   case Intrinsic::x86_avx2_permd:
13805   case Intrinsic::x86_avx2_permps:
13806     // Operands intentionally swapped. Mask is last operand to intrinsic,
13807     // but second operand for node/instruction.
13808     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
13809                        Op.getOperand(2), Op.getOperand(1));
13810
13811   case Intrinsic::x86_sse_sqrt_ps:
13812   case Intrinsic::x86_sse2_sqrt_pd:
13813   case Intrinsic::x86_avx_sqrt_ps_256:
13814   case Intrinsic::x86_avx_sqrt_pd_256:
13815     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
13816
13817   // ptest and testp intrinsics. The intrinsic these come from are designed to
13818   // return an integer value, not just an instruction so lower it to the ptest
13819   // or testp pattern and a setcc for the result.
13820   case Intrinsic::x86_sse41_ptestz:
13821   case Intrinsic::x86_sse41_ptestc:
13822   case Intrinsic::x86_sse41_ptestnzc:
13823   case Intrinsic::x86_avx_ptestz_256:
13824   case Intrinsic::x86_avx_ptestc_256:
13825   case Intrinsic::x86_avx_ptestnzc_256:
13826   case Intrinsic::x86_avx_vtestz_ps:
13827   case Intrinsic::x86_avx_vtestc_ps:
13828   case Intrinsic::x86_avx_vtestnzc_ps:
13829   case Intrinsic::x86_avx_vtestz_pd:
13830   case Intrinsic::x86_avx_vtestc_pd:
13831   case Intrinsic::x86_avx_vtestnzc_pd:
13832   case Intrinsic::x86_avx_vtestz_ps_256:
13833   case Intrinsic::x86_avx_vtestc_ps_256:
13834   case Intrinsic::x86_avx_vtestnzc_ps_256:
13835   case Intrinsic::x86_avx_vtestz_pd_256:
13836   case Intrinsic::x86_avx_vtestc_pd_256:
13837   case Intrinsic::x86_avx_vtestnzc_pd_256: {
13838     bool IsTestPacked = false;
13839     unsigned X86CC;
13840     switch (IntNo) {
13841     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
13842     case Intrinsic::x86_avx_vtestz_ps:
13843     case Intrinsic::x86_avx_vtestz_pd:
13844     case Intrinsic::x86_avx_vtestz_ps_256:
13845     case Intrinsic::x86_avx_vtestz_pd_256:
13846       IsTestPacked = true; // Fallthrough
13847     case Intrinsic::x86_sse41_ptestz:
13848     case Intrinsic::x86_avx_ptestz_256:
13849       // ZF = 1
13850       X86CC = X86::COND_E;
13851       break;
13852     case Intrinsic::x86_avx_vtestc_ps:
13853     case Intrinsic::x86_avx_vtestc_pd:
13854     case Intrinsic::x86_avx_vtestc_ps_256:
13855     case Intrinsic::x86_avx_vtestc_pd_256:
13856       IsTestPacked = true; // Fallthrough
13857     case Intrinsic::x86_sse41_ptestc:
13858     case Intrinsic::x86_avx_ptestc_256:
13859       // CF = 1
13860       X86CC = X86::COND_B;
13861       break;
13862     case Intrinsic::x86_avx_vtestnzc_ps:
13863     case Intrinsic::x86_avx_vtestnzc_pd:
13864     case Intrinsic::x86_avx_vtestnzc_ps_256:
13865     case Intrinsic::x86_avx_vtestnzc_pd_256:
13866       IsTestPacked = true; // Fallthrough
13867     case Intrinsic::x86_sse41_ptestnzc:
13868     case Intrinsic::x86_avx_ptestnzc_256:
13869       // ZF and CF = 0
13870       X86CC = X86::COND_A;
13871       break;
13872     }
13873
13874     SDValue LHS = Op.getOperand(1);
13875     SDValue RHS = Op.getOperand(2);
13876     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
13877     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
13878     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
13879     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
13880     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
13881   }
13882   case Intrinsic::x86_avx512_kortestz_w:
13883   case Intrinsic::x86_avx512_kortestc_w: {
13884     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
13885     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
13886     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
13887     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
13888     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
13889     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
13890     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
13891   }
13892
13893   // SSE/AVX shift intrinsics
13894   case Intrinsic::x86_sse2_psll_w:
13895   case Intrinsic::x86_sse2_psll_d:
13896   case Intrinsic::x86_sse2_psll_q:
13897   case Intrinsic::x86_avx2_psll_w:
13898   case Intrinsic::x86_avx2_psll_d:
13899   case Intrinsic::x86_avx2_psll_q:
13900   case Intrinsic::x86_sse2_psrl_w:
13901   case Intrinsic::x86_sse2_psrl_d:
13902   case Intrinsic::x86_sse2_psrl_q:
13903   case Intrinsic::x86_avx2_psrl_w:
13904   case Intrinsic::x86_avx2_psrl_d:
13905   case Intrinsic::x86_avx2_psrl_q:
13906   case Intrinsic::x86_sse2_psra_w:
13907   case Intrinsic::x86_sse2_psra_d:
13908   case Intrinsic::x86_avx2_psra_w:
13909   case Intrinsic::x86_avx2_psra_d: {
13910     unsigned Opcode;
13911     switch (IntNo) {
13912     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13913     case Intrinsic::x86_sse2_psll_w:
13914     case Intrinsic::x86_sse2_psll_d:
13915     case Intrinsic::x86_sse2_psll_q:
13916     case Intrinsic::x86_avx2_psll_w:
13917     case Intrinsic::x86_avx2_psll_d:
13918     case Intrinsic::x86_avx2_psll_q:
13919       Opcode = X86ISD::VSHL;
13920       break;
13921     case Intrinsic::x86_sse2_psrl_w:
13922     case Intrinsic::x86_sse2_psrl_d:
13923     case Intrinsic::x86_sse2_psrl_q:
13924     case Intrinsic::x86_avx2_psrl_w:
13925     case Intrinsic::x86_avx2_psrl_d:
13926     case Intrinsic::x86_avx2_psrl_q:
13927       Opcode = X86ISD::VSRL;
13928       break;
13929     case Intrinsic::x86_sse2_psra_w:
13930     case Intrinsic::x86_sse2_psra_d:
13931     case Intrinsic::x86_avx2_psra_w:
13932     case Intrinsic::x86_avx2_psra_d:
13933       Opcode = X86ISD::VSRA;
13934       break;
13935     }
13936     return DAG.getNode(Opcode, dl, Op.getValueType(),
13937                        Op.getOperand(1), Op.getOperand(2));
13938   }
13939
13940   // SSE/AVX immediate shift intrinsics
13941   case Intrinsic::x86_sse2_pslli_w:
13942   case Intrinsic::x86_sse2_pslli_d:
13943   case Intrinsic::x86_sse2_pslli_q:
13944   case Intrinsic::x86_avx2_pslli_w:
13945   case Intrinsic::x86_avx2_pslli_d:
13946   case Intrinsic::x86_avx2_pslli_q:
13947   case Intrinsic::x86_sse2_psrli_w:
13948   case Intrinsic::x86_sse2_psrli_d:
13949   case Intrinsic::x86_sse2_psrli_q:
13950   case Intrinsic::x86_avx2_psrli_w:
13951   case Intrinsic::x86_avx2_psrli_d:
13952   case Intrinsic::x86_avx2_psrli_q:
13953   case Intrinsic::x86_sse2_psrai_w:
13954   case Intrinsic::x86_sse2_psrai_d:
13955   case Intrinsic::x86_avx2_psrai_w:
13956   case Intrinsic::x86_avx2_psrai_d: {
13957     unsigned Opcode;
13958     switch (IntNo) {
13959     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13960     case Intrinsic::x86_sse2_pslli_w:
13961     case Intrinsic::x86_sse2_pslli_d:
13962     case Intrinsic::x86_sse2_pslli_q:
13963     case Intrinsic::x86_avx2_pslli_w:
13964     case Intrinsic::x86_avx2_pslli_d:
13965     case Intrinsic::x86_avx2_pslli_q:
13966       Opcode = X86ISD::VSHLI;
13967       break;
13968     case Intrinsic::x86_sse2_psrli_w:
13969     case Intrinsic::x86_sse2_psrli_d:
13970     case Intrinsic::x86_sse2_psrli_q:
13971     case Intrinsic::x86_avx2_psrli_w:
13972     case Intrinsic::x86_avx2_psrli_d:
13973     case Intrinsic::x86_avx2_psrli_q:
13974       Opcode = X86ISD::VSRLI;
13975       break;
13976     case Intrinsic::x86_sse2_psrai_w:
13977     case Intrinsic::x86_sse2_psrai_d:
13978     case Intrinsic::x86_avx2_psrai_w:
13979     case Intrinsic::x86_avx2_psrai_d:
13980       Opcode = X86ISD::VSRAI;
13981       break;
13982     }
13983     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
13984                                Op.getOperand(1), Op.getOperand(2), DAG);
13985   }
13986
13987   case Intrinsic::x86_sse42_pcmpistria128:
13988   case Intrinsic::x86_sse42_pcmpestria128:
13989   case Intrinsic::x86_sse42_pcmpistric128:
13990   case Intrinsic::x86_sse42_pcmpestric128:
13991   case Intrinsic::x86_sse42_pcmpistrio128:
13992   case Intrinsic::x86_sse42_pcmpestrio128:
13993   case Intrinsic::x86_sse42_pcmpistris128:
13994   case Intrinsic::x86_sse42_pcmpestris128:
13995   case Intrinsic::x86_sse42_pcmpistriz128:
13996   case Intrinsic::x86_sse42_pcmpestriz128: {
13997     unsigned Opcode;
13998     unsigned X86CC;
13999     switch (IntNo) {
14000     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14001     case Intrinsic::x86_sse42_pcmpistria128:
14002       Opcode = X86ISD::PCMPISTRI;
14003       X86CC = X86::COND_A;
14004       break;
14005     case Intrinsic::x86_sse42_pcmpestria128:
14006       Opcode = X86ISD::PCMPESTRI;
14007       X86CC = X86::COND_A;
14008       break;
14009     case Intrinsic::x86_sse42_pcmpistric128:
14010       Opcode = X86ISD::PCMPISTRI;
14011       X86CC = X86::COND_B;
14012       break;
14013     case Intrinsic::x86_sse42_pcmpestric128:
14014       Opcode = X86ISD::PCMPESTRI;
14015       X86CC = X86::COND_B;
14016       break;
14017     case Intrinsic::x86_sse42_pcmpistrio128:
14018       Opcode = X86ISD::PCMPISTRI;
14019       X86CC = X86::COND_O;
14020       break;
14021     case Intrinsic::x86_sse42_pcmpestrio128:
14022       Opcode = X86ISD::PCMPESTRI;
14023       X86CC = X86::COND_O;
14024       break;
14025     case Intrinsic::x86_sse42_pcmpistris128:
14026       Opcode = X86ISD::PCMPISTRI;
14027       X86CC = X86::COND_S;
14028       break;
14029     case Intrinsic::x86_sse42_pcmpestris128:
14030       Opcode = X86ISD::PCMPESTRI;
14031       X86CC = X86::COND_S;
14032       break;
14033     case Intrinsic::x86_sse42_pcmpistriz128:
14034       Opcode = X86ISD::PCMPISTRI;
14035       X86CC = X86::COND_E;
14036       break;
14037     case Intrinsic::x86_sse42_pcmpestriz128:
14038       Opcode = X86ISD::PCMPESTRI;
14039       X86CC = X86::COND_E;
14040       break;
14041     }
14042     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
14043     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
14044     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
14045     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14046                                 DAG.getConstant(X86CC, MVT::i8),
14047                                 SDValue(PCMP.getNode(), 1));
14048     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
14049   }
14050
14051   case Intrinsic::x86_sse42_pcmpistri128:
14052   case Intrinsic::x86_sse42_pcmpestri128: {
14053     unsigned Opcode;
14054     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
14055       Opcode = X86ISD::PCMPISTRI;
14056     else
14057       Opcode = X86ISD::PCMPESTRI;
14058
14059     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
14060     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
14061     return DAG.getNode(Opcode, dl, VTs, NewOps);
14062   }
14063   case Intrinsic::x86_fma_vfmadd_ps:
14064   case Intrinsic::x86_fma_vfmadd_pd:
14065   case Intrinsic::x86_fma_vfmsub_ps:
14066   case Intrinsic::x86_fma_vfmsub_pd:
14067   case Intrinsic::x86_fma_vfnmadd_ps:
14068   case Intrinsic::x86_fma_vfnmadd_pd:
14069   case Intrinsic::x86_fma_vfnmsub_ps:
14070   case Intrinsic::x86_fma_vfnmsub_pd:
14071   case Intrinsic::x86_fma_vfmaddsub_ps:
14072   case Intrinsic::x86_fma_vfmaddsub_pd:
14073   case Intrinsic::x86_fma_vfmsubadd_ps:
14074   case Intrinsic::x86_fma_vfmsubadd_pd:
14075   case Intrinsic::x86_fma_vfmadd_ps_256:
14076   case Intrinsic::x86_fma_vfmadd_pd_256:
14077   case Intrinsic::x86_fma_vfmsub_ps_256:
14078   case Intrinsic::x86_fma_vfmsub_pd_256:
14079   case Intrinsic::x86_fma_vfnmadd_ps_256:
14080   case Intrinsic::x86_fma_vfnmadd_pd_256:
14081   case Intrinsic::x86_fma_vfnmsub_ps_256:
14082   case Intrinsic::x86_fma_vfnmsub_pd_256:
14083   case Intrinsic::x86_fma_vfmaddsub_ps_256:
14084   case Intrinsic::x86_fma_vfmaddsub_pd_256:
14085   case Intrinsic::x86_fma_vfmsubadd_ps_256:
14086   case Intrinsic::x86_fma_vfmsubadd_pd_256:
14087   case Intrinsic::x86_fma_vfmadd_ps_512:
14088   case Intrinsic::x86_fma_vfmadd_pd_512:
14089   case Intrinsic::x86_fma_vfmsub_ps_512:
14090   case Intrinsic::x86_fma_vfmsub_pd_512:
14091   case Intrinsic::x86_fma_vfnmadd_ps_512:
14092   case Intrinsic::x86_fma_vfnmadd_pd_512:
14093   case Intrinsic::x86_fma_vfnmsub_ps_512:
14094   case Intrinsic::x86_fma_vfnmsub_pd_512:
14095   case Intrinsic::x86_fma_vfmaddsub_ps_512:
14096   case Intrinsic::x86_fma_vfmaddsub_pd_512:
14097   case Intrinsic::x86_fma_vfmsubadd_ps_512:
14098   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
14099     unsigned Opc;
14100     switch (IntNo) {
14101     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14102     case Intrinsic::x86_fma_vfmadd_ps:
14103     case Intrinsic::x86_fma_vfmadd_pd:
14104     case Intrinsic::x86_fma_vfmadd_ps_256:
14105     case Intrinsic::x86_fma_vfmadd_pd_256:
14106     case Intrinsic::x86_fma_vfmadd_ps_512:
14107     case Intrinsic::x86_fma_vfmadd_pd_512:
14108       Opc = X86ISD::FMADD;
14109       break;
14110     case Intrinsic::x86_fma_vfmsub_ps:
14111     case Intrinsic::x86_fma_vfmsub_pd:
14112     case Intrinsic::x86_fma_vfmsub_ps_256:
14113     case Intrinsic::x86_fma_vfmsub_pd_256:
14114     case Intrinsic::x86_fma_vfmsub_ps_512:
14115     case Intrinsic::x86_fma_vfmsub_pd_512:
14116       Opc = X86ISD::FMSUB;
14117       break;
14118     case Intrinsic::x86_fma_vfnmadd_ps:
14119     case Intrinsic::x86_fma_vfnmadd_pd:
14120     case Intrinsic::x86_fma_vfnmadd_ps_256:
14121     case Intrinsic::x86_fma_vfnmadd_pd_256:
14122     case Intrinsic::x86_fma_vfnmadd_ps_512:
14123     case Intrinsic::x86_fma_vfnmadd_pd_512:
14124       Opc = X86ISD::FNMADD;
14125       break;
14126     case Intrinsic::x86_fma_vfnmsub_ps:
14127     case Intrinsic::x86_fma_vfnmsub_pd:
14128     case Intrinsic::x86_fma_vfnmsub_ps_256:
14129     case Intrinsic::x86_fma_vfnmsub_pd_256:
14130     case Intrinsic::x86_fma_vfnmsub_ps_512:
14131     case Intrinsic::x86_fma_vfnmsub_pd_512:
14132       Opc = X86ISD::FNMSUB;
14133       break;
14134     case Intrinsic::x86_fma_vfmaddsub_ps:
14135     case Intrinsic::x86_fma_vfmaddsub_pd:
14136     case Intrinsic::x86_fma_vfmaddsub_ps_256:
14137     case Intrinsic::x86_fma_vfmaddsub_pd_256:
14138     case Intrinsic::x86_fma_vfmaddsub_ps_512:
14139     case Intrinsic::x86_fma_vfmaddsub_pd_512:
14140       Opc = X86ISD::FMADDSUB;
14141       break;
14142     case Intrinsic::x86_fma_vfmsubadd_ps:
14143     case Intrinsic::x86_fma_vfmsubadd_pd:
14144     case Intrinsic::x86_fma_vfmsubadd_ps_256:
14145     case Intrinsic::x86_fma_vfmsubadd_pd_256:
14146     case Intrinsic::x86_fma_vfmsubadd_ps_512:
14147     case Intrinsic::x86_fma_vfmsubadd_pd_512:
14148       Opc = X86ISD::FMSUBADD;
14149       break;
14150     }
14151
14152     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
14153                        Op.getOperand(2), Op.getOperand(3));
14154   }
14155   }
14156 }
14157
14158 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
14159                               SDValue Src, SDValue Mask, SDValue Base,
14160                               SDValue Index, SDValue ScaleOp, SDValue Chain,
14161                               const X86Subtarget * Subtarget) {
14162   SDLoc dl(Op);
14163   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
14164   assert(C && "Invalid scale type");
14165   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
14166   EVT MaskVT = MVT::getVectorVT(MVT::i1,
14167                              Index.getSimpleValueType().getVectorNumElements());
14168   SDValue MaskInReg;
14169   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
14170   if (MaskC)
14171     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
14172   else
14173     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
14174   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
14175   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
14176   SDValue Segment = DAG.getRegister(0, MVT::i32);
14177   if (Src.getOpcode() == ISD::UNDEF)
14178     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
14179   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
14180   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
14181   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
14182   return DAG.getMergeValues(RetOps, dl);
14183 }
14184
14185 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
14186                                SDValue Src, SDValue Mask, SDValue Base,
14187                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
14188   SDLoc dl(Op);
14189   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
14190   assert(C && "Invalid scale type");
14191   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
14192   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
14193   SDValue Segment = DAG.getRegister(0, MVT::i32);
14194   EVT MaskVT = MVT::getVectorVT(MVT::i1,
14195                              Index.getSimpleValueType().getVectorNumElements());
14196   SDValue MaskInReg;
14197   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
14198   if (MaskC)
14199     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
14200   else
14201     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
14202   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
14203   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
14204   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
14205   return SDValue(Res, 1);
14206 }
14207
14208 static SDValue getPrefetchNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
14209                                SDValue Mask, SDValue Base, SDValue Index,
14210                                SDValue ScaleOp, SDValue Chain) {
14211   SDLoc dl(Op);
14212   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
14213   assert(C && "Invalid scale type");
14214   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
14215   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
14216   SDValue Segment = DAG.getRegister(0, MVT::i32);
14217   EVT MaskVT =
14218     MVT::getVectorVT(MVT::i1, Index.getSimpleValueType().getVectorNumElements());
14219   SDValue MaskInReg;
14220   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
14221   if (MaskC)
14222     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
14223   else
14224     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
14225   //SDVTList VTs = DAG.getVTList(MVT::Other);
14226   SDValue Ops[] = {MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
14227   SDNode *Res = DAG.getMachineNode(Opc, dl, MVT::Other, Ops);
14228   return SDValue(Res, 0);
14229 }
14230
14231 // getReadPerformanceCounter - Handles the lowering of builtin intrinsics that
14232 // read performance monitor counters (x86_rdpmc).
14233 static void getReadPerformanceCounter(SDNode *N, SDLoc DL,
14234                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
14235                               SmallVectorImpl<SDValue> &Results) {
14236   assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
14237   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14238   SDValue LO, HI;
14239
14240   // The ECX register is used to select the index of the performance counter
14241   // to read.
14242   SDValue Chain = DAG.getCopyToReg(N->getOperand(0), DL, X86::ECX,
14243                                    N->getOperand(2));
14244   SDValue rd = DAG.getNode(X86ISD::RDPMC_DAG, DL, Tys, Chain);
14245
14246   // Reads the content of a 64-bit performance counter and returns it in the
14247   // registers EDX:EAX.
14248   if (Subtarget->is64Bit()) {
14249     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
14250     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
14251                             LO.getValue(2));
14252   } else {
14253     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
14254     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
14255                             LO.getValue(2));
14256   }
14257   Chain = HI.getValue(1);
14258
14259   if (Subtarget->is64Bit()) {
14260     // The EAX register is loaded with the low-order 32 bits. The EDX register
14261     // is loaded with the supported high-order bits of the counter.
14262     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
14263                               DAG.getConstant(32, MVT::i8));
14264     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
14265     Results.push_back(Chain);
14266     return;
14267   }
14268
14269   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
14270   SDValue Ops[] = { LO, HI };
14271   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
14272   Results.push_back(Pair);
14273   Results.push_back(Chain);
14274 }
14275
14276 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
14277 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
14278 // also used to custom lower READCYCLECOUNTER nodes.
14279 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
14280                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
14281                               SmallVectorImpl<SDValue> &Results) {
14282   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14283   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
14284   SDValue LO, HI;
14285
14286   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
14287   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
14288   // and the EAX register is loaded with the low-order 32 bits.
14289   if (Subtarget->is64Bit()) {
14290     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
14291     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
14292                             LO.getValue(2));
14293   } else {
14294     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
14295     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
14296                             LO.getValue(2));
14297   }
14298   SDValue Chain = HI.getValue(1);
14299
14300   if (Opcode == X86ISD::RDTSCP_DAG) {
14301     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
14302
14303     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
14304     // the ECX register. Add 'ecx' explicitly to the chain.
14305     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
14306                                      HI.getValue(2));
14307     // Explicitly store the content of ECX at the location passed in input
14308     // to the 'rdtscp' intrinsic.
14309     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
14310                          MachinePointerInfo(), false, false, 0);
14311   }
14312
14313   if (Subtarget->is64Bit()) {
14314     // The EDX register is loaded with the high-order 32 bits of the MSR, and
14315     // the EAX register is loaded with the low-order 32 bits.
14316     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
14317                               DAG.getConstant(32, MVT::i8));
14318     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
14319     Results.push_back(Chain);
14320     return;
14321   }
14322
14323   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
14324   SDValue Ops[] = { LO, HI };
14325   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
14326   Results.push_back(Pair);
14327   Results.push_back(Chain);
14328 }
14329
14330 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
14331                                      SelectionDAG &DAG) {
14332   SmallVector<SDValue, 2> Results;
14333   SDLoc DL(Op);
14334   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
14335                           Results);
14336   return DAG.getMergeValues(Results, DL);
14337 }
14338
14339 enum IntrinsicType {
14340   GATHER, SCATTER, PREFETCH, RDSEED, RDRAND, RDPMC, RDTSC, XTEST
14341 };
14342
14343 struct IntrinsicData {
14344   IntrinsicData(IntrinsicType IType, unsigned IOpc0, unsigned IOpc1)
14345     :Type(IType), Opc0(IOpc0), Opc1(IOpc1) {}
14346   IntrinsicType Type;
14347   unsigned      Opc0;
14348   unsigned      Opc1;
14349 };
14350
14351 std::map < unsigned, IntrinsicData> IntrMap;
14352 static void InitIntinsicsMap() {
14353   static bool Initialized = false;
14354   if (Initialized) 
14355     return;
14356   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qps_512,
14357                                 IntrinsicData(GATHER, X86::VGATHERQPSZrm, 0)));
14358   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qps_512,
14359                                 IntrinsicData(GATHER, X86::VGATHERQPSZrm, 0)));
14360   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpd_512,
14361                                 IntrinsicData(GATHER, X86::VGATHERQPDZrm, 0)));
14362   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpd_512,
14363                                 IntrinsicData(GATHER, X86::VGATHERDPDZrm, 0)));
14364   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dps_512,
14365                                 IntrinsicData(GATHER, X86::VGATHERDPSZrm, 0)));
14366   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpi_512, 
14367                                 IntrinsicData(GATHER, X86::VPGATHERQDZrm, 0)));
14368   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpq_512, 
14369                                 IntrinsicData(GATHER, X86::VPGATHERQQZrm, 0)));
14370   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpi_512, 
14371                                 IntrinsicData(GATHER, X86::VPGATHERDDZrm, 0)));
14372   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpq_512, 
14373                                 IntrinsicData(GATHER, X86::VPGATHERDQZrm, 0)));
14374
14375   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qps_512,
14376                                 IntrinsicData(SCATTER, X86::VSCATTERQPSZmr, 0)));
14377   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpd_512, 
14378                                 IntrinsicData(SCATTER, X86::VSCATTERQPDZmr, 0)));
14379   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpd_512, 
14380                                 IntrinsicData(SCATTER, X86::VSCATTERDPDZmr, 0)));
14381   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dps_512, 
14382                                 IntrinsicData(SCATTER, X86::VSCATTERDPSZmr, 0)));
14383   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpi_512, 
14384                                 IntrinsicData(SCATTER, X86::VPSCATTERQDZmr, 0)));
14385   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpq_512, 
14386                                 IntrinsicData(SCATTER, X86::VPSCATTERQQZmr, 0)));
14387   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpi_512, 
14388                                 IntrinsicData(SCATTER, X86::VPSCATTERDDZmr, 0)));
14389   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpq_512, 
14390                                 IntrinsicData(SCATTER, X86::VPSCATTERDQZmr, 0)));
14391    
14392   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_qps_512, 
14393                                 IntrinsicData(PREFETCH, X86::VGATHERPF0QPSm,
14394                                                         X86::VGATHERPF1QPSm)));
14395   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_qpd_512, 
14396                                 IntrinsicData(PREFETCH, X86::VGATHERPF0QPDm,
14397                                                         X86::VGATHERPF1QPDm)));
14398   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_dpd_512, 
14399                                 IntrinsicData(PREFETCH, X86::VGATHERPF0DPDm,
14400                                                         X86::VGATHERPF1DPDm)));
14401   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_dps_512, 
14402                                 IntrinsicData(PREFETCH, X86::VGATHERPF0DPSm,
14403                                                         X86::VGATHERPF1DPSm)));
14404   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_qps_512, 
14405                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0QPSm,
14406                                                         X86::VSCATTERPF1QPSm)));
14407   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_qpd_512, 
14408                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0QPDm,
14409                                                         X86::VSCATTERPF1QPDm)));
14410   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_dpd_512, 
14411                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0DPDm,
14412                                                         X86::VSCATTERPF1DPDm)));
14413   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_dps_512, 
14414                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0DPSm,
14415                                                         X86::VSCATTERPF1DPSm)));
14416   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_16,
14417                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
14418   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_32,
14419                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
14420   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_64,
14421                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
14422   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_16,
14423                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
14424   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_32,
14425                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
14426   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_64,
14427                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
14428   IntrMap.insert(std::make_pair(Intrinsic::x86_xtest,
14429                                 IntrinsicData(XTEST,  X86ISD::XTEST,  0)));
14430   IntrMap.insert(std::make_pair(Intrinsic::x86_rdtsc,
14431                                 IntrinsicData(RDTSC,  X86ISD::RDTSC_DAG, 0)));
14432   IntrMap.insert(std::make_pair(Intrinsic::x86_rdtscp,
14433                                 IntrinsicData(RDTSC,  X86ISD::RDTSCP_DAG, 0)));
14434   IntrMap.insert(std::make_pair(Intrinsic::x86_rdpmc,
14435                                 IntrinsicData(RDPMC,  X86ISD::RDPMC_DAG, 0)));
14436   Initialized = true;
14437 }
14438
14439 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
14440                                       SelectionDAG &DAG) {
14441   InitIntinsicsMap();
14442   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
14443   std::map < unsigned, IntrinsicData>::const_iterator itr = IntrMap.find(IntNo);
14444   if (itr == IntrMap.end())
14445     return SDValue();
14446
14447   SDLoc dl(Op);
14448   IntrinsicData Intr = itr->second;
14449   switch(Intr.Type) {
14450   case RDSEED:
14451   case RDRAND: {
14452     // Emit the node with the right value type.
14453     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
14454     SDValue Result = DAG.getNode(Intr.Opc0, dl, VTs, Op.getOperand(0));
14455
14456     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
14457     // Otherwise return the value from Rand, which is always 0, casted to i32.
14458     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
14459                       DAG.getConstant(1, Op->getValueType(1)),
14460                       DAG.getConstant(X86::COND_B, MVT::i32),
14461                       SDValue(Result.getNode(), 1) };
14462     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
14463                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
14464                                   Ops);
14465
14466     // Return { result, isValid, chain }.
14467     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
14468                        SDValue(Result.getNode(), 2));
14469   }
14470   case GATHER: {
14471   //gather(v1, mask, index, base, scale);
14472     SDValue Chain = Op.getOperand(0);
14473     SDValue Src   = Op.getOperand(2);
14474     SDValue Base  = Op.getOperand(3);
14475     SDValue Index = Op.getOperand(4);
14476     SDValue Mask  = Op.getOperand(5);
14477     SDValue Scale = Op.getOperand(6);
14478     return getGatherNode(Intr.Opc0, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
14479                           Subtarget);
14480   }
14481   case SCATTER: {
14482   //scatter(base, mask, index, v1, scale);
14483     SDValue Chain = Op.getOperand(0);
14484     SDValue Base  = Op.getOperand(2);
14485     SDValue Mask  = Op.getOperand(3);
14486     SDValue Index = Op.getOperand(4);
14487     SDValue Src   = Op.getOperand(5);
14488     SDValue Scale = Op.getOperand(6);
14489     return getScatterNode(Intr.Opc0, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
14490   }
14491   case PREFETCH: {
14492     SDValue Hint = Op.getOperand(6);
14493     unsigned HintVal;
14494     if (dyn_cast<ConstantSDNode> (Hint) == nullptr ||
14495         (HintVal = dyn_cast<ConstantSDNode> (Hint)->getZExtValue()) > 1)
14496       llvm_unreachable("Wrong prefetch hint in intrinsic: should be 0 or 1");
14497     unsigned Opcode = (HintVal ? Intr.Opc1 : Intr.Opc0);
14498     SDValue Chain = Op.getOperand(0);
14499     SDValue Mask  = Op.getOperand(2);
14500     SDValue Index = Op.getOperand(3);
14501     SDValue Base  = Op.getOperand(4);
14502     SDValue Scale = Op.getOperand(5);
14503     return getPrefetchNode(Opcode, Op, DAG, Mask, Base, Index, Scale, Chain);
14504   }
14505   // Read Time Stamp Counter (RDTSC) and Processor ID (RDTSCP).
14506   case RDTSC: {
14507     SmallVector<SDValue, 2> Results;
14508     getReadTimeStampCounter(Op.getNode(), dl, Intr.Opc0, DAG, Subtarget, Results);
14509     return DAG.getMergeValues(Results, dl);
14510   }
14511   // Read Performance Monitoring Counters.
14512   case RDPMC: {
14513     SmallVector<SDValue, 2> Results;
14514     getReadPerformanceCounter(Op.getNode(), dl, DAG, Subtarget, Results);
14515     return DAG.getMergeValues(Results, dl);
14516   }
14517   // XTEST intrinsics.
14518   case XTEST: {
14519     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
14520     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
14521     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14522                                 DAG.getConstant(X86::COND_NE, MVT::i8),
14523                                 InTrans);
14524     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
14525     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
14526                        Ret, SDValue(InTrans.getNode(), 1));
14527   }
14528   }
14529   llvm_unreachable("Unknown Intrinsic Type");
14530 }
14531
14532 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
14533                                            SelectionDAG &DAG) const {
14534   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
14535   MFI->setReturnAddressIsTaken(true);
14536
14537   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
14538     return SDValue();
14539
14540   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
14541   SDLoc dl(Op);
14542   EVT PtrVT = getPointerTy();
14543
14544   if (Depth > 0) {
14545     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
14546     const X86RegisterInfo *RegInfo =
14547       static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
14548     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
14549     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
14550                        DAG.getNode(ISD::ADD, dl, PtrVT,
14551                                    FrameAddr, Offset),
14552                        MachinePointerInfo(), false, false, false, 0);
14553   }
14554
14555   // Just load the return address.
14556   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
14557   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
14558                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
14559 }
14560
14561 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
14562   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
14563   MFI->setFrameAddressIsTaken(true);
14564
14565   EVT VT = Op.getValueType();
14566   SDLoc dl(Op);  // FIXME probably not meaningful
14567   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
14568   const X86RegisterInfo *RegInfo =
14569     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
14570   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
14571   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
14572           (FrameReg == X86::EBP && VT == MVT::i32)) &&
14573          "Invalid Frame Register!");
14574   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
14575   while (Depth--)
14576     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
14577                             MachinePointerInfo(),
14578                             false, false, false, 0);
14579   return FrameAddr;
14580 }
14581
14582 // FIXME? Maybe this could be a TableGen attribute on some registers and
14583 // this table could be generated automatically from RegInfo.
14584 unsigned X86TargetLowering::getRegisterByName(const char* RegName,
14585                                               EVT VT) const {
14586   unsigned Reg = StringSwitch<unsigned>(RegName)
14587                        .Case("esp", X86::ESP)
14588                        .Case("rsp", X86::RSP)
14589                        .Default(0);
14590   if (Reg)
14591     return Reg;
14592   report_fatal_error("Invalid register name global variable");
14593 }
14594
14595 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
14596                                                      SelectionDAG &DAG) const {
14597   const X86RegisterInfo *RegInfo =
14598     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
14599   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
14600 }
14601
14602 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
14603   SDValue Chain     = Op.getOperand(0);
14604   SDValue Offset    = Op.getOperand(1);
14605   SDValue Handler   = Op.getOperand(2);
14606   SDLoc dl      (Op);
14607
14608   EVT PtrVT = getPointerTy();
14609   const X86RegisterInfo *RegInfo =
14610     static_cast<const X86RegisterInfo*>(DAG.getTarget().getRegisterInfo());
14611   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
14612   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
14613           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
14614          "Invalid Frame Register!");
14615   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
14616   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
14617
14618   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
14619                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
14620   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
14621   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
14622                        false, false, 0);
14623   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
14624
14625   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
14626                      DAG.getRegister(StoreAddrReg, PtrVT));
14627 }
14628
14629 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
14630                                                SelectionDAG &DAG) const {
14631   SDLoc DL(Op);
14632   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
14633                      DAG.getVTList(MVT::i32, MVT::Other),
14634                      Op.getOperand(0), Op.getOperand(1));
14635 }
14636
14637 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
14638                                                 SelectionDAG &DAG) const {
14639   SDLoc DL(Op);
14640   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
14641                      Op.getOperand(0), Op.getOperand(1));
14642 }
14643
14644 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
14645   return Op.getOperand(0);
14646 }
14647
14648 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
14649                                                 SelectionDAG &DAG) const {
14650   SDValue Root = Op.getOperand(0);
14651   SDValue Trmp = Op.getOperand(1); // trampoline
14652   SDValue FPtr = Op.getOperand(2); // nested function
14653   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
14654   SDLoc dl (Op);
14655
14656   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
14657   const TargetRegisterInfo* TRI = DAG.getTarget().getRegisterInfo();
14658
14659   if (Subtarget->is64Bit()) {
14660     SDValue OutChains[6];
14661
14662     // Large code-model.
14663     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
14664     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
14665
14666     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
14667     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
14668
14669     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
14670
14671     // Load the pointer to the nested function into R11.
14672     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
14673     SDValue Addr = Trmp;
14674     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
14675                                 Addr, MachinePointerInfo(TrmpAddr),
14676                                 false, false, 0);
14677
14678     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
14679                        DAG.getConstant(2, MVT::i64));
14680     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
14681                                 MachinePointerInfo(TrmpAddr, 2),
14682                                 false, false, 2);
14683
14684     // Load the 'nest' parameter value into R10.
14685     // R10 is specified in X86CallingConv.td
14686     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
14687     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
14688                        DAG.getConstant(10, MVT::i64));
14689     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
14690                                 Addr, MachinePointerInfo(TrmpAddr, 10),
14691                                 false, false, 0);
14692
14693     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
14694                        DAG.getConstant(12, MVT::i64));
14695     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
14696                                 MachinePointerInfo(TrmpAddr, 12),
14697                                 false, false, 2);
14698
14699     // Jump to the nested function.
14700     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
14701     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
14702                        DAG.getConstant(20, MVT::i64));
14703     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
14704                                 Addr, MachinePointerInfo(TrmpAddr, 20),
14705                                 false, false, 0);
14706
14707     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
14708     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
14709                        DAG.getConstant(22, MVT::i64));
14710     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
14711                                 MachinePointerInfo(TrmpAddr, 22),
14712                                 false, false, 0);
14713
14714     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
14715   } else {
14716     const Function *Func =
14717       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
14718     CallingConv::ID CC = Func->getCallingConv();
14719     unsigned NestReg;
14720
14721     switch (CC) {
14722     default:
14723       llvm_unreachable("Unsupported calling convention");
14724     case CallingConv::C:
14725     case CallingConv::X86_StdCall: {
14726       // Pass 'nest' parameter in ECX.
14727       // Must be kept in sync with X86CallingConv.td
14728       NestReg = X86::ECX;
14729
14730       // Check that ECX wasn't needed by an 'inreg' parameter.
14731       FunctionType *FTy = Func->getFunctionType();
14732       const AttributeSet &Attrs = Func->getAttributes();
14733
14734       if (!Attrs.isEmpty() && !Func->isVarArg()) {
14735         unsigned InRegCount = 0;
14736         unsigned Idx = 1;
14737
14738         for (FunctionType::param_iterator I = FTy->param_begin(),
14739              E = FTy->param_end(); I != E; ++I, ++Idx)
14740           if (Attrs.hasAttribute(Idx, Attribute::InReg))
14741             // FIXME: should only count parameters that are lowered to integers.
14742             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
14743
14744         if (InRegCount > 2) {
14745           report_fatal_error("Nest register in use - reduce number of inreg"
14746                              " parameters!");
14747         }
14748       }
14749       break;
14750     }
14751     case CallingConv::X86_FastCall:
14752     case CallingConv::X86_ThisCall:
14753     case CallingConv::Fast:
14754       // Pass 'nest' parameter in EAX.
14755       // Must be kept in sync with X86CallingConv.td
14756       NestReg = X86::EAX;
14757       break;
14758     }
14759
14760     SDValue OutChains[4];
14761     SDValue Addr, Disp;
14762
14763     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
14764                        DAG.getConstant(10, MVT::i32));
14765     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
14766
14767     // This is storing the opcode for MOV32ri.
14768     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
14769     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
14770     OutChains[0] = DAG.getStore(Root, dl,
14771                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
14772                                 Trmp, MachinePointerInfo(TrmpAddr),
14773                                 false, false, 0);
14774
14775     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
14776                        DAG.getConstant(1, MVT::i32));
14777     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
14778                                 MachinePointerInfo(TrmpAddr, 1),
14779                                 false, false, 1);
14780
14781     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
14782     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
14783                        DAG.getConstant(5, MVT::i32));
14784     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
14785                                 MachinePointerInfo(TrmpAddr, 5),
14786                                 false, false, 1);
14787
14788     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
14789                        DAG.getConstant(6, MVT::i32));
14790     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
14791                                 MachinePointerInfo(TrmpAddr, 6),
14792                                 false, false, 1);
14793
14794     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
14795   }
14796 }
14797
14798 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
14799                                             SelectionDAG &DAG) const {
14800   /*
14801    The rounding mode is in bits 11:10 of FPSR, and has the following
14802    settings:
14803      00 Round to nearest
14804      01 Round to -inf
14805      10 Round to +inf
14806      11 Round to 0
14807
14808   FLT_ROUNDS, on the other hand, expects the following:
14809     -1 Undefined
14810      0 Round to 0
14811      1 Round to nearest
14812      2 Round to +inf
14813      3 Round to -inf
14814
14815   To perform the conversion, we do:
14816     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
14817   */
14818
14819   MachineFunction &MF = DAG.getMachineFunction();
14820   const TargetMachine &TM = MF.getTarget();
14821   const TargetFrameLowering &TFI = *TM.getFrameLowering();
14822   unsigned StackAlignment = TFI.getStackAlignment();
14823   MVT VT = Op.getSimpleValueType();
14824   SDLoc DL(Op);
14825
14826   // Save FP Control Word to stack slot
14827   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
14828   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
14829
14830   MachineMemOperand *MMO =
14831    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
14832                            MachineMemOperand::MOStore, 2, 2);
14833
14834   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
14835   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
14836                                           DAG.getVTList(MVT::Other),
14837                                           Ops, MVT::i16, MMO);
14838
14839   // Load FP Control Word from stack slot
14840   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
14841                             MachinePointerInfo(), false, false, false, 0);
14842
14843   // Transform as necessary
14844   SDValue CWD1 =
14845     DAG.getNode(ISD::SRL, DL, MVT::i16,
14846                 DAG.getNode(ISD::AND, DL, MVT::i16,
14847                             CWD, DAG.getConstant(0x800, MVT::i16)),
14848                 DAG.getConstant(11, MVT::i8));
14849   SDValue CWD2 =
14850     DAG.getNode(ISD::SRL, DL, MVT::i16,
14851                 DAG.getNode(ISD::AND, DL, MVT::i16,
14852                             CWD, DAG.getConstant(0x400, MVT::i16)),
14853                 DAG.getConstant(9, MVT::i8));
14854
14855   SDValue RetVal =
14856     DAG.getNode(ISD::AND, DL, MVT::i16,
14857                 DAG.getNode(ISD::ADD, DL, MVT::i16,
14858                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
14859                             DAG.getConstant(1, MVT::i16)),
14860                 DAG.getConstant(3, MVT::i16));
14861
14862   return DAG.getNode((VT.getSizeInBits() < 16 ?
14863                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
14864 }
14865
14866 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
14867   MVT VT = Op.getSimpleValueType();
14868   EVT OpVT = VT;
14869   unsigned NumBits = VT.getSizeInBits();
14870   SDLoc dl(Op);
14871
14872   Op = Op.getOperand(0);
14873   if (VT == MVT::i8) {
14874     // Zero extend to i32 since there is not an i8 bsr.
14875     OpVT = MVT::i32;
14876     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
14877   }
14878
14879   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
14880   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
14881   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
14882
14883   // If src is zero (i.e. bsr sets ZF), returns NumBits.
14884   SDValue Ops[] = {
14885     Op,
14886     DAG.getConstant(NumBits+NumBits-1, OpVT),
14887     DAG.getConstant(X86::COND_E, MVT::i8),
14888     Op.getValue(1)
14889   };
14890   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
14891
14892   // Finally xor with NumBits-1.
14893   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
14894
14895   if (VT == MVT::i8)
14896     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
14897   return Op;
14898 }
14899
14900 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
14901   MVT VT = Op.getSimpleValueType();
14902   EVT OpVT = VT;
14903   unsigned NumBits = VT.getSizeInBits();
14904   SDLoc dl(Op);
14905
14906   Op = Op.getOperand(0);
14907   if (VT == MVT::i8) {
14908     // Zero extend to i32 since there is not an i8 bsr.
14909     OpVT = MVT::i32;
14910     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
14911   }
14912
14913   // Issue a bsr (scan bits in reverse).
14914   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
14915   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
14916
14917   // And xor with NumBits-1.
14918   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
14919
14920   if (VT == MVT::i8)
14921     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
14922   return Op;
14923 }
14924
14925 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
14926   MVT VT = Op.getSimpleValueType();
14927   unsigned NumBits = VT.getSizeInBits();
14928   SDLoc dl(Op);
14929   Op = Op.getOperand(0);
14930
14931   // Issue a bsf (scan bits forward) which also sets EFLAGS.
14932   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
14933   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
14934
14935   // If src is zero (i.e. bsf sets ZF), returns NumBits.
14936   SDValue Ops[] = {
14937     Op,
14938     DAG.getConstant(NumBits, VT),
14939     DAG.getConstant(X86::COND_E, MVT::i8),
14940     Op.getValue(1)
14941   };
14942   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
14943 }
14944
14945 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
14946 // ones, and then concatenate the result back.
14947 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
14948   MVT VT = Op.getSimpleValueType();
14949
14950   assert(VT.is256BitVector() && VT.isInteger() &&
14951          "Unsupported value type for operation");
14952
14953   unsigned NumElems = VT.getVectorNumElements();
14954   SDLoc dl(Op);
14955
14956   // Extract the LHS vectors
14957   SDValue LHS = Op.getOperand(0);
14958   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
14959   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
14960
14961   // Extract the RHS vectors
14962   SDValue RHS = Op.getOperand(1);
14963   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
14964   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
14965
14966   MVT EltVT = VT.getVectorElementType();
14967   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
14968
14969   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
14970                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
14971                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
14972 }
14973
14974 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
14975   assert(Op.getSimpleValueType().is256BitVector() &&
14976          Op.getSimpleValueType().isInteger() &&
14977          "Only handle AVX 256-bit vector integer operation");
14978   return Lower256IntArith(Op, DAG);
14979 }
14980
14981 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
14982   assert(Op.getSimpleValueType().is256BitVector() &&
14983          Op.getSimpleValueType().isInteger() &&
14984          "Only handle AVX 256-bit vector integer operation");
14985   return Lower256IntArith(Op, DAG);
14986 }
14987
14988 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
14989                         SelectionDAG &DAG) {
14990   SDLoc dl(Op);
14991   MVT VT = Op.getSimpleValueType();
14992
14993   // Decompose 256-bit ops into smaller 128-bit ops.
14994   if (VT.is256BitVector() && !Subtarget->hasInt256())
14995     return Lower256IntArith(Op, DAG);
14996
14997   SDValue A = Op.getOperand(0);
14998   SDValue B = Op.getOperand(1);
14999
15000   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
15001   if (VT == MVT::v4i32) {
15002     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
15003            "Should not custom lower when pmuldq is available!");
15004
15005     // Extract the odd parts.
15006     static const int UnpackMask[] = { 1, -1, 3, -1 };
15007     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
15008     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
15009
15010     // Multiply the even parts.
15011     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
15012     // Now multiply odd parts.
15013     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
15014
15015     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
15016     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
15017
15018     // Merge the two vectors back together with a shuffle. This expands into 2
15019     // shuffles.
15020     static const int ShufMask[] = { 0, 4, 2, 6 };
15021     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
15022   }
15023
15024   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
15025          "Only know how to lower V2I64/V4I64/V8I64 multiply");
15026
15027   //  Ahi = psrlqi(a, 32);
15028   //  Bhi = psrlqi(b, 32);
15029   //
15030   //  AloBlo = pmuludq(a, b);
15031   //  AloBhi = pmuludq(a, Bhi);
15032   //  AhiBlo = pmuludq(Ahi, b);
15033
15034   //  AloBhi = psllqi(AloBhi, 32);
15035   //  AhiBlo = psllqi(AhiBlo, 32);
15036   //  return AloBlo + AloBhi + AhiBlo;
15037
15038   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
15039   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
15040
15041   // Bit cast to 32-bit vectors for MULUDQ
15042   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
15043                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
15044   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
15045   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
15046   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
15047   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
15048
15049   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
15050   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
15051   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
15052
15053   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
15054   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
15055
15056   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
15057   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
15058 }
15059
15060 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
15061   assert(Subtarget->isTargetWin64() && "Unexpected target");
15062   EVT VT = Op.getValueType();
15063   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
15064          "Unexpected return type for lowering");
15065
15066   RTLIB::Libcall LC;
15067   bool isSigned;
15068   switch (Op->getOpcode()) {
15069   default: llvm_unreachable("Unexpected request for libcall!");
15070   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
15071   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
15072   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
15073   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
15074   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
15075   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
15076   }
15077
15078   SDLoc dl(Op);
15079   SDValue InChain = DAG.getEntryNode();
15080
15081   TargetLowering::ArgListTy Args;
15082   TargetLowering::ArgListEntry Entry;
15083   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
15084     EVT ArgVT = Op->getOperand(i).getValueType();
15085     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
15086            "Unexpected argument type for lowering");
15087     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
15088     Entry.Node = StackPtr;
15089     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
15090                            false, false, 16);
15091     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
15092     Entry.Ty = PointerType::get(ArgTy,0);
15093     Entry.isSExt = false;
15094     Entry.isZExt = false;
15095     Args.push_back(Entry);
15096   }
15097
15098   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
15099                                          getPointerTy());
15100
15101   TargetLowering::CallLoweringInfo CLI(DAG);
15102   CLI.setDebugLoc(dl).setChain(InChain)
15103     .setCallee(getLibcallCallingConv(LC),
15104                static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
15105                Callee, std::move(Args), 0)
15106     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
15107
15108   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
15109   return DAG.getNode(ISD::BITCAST, dl, VT, CallInfo.first);
15110 }
15111
15112 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
15113                              SelectionDAG &DAG) {
15114   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
15115   EVT VT = Op0.getValueType();
15116   SDLoc dl(Op);
15117
15118   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
15119          (VT == MVT::v8i32 && Subtarget->hasInt256()));
15120
15121   // Get the high parts.
15122   const int Mask[] = {1, 2, 3, 4, 5, 6, 7, 8};
15123   SDValue Hi0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
15124   SDValue Hi1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
15125
15126   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
15127   // ints.
15128   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
15129   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
15130   unsigned Opcode =
15131       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
15132   SDValue Mul1 = DAG.getNode(ISD::BITCAST, dl, VT,
15133                              DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
15134   SDValue Mul2 = DAG.getNode(ISD::BITCAST, dl, VT,
15135                              DAG.getNode(Opcode, dl, MulVT, Hi0, Hi1));
15136
15137   // Shuffle it back into the right order.
15138   const int HighMask[] = {1, 5, 3, 7, 9, 13, 11, 15};
15139   SDValue Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
15140   const int LowMask[] = {0, 4, 2, 6, 8, 12, 10, 14};
15141   SDValue Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
15142
15143   // If we have a signed multiply but no PMULDQ fix up the high parts of a
15144   // unsigned multiply.
15145   if (IsSigned && !Subtarget->hasSSE41()) {
15146     SDValue ShAmt =
15147         DAG.getConstant(31, DAG.getTargetLoweringInfo().getShiftAmountTy(VT));
15148     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
15149                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
15150     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
15151                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
15152
15153     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
15154     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
15155   }
15156
15157   return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getValueType(), Highs, Lows);
15158 }
15159
15160 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
15161                                          const X86Subtarget *Subtarget) {
15162   MVT VT = Op.getSimpleValueType();
15163   SDLoc dl(Op);
15164   SDValue R = Op.getOperand(0);
15165   SDValue Amt = Op.getOperand(1);
15166
15167   // Optimize shl/srl/sra with constant shift amount.
15168   if (auto *BVAmt = dyn_cast<BuildVectorSDNode>(Amt)) {
15169     if (SDValue Splat = BVAmt->getConstantSplatValue()) {
15170       uint64_t ShiftAmt = Splat.getOpcode() == ISD::UNDEF
15171                               ? 0
15172                               : cast<ConstantSDNode>(Splat)->getZExtValue();
15173
15174       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
15175           (Subtarget->hasInt256() &&
15176            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
15177           (Subtarget->hasAVX512() &&
15178            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
15179         if (Op.getOpcode() == ISD::SHL)
15180           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
15181                                             DAG);
15182         if (Op.getOpcode() == ISD::SRL)
15183           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
15184                                             DAG);
15185         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
15186           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
15187                                             DAG);
15188       }
15189
15190       if (VT == MVT::v16i8) {
15191         if (Op.getOpcode() == ISD::SHL) {
15192           // Make a large shift.
15193           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
15194                                                    MVT::v8i16, R, ShiftAmt,
15195                                                    DAG);
15196           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
15197           // Zero out the rightmost bits.
15198           SmallVector<SDValue, 16> V(16,
15199                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
15200                                                      MVT::i8));
15201           return DAG.getNode(ISD::AND, dl, VT, SHL,
15202                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15203         }
15204         if (Op.getOpcode() == ISD::SRL) {
15205           // Make a large shift.
15206           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
15207                                                    MVT::v8i16, R, ShiftAmt,
15208                                                    DAG);
15209           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
15210           // Zero out the leftmost bits.
15211           SmallVector<SDValue, 16> V(16,
15212                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
15213                                                      MVT::i8));
15214           return DAG.getNode(ISD::AND, dl, VT, SRL,
15215                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15216         }
15217         if (Op.getOpcode() == ISD::SRA) {
15218           if (ShiftAmt == 7) {
15219             // R s>> 7  ===  R s< 0
15220             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
15221             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
15222           }
15223
15224           // R s>> a === ((R u>> a) ^ m) - m
15225           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
15226           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
15227                                                          MVT::i8));
15228           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
15229           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
15230           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
15231           return Res;
15232         }
15233         llvm_unreachable("Unknown shift opcode.");
15234       }
15235
15236       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
15237         if (Op.getOpcode() == ISD::SHL) {
15238           // Make a large shift.
15239           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
15240                                                    MVT::v16i16, R, ShiftAmt,
15241                                                    DAG);
15242           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
15243           // Zero out the rightmost bits.
15244           SmallVector<SDValue, 32> V(32,
15245                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
15246                                                      MVT::i8));
15247           return DAG.getNode(ISD::AND, dl, VT, SHL,
15248                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15249         }
15250         if (Op.getOpcode() == ISD::SRL) {
15251           // Make a large shift.
15252           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
15253                                                    MVT::v16i16, R, ShiftAmt,
15254                                                    DAG);
15255           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
15256           // Zero out the leftmost bits.
15257           SmallVector<SDValue, 32> V(32,
15258                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
15259                                                      MVT::i8));
15260           return DAG.getNode(ISD::AND, dl, VT, SRL,
15261                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
15262         }
15263         if (Op.getOpcode() == ISD::SRA) {
15264           if (ShiftAmt == 7) {
15265             // R s>> 7  ===  R s< 0
15266             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
15267             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
15268           }
15269
15270           // R s>> a === ((R u>> a) ^ m) - m
15271           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
15272           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
15273                                                          MVT::i8));
15274           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
15275           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
15276           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
15277           return Res;
15278         }
15279         llvm_unreachable("Unknown shift opcode.");
15280       }
15281     }
15282   }
15283
15284   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
15285   if (!Subtarget->is64Bit() &&
15286       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
15287       Amt.getOpcode() == ISD::BITCAST &&
15288       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
15289     Amt = Amt.getOperand(0);
15290     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
15291                      VT.getVectorNumElements();
15292     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
15293     uint64_t ShiftAmt = 0;
15294     for (unsigned i = 0; i != Ratio; ++i) {
15295       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
15296       if (!C)
15297         return SDValue();
15298       // 6 == Log2(64)
15299       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
15300     }
15301     // Check remaining shift amounts.
15302     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
15303       uint64_t ShAmt = 0;
15304       for (unsigned j = 0; j != Ratio; ++j) {
15305         ConstantSDNode *C =
15306           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
15307         if (!C)
15308           return SDValue();
15309         // 6 == Log2(64)
15310         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
15311       }
15312       if (ShAmt != ShiftAmt)
15313         return SDValue();
15314     }
15315     switch (Op.getOpcode()) {
15316     default:
15317       llvm_unreachable("Unknown shift opcode!");
15318     case ISD::SHL:
15319       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
15320                                         DAG);
15321     case ISD::SRL:
15322       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
15323                                         DAG);
15324     case ISD::SRA:
15325       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
15326                                         DAG);
15327     }
15328   }
15329
15330   return SDValue();
15331 }
15332
15333 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
15334                                         const X86Subtarget* Subtarget) {
15335   MVT VT = Op.getSimpleValueType();
15336   SDLoc dl(Op);
15337   SDValue R = Op.getOperand(0);
15338   SDValue Amt = Op.getOperand(1);
15339
15340   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
15341       VT == MVT::v4i32 || VT == MVT::v8i16 ||
15342       (Subtarget->hasInt256() &&
15343        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
15344         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
15345        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
15346     SDValue BaseShAmt;
15347     EVT EltVT = VT.getVectorElementType();
15348
15349     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
15350       unsigned NumElts = VT.getVectorNumElements();
15351       unsigned i, j;
15352       for (i = 0; i != NumElts; ++i) {
15353         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
15354           continue;
15355         break;
15356       }
15357       for (j = i; j != NumElts; ++j) {
15358         SDValue Arg = Amt.getOperand(j);
15359         if (Arg.getOpcode() == ISD::UNDEF) continue;
15360         if (Arg != Amt.getOperand(i))
15361           break;
15362       }
15363       if (i != NumElts && j == NumElts)
15364         BaseShAmt = Amt.getOperand(i);
15365     } else {
15366       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
15367         Amt = Amt.getOperand(0);
15368       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
15369                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
15370         SDValue InVec = Amt.getOperand(0);
15371         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
15372           unsigned NumElts = InVec.getValueType().getVectorNumElements();
15373           unsigned i = 0;
15374           for (; i != NumElts; ++i) {
15375             SDValue Arg = InVec.getOperand(i);
15376             if (Arg.getOpcode() == ISD::UNDEF) continue;
15377             BaseShAmt = Arg;
15378             break;
15379           }
15380         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
15381            if (ConstantSDNode *C =
15382                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
15383              unsigned SplatIdx =
15384                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
15385              if (C->getZExtValue() == SplatIdx)
15386                BaseShAmt = InVec.getOperand(1);
15387            }
15388         }
15389         if (!BaseShAmt.getNode())
15390           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
15391                                   DAG.getIntPtrConstant(0));
15392       }
15393     }
15394
15395     if (BaseShAmt.getNode()) {
15396       if (EltVT.bitsGT(MVT::i32))
15397         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
15398       else if (EltVT.bitsLT(MVT::i32))
15399         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
15400
15401       switch (Op.getOpcode()) {
15402       default:
15403         llvm_unreachable("Unknown shift opcode!");
15404       case ISD::SHL:
15405         switch (VT.SimpleTy) {
15406         default: return SDValue();
15407         case MVT::v2i64:
15408         case MVT::v4i32:
15409         case MVT::v8i16:
15410         case MVT::v4i64:
15411         case MVT::v8i32:
15412         case MVT::v16i16:
15413         case MVT::v16i32:
15414         case MVT::v8i64:
15415           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
15416         }
15417       case ISD::SRA:
15418         switch (VT.SimpleTy) {
15419         default: return SDValue();
15420         case MVT::v4i32:
15421         case MVT::v8i16:
15422         case MVT::v8i32:
15423         case MVT::v16i16:
15424         case MVT::v16i32:
15425         case MVT::v8i64:
15426           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
15427         }
15428       case ISD::SRL:
15429         switch (VT.SimpleTy) {
15430         default: return SDValue();
15431         case MVT::v2i64:
15432         case MVT::v4i32:
15433         case MVT::v8i16:
15434         case MVT::v4i64:
15435         case MVT::v8i32:
15436         case MVT::v16i16:
15437         case MVT::v16i32:
15438         case MVT::v8i64:
15439           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
15440         }
15441       }
15442     }
15443   }
15444
15445   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
15446   if (!Subtarget->is64Bit() &&
15447       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
15448       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
15449       Amt.getOpcode() == ISD::BITCAST &&
15450       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
15451     Amt = Amt.getOperand(0);
15452     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
15453                      VT.getVectorNumElements();
15454     std::vector<SDValue> Vals(Ratio);
15455     for (unsigned i = 0; i != Ratio; ++i)
15456       Vals[i] = Amt.getOperand(i);
15457     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
15458       for (unsigned j = 0; j != Ratio; ++j)
15459         if (Vals[j] != Amt.getOperand(i + j))
15460           return SDValue();
15461     }
15462     switch (Op.getOpcode()) {
15463     default:
15464       llvm_unreachable("Unknown shift opcode!");
15465     case ISD::SHL:
15466       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
15467     case ISD::SRL:
15468       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
15469     case ISD::SRA:
15470       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
15471     }
15472   }
15473
15474   return SDValue();
15475 }
15476
15477 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
15478                           SelectionDAG &DAG) {
15479   MVT VT = Op.getSimpleValueType();
15480   SDLoc dl(Op);
15481   SDValue R = Op.getOperand(0);
15482   SDValue Amt = Op.getOperand(1);
15483   SDValue V;
15484
15485   assert(VT.isVector() && "Custom lowering only for vector shifts!");
15486   assert(Subtarget->hasSSE2() && "Only custom lower when we have SSE2!");
15487
15488   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
15489   if (V.getNode())
15490     return V;
15491
15492   V = LowerScalarVariableShift(Op, DAG, Subtarget);
15493   if (V.getNode())
15494       return V;
15495
15496   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
15497     return Op;
15498   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
15499   if (Subtarget->hasInt256()) {
15500     if (Op.getOpcode() == ISD::SRL &&
15501         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
15502          VT == MVT::v4i64 || VT == MVT::v8i32))
15503       return Op;
15504     if (Op.getOpcode() == ISD::SHL &&
15505         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
15506          VT == MVT::v4i64 || VT == MVT::v8i32))
15507       return Op;
15508     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
15509       return Op;
15510   }
15511
15512   // If possible, lower this packed shift into a vector multiply instead of
15513   // expanding it into a sequence of scalar shifts.
15514   // Do this only if the vector shift count is a constant build_vector.
15515   if (Op.getOpcode() == ISD::SHL && 
15516       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
15517        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
15518       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
15519     SmallVector<SDValue, 8> Elts;
15520     EVT SVT = VT.getScalarType();
15521     unsigned SVTBits = SVT.getSizeInBits();
15522     const APInt &One = APInt(SVTBits, 1);
15523     unsigned NumElems = VT.getVectorNumElements();
15524
15525     for (unsigned i=0; i !=NumElems; ++i) {
15526       SDValue Op = Amt->getOperand(i);
15527       if (Op->getOpcode() == ISD::UNDEF) {
15528         Elts.push_back(Op);
15529         continue;
15530       }
15531
15532       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
15533       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
15534       uint64_t ShAmt = C.getZExtValue();
15535       if (ShAmt >= SVTBits) {
15536         Elts.push_back(DAG.getUNDEF(SVT));
15537         continue;
15538       }
15539       Elts.push_back(DAG.getConstant(One.shl(ShAmt), SVT));
15540     }
15541     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
15542     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
15543   }
15544
15545   // Lower SHL with variable shift amount.
15546   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
15547     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
15548
15549     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
15550     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
15551     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
15552     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
15553   }
15554
15555   // If possible, lower this shift as a sequence of two shifts by
15556   // constant plus a MOVSS/MOVSD instead of scalarizing it.
15557   // Example:
15558   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
15559   //
15560   // Could be rewritten as:
15561   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
15562   //
15563   // The advantage is that the two shifts from the example would be
15564   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
15565   // the vector shift into four scalar shifts plus four pairs of vector
15566   // insert/extract.
15567   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
15568       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
15569     unsigned TargetOpcode = X86ISD::MOVSS;
15570     bool CanBeSimplified;
15571     // The splat value for the first packed shift (the 'X' from the example).
15572     SDValue Amt1 = Amt->getOperand(0);
15573     // The splat value for the second packed shift (the 'Y' from the example).
15574     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
15575                                         Amt->getOperand(2);
15576
15577     // See if it is possible to replace this node with a sequence of
15578     // two shifts followed by a MOVSS/MOVSD
15579     if (VT == MVT::v4i32) {
15580       // Check if it is legal to use a MOVSS.
15581       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
15582                         Amt2 == Amt->getOperand(3);
15583       if (!CanBeSimplified) {
15584         // Otherwise, check if we can still simplify this node using a MOVSD.
15585         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
15586                           Amt->getOperand(2) == Amt->getOperand(3);
15587         TargetOpcode = X86ISD::MOVSD;
15588         Amt2 = Amt->getOperand(2);
15589       }
15590     } else {
15591       // Do similar checks for the case where the machine value type
15592       // is MVT::v8i16.
15593       CanBeSimplified = Amt1 == Amt->getOperand(1);
15594       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
15595         CanBeSimplified = Amt2 == Amt->getOperand(i);
15596
15597       if (!CanBeSimplified) {
15598         TargetOpcode = X86ISD::MOVSD;
15599         CanBeSimplified = true;
15600         Amt2 = Amt->getOperand(4);
15601         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
15602           CanBeSimplified = Amt1 == Amt->getOperand(i);
15603         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
15604           CanBeSimplified = Amt2 == Amt->getOperand(j);
15605       }
15606     }
15607     
15608     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
15609         isa<ConstantSDNode>(Amt2)) {
15610       // Replace this node with two shifts followed by a MOVSS/MOVSD.
15611       EVT CastVT = MVT::v4i32;
15612       SDValue Splat1 = 
15613         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), VT);
15614       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
15615       SDValue Splat2 = 
15616         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), VT);
15617       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
15618       if (TargetOpcode == X86ISD::MOVSD)
15619         CastVT = MVT::v2i64;
15620       SDValue BitCast1 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift1);
15621       SDValue BitCast2 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift2);
15622       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
15623                                             BitCast1, DAG);
15624       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
15625     }
15626   }
15627
15628   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
15629     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
15630
15631     // a = a << 5;
15632     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
15633     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
15634
15635     // Turn 'a' into a mask suitable for VSELECT
15636     SDValue VSelM = DAG.getConstant(0x80, VT);
15637     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
15638     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
15639
15640     SDValue CM1 = DAG.getConstant(0x0f, VT);
15641     SDValue CM2 = DAG.getConstant(0x3f, VT);
15642
15643     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
15644     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
15645     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
15646     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
15647     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
15648
15649     // a += a
15650     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
15651     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
15652     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
15653
15654     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
15655     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
15656     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
15657     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
15658     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
15659
15660     // a += a
15661     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
15662     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
15663     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
15664
15665     // return VSELECT(r, r+r, a);
15666     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
15667                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
15668     return R;
15669   }
15670
15671   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
15672   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
15673   // solution better.
15674   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
15675     MVT NewVT = VT == MVT::v8i16 ? MVT::v8i32 : MVT::v16i16;
15676     unsigned ExtOpc =
15677         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
15678     R = DAG.getNode(ExtOpc, dl, NewVT, R);
15679     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, NewVT, Amt);
15680     return DAG.getNode(ISD::TRUNCATE, dl, VT,
15681                        DAG.getNode(Op.getOpcode(), dl, NewVT, R, Amt));
15682     }
15683
15684   // Decompose 256-bit shifts into smaller 128-bit shifts.
15685   if (VT.is256BitVector()) {
15686     unsigned NumElems = VT.getVectorNumElements();
15687     MVT EltVT = VT.getVectorElementType();
15688     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
15689
15690     // Extract the two vectors
15691     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
15692     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
15693
15694     // Recreate the shift amount vectors
15695     SDValue Amt1, Amt2;
15696     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
15697       // Constant shift amount
15698       SmallVector<SDValue, 4> Amt1Csts;
15699       SmallVector<SDValue, 4> Amt2Csts;
15700       for (unsigned i = 0; i != NumElems/2; ++i)
15701         Amt1Csts.push_back(Amt->getOperand(i));
15702       for (unsigned i = NumElems/2; i != NumElems; ++i)
15703         Amt2Csts.push_back(Amt->getOperand(i));
15704
15705       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
15706       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
15707     } else {
15708       // Variable shift amount
15709       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
15710       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
15711     }
15712
15713     // Issue new vector shifts for the smaller types
15714     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
15715     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
15716
15717     // Concatenate the result back
15718     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
15719   }
15720
15721   return SDValue();
15722 }
15723
15724 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
15725   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
15726   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
15727   // looks for this combo and may remove the "setcc" instruction if the "setcc"
15728   // has only one use.
15729   SDNode *N = Op.getNode();
15730   SDValue LHS = N->getOperand(0);
15731   SDValue RHS = N->getOperand(1);
15732   unsigned BaseOp = 0;
15733   unsigned Cond = 0;
15734   SDLoc DL(Op);
15735   switch (Op.getOpcode()) {
15736   default: llvm_unreachable("Unknown ovf instruction!");
15737   case ISD::SADDO:
15738     // A subtract of one will be selected as a INC. Note that INC doesn't
15739     // set CF, so we can't do this for UADDO.
15740     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
15741       if (C->isOne()) {
15742         BaseOp = X86ISD::INC;
15743         Cond = X86::COND_O;
15744         break;
15745       }
15746     BaseOp = X86ISD::ADD;
15747     Cond = X86::COND_O;
15748     break;
15749   case ISD::UADDO:
15750     BaseOp = X86ISD::ADD;
15751     Cond = X86::COND_B;
15752     break;
15753   case ISD::SSUBO:
15754     // A subtract of one will be selected as a DEC. Note that DEC doesn't
15755     // set CF, so we can't do this for USUBO.
15756     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
15757       if (C->isOne()) {
15758         BaseOp = X86ISD::DEC;
15759         Cond = X86::COND_O;
15760         break;
15761       }
15762     BaseOp = X86ISD::SUB;
15763     Cond = X86::COND_O;
15764     break;
15765   case ISD::USUBO:
15766     BaseOp = X86ISD::SUB;
15767     Cond = X86::COND_B;
15768     break;
15769   case ISD::SMULO:
15770     BaseOp = X86ISD::SMUL;
15771     Cond = X86::COND_O;
15772     break;
15773   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
15774     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
15775                                  MVT::i32);
15776     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
15777
15778     SDValue SetCC =
15779       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15780                   DAG.getConstant(X86::COND_O, MVT::i32),
15781                   SDValue(Sum.getNode(), 2));
15782
15783     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
15784   }
15785   }
15786
15787   // Also sets EFLAGS.
15788   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
15789   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
15790
15791   SDValue SetCC =
15792     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
15793                 DAG.getConstant(Cond, MVT::i32),
15794                 SDValue(Sum.getNode(), 1));
15795
15796   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
15797 }
15798
15799 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
15800                                                   SelectionDAG &DAG) const {
15801   SDLoc dl(Op);
15802   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
15803   MVT VT = Op.getSimpleValueType();
15804
15805   if (!Subtarget->hasSSE2() || !VT.isVector())
15806     return SDValue();
15807
15808   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
15809                       ExtraVT.getScalarType().getSizeInBits();
15810
15811   switch (VT.SimpleTy) {
15812     default: return SDValue();
15813     case MVT::v8i32:
15814     case MVT::v16i16:
15815       if (!Subtarget->hasFp256())
15816         return SDValue();
15817       if (!Subtarget->hasInt256()) {
15818         // needs to be split
15819         unsigned NumElems = VT.getVectorNumElements();
15820
15821         // Extract the LHS vectors
15822         SDValue LHS = Op.getOperand(0);
15823         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
15824         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
15825
15826         MVT EltVT = VT.getVectorElementType();
15827         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
15828
15829         EVT ExtraEltVT = ExtraVT.getVectorElementType();
15830         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
15831         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
15832                                    ExtraNumElems/2);
15833         SDValue Extra = DAG.getValueType(ExtraVT);
15834
15835         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
15836         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
15837
15838         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
15839       }
15840       // fall through
15841     case MVT::v4i32:
15842     case MVT::v8i16: {
15843       SDValue Op0 = Op.getOperand(0);
15844       SDValue Op00 = Op0.getOperand(0);
15845       SDValue Tmp1;
15846       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
15847       if (Op0.getOpcode() == ISD::BITCAST &&
15848           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
15849         // (sext (vzext x)) -> (vsext x)
15850         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
15851         if (Tmp1.getNode()) {
15852           EVT ExtraEltVT = ExtraVT.getVectorElementType();
15853           // This folding is only valid when the in-reg type is a vector of i8,
15854           // i16, or i32.
15855           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
15856               ExtraEltVT == MVT::i32) {
15857             SDValue Tmp1Op0 = Tmp1.getOperand(0);
15858             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
15859                    "This optimization is invalid without a VZEXT.");
15860             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
15861           }
15862           Op0 = Tmp1;
15863         }
15864       }
15865
15866       // If the above didn't work, then just use Shift-Left + Shift-Right.
15867       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
15868                                         DAG);
15869       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
15870                                         DAG);
15871     }
15872   }
15873 }
15874
15875 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
15876                                  SelectionDAG &DAG) {
15877   SDLoc dl(Op);
15878   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
15879     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
15880   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
15881     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
15882
15883   // The only fence that needs an instruction is a sequentially-consistent
15884   // cross-thread fence.
15885   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
15886     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
15887     // no-sse2). There isn't any reason to disable it if the target processor
15888     // supports it.
15889     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
15890       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
15891
15892     SDValue Chain = Op.getOperand(0);
15893     SDValue Zero = DAG.getConstant(0, MVT::i32);
15894     SDValue Ops[] = {
15895       DAG.getRegister(X86::ESP, MVT::i32), // Base
15896       DAG.getTargetConstant(1, MVT::i8),   // Scale
15897       DAG.getRegister(0, MVT::i32),        // Index
15898       DAG.getTargetConstant(0, MVT::i32),  // Disp
15899       DAG.getRegister(0, MVT::i32),        // Segment.
15900       Zero,
15901       Chain
15902     };
15903     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
15904     return SDValue(Res, 0);
15905   }
15906
15907   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
15908   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
15909 }
15910
15911 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
15912                              SelectionDAG &DAG) {
15913   MVT T = Op.getSimpleValueType();
15914   SDLoc DL(Op);
15915   unsigned Reg = 0;
15916   unsigned size = 0;
15917   switch(T.SimpleTy) {
15918   default: llvm_unreachable("Invalid value type!");
15919   case MVT::i8:  Reg = X86::AL;  size = 1; break;
15920   case MVT::i16: Reg = X86::AX;  size = 2; break;
15921   case MVT::i32: Reg = X86::EAX; size = 4; break;
15922   case MVT::i64:
15923     assert(Subtarget->is64Bit() && "Node not type legal!");
15924     Reg = X86::RAX; size = 8;
15925     break;
15926   }
15927   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
15928                                   Op.getOperand(2), SDValue());
15929   SDValue Ops[] = { cpIn.getValue(0),
15930                     Op.getOperand(1),
15931                     Op.getOperand(3),
15932                     DAG.getTargetConstant(size, MVT::i8),
15933                     cpIn.getValue(1) };
15934   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
15935   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
15936   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
15937                                            Ops, T, MMO);
15938
15939   SDValue cpOut =
15940     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
15941   SDValue EFLAGS = DAG.getCopyFromReg(cpOut.getValue(1), DL, X86::EFLAGS,
15942                                       MVT::i32, cpOut.getValue(2));
15943   SDValue Success = DAG.getNode(X86ISD::SETCC, DL, Op->getValueType(1),
15944                                 DAG.getConstant(X86::COND_E, MVT::i8), EFLAGS);
15945
15946   DAG.ReplaceAllUsesOfValueWith(Op.getValue(0), cpOut);
15947   DAG.ReplaceAllUsesOfValueWith(Op.getValue(1), Success);
15948   DAG.ReplaceAllUsesOfValueWith(Op.getValue(2), EFLAGS.getValue(1));
15949   return SDValue();
15950 }
15951
15952 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
15953                             SelectionDAG &DAG) {
15954   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
15955   MVT DstVT = Op.getSimpleValueType();
15956
15957   if (SrcVT == MVT::v2i32 || SrcVT == MVT::v4i16 || SrcVT == MVT::v8i8) {
15958     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
15959     if (DstVT != MVT::f64)
15960       // This conversion needs to be expanded.
15961       return SDValue();
15962
15963     SDValue InVec = Op->getOperand(0);
15964     SDLoc dl(Op);
15965     unsigned NumElts = SrcVT.getVectorNumElements();
15966     EVT SVT = SrcVT.getVectorElementType();
15967
15968     // Widen the vector in input in the case of MVT::v2i32.
15969     // Example: from MVT::v2i32 to MVT::v4i32.
15970     SmallVector<SDValue, 16> Elts;
15971     for (unsigned i = 0, e = NumElts; i != e; ++i)
15972       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT, InVec,
15973                                  DAG.getIntPtrConstant(i)));
15974
15975     // Explicitly mark the extra elements as Undef.
15976     SDValue Undef = DAG.getUNDEF(SVT);
15977     for (unsigned i = NumElts, e = NumElts * 2; i != e; ++i)
15978       Elts.push_back(Undef);
15979
15980     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
15981     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Elts);
15982     SDValue ToV2F64 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, BV);
15983     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
15984                        DAG.getIntPtrConstant(0));
15985   }
15986
15987   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
15988          Subtarget->hasMMX() && "Unexpected custom BITCAST");
15989   assert((DstVT == MVT::i64 ||
15990           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
15991          "Unexpected custom BITCAST");
15992   // i64 <=> MMX conversions are Legal.
15993   if (SrcVT==MVT::i64 && DstVT.isVector())
15994     return Op;
15995   if (DstVT==MVT::i64 && SrcVT.isVector())
15996     return Op;
15997   // MMX <=> MMX conversions are Legal.
15998   if (SrcVT.isVector() && DstVT.isVector())
15999     return Op;
16000   // All other conversions need to be expanded.
16001   return SDValue();
16002 }
16003
16004 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
16005   SDNode *Node = Op.getNode();
16006   SDLoc dl(Node);
16007   EVT T = Node->getValueType(0);
16008   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
16009                               DAG.getConstant(0, T), Node->getOperand(2));
16010   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
16011                        cast<AtomicSDNode>(Node)->getMemoryVT(),
16012                        Node->getOperand(0),
16013                        Node->getOperand(1), negOp,
16014                        cast<AtomicSDNode>(Node)->getMemOperand(),
16015                        cast<AtomicSDNode>(Node)->getOrdering(),
16016                        cast<AtomicSDNode>(Node)->getSynchScope());
16017 }
16018
16019 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
16020   SDNode *Node = Op.getNode();
16021   SDLoc dl(Node);
16022   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
16023
16024   // Convert seq_cst store -> xchg
16025   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
16026   // FIXME: On 32-bit, store -> fist or movq would be more efficient
16027   //        (The only way to get a 16-byte store is cmpxchg16b)
16028   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
16029   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
16030       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
16031     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
16032                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
16033                                  Node->getOperand(0),
16034                                  Node->getOperand(1), Node->getOperand(2),
16035                                  cast<AtomicSDNode>(Node)->getMemOperand(),
16036                                  cast<AtomicSDNode>(Node)->getOrdering(),
16037                                  cast<AtomicSDNode>(Node)->getSynchScope());
16038     return Swap.getValue(1);
16039   }
16040   // Other atomic stores have a simple pattern.
16041   return Op;
16042 }
16043
16044 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
16045   EVT VT = Op.getNode()->getSimpleValueType(0);
16046
16047   // Let legalize expand this if it isn't a legal type yet.
16048   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
16049     return SDValue();
16050
16051   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
16052
16053   unsigned Opc;
16054   bool ExtraOp = false;
16055   switch (Op.getOpcode()) {
16056   default: llvm_unreachable("Invalid code");
16057   case ISD::ADDC: Opc = X86ISD::ADD; break;
16058   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
16059   case ISD::SUBC: Opc = X86ISD::SUB; break;
16060   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
16061   }
16062
16063   if (!ExtraOp)
16064     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
16065                        Op.getOperand(1));
16066   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
16067                      Op.getOperand(1), Op.getOperand(2));
16068 }
16069
16070 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
16071                             SelectionDAG &DAG) {
16072   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
16073
16074   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
16075   // which returns the values as { float, float } (in XMM0) or
16076   // { double, double } (which is returned in XMM0, XMM1).
16077   SDLoc dl(Op);
16078   SDValue Arg = Op.getOperand(0);
16079   EVT ArgVT = Arg.getValueType();
16080   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
16081
16082   TargetLowering::ArgListTy Args;
16083   TargetLowering::ArgListEntry Entry;
16084
16085   Entry.Node = Arg;
16086   Entry.Ty = ArgTy;
16087   Entry.isSExt = false;
16088   Entry.isZExt = false;
16089   Args.push_back(Entry);
16090
16091   bool isF64 = ArgVT == MVT::f64;
16092   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
16093   // the small struct {f32, f32} is returned in (eax, edx). For f64,
16094   // the results are returned via SRet in memory.
16095   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
16096   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16097   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
16098
16099   Type *RetTy = isF64
16100     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
16101     : (Type*)VectorType::get(ArgTy, 4);
16102
16103   TargetLowering::CallLoweringInfo CLI(DAG);
16104   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
16105     .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
16106
16107   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
16108
16109   if (isF64)
16110     // Returned in xmm0 and xmm1.
16111     return CallResult.first;
16112
16113   // Returned in bits 0:31 and 32:64 xmm0.
16114   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
16115                                CallResult.first, DAG.getIntPtrConstant(0));
16116   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
16117                                CallResult.first, DAG.getIntPtrConstant(1));
16118   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
16119   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
16120 }
16121
16122 /// LowerOperation - Provide custom lowering hooks for some operations.
16123 ///
16124 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
16125   switch (Op.getOpcode()) {
16126   default: llvm_unreachable("Should not custom lower this!");
16127   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
16128   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
16129   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
16130     return LowerCMP_SWAP(Op, Subtarget, DAG);
16131   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
16132   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
16133   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
16134   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
16135   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
16136   case ISD::VSELECT:            return LowerVSELECT(Op, DAG);
16137   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
16138   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
16139   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
16140   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
16141   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
16142   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
16143   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
16144   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
16145   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
16146   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
16147   case ISD::SHL_PARTS:
16148   case ISD::SRA_PARTS:
16149   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
16150   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
16151   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
16152   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
16153   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
16154   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
16155   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
16156   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
16157   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
16158   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
16159   case ISD::FABS:               return LowerFABS(Op, DAG);
16160   case ISD::FNEG:               return LowerFNEG(Op, DAG);
16161   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
16162   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
16163   case ISD::SETCC:              return LowerSETCC(Op, DAG);
16164   case ISD::SELECT:             return LowerSELECT(Op, DAG);
16165   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
16166   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
16167   case ISD::VASTART:            return LowerVASTART(Op, DAG);
16168   case ISD::VAARG:              return LowerVAARG(Op, DAG);
16169   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
16170   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
16171   case ISD::INTRINSIC_VOID:
16172   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
16173   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
16174   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
16175   case ISD::FRAME_TO_ARGS_OFFSET:
16176                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
16177   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
16178   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
16179   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
16180   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
16181   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
16182   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
16183   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
16184   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
16185   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
16186   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
16187   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
16188   case ISD::UMUL_LOHI:
16189   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
16190   case ISD::SRA:
16191   case ISD::SRL:
16192   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
16193   case ISD::SADDO:
16194   case ISD::UADDO:
16195   case ISD::SSUBO:
16196   case ISD::USUBO:
16197   case ISD::SMULO:
16198   case ISD::UMULO:              return LowerXALUO(Op, DAG);
16199   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
16200   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
16201   case ISD::ADDC:
16202   case ISD::ADDE:
16203   case ISD::SUBC:
16204   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
16205   case ISD::ADD:                return LowerADD(Op, DAG);
16206   case ISD::SUB:                return LowerSUB(Op, DAG);
16207   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
16208   }
16209 }
16210
16211 static void ReplaceATOMIC_LOAD(SDNode *Node,
16212                                SmallVectorImpl<SDValue> &Results,
16213                                SelectionDAG &DAG) {
16214   SDLoc dl(Node);
16215   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
16216
16217   // Convert wide load -> cmpxchg8b/cmpxchg16b
16218   // FIXME: On 32-bit, load -> fild or movq would be more efficient
16219   //        (The only way to get a 16-byte load is cmpxchg16b)
16220   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
16221   SDValue Zero = DAG.getConstant(0, VT);
16222   SDVTList VTs = DAG.getVTList(VT, MVT::i1, MVT::Other);
16223   SDValue Swap =
16224       DAG.getAtomicCmpSwap(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, dl, VT, VTs,
16225                            Node->getOperand(0), Node->getOperand(1), Zero, Zero,
16226                            cast<AtomicSDNode>(Node)->getMemOperand(),
16227                            cast<AtomicSDNode>(Node)->getOrdering(),
16228                            cast<AtomicSDNode>(Node)->getOrdering(),
16229                            cast<AtomicSDNode>(Node)->getSynchScope());
16230   Results.push_back(Swap.getValue(0));
16231   Results.push_back(Swap.getValue(2));
16232 }
16233
16234 /// ReplaceNodeResults - Replace a node with an illegal result type
16235 /// with a new node built out of custom code.
16236 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
16237                                            SmallVectorImpl<SDValue>&Results,
16238                                            SelectionDAG &DAG) const {
16239   SDLoc dl(N);
16240   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16241   switch (N->getOpcode()) {
16242   default:
16243     llvm_unreachable("Do not know how to custom type legalize this operation!");
16244   case ISD::SIGN_EXTEND_INREG:
16245   case ISD::ADDC:
16246   case ISD::ADDE:
16247   case ISD::SUBC:
16248   case ISD::SUBE:
16249     // We don't want to expand or promote these.
16250     return;
16251   case ISD::SDIV:
16252   case ISD::UDIV:
16253   case ISD::SREM:
16254   case ISD::UREM:
16255   case ISD::SDIVREM:
16256   case ISD::UDIVREM: {
16257     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
16258     Results.push_back(V);
16259     return;
16260   }
16261   case ISD::FP_TO_SINT:
16262   case ISD::FP_TO_UINT: {
16263     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
16264
16265     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
16266       return;
16267
16268     std::pair<SDValue,SDValue> Vals =
16269         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
16270     SDValue FIST = Vals.first, StackSlot = Vals.second;
16271     if (FIST.getNode()) {
16272       EVT VT = N->getValueType(0);
16273       // Return a load from the stack slot.
16274       if (StackSlot.getNode())
16275         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
16276                                       MachinePointerInfo(),
16277                                       false, false, false, 0));
16278       else
16279         Results.push_back(FIST);
16280     }
16281     return;
16282   }
16283   case ISD::UINT_TO_FP: {
16284     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
16285     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
16286         N->getValueType(0) != MVT::v2f32)
16287       return;
16288     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
16289                                  N->getOperand(0));
16290     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
16291                                      MVT::f64);
16292     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
16293     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
16294                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
16295     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
16296     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
16297     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
16298     return;
16299   }
16300   case ISD::FP_ROUND: {
16301     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
16302         return;
16303     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
16304     Results.push_back(V);
16305     return;
16306   }
16307   case ISD::INTRINSIC_W_CHAIN: {
16308     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
16309     switch (IntNo) {
16310     default : llvm_unreachable("Do not know how to custom type "
16311                                "legalize this intrinsic operation!");
16312     case Intrinsic::x86_rdtsc:
16313       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
16314                                      Results);
16315     case Intrinsic::x86_rdtscp:
16316       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
16317                                      Results);
16318     case Intrinsic::x86_rdpmc:
16319       return getReadPerformanceCounter(N, dl, DAG, Subtarget, Results);
16320     }
16321   }
16322   case ISD::READCYCLECOUNTER: {
16323     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
16324                                    Results);
16325   }
16326   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
16327     EVT T = N->getValueType(0);
16328     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
16329     bool Regs64bit = T == MVT::i128;
16330     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
16331     SDValue cpInL, cpInH;
16332     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
16333                         DAG.getConstant(0, HalfT));
16334     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
16335                         DAG.getConstant(1, HalfT));
16336     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
16337                              Regs64bit ? X86::RAX : X86::EAX,
16338                              cpInL, SDValue());
16339     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
16340                              Regs64bit ? X86::RDX : X86::EDX,
16341                              cpInH, cpInL.getValue(1));
16342     SDValue swapInL, swapInH;
16343     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
16344                           DAG.getConstant(0, HalfT));
16345     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
16346                           DAG.getConstant(1, HalfT));
16347     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
16348                                Regs64bit ? X86::RBX : X86::EBX,
16349                                swapInL, cpInH.getValue(1));
16350     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
16351                                Regs64bit ? X86::RCX : X86::ECX,
16352                                swapInH, swapInL.getValue(1));
16353     SDValue Ops[] = { swapInH.getValue(0),
16354                       N->getOperand(1),
16355                       swapInH.getValue(1) };
16356     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16357     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
16358     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
16359                                   X86ISD::LCMPXCHG8_DAG;
16360     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
16361     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
16362                                         Regs64bit ? X86::RAX : X86::EAX,
16363                                         HalfT, Result.getValue(1));
16364     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
16365                                         Regs64bit ? X86::RDX : X86::EDX,
16366                                         HalfT, cpOutL.getValue(2));
16367     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
16368
16369     SDValue EFLAGS = DAG.getCopyFromReg(cpOutH.getValue(1), dl, X86::EFLAGS,
16370                                         MVT::i32, cpOutH.getValue(2));
16371     SDValue Success =
16372         DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16373                     DAG.getConstant(X86::COND_E, MVT::i8), EFLAGS);
16374     Success = DAG.getZExtOrTrunc(Success, dl, N->getValueType(1));
16375
16376     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
16377     Results.push_back(Success);
16378     Results.push_back(EFLAGS.getValue(1));
16379     return;
16380   }
16381   case ISD::ATOMIC_SWAP:
16382   case ISD::ATOMIC_LOAD_ADD:
16383   case ISD::ATOMIC_LOAD_SUB:
16384   case ISD::ATOMIC_LOAD_AND:
16385   case ISD::ATOMIC_LOAD_OR:
16386   case ISD::ATOMIC_LOAD_XOR:
16387   case ISD::ATOMIC_LOAD_NAND:
16388   case ISD::ATOMIC_LOAD_MIN:
16389   case ISD::ATOMIC_LOAD_MAX:
16390   case ISD::ATOMIC_LOAD_UMIN:
16391   case ISD::ATOMIC_LOAD_UMAX:
16392     // Delegate to generic TypeLegalization. Situations we can really handle
16393     // should have already been dealt with by X86AtomicExpand.cpp.
16394     break;
16395   case ISD::ATOMIC_LOAD: {
16396     ReplaceATOMIC_LOAD(N, Results, DAG);
16397     return;
16398   }
16399   case ISD::BITCAST: {
16400     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
16401     EVT DstVT = N->getValueType(0);
16402     EVT SrcVT = N->getOperand(0)->getValueType(0);
16403
16404     if (SrcVT != MVT::f64 ||
16405         (DstVT != MVT::v2i32 && DstVT != MVT::v4i16 && DstVT != MVT::v8i8))
16406       return;
16407
16408     unsigned NumElts = DstVT.getVectorNumElements();
16409     EVT SVT = DstVT.getVectorElementType();
16410     EVT WiderVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
16411     SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
16412                                    MVT::v2f64, N->getOperand(0));
16413     SDValue ToVecInt = DAG.getNode(ISD::BITCAST, dl, WiderVT, Expanded);
16414
16415     if (ExperimentalVectorWideningLegalization) {
16416       // If we are legalizing vectors by widening, we already have the desired
16417       // legal vector type, just return it.
16418       Results.push_back(ToVecInt);
16419       return;
16420     }
16421
16422     SmallVector<SDValue, 8> Elts;
16423     for (unsigned i = 0, e = NumElts; i != e; ++i)
16424       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT,
16425                                    ToVecInt, DAG.getIntPtrConstant(i)));
16426
16427     Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, DstVT, Elts));
16428   }
16429   }
16430 }
16431
16432 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
16433   switch (Opcode) {
16434   default: return nullptr;
16435   case X86ISD::BSF:                return "X86ISD::BSF";
16436   case X86ISD::BSR:                return "X86ISD::BSR";
16437   case X86ISD::SHLD:               return "X86ISD::SHLD";
16438   case X86ISD::SHRD:               return "X86ISD::SHRD";
16439   case X86ISD::FAND:               return "X86ISD::FAND";
16440   case X86ISD::FANDN:              return "X86ISD::FANDN";
16441   case X86ISD::FOR:                return "X86ISD::FOR";
16442   case X86ISD::FXOR:               return "X86ISD::FXOR";
16443   case X86ISD::FSRL:               return "X86ISD::FSRL";
16444   case X86ISD::FILD:               return "X86ISD::FILD";
16445   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
16446   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
16447   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
16448   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
16449   case X86ISD::FLD:                return "X86ISD::FLD";
16450   case X86ISD::FST:                return "X86ISD::FST";
16451   case X86ISD::CALL:               return "X86ISD::CALL";
16452   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
16453   case X86ISD::RDTSCP_DAG:         return "X86ISD::RDTSCP_DAG";
16454   case X86ISD::RDPMC_DAG:          return "X86ISD::RDPMC_DAG";
16455   case X86ISD::BT:                 return "X86ISD::BT";
16456   case X86ISD::CMP:                return "X86ISD::CMP";
16457   case X86ISD::COMI:               return "X86ISD::COMI";
16458   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
16459   case X86ISD::CMPM:               return "X86ISD::CMPM";
16460   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
16461   case X86ISD::SETCC:              return "X86ISD::SETCC";
16462   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
16463   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
16464   case X86ISD::CMOV:               return "X86ISD::CMOV";
16465   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
16466   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
16467   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
16468   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
16469   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
16470   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
16471   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
16472   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
16473   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
16474   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
16475   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
16476   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
16477   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
16478   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
16479   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
16480   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
16481   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
16482   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
16483   case X86ISD::HADD:               return "X86ISD::HADD";
16484   case X86ISD::HSUB:               return "X86ISD::HSUB";
16485   case X86ISD::FHADD:              return "X86ISD::FHADD";
16486   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
16487   case X86ISD::UMAX:               return "X86ISD::UMAX";
16488   case X86ISD::UMIN:               return "X86ISD::UMIN";
16489   case X86ISD::SMAX:               return "X86ISD::SMAX";
16490   case X86ISD::SMIN:               return "X86ISD::SMIN";
16491   case X86ISD::FMAX:               return "X86ISD::FMAX";
16492   case X86ISD::FMIN:               return "X86ISD::FMIN";
16493   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
16494   case X86ISD::FMINC:              return "X86ISD::FMINC";
16495   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
16496   case X86ISD::FRCP:               return "X86ISD::FRCP";
16497   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
16498   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
16499   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
16500   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
16501   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
16502   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
16503   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
16504   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
16505   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
16506   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
16507   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
16508   case X86ISD::LCMPXCHG16_DAG:     return "X86ISD::LCMPXCHG16_DAG";
16509   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
16510   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
16511   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
16512   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
16513   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
16514   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
16515   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
16516   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
16517   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
16518   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
16519   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
16520   case X86ISD::VSHL:               return "X86ISD::VSHL";
16521   case X86ISD::VSRL:               return "X86ISD::VSRL";
16522   case X86ISD::VSRA:               return "X86ISD::VSRA";
16523   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
16524   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
16525   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
16526   case X86ISD::CMPP:               return "X86ISD::CMPP";
16527   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
16528   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
16529   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
16530   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
16531   case X86ISD::ADD:                return "X86ISD::ADD";
16532   case X86ISD::SUB:                return "X86ISD::SUB";
16533   case X86ISD::ADC:                return "X86ISD::ADC";
16534   case X86ISD::SBB:                return "X86ISD::SBB";
16535   case X86ISD::SMUL:               return "X86ISD::SMUL";
16536   case X86ISD::UMUL:               return "X86ISD::UMUL";
16537   case X86ISD::INC:                return "X86ISD::INC";
16538   case X86ISD::DEC:                return "X86ISD::DEC";
16539   case X86ISD::OR:                 return "X86ISD::OR";
16540   case X86ISD::XOR:                return "X86ISD::XOR";
16541   case X86ISD::AND:                return "X86ISD::AND";
16542   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
16543   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
16544   case X86ISD::PTEST:              return "X86ISD::PTEST";
16545   case X86ISD::TESTP:              return "X86ISD::TESTP";
16546   case X86ISD::TESTM:              return "X86ISD::TESTM";
16547   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
16548   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
16549   case X86ISD::PACKSS:             return "X86ISD::PACKSS";
16550   case X86ISD::PACKUS:             return "X86ISD::PACKUS";
16551   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
16552   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
16553   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
16554   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
16555   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
16556   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
16557   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
16558   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
16559   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
16560   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
16561   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
16562   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
16563   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
16564   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
16565   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
16566   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
16567   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
16568   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
16569   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
16570   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
16571   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
16572   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
16573   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
16574   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
16575   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
16576   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
16577   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
16578   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
16579   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
16580   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
16581   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
16582   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
16583   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
16584   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
16585   case X86ISD::SAHF:               return "X86ISD::SAHF";
16586   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
16587   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
16588   case X86ISD::FMADD:              return "X86ISD::FMADD";
16589   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
16590   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
16591   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
16592   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
16593   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
16594   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
16595   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
16596   case X86ISD::XTEST:              return "X86ISD::XTEST";
16597   }
16598 }
16599
16600 // isLegalAddressingMode - Return true if the addressing mode represented
16601 // by AM is legal for this target, for a load/store of the specified type.
16602 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
16603                                               Type *Ty) const {
16604   // X86 supports extremely general addressing modes.
16605   CodeModel::Model M = getTargetMachine().getCodeModel();
16606   Reloc::Model R = getTargetMachine().getRelocationModel();
16607
16608   // X86 allows a sign-extended 32-bit immediate field as a displacement.
16609   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
16610     return false;
16611
16612   if (AM.BaseGV) {
16613     unsigned GVFlags =
16614       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
16615
16616     // If a reference to this global requires an extra load, we can't fold it.
16617     if (isGlobalStubReference(GVFlags))
16618       return false;
16619
16620     // If BaseGV requires a register for the PIC base, we cannot also have a
16621     // BaseReg specified.
16622     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
16623       return false;
16624
16625     // If lower 4G is not available, then we must use rip-relative addressing.
16626     if ((M != CodeModel::Small || R != Reloc::Static) &&
16627         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
16628       return false;
16629   }
16630
16631   switch (AM.Scale) {
16632   case 0:
16633   case 1:
16634   case 2:
16635   case 4:
16636   case 8:
16637     // These scales always work.
16638     break;
16639   case 3:
16640   case 5:
16641   case 9:
16642     // These scales are formed with basereg+scalereg.  Only accept if there is
16643     // no basereg yet.
16644     if (AM.HasBaseReg)
16645       return false;
16646     break;
16647   default:  // Other stuff never works.
16648     return false;
16649   }
16650
16651   return true;
16652 }
16653
16654 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
16655   unsigned Bits = Ty->getScalarSizeInBits();
16656
16657   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
16658   // particularly cheaper than those without.
16659   if (Bits == 8)
16660     return false;
16661
16662   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
16663   // variable shifts just as cheap as scalar ones.
16664   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
16665     return false;
16666
16667   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
16668   // fully general vector.
16669   return true;
16670 }
16671
16672 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
16673   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
16674     return false;
16675   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
16676   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
16677   return NumBits1 > NumBits2;
16678 }
16679
16680 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
16681   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
16682     return false;
16683
16684   if (!isTypeLegal(EVT::getEVT(Ty1)))
16685     return false;
16686
16687   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
16688
16689   // Assuming the caller doesn't have a zeroext or signext return parameter,
16690   // truncation all the way down to i1 is valid.
16691   return true;
16692 }
16693
16694 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
16695   return isInt<32>(Imm);
16696 }
16697
16698 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
16699   // Can also use sub to handle negated immediates.
16700   return isInt<32>(Imm);
16701 }
16702
16703 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
16704   if (!VT1.isInteger() || !VT2.isInteger())
16705     return false;
16706   unsigned NumBits1 = VT1.getSizeInBits();
16707   unsigned NumBits2 = VT2.getSizeInBits();
16708   return NumBits1 > NumBits2;
16709 }
16710
16711 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
16712   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
16713   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
16714 }
16715
16716 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
16717   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
16718   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
16719 }
16720
16721 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
16722   EVT VT1 = Val.getValueType();
16723   if (isZExtFree(VT1, VT2))
16724     return true;
16725
16726   if (Val.getOpcode() != ISD::LOAD)
16727     return false;
16728
16729   if (!VT1.isSimple() || !VT1.isInteger() ||
16730       !VT2.isSimple() || !VT2.isInteger())
16731     return false;
16732
16733   switch (VT1.getSimpleVT().SimpleTy) {
16734   default: break;
16735   case MVT::i8:
16736   case MVT::i16:
16737   case MVT::i32:
16738     // X86 has 8, 16, and 32-bit zero-extending loads.
16739     return true;
16740   }
16741
16742   return false;
16743 }
16744
16745 bool
16746 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
16747   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
16748     return false;
16749
16750   VT = VT.getScalarType();
16751
16752   if (!VT.isSimple())
16753     return false;
16754
16755   switch (VT.getSimpleVT().SimpleTy) {
16756   case MVT::f32:
16757   case MVT::f64:
16758     return true;
16759   default:
16760     break;
16761   }
16762
16763   return false;
16764 }
16765
16766 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
16767   // i16 instructions are longer (0x66 prefix) and potentially slower.
16768   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
16769 }
16770
16771 /// isShuffleMaskLegal - Targets can use this to indicate that they only
16772 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
16773 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
16774 /// are assumed to be legal.
16775 bool
16776 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
16777                                       EVT VT) const {
16778   if (!VT.isSimple())
16779     return false;
16780
16781   MVT SVT = VT.getSimpleVT();
16782
16783   // Very little shuffling can be done for 64-bit vectors right now.
16784   if (VT.getSizeInBits() == 64)
16785     return false;
16786
16787   // If this is a single-input shuffle with no 128 bit lane crossings we can
16788   // lower it into pshufb.
16789   if ((SVT.is128BitVector() && Subtarget->hasSSSE3()) ||
16790       (SVT.is256BitVector() && Subtarget->hasInt256())) {
16791     bool isLegal = true;
16792     for (unsigned I = 0, E = M.size(); I != E; ++I) {
16793       if (M[I] >= (int)SVT.getVectorNumElements() ||
16794           ShuffleCrosses128bitLane(SVT, I, M[I])) {
16795         isLegal = false;
16796         break;
16797       }
16798     }
16799     if (isLegal)
16800       return true;
16801   }
16802
16803   // FIXME: blends, shifts.
16804   return (SVT.getVectorNumElements() == 2 ||
16805           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
16806           isMOVLMask(M, SVT) ||
16807           isSHUFPMask(M, SVT) ||
16808           isPSHUFDMask(M, SVT) ||
16809           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
16810           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
16811           isPALIGNRMask(M, SVT, Subtarget) ||
16812           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
16813           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
16814           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
16815           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
16816           isBlendMask(M, SVT, Subtarget->hasSSE41(), Subtarget->hasInt256()));
16817 }
16818
16819 bool
16820 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
16821                                           EVT VT) const {
16822   if (!VT.isSimple())
16823     return false;
16824
16825   MVT SVT = VT.getSimpleVT();
16826   unsigned NumElts = SVT.getVectorNumElements();
16827   // FIXME: This collection of masks seems suspect.
16828   if (NumElts == 2)
16829     return true;
16830   if (NumElts == 4 && SVT.is128BitVector()) {
16831     return (isMOVLMask(Mask, SVT)  ||
16832             isCommutedMOVLMask(Mask, SVT, true) ||
16833             isSHUFPMask(Mask, SVT) ||
16834             isSHUFPMask(Mask, SVT, /* Commuted */ true));
16835   }
16836   return false;
16837 }
16838
16839 //===----------------------------------------------------------------------===//
16840 //                           X86 Scheduler Hooks
16841 //===----------------------------------------------------------------------===//
16842
16843 /// Utility function to emit xbegin specifying the start of an RTM region.
16844 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
16845                                      const TargetInstrInfo *TII) {
16846   DebugLoc DL = MI->getDebugLoc();
16847
16848   const BasicBlock *BB = MBB->getBasicBlock();
16849   MachineFunction::iterator I = MBB;
16850   ++I;
16851
16852   // For the v = xbegin(), we generate
16853   //
16854   // thisMBB:
16855   //  xbegin sinkMBB
16856   //
16857   // mainMBB:
16858   //  eax = -1
16859   //
16860   // sinkMBB:
16861   //  v = eax
16862
16863   MachineBasicBlock *thisMBB = MBB;
16864   MachineFunction *MF = MBB->getParent();
16865   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
16866   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
16867   MF->insert(I, mainMBB);
16868   MF->insert(I, sinkMBB);
16869
16870   // Transfer the remainder of BB and its successor edges to sinkMBB.
16871   sinkMBB->splice(sinkMBB->begin(), MBB,
16872                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
16873   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
16874
16875   // thisMBB:
16876   //  xbegin sinkMBB
16877   //  # fallthrough to mainMBB
16878   //  # abortion to sinkMBB
16879   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
16880   thisMBB->addSuccessor(mainMBB);
16881   thisMBB->addSuccessor(sinkMBB);
16882
16883   // mainMBB:
16884   //  EAX = -1
16885   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
16886   mainMBB->addSuccessor(sinkMBB);
16887
16888   // sinkMBB:
16889   // EAX is live into the sinkMBB
16890   sinkMBB->addLiveIn(X86::EAX);
16891   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
16892           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
16893     .addReg(X86::EAX);
16894
16895   MI->eraseFromParent();
16896   return sinkMBB;
16897 }
16898
16899 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
16900 // or XMM0_V32I8 in AVX all of this code can be replaced with that
16901 // in the .td file.
16902 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
16903                                        const TargetInstrInfo *TII) {
16904   unsigned Opc;
16905   switch (MI->getOpcode()) {
16906   default: llvm_unreachable("illegal opcode!");
16907   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
16908   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
16909   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
16910   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
16911   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
16912   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
16913   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
16914   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
16915   }
16916
16917   DebugLoc dl = MI->getDebugLoc();
16918   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
16919
16920   unsigned NumArgs = MI->getNumOperands();
16921   for (unsigned i = 1; i < NumArgs; ++i) {
16922     MachineOperand &Op = MI->getOperand(i);
16923     if (!(Op.isReg() && Op.isImplicit()))
16924       MIB.addOperand(Op);
16925   }
16926   if (MI->hasOneMemOperand())
16927     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
16928
16929   BuildMI(*BB, MI, dl,
16930     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
16931     .addReg(X86::XMM0);
16932
16933   MI->eraseFromParent();
16934   return BB;
16935 }
16936
16937 // FIXME: Custom handling because TableGen doesn't support multiple implicit
16938 // defs in an instruction pattern
16939 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
16940                                        const TargetInstrInfo *TII) {
16941   unsigned Opc;
16942   switch (MI->getOpcode()) {
16943   default: llvm_unreachable("illegal opcode!");
16944   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
16945   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
16946   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
16947   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
16948   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
16949   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
16950   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
16951   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
16952   }
16953
16954   DebugLoc dl = MI->getDebugLoc();
16955   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
16956
16957   unsigned NumArgs = MI->getNumOperands(); // remove the results
16958   for (unsigned i = 1; i < NumArgs; ++i) {
16959     MachineOperand &Op = MI->getOperand(i);
16960     if (!(Op.isReg() && Op.isImplicit()))
16961       MIB.addOperand(Op);
16962   }
16963   if (MI->hasOneMemOperand())
16964     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
16965
16966   BuildMI(*BB, MI, dl,
16967     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
16968     .addReg(X86::ECX);
16969
16970   MI->eraseFromParent();
16971   return BB;
16972 }
16973
16974 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
16975                                        const TargetInstrInfo *TII,
16976                                        const X86Subtarget* Subtarget) {
16977   DebugLoc dl = MI->getDebugLoc();
16978
16979   // Address into RAX/EAX, other two args into ECX, EDX.
16980   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
16981   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
16982   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
16983   for (int i = 0; i < X86::AddrNumOperands; ++i)
16984     MIB.addOperand(MI->getOperand(i));
16985
16986   unsigned ValOps = X86::AddrNumOperands;
16987   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
16988     .addReg(MI->getOperand(ValOps).getReg());
16989   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
16990     .addReg(MI->getOperand(ValOps+1).getReg());
16991
16992   // The instruction doesn't actually take any operands though.
16993   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
16994
16995   MI->eraseFromParent(); // The pseudo is gone now.
16996   return BB;
16997 }
16998
16999 MachineBasicBlock *
17000 X86TargetLowering::EmitVAARG64WithCustomInserter(
17001                    MachineInstr *MI,
17002                    MachineBasicBlock *MBB) const {
17003   // Emit va_arg instruction on X86-64.
17004
17005   // Operands to this pseudo-instruction:
17006   // 0  ) Output        : destination address (reg)
17007   // 1-5) Input         : va_list address (addr, i64mem)
17008   // 6  ) ArgSize       : Size (in bytes) of vararg type
17009   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
17010   // 8  ) Align         : Alignment of type
17011   // 9  ) EFLAGS (implicit-def)
17012
17013   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
17014   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
17015
17016   unsigned DestReg = MI->getOperand(0).getReg();
17017   MachineOperand &Base = MI->getOperand(1);
17018   MachineOperand &Scale = MI->getOperand(2);
17019   MachineOperand &Index = MI->getOperand(3);
17020   MachineOperand &Disp = MI->getOperand(4);
17021   MachineOperand &Segment = MI->getOperand(5);
17022   unsigned ArgSize = MI->getOperand(6).getImm();
17023   unsigned ArgMode = MI->getOperand(7).getImm();
17024   unsigned Align = MI->getOperand(8).getImm();
17025
17026   // Memory Reference
17027   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
17028   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
17029   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
17030
17031   // Machine Information
17032   const TargetInstrInfo *TII = MBB->getParent()->getTarget().getInstrInfo();
17033   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
17034   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
17035   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
17036   DebugLoc DL = MI->getDebugLoc();
17037
17038   // struct va_list {
17039   //   i32   gp_offset
17040   //   i32   fp_offset
17041   //   i64   overflow_area (address)
17042   //   i64   reg_save_area (address)
17043   // }
17044   // sizeof(va_list) = 24
17045   // alignment(va_list) = 8
17046
17047   unsigned TotalNumIntRegs = 6;
17048   unsigned TotalNumXMMRegs = 8;
17049   bool UseGPOffset = (ArgMode == 1);
17050   bool UseFPOffset = (ArgMode == 2);
17051   unsigned MaxOffset = TotalNumIntRegs * 8 +
17052                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
17053
17054   /* Align ArgSize to a multiple of 8 */
17055   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
17056   bool NeedsAlign = (Align > 8);
17057
17058   MachineBasicBlock *thisMBB = MBB;
17059   MachineBasicBlock *overflowMBB;
17060   MachineBasicBlock *offsetMBB;
17061   MachineBasicBlock *endMBB;
17062
17063   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
17064   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
17065   unsigned OffsetReg = 0;
17066
17067   if (!UseGPOffset && !UseFPOffset) {
17068     // If we only pull from the overflow region, we don't create a branch.
17069     // We don't need to alter control flow.
17070     OffsetDestReg = 0; // unused
17071     OverflowDestReg = DestReg;
17072
17073     offsetMBB = nullptr;
17074     overflowMBB = thisMBB;
17075     endMBB = thisMBB;
17076   } else {
17077     // First emit code to check if gp_offset (or fp_offset) is below the bound.
17078     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
17079     // If not, pull from overflow_area. (branch to overflowMBB)
17080     //
17081     //       thisMBB
17082     //         |     .
17083     //         |        .
17084     //     offsetMBB   overflowMBB
17085     //         |        .
17086     //         |     .
17087     //        endMBB
17088
17089     // Registers for the PHI in endMBB
17090     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
17091     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
17092
17093     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
17094     MachineFunction *MF = MBB->getParent();
17095     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17096     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17097     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17098
17099     MachineFunction::iterator MBBIter = MBB;
17100     ++MBBIter;
17101
17102     // Insert the new basic blocks
17103     MF->insert(MBBIter, offsetMBB);
17104     MF->insert(MBBIter, overflowMBB);
17105     MF->insert(MBBIter, endMBB);
17106
17107     // Transfer the remainder of MBB and its successor edges to endMBB.
17108     endMBB->splice(endMBB->begin(), thisMBB,
17109                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
17110     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
17111
17112     // Make offsetMBB and overflowMBB successors of thisMBB
17113     thisMBB->addSuccessor(offsetMBB);
17114     thisMBB->addSuccessor(overflowMBB);
17115
17116     // endMBB is a successor of both offsetMBB and overflowMBB
17117     offsetMBB->addSuccessor(endMBB);
17118     overflowMBB->addSuccessor(endMBB);
17119
17120     // Load the offset value into a register
17121     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
17122     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
17123       .addOperand(Base)
17124       .addOperand(Scale)
17125       .addOperand(Index)
17126       .addDisp(Disp, UseFPOffset ? 4 : 0)
17127       .addOperand(Segment)
17128       .setMemRefs(MMOBegin, MMOEnd);
17129
17130     // Check if there is enough room left to pull this argument.
17131     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
17132       .addReg(OffsetReg)
17133       .addImm(MaxOffset + 8 - ArgSizeA8);
17134
17135     // Branch to "overflowMBB" if offset >= max
17136     // Fall through to "offsetMBB" otherwise
17137     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
17138       .addMBB(overflowMBB);
17139   }
17140
17141   // In offsetMBB, emit code to use the reg_save_area.
17142   if (offsetMBB) {
17143     assert(OffsetReg != 0);
17144
17145     // Read the reg_save_area address.
17146     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
17147     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
17148       .addOperand(Base)
17149       .addOperand(Scale)
17150       .addOperand(Index)
17151       .addDisp(Disp, 16)
17152       .addOperand(Segment)
17153       .setMemRefs(MMOBegin, MMOEnd);
17154
17155     // Zero-extend the offset
17156     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
17157       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
17158         .addImm(0)
17159         .addReg(OffsetReg)
17160         .addImm(X86::sub_32bit);
17161
17162     // Add the offset to the reg_save_area to get the final address.
17163     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
17164       .addReg(OffsetReg64)
17165       .addReg(RegSaveReg);
17166
17167     // Compute the offset for the next argument
17168     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
17169     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
17170       .addReg(OffsetReg)
17171       .addImm(UseFPOffset ? 16 : 8);
17172
17173     // Store it back into the va_list.
17174     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
17175       .addOperand(Base)
17176       .addOperand(Scale)
17177       .addOperand(Index)
17178       .addDisp(Disp, UseFPOffset ? 4 : 0)
17179       .addOperand(Segment)
17180       .addReg(NextOffsetReg)
17181       .setMemRefs(MMOBegin, MMOEnd);
17182
17183     // Jump to endMBB
17184     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
17185       .addMBB(endMBB);
17186   }
17187
17188   //
17189   // Emit code to use overflow area
17190   //
17191
17192   // Load the overflow_area address into a register.
17193   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
17194   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
17195     .addOperand(Base)
17196     .addOperand(Scale)
17197     .addOperand(Index)
17198     .addDisp(Disp, 8)
17199     .addOperand(Segment)
17200     .setMemRefs(MMOBegin, MMOEnd);
17201
17202   // If we need to align it, do so. Otherwise, just copy the address
17203   // to OverflowDestReg.
17204   if (NeedsAlign) {
17205     // Align the overflow address
17206     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
17207     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
17208
17209     // aligned_addr = (addr + (align-1)) & ~(align-1)
17210     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
17211       .addReg(OverflowAddrReg)
17212       .addImm(Align-1);
17213
17214     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
17215       .addReg(TmpReg)
17216       .addImm(~(uint64_t)(Align-1));
17217   } else {
17218     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
17219       .addReg(OverflowAddrReg);
17220   }
17221
17222   // Compute the next overflow address after this argument.
17223   // (the overflow address should be kept 8-byte aligned)
17224   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
17225   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
17226     .addReg(OverflowDestReg)
17227     .addImm(ArgSizeA8);
17228
17229   // Store the new overflow address.
17230   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
17231     .addOperand(Base)
17232     .addOperand(Scale)
17233     .addOperand(Index)
17234     .addDisp(Disp, 8)
17235     .addOperand(Segment)
17236     .addReg(NextAddrReg)
17237     .setMemRefs(MMOBegin, MMOEnd);
17238
17239   // If we branched, emit the PHI to the front of endMBB.
17240   if (offsetMBB) {
17241     BuildMI(*endMBB, endMBB->begin(), DL,
17242             TII->get(X86::PHI), DestReg)
17243       .addReg(OffsetDestReg).addMBB(offsetMBB)
17244       .addReg(OverflowDestReg).addMBB(overflowMBB);
17245   }
17246
17247   // Erase the pseudo instruction
17248   MI->eraseFromParent();
17249
17250   return endMBB;
17251 }
17252
17253 MachineBasicBlock *
17254 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
17255                                                  MachineInstr *MI,
17256                                                  MachineBasicBlock *MBB) const {
17257   // Emit code to save XMM registers to the stack. The ABI says that the
17258   // number of registers to save is given in %al, so it's theoretically
17259   // possible to do an indirect jump trick to avoid saving all of them,
17260   // however this code takes a simpler approach and just executes all
17261   // of the stores if %al is non-zero. It's less code, and it's probably
17262   // easier on the hardware branch predictor, and stores aren't all that
17263   // expensive anyway.
17264
17265   // Create the new basic blocks. One block contains all the XMM stores,
17266   // and one block is the final destination regardless of whether any
17267   // stores were performed.
17268   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
17269   MachineFunction *F = MBB->getParent();
17270   MachineFunction::iterator MBBIter = MBB;
17271   ++MBBIter;
17272   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
17273   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
17274   F->insert(MBBIter, XMMSaveMBB);
17275   F->insert(MBBIter, EndMBB);
17276
17277   // Transfer the remainder of MBB and its successor edges to EndMBB.
17278   EndMBB->splice(EndMBB->begin(), MBB,
17279                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
17280   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
17281
17282   // The original block will now fall through to the XMM save block.
17283   MBB->addSuccessor(XMMSaveMBB);
17284   // The XMMSaveMBB will fall through to the end block.
17285   XMMSaveMBB->addSuccessor(EndMBB);
17286
17287   // Now add the instructions.
17288   const TargetInstrInfo *TII = MBB->getParent()->getTarget().getInstrInfo();
17289   DebugLoc DL = MI->getDebugLoc();
17290
17291   unsigned CountReg = MI->getOperand(0).getReg();
17292   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
17293   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
17294
17295   if (!Subtarget->isTargetWin64()) {
17296     // If %al is 0, branch around the XMM save block.
17297     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
17298     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
17299     MBB->addSuccessor(EndMBB);
17300   }
17301
17302   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
17303   // that was just emitted, but clearly shouldn't be "saved".
17304   assert((MI->getNumOperands() <= 3 ||
17305           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
17306           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
17307          && "Expected last argument to be EFLAGS");
17308   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
17309   // In the XMM save block, save all the XMM argument registers.
17310   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
17311     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
17312     MachineMemOperand *MMO =
17313       F->getMachineMemOperand(
17314           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
17315         MachineMemOperand::MOStore,
17316         /*Size=*/16, /*Align=*/16);
17317     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
17318       .addFrameIndex(RegSaveFrameIndex)
17319       .addImm(/*Scale=*/1)
17320       .addReg(/*IndexReg=*/0)
17321       .addImm(/*Disp=*/Offset)
17322       .addReg(/*Segment=*/0)
17323       .addReg(MI->getOperand(i).getReg())
17324       .addMemOperand(MMO);
17325   }
17326
17327   MI->eraseFromParent();   // The pseudo instruction is gone now.
17328
17329   return EndMBB;
17330 }
17331
17332 // The EFLAGS operand of SelectItr might be missing a kill marker
17333 // because there were multiple uses of EFLAGS, and ISel didn't know
17334 // which to mark. Figure out whether SelectItr should have had a
17335 // kill marker, and set it if it should. Returns the correct kill
17336 // marker value.
17337 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
17338                                      MachineBasicBlock* BB,
17339                                      const TargetRegisterInfo* TRI) {
17340   // Scan forward through BB for a use/def of EFLAGS.
17341   MachineBasicBlock::iterator miI(std::next(SelectItr));
17342   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
17343     const MachineInstr& mi = *miI;
17344     if (mi.readsRegister(X86::EFLAGS))
17345       return false;
17346     if (mi.definesRegister(X86::EFLAGS))
17347       break; // Should have kill-flag - update below.
17348   }
17349
17350   // If we hit the end of the block, check whether EFLAGS is live into a
17351   // successor.
17352   if (miI == BB->end()) {
17353     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
17354                                           sEnd = BB->succ_end();
17355          sItr != sEnd; ++sItr) {
17356       MachineBasicBlock* succ = *sItr;
17357       if (succ->isLiveIn(X86::EFLAGS))
17358         return false;
17359     }
17360   }
17361
17362   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
17363   // out. SelectMI should have a kill flag on EFLAGS.
17364   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
17365   return true;
17366 }
17367
17368 MachineBasicBlock *
17369 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
17370                                      MachineBasicBlock *BB) const {
17371   const TargetInstrInfo *TII = BB->getParent()->getTarget().getInstrInfo();
17372   DebugLoc DL = MI->getDebugLoc();
17373
17374   // To "insert" a SELECT_CC instruction, we actually have to insert the
17375   // diamond control-flow pattern.  The incoming instruction knows the
17376   // destination vreg to set, the condition code register to branch on, the
17377   // true/false values to select between, and a branch opcode to use.
17378   const BasicBlock *LLVM_BB = BB->getBasicBlock();
17379   MachineFunction::iterator It = BB;
17380   ++It;
17381
17382   //  thisMBB:
17383   //  ...
17384   //   TrueVal = ...
17385   //   cmpTY ccX, r1, r2
17386   //   bCC copy1MBB
17387   //   fallthrough --> copy0MBB
17388   MachineBasicBlock *thisMBB = BB;
17389   MachineFunction *F = BB->getParent();
17390   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
17391   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
17392   F->insert(It, copy0MBB);
17393   F->insert(It, sinkMBB);
17394
17395   // If the EFLAGS register isn't dead in the terminator, then claim that it's
17396   // live into the sink and copy blocks.
17397   const TargetRegisterInfo* TRI = BB->getParent()->getTarget().getRegisterInfo();
17398   if (!MI->killsRegister(X86::EFLAGS) &&
17399       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
17400     copy0MBB->addLiveIn(X86::EFLAGS);
17401     sinkMBB->addLiveIn(X86::EFLAGS);
17402   }
17403
17404   // Transfer the remainder of BB and its successor edges to sinkMBB.
17405   sinkMBB->splice(sinkMBB->begin(), BB,
17406                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
17407   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
17408
17409   // Add the true and fallthrough blocks as its successors.
17410   BB->addSuccessor(copy0MBB);
17411   BB->addSuccessor(sinkMBB);
17412
17413   // Create the conditional branch instruction.
17414   unsigned Opc =
17415     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
17416   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
17417
17418   //  copy0MBB:
17419   //   %FalseValue = ...
17420   //   # fallthrough to sinkMBB
17421   copy0MBB->addSuccessor(sinkMBB);
17422
17423   //  sinkMBB:
17424   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
17425   //  ...
17426   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
17427           TII->get(X86::PHI), MI->getOperand(0).getReg())
17428     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
17429     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
17430
17431   MI->eraseFromParent();   // The pseudo instruction is gone now.
17432   return sinkMBB;
17433 }
17434
17435 MachineBasicBlock *
17436 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
17437                                         bool Is64Bit) const {
17438   MachineFunction *MF = BB->getParent();
17439   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
17440   DebugLoc DL = MI->getDebugLoc();
17441   const BasicBlock *LLVM_BB = BB->getBasicBlock();
17442
17443   assert(MF->shouldSplitStack());
17444
17445   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
17446   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
17447
17448   // BB:
17449   //  ... [Till the alloca]
17450   // If stacklet is not large enough, jump to mallocMBB
17451   //
17452   // bumpMBB:
17453   //  Allocate by subtracting from RSP
17454   //  Jump to continueMBB
17455   //
17456   // mallocMBB:
17457   //  Allocate by call to runtime
17458   //
17459   // continueMBB:
17460   //  ...
17461   //  [rest of original BB]
17462   //
17463
17464   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17465   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17466   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
17467
17468   MachineRegisterInfo &MRI = MF->getRegInfo();
17469   const TargetRegisterClass *AddrRegClass =
17470     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
17471
17472   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
17473     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
17474     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
17475     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
17476     sizeVReg = MI->getOperand(1).getReg(),
17477     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
17478
17479   MachineFunction::iterator MBBIter = BB;
17480   ++MBBIter;
17481
17482   MF->insert(MBBIter, bumpMBB);
17483   MF->insert(MBBIter, mallocMBB);
17484   MF->insert(MBBIter, continueMBB);
17485
17486   continueMBB->splice(continueMBB->begin(), BB,
17487                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
17488   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
17489
17490   // Add code to the main basic block to check if the stack limit has been hit,
17491   // and if so, jump to mallocMBB otherwise to bumpMBB.
17492   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
17493   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
17494     .addReg(tmpSPVReg).addReg(sizeVReg);
17495   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
17496     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
17497     .addReg(SPLimitVReg);
17498   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
17499
17500   // bumpMBB simply decreases the stack pointer, since we know the current
17501   // stacklet has enough space.
17502   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
17503     .addReg(SPLimitVReg);
17504   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
17505     .addReg(SPLimitVReg);
17506   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
17507
17508   // Calls into a routine in libgcc to allocate more space from the heap.
17509   const uint32_t *RegMask =
17510     MF->getTarget().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
17511   if (Is64Bit) {
17512     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
17513       .addReg(sizeVReg);
17514     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
17515       .addExternalSymbol("__morestack_allocate_stack_space")
17516       .addRegMask(RegMask)
17517       .addReg(X86::RDI, RegState::Implicit)
17518       .addReg(X86::RAX, RegState::ImplicitDefine);
17519   } else {
17520     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
17521       .addImm(12);
17522     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
17523     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
17524       .addExternalSymbol("__morestack_allocate_stack_space")
17525       .addRegMask(RegMask)
17526       .addReg(X86::EAX, RegState::ImplicitDefine);
17527   }
17528
17529   if (!Is64Bit)
17530     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
17531       .addImm(16);
17532
17533   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
17534     .addReg(Is64Bit ? X86::RAX : X86::EAX);
17535   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
17536
17537   // Set up the CFG correctly.
17538   BB->addSuccessor(bumpMBB);
17539   BB->addSuccessor(mallocMBB);
17540   mallocMBB->addSuccessor(continueMBB);
17541   bumpMBB->addSuccessor(continueMBB);
17542
17543   // Take care of the PHI nodes.
17544   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
17545           MI->getOperand(0).getReg())
17546     .addReg(mallocPtrVReg).addMBB(mallocMBB)
17547     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
17548
17549   // Delete the original pseudo instruction.
17550   MI->eraseFromParent();
17551
17552   // And we're done.
17553   return continueMBB;
17554 }
17555
17556 MachineBasicBlock *
17557 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
17558                                         MachineBasicBlock *BB) const {
17559   const TargetInstrInfo *TII = BB->getParent()->getTarget().getInstrInfo();
17560   DebugLoc DL = MI->getDebugLoc();
17561
17562   assert(!Subtarget->isTargetMacho());
17563
17564   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
17565   // non-trivial part is impdef of ESP.
17566
17567   if (Subtarget->isTargetWin64()) {
17568     if (Subtarget->isTargetCygMing()) {
17569       // ___chkstk(Mingw64):
17570       // Clobbers R10, R11, RAX and EFLAGS.
17571       // Updates RSP.
17572       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
17573         .addExternalSymbol("___chkstk")
17574         .addReg(X86::RAX, RegState::Implicit)
17575         .addReg(X86::RSP, RegState::Implicit)
17576         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
17577         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
17578         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
17579     } else {
17580       // __chkstk(MSVCRT): does not update stack pointer.
17581       // Clobbers R10, R11 and EFLAGS.
17582       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
17583         .addExternalSymbol("__chkstk")
17584         .addReg(X86::RAX, RegState::Implicit)
17585         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
17586       // RAX has the offset to be subtracted from RSP.
17587       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
17588         .addReg(X86::RSP)
17589         .addReg(X86::RAX);
17590     }
17591   } else {
17592     const char *StackProbeSymbol =
17593       Subtarget->isTargetKnownWindowsMSVC() ? "_chkstk" : "_alloca";
17594
17595     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
17596       .addExternalSymbol(StackProbeSymbol)
17597       .addReg(X86::EAX, RegState::Implicit)
17598       .addReg(X86::ESP, RegState::Implicit)
17599       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
17600       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
17601       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
17602   }
17603
17604   MI->eraseFromParent();   // The pseudo instruction is gone now.
17605   return BB;
17606 }
17607
17608 MachineBasicBlock *
17609 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
17610                                       MachineBasicBlock *BB) const {
17611   // This is pretty easy.  We're taking the value that we received from
17612   // our load from the relocation, sticking it in either RDI (x86-64)
17613   // or EAX and doing an indirect call.  The return value will then
17614   // be in the normal return register.
17615   MachineFunction *F = BB->getParent();
17616   const X86InstrInfo *TII
17617     = static_cast<const X86InstrInfo*>(F->getTarget().getInstrInfo());
17618   DebugLoc DL = MI->getDebugLoc();
17619
17620   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
17621   assert(MI->getOperand(3).isGlobal() && "This should be a global");
17622
17623   // Get a register mask for the lowered call.
17624   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
17625   // proper register mask.
17626   const uint32_t *RegMask =
17627     F->getTarget().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
17628   if (Subtarget->is64Bit()) {
17629     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
17630                                       TII->get(X86::MOV64rm), X86::RDI)
17631     .addReg(X86::RIP)
17632     .addImm(0).addReg(0)
17633     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
17634                       MI->getOperand(3).getTargetFlags())
17635     .addReg(0);
17636     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
17637     addDirectMem(MIB, X86::RDI);
17638     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
17639   } else if (F->getTarget().getRelocationModel() != Reloc::PIC_) {
17640     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
17641                                       TII->get(X86::MOV32rm), X86::EAX)
17642     .addReg(0)
17643     .addImm(0).addReg(0)
17644     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
17645                       MI->getOperand(3).getTargetFlags())
17646     .addReg(0);
17647     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
17648     addDirectMem(MIB, X86::EAX);
17649     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
17650   } else {
17651     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
17652                                       TII->get(X86::MOV32rm), X86::EAX)
17653     .addReg(TII->getGlobalBaseReg(F))
17654     .addImm(0).addReg(0)
17655     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
17656                       MI->getOperand(3).getTargetFlags())
17657     .addReg(0);
17658     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
17659     addDirectMem(MIB, X86::EAX);
17660     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
17661   }
17662
17663   MI->eraseFromParent(); // The pseudo instruction is gone now.
17664   return BB;
17665 }
17666
17667 MachineBasicBlock *
17668 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
17669                                     MachineBasicBlock *MBB) const {
17670   DebugLoc DL = MI->getDebugLoc();
17671   MachineFunction *MF = MBB->getParent();
17672   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
17673   MachineRegisterInfo &MRI = MF->getRegInfo();
17674
17675   const BasicBlock *BB = MBB->getBasicBlock();
17676   MachineFunction::iterator I = MBB;
17677   ++I;
17678
17679   // Memory Reference
17680   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
17681   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
17682
17683   unsigned DstReg;
17684   unsigned MemOpndSlot = 0;
17685
17686   unsigned CurOp = 0;
17687
17688   DstReg = MI->getOperand(CurOp++).getReg();
17689   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
17690   assert(RC->hasType(MVT::i32) && "Invalid destination!");
17691   unsigned mainDstReg = MRI.createVirtualRegister(RC);
17692   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
17693
17694   MemOpndSlot = CurOp;
17695
17696   MVT PVT = getPointerTy();
17697   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
17698          "Invalid Pointer Size!");
17699
17700   // For v = setjmp(buf), we generate
17701   //
17702   // thisMBB:
17703   //  buf[LabelOffset] = restoreMBB
17704   //  SjLjSetup restoreMBB
17705   //
17706   // mainMBB:
17707   //  v_main = 0
17708   //
17709   // sinkMBB:
17710   //  v = phi(main, restore)
17711   //
17712   // restoreMBB:
17713   //  v_restore = 1
17714
17715   MachineBasicBlock *thisMBB = MBB;
17716   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
17717   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
17718   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
17719   MF->insert(I, mainMBB);
17720   MF->insert(I, sinkMBB);
17721   MF->push_back(restoreMBB);
17722
17723   MachineInstrBuilder MIB;
17724
17725   // Transfer the remainder of BB and its successor edges to sinkMBB.
17726   sinkMBB->splice(sinkMBB->begin(), MBB,
17727                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
17728   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
17729
17730   // thisMBB:
17731   unsigned PtrStoreOpc = 0;
17732   unsigned LabelReg = 0;
17733   const int64_t LabelOffset = 1 * PVT.getStoreSize();
17734   Reloc::Model RM = MF->getTarget().getRelocationModel();
17735   bool UseImmLabel = (MF->getTarget().getCodeModel() == CodeModel::Small) &&
17736                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
17737
17738   // Prepare IP either in reg or imm.
17739   if (!UseImmLabel) {
17740     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
17741     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
17742     LabelReg = MRI.createVirtualRegister(PtrRC);
17743     if (Subtarget->is64Bit()) {
17744       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
17745               .addReg(X86::RIP)
17746               .addImm(0)
17747               .addReg(0)
17748               .addMBB(restoreMBB)
17749               .addReg(0);
17750     } else {
17751       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
17752       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
17753               .addReg(XII->getGlobalBaseReg(MF))
17754               .addImm(0)
17755               .addReg(0)
17756               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
17757               .addReg(0);
17758     }
17759   } else
17760     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
17761   // Store IP
17762   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
17763   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
17764     if (i == X86::AddrDisp)
17765       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
17766     else
17767       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
17768   }
17769   if (!UseImmLabel)
17770     MIB.addReg(LabelReg);
17771   else
17772     MIB.addMBB(restoreMBB);
17773   MIB.setMemRefs(MMOBegin, MMOEnd);
17774   // Setup
17775   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
17776           .addMBB(restoreMBB);
17777
17778   const X86RegisterInfo *RegInfo =
17779     static_cast<const X86RegisterInfo*>(MF->getTarget().getRegisterInfo());
17780   MIB.addRegMask(RegInfo->getNoPreservedMask());
17781   thisMBB->addSuccessor(mainMBB);
17782   thisMBB->addSuccessor(restoreMBB);
17783
17784   // mainMBB:
17785   //  EAX = 0
17786   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
17787   mainMBB->addSuccessor(sinkMBB);
17788
17789   // sinkMBB:
17790   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
17791           TII->get(X86::PHI), DstReg)
17792     .addReg(mainDstReg).addMBB(mainMBB)
17793     .addReg(restoreDstReg).addMBB(restoreMBB);
17794
17795   // restoreMBB:
17796   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
17797   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
17798   restoreMBB->addSuccessor(sinkMBB);
17799
17800   MI->eraseFromParent();
17801   return sinkMBB;
17802 }
17803
17804 MachineBasicBlock *
17805 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
17806                                      MachineBasicBlock *MBB) const {
17807   DebugLoc DL = MI->getDebugLoc();
17808   MachineFunction *MF = MBB->getParent();
17809   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
17810   MachineRegisterInfo &MRI = MF->getRegInfo();
17811
17812   // Memory Reference
17813   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
17814   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
17815
17816   MVT PVT = getPointerTy();
17817   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
17818          "Invalid Pointer Size!");
17819
17820   const TargetRegisterClass *RC =
17821     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
17822   unsigned Tmp = MRI.createVirtualRegister(RC);
17823   // Since FP is only updated here but NOT referenced, it's treated as GPR.
17824   const X86RegisterInfo *RegInfo =
17825     static_cast<const X86RegisterInfo*>(MF->getTarget().getRegisterInfo());
17826   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
17827   unsigned SP = RegInfo->getStackRegister();
17828
17829   MachineInstrBuilder MIB;
17830
17831   const int64_t LabelOffset = 1 * PVT.getStoreSize();
17832   const int64_t SPOffset = 2 * PVT.getStoreSize();
17833
17834   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
17835   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
17836
17837   // Reload FP
17838   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
17839   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
17840     MIB.addOperand(MI->getOperand(i));
17841   MIB.setMemRefs(MMOBegin, MMOEnd);
17842   // Reload IP
17843   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
17844   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
17845     if (i == X86::AddrDisp)
17846       MIB.addDisp(MI->getOperand(i), LabelOffset);
17847     else
17848       MIB.addOperand(MI->getOperand(i));
17849   }
17850   MIB.setMemRefs(MMOBegin, MMOEnd);
17851   // Reload SP
17852   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
17853   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
17854     if (i == X86::AddrDisp)
17855       MIB.addDisp(MI->getOperand(i), SPOffset);
17856     else
17857       MIB.addOperand(MI->getOperand(i));
17858   }
17859   MIB.setMemRefs(MMOBegin, MMOEnd);
17860   // Jump
17861   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
17862
17863   MI->eraseFromParent();
17864   return MBB;
17865 }
17866
17867 // Replace 213-type (isel default) FMA3 instructions with 231-type for
17868 // accumulator loops. Writing back to the accumulator allows the coalescer
17869 // to remove extra copies in the loop.   
17870 MachineBasicBlock *
17871 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
17872                                  MachineBasicBlock *MBB) const {
17873   MachineOperand &AddendOp = MI->getOperand(3);
17874
17875   // Bail out early if the addend isn't a register - we can't switch these.
17876   if (!AddendOp.isReg())
17877     return MBB;
17878
17879   MachineFunction &MF = *MBB->getParent();
17880   MachineRegisterInfo &MRI = MF.getRegInfo();
17881
17882   // Check whether the addend is defined by a PHI:
17883   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
17884   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
17885   if (!AddendDef.isPHI())
17886     return MBB;
17887
17888   // Look for the following pattern:
17889   // loop:
17890   //   %addend = phi [%entry, 0], [%loop, %result]
17891   //   ...
17892   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
17893
17894   // Replace with:
17895   //   loop:
17896   //   %addend = phi [%entry, 0], [%loop, %result]
17897   //   ...
17898   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
17899
17900   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
17901     assert(AddendDef.getOperand(i).isReg());
17902     MachineOperand PHISrcOp = AddendDef.getOperand(i);
17903     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
17904     if (&PHISrcInst == MI) {
17905       // Found a matching instruction.
17906       unsigned NewFMAOpc = 0;
17907       switch (MI->getOpcode()) {
17908         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
17909         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
17910         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
17911         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
17912         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
17913         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
17914         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
17915         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
17916         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
17917         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
17918         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
17919         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
17920         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
17921         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
17922         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
17923         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
17924         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
17925         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
17926         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
17927         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
17928         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
17929         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
17930         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
17931         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
17932         default: llvm_unreachable("Unrecognized FMA variant.");
17933       }
17934
17935       const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
17936       MachineInstrBuilder MIB =
17937         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
17938         .addOperand(MI->getOperand(0))
17939         .addOperand(MI->getOperand(3))
17940         .addOperand(MI->getOperand(2))
17941         .addOperand(MI->getOperand(1));
17942       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
17943       MI->eraseFromParent();
17944     }
17945   }
17946
17947   return MBB;
17948 }
17949
17950 MachineBasicBlock *
17951 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
17952                                                MachineBasicBlock *BB) const {
17953   switch (MI->getOpcode()) {
17954   default: llvm_unreachable("Unexpected instr type to insert");
17955   case X86::TAILJMPd64:
17956   case X86::TAILJMPr64:
17957   case X86::TAILJMPm64:
17958     llvm_unreachable("TAILJMP64 would not be touched here.");
17959   case X86::TCRETURNdi64:
17960   case X86::TCRETURNri64:
17961   case X86::TCRETURNmi64:
17962     return BB;
17963   case X86::WIN_ALLOCA:
17964     return EmitLoweredWinAlloca(MI, BB);
17965   case X86::SEG_ALLOCA_32:
17966     return EmitLoweredSegAlloca(MI, BB, false);
17967   case X86::SEG_ALLOCA_64:
17968     return EmitLoweredSegAlloca(MI, BB, true);
17969   case X86::TLSCall_32:
17970   case X86::TLSCall_64:
17971     return EmitLoweredTLSCall(MI, BB);
17972   case X86::CMOV_GR8:
17973   case X86::CMOV_FR32:
17974   case X86::CMOV_FR64:
17975   case X86::CMOV_V4F32:
17976   case X86::CMOV_V2F64:
17977   case X86::CMOV_V2I64:
17978   case X86::CMOV_V8F32:
17979   case X86::CMOV_V4F64:
17980   case X86::CMOV_V4I64:
17981   case X86::CMOV_V16F32:
17982   case X86::CMOV_V8F64:
17983   case X86::CMOV_V8I64:
17984   case X86::CMOV_GR16:
17985   case X86::CMOV_GR32:
17986   case X86::CMOV_RFP32:
17987   case X86::CMOV_RFP64:
17988   case X86::CMOV_RFP80:
17989     return EmitLoweredSelect(MI, BB);
17990
17991   case X86::FP32_TO_INT16_IN_MEM:
17992   case X86::FP32_TO_INT32_IN_MEM:
17993   case X86::FP32_TO_INT64_IN_MEM:
17994   case X86::FP64_TO_INT16_IN_MEM:
17995   case X86::FP64_TO_INT32_IN_MEM:
17996   case X86::FP64_TO_INT64_IN_MEM:
17997   case X86::FP80_TO_INT16_IN_MEM:
17998   case X86::FP80_TO_INT32_IN_MEM:
17999   case X86::FP80_TO_INT64_IN_MEM: {
18000     MachineFunction *F = BB->getParent();
18001     const TargetInstrInfo *TII = F->getTarget().getInstrInfo();
18002     DebugLoc DL = MI->getDebugLoc();
18003
18004     // Change the floating point control register to use "round towards zero"
18005     // mode when truncating to an integer value.
18006     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
18007     addFrameReference(BuildMI(*BB, MI, DL,
18008                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
18009
18010     // Load the old value of the high byte of the control word...
18011     unsigned OldCW =
18012       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
18013     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
18014                       CWFrameIdx);
18015
18016     // Set the high part to be round to zero...
18017     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
18018       .addImm(0xC7F);
18019
18020     // Reload the modified control word now...
18021     addFrameReference(BuildMI(*BB, MI, DL,
18022                               TII->get(X86::FLDCW16m)), CWFrameIdx);
18023
18024     // Restore the memory image of control word to original value
18025     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
18026       .addReg(OldCW);
18027
18028     // Get the X86 opcode to use.
18029     unsigned Opc;
18030     switch (MI->getOpcode()) {
18031     default: llvm_unreachable("illegal opcode!");
18032     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
18033     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
18034     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
18035     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
18036     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
18037     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
18038     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
18039     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
18040     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
18041     }
18042
18043     X86AddressMode AM;
18044     MachineOperand &Op = MI->getOperand(0);
18045     if (Op.isReg()) {
18046       AM.BaseType = X86AddressMode::RegBase;
18047       AM.Base.Reg = Op.getReg();
18048     } else {
18049       AM.BaseType = X86AddressMode::FrameIndexBase;
18050       AM.Base.FrameIndex = Op.getIndex();
18051     }
18052     Op = MI->getOperand(1);
18053     if (Op.isImm())
18054       AM.Scale = Op.getImm();
18055     Op = MI->getOperand(2);
18056     if (Op.isImm())
18057       AM.IndexReg = Op.getImm();
18058     Op = MI->getOperand(3);
18059     if (Op.isGlobal()) {
18060       AM.GV = Op.getGlobal();
18061     } else {
18062       AM.Disp = Op.getImm();
18063     }
18064     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
18065                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
18066
18067     // Reload the original control word now.
18068     addFrameReference(BuildMI(*BB, MI, DL,
18069                               TII->get(X86::FLDCW16m)), CWFrameIdx);
18070
18071     MI->eraseFromParent();   // The pseudo instruction is gone now.
18072     return BB;
18073   }
18074     // String/text processing lowering.
18075   case X86::PCMPISTRM128REG:
18076   case X86::VPCMPISTRM128REG:
18077   case X86::PCMPISTRM128MEM:
18078   case X86::VPCMPISTRM128MEM:
18079   case X86::PCMPESTRM128REG:
18080   case X86::VPCMPESTRM128REG:
18081   case X86::PCMPESTRM128MEM:
18082   case X86::VPCMPESTRM128MEM:
18083     assert(Subtarget->hasSSE42() &&
18084            "Target must have SSE4.2 or AVX features enabled");
18085     return EmitPCMPSTRM(MI, BB, BB->getParent()->getTarget().getInstrInfo());
18086
18087   // String/text processing lowering.
18088   case X86::PCMPISTRIREG:
18089   case X86::VPCMPISTRIREG:
18090   case X86::PCMPISTRIMEM:
18091   case X86::VPCMPISTRIMEM:
18092   case X86::PCMPESTRIREG:
18093   case X86::VPCMPESTRIREG:
18094   case X86::PCMPESTRIMEM:
18095   case X86::VPCMPESTRIMEM:
18096     assert(Subtarget->hasSSE42() &&
18097            "Target must have SSE4.2 or AVX features enabled");
18098     return EmitPCMPSTRI(MI, BB, BB->getParent()->getTarget().getInstrInfo());
18099
18100   // Thread synchronization.
18101   case X86::MONITOR:
18102     return EmitMonitor(MI, BB, BB->getParent()->getTarget().getInstrInfo(), Subtarget);
18103
18104   // xbegin
18105   case X86::XBEGIN:
18106     return EmitXBegin(MI, BB, BB->getParent()->getTarget().getInstrInfo());
18107
18108   case X86::VASTART_SAVE_XMM_REGS:
18109     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
18110
18111   case X86::VAARG_64:
18112     return EmitVAARG64WithCustomInserter(MI, BB);
18113
18114   case X86::EH_SjLj_SetJmp32:
18115   case X86::EH_SjLj_SetJmp64:
18116     return emitEHSjLjSetJmp(MI, BB);
18117
18118   case X86::EH_SjLj_LongJmp32:
18119   case X86::EH_SjLj_LongJmp64:
18120     return emitEHSjLjLongJmp(MI, BB);
18121
18122   case TargetOpcode::STACKMAP:
18123   case TargetOpcode::PATCHPOINT:
18124     return emitPatchPoint(MI, BB);
18125
18126   case X86::VFMADDPDr213r:
18127   case X86::VFMADDPSr213r:
18128   case X86::VFMADDSDr213r:
18129   case X86::VFMADDSSr213r:
18130   case X86::VFMSUBPDr213r:
18131   case X86::VFMSUBPSr213r:
18132   case X86::VFMSUBSDr213r:
18133   case X86::VFMSUBSSr213r:
18134   case X86::VFNMADDPDr213r:
18135   case X86::VFNMADDPSr213r:
18136   case X86::VFNMADDSDr213r:
18137   case X86::VFNMADDSSr213r:
18138   case X86::VFNMSUBPDr213r:
18139   case X86::VFNMSUBPSr213r:
18140   case X86::VFNMSUBSDr213r:
18141   case X86::VFNMSUBSSr213r:
18142   case X86::VFMADDPDr213rY:
18143   case X86::VFMADDPSr213rY:
18144   case X86::VFMSUBPDr213rY:
18145   case X86::VFMSUBPSr213rY:
18146   case X86::VFNMADDPDr213rY:
18147   case X86::VFNMADDPSr213rY:
18148   case X86::VFNMSUBPDr213rY:
18149   case X86::VFNMSUBPSr213rY:
18150     return emitFMA3Instr(MI, BB);
18151   }
18152 }
18153
18154 //===----------------------------------------------------------------------===//
18155 //                           X86 Optimization Hooks
18156 //===----------------------------------------------------------------------===//
18157
18158 void X86TargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
18159                                                       APInt &KnownZero,
18160                                                       APInt &KnownOne,
18161                                                       const SelectionDAG &DAG,
18162                                                       unsigned Depth) const {
18163   unsigned BitWidth = KnownZero.getBitWidth();
18164   unsigned Opc = Op.getOpcode();
18165   assert((Opc >= ISD::BUILTIN_OP_END ||
18166           Opc == ISD::INTRINSIC_WO_CHAIN ||
18167           Opc == ISD::INTRINSIC_W_CHAIN ||
18168           Opc == ISD::INTRINSIC_VOID) &&
18169          "Should use MaskedValueIsZero if you don't know whether Op"
18170          " is a target node!");
18171
18172   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
18173   switch (Opc) {
18174   default: break;
18175   case X86ISD::ADD:
18176   case X86ISD::SUB:
18177   case X86ISD::ADC:
18178   case X86ISD::SBB:
18179   case X86ISD::SMUL:
18180   case X86ISD::UMUL:
18181   case X86ISD::INC:
18182   case X86ISD::DEC:
18183   case X86ISD::OR:
18184   case X86ISD::XOR:
18185   case X86ISD::AND:
18186     // These nodes' second result is a boolean.
18187     if (Op.getResNo() == 0)
18188       break;
18189     // Fallthrough
18190   case X86ISD::SETCC:
18191     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
18192     break;
18193   case ISD::INTRINSIC_WO_CHAIN: {
18194     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
18195     unsigned NumLoBits = 0;
18196     switch (IntId) {
18197     default: break;
18198     case Intrinsic::x86_sse_movmsk_ps:
18199     case Intrinsic::x86_avx_movmsk_ps_256:
18200     case Intrinsic::x86_sse2_movmsk_pd:
18201     case Intrinsic::x86_avx_movmsk_pd_256:
18202     case Intrinsic::x86_mmx_pmovmskb:
18203     case Intrinsic::x86_sse2_pmovmskb_128:
18204     case Intrinsic::x86_avx2_pmovmskb: {
18205       // High bits of movmskp{s|d}, pmovmskb are known zero.
18206       switch (IntId) {
18207         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
18208         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
18209         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
18210         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
18211         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
18212         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
18213         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
18214         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
18215       }
18216       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
18217       break;
18218     }
18219     }
18220     break;
18221   }
18222   }
18223 }
18224
18225 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
18226   SDValue Op,
18227   const SelectionDAG &,
18228   unsigned Depth) const {
18229   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
18230   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
18231     return Op.getValueType().getScalarType().getSizeInBits();
18232
18233   // Fallback case.
18234   return 1;
18235 }
18236
18237 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
18238 /// node is a GlobalAddress + offset.
18239 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
18240                                        const GlobalValue* &GA,
18241                                        int64_t &Offset) const {
18242   if (N->getOpcode() == X86ISD::Wrapper) {
18243     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
18244       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
18245       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
18246       return true;
18247     }
18248   }
18249   return TargetLowering::isGAPlusOffset(N, GA, Offset);
18250 }
18251
18252 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
18253 /// same as extracting the high 128-bit part of 256-bit vector and then
18254 /// inserting the result into the low part of a new 256-bit vector
18255 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
18256   EVT VT = SVOp->getValueType(0);
18257   unsigned NumElems = VT.getVectorNumElements();
18258
18259   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
18260   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
18261     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
18262         SVOp->getMaskElt(j) >= 0)
18263       return false;
18264
18265   return true;
18266 }
18267
18268 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
18269 /// same as extracting the low 128-bit part of 256-bit vector and then
18270 /// inserting the result into the high part of a new 256-bit vector
18271 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
18272   EVT VT = SVOp->getValueType(0);
18273   unsigned NumElems = VT.getVectorNumElements();
18274
18275   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
18276   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
18277     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
18278         SVOp->getMaskElt(j) >= 0)
18279       return false;
18280
18281   return true;
18282 }
18283
18284 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
18285 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
18286                                         TargetLowering::DAGCombinerInfo &DCI,
18287                                         const X86Subtarget* Subtarget) {
18288   SDLoc dl(N);
18289   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
18290   SDValue V1 = SVOp->getOperand(0);
18291   SDValue V2 = SVOp->getOperand(1);
18292   EVT VT = SVOp->getValueType(0);
18293   unsigned NumElems = VT.getVectorNumElements();
18294
18295   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
18296       V2.getOpcode() == ISD::CONCAT_VECTORS) {
18297     //
18298     //                   0,0,0,...
18299     //                      |
18300     //    V      UNDEF    BUILD_VECTOR    UNDEF
18301     //     \      /           \           /
18302     //  CONCAT_VECTOR         CONCAT_VECTOR
18303     //         \                  /
18304     //          \                /
18305     //          RESULT: V + zero extended
18306     //
18307     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
18308         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
18309         V1.getOperand(1).getOpcode() != ISD::UNDEF)
18310       return SDValue();
18311
18312     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
18313       return SDValue();
18314
18315     // To match the shuffle mask, the first half of the mask should
18316     // be exactly the first vector, and all the rest a splat with the
18317     // first element of the second one.
18318     for (unsigned i = 0; i != NumElems/2; ++i)
18319       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
18320           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
18321         return SDValue();
18322
18323     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
18324     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
18325       if (Ld->hasNUsesOfValue(1, 0)) {
18326         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
18327         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
18328         SDValue ResNode =
18329           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
18330                                   Ld->getMemoryVT(),
18331                                   Ld->getPointerInfo(),
18332                                   Ld->getAlignment(),
18333                                   false/*isVolatile*/, true/*ReadMem*/,
18334                                   false/*WriteMem*/);
18335
18336         // Make sure the newly-created LOAD is in the same position as Ld in
18337         // terms of dependency. We create a TokenFactor for Ld and ResNode,
18338         // and update uses of Ld's output chain to use the TokenFactor.
18339         if (Ld->hasAnyUseOfValue(1)) {
18340           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18341                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
18342           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
18343           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
18344                                  SDValue(ResNode.getNode(), 1));
18345         }
18346
18347         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
18348       }
18349     }
18350
18351     // Emit a zeroed vector and insert the desired subvector on its
18352     // first half.
18353     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
18354     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
18355     return DCI.CombineTo(N, InsV);
18356   }
18357
18358   //===--------------------------------------------------------------------===//
18359   // Combine some shuffles into subvector extracts and inserts:
18360   //
18361
18362   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
18363   if (isShuffleHigh128VectorInsertLow(SVOp)) {
18364     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
18365     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
18366     return DCI.CombineTo(N, InsV);
18367   }
18368
18369   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
18370   if (isShuffleLow128VectorInsertHigh(SVOp)) {
18371     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
18372     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
18373     return DCI.CombineTo(N, InsV);
18374   }
18375
18376   return SDValue();
18377 }
18378
18379 /// \brief Get the PSHUF-style mask from PSHUF node.
18380 ///
18381 /// This is a very minor wrapper around getTargetShuffleMask to easy forming v4
18382 /// PSHUF-style masks that can be reused with such instructions.
18383 static SmallVector<int, 4> getPSHUFShuffleMask(SDValue N) {
18384   SmallVector<int, 4> Mask;
18385   bool IsUnary;
18386   bool HaveMask = getTargetShuffleMask(N.getNode(), N.getSimpleValueType(), Mask, IsUnary);
18387   (void)HaveMask;
18388   assert(HaveMask);
18389
18390   switch (N.getOpcode()) {
18391   case X86ISD::PSHUFD:
18392     return Mask;
18393   case X86ISD::PSHUFLW:
18394     Mask.resize(4);
18395     return Mask;
18396   case X86ISD::PSHUFHW:
18397     Mask.erase(Mask.begin(), Mask.begin() + 4);
18398     for (int &M : Mask)
18399       M -= 4;
18400     return Mask;
18401   default:
18402     llvm_unreachable("No valid shuffle instruction found!");
18403   }
18404 }
18405
18406 /// \brief Search for a combinable shuffle across a chain ending in pshufd.
18407 ///
18408 /// We walk up the chain and look for a combinable shuffle, skipping over
18409 /// shuffles that we could hoist this shuffle's transformation past without
18410 /// altering anything.
18411 static bool combineRedundantDWordShuffle(SDValue N, MutableArrayRef<int> Mask,
18412                                          SelectionDAG &DAG,
18413                                          TargetLowering::DAGCombinerInfo &DCI) {
18414   assert(N.getOpcode() == X86ISD::PSHUFD &&
18415          "Called with something other than an x86 128-bit half shuffle!");
18416   SDLoc DL(N);
18417
18418   // Walk up a single-use chain looking for a combinable shuffle.
18419   SDValue V = N.getOperand(0);
18420   for (; V.hasOneUse(); V = V.getOperand(0)) {
18421     switch (V.getOpcode()) {
18422     default:
18423       return false; // Nothing combined!
18424
18425     case ISD::BITCAST:
18426       // Skip bitcasts as we always know the type for the target specific
18427       // instructions.
18428       continue;
18429
18430     case X86ISD::PSHUFD:
18431       // Found another dword shuffle.
18432       break;
18433
18434     case X86ISD::PSHUFLW:
18435       // Check that the low words (being shuffled) are the identity in the
18436       // dword shuffle, and the high words are self-contained.
18437       if (Mask[0] != 0 || Mask[1] != 1 ||
18438           !(Mask[2] >= 2 && Mask[2] < 4 && Mask[3] >= 2 && Mask[3] < 4))
18439         return false;
18440
18441       continue;
18442
18443     case X86ISD::PSHUFHW:
18444       // Check that the high words (being shuffled) are the identity in the
18445       // dword shuffle, and the low words are self-contained.
18446       if (Mask[2] != 2 || Mask[3] != 3 ||
18447           !(Mask[0] >= 0 && Mask[0] < 2 && Mask[1] >= 0 && Mask[1] < 2))
18448         return false;
18449
18450       continue;
18451     }
18452     // Break out of the loop if we break out of the switch.
18453     break;
18454   }
18455
18456   if (!V.hasOneUse())
18457     // We fell out of the loop without finding a viable combining instruction.
18458     return false;
18459
18460   // Record the old value to use in RAUW-ing.
18461   SDValue Old = V;
18462
18463   // Merge this node's mask and our incoming mask.
18464   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
18465   for (int &M : Mask)
18466     M = VMask[M];
18467   V = DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V.getOperand(0),
18468                   getV4X86ShuffleImm8ForMask(Mask, DAG));
18469
18470   // It is possible that one of the combinable shuffles was completely absorbed
18471   // by the other, just replace it and revisit all users in that case.
18472   if (Old.getNode() == V.getNode()) {
18473     DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo=*/true);
18474     return true;
18475   }
18476
18477   // Replace N with its operand as we're going to combine that shuffle away.
18478   DAG.ReplaceAllUsesWith(N, N.getOperand(0));
18479
18480   // Replace the combinable shuffle with the combined one, updating all users
18481   // so that we re-evaluate the chain here.
18482   DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
18483   return true;
18484 }
18485
18486 /// \brief Search for a combinable shuffle across a chain ending in pshuflw or pshufhw.
18487 ///
18488 /// We walk up the chain, skipping shuffles of the other half and looking
18489 /// through shuffles which switch halves trying to find a shuffle of the same
18490 /// pair of dwords.
18491 static bool combineRedundantHalfShuffle(SDValue N, MutableArrayRef<int> Mask,
18492                                         SelectionDAG &DAG,
18493                                         TargetLowering::DAGCombinerInfo &DCI) {
18494   assert(
18495       (N.getOpcode() == X86ISD::PSHUFLW || N.getOpcode() == X86ISD::PSHUFHW) &&
18496       "Called with something other than an x86 128-bit half shuffle!");
18497   SDLoc DL(N);
18498   unsigned CombineOpcode = N.getOpcode();
18499
18500   // Walk up a single-use chain looking for a combinable shuffle.
18501   SDValue V = N.getOperand(0);
18502   for (; V.hasOneUse(); V = V.getOperand(0)) {
18503     switch (V.getOpcode()) {
18504     default:
18505       return false; // Nothing combined!
18506
18507     case ISD::BITCAST:
18508       // Skip bitcasts as we always know the type for the target specific
18509       // instructions.
18510       continue;
18511
18512     case X86ISD::PSHUFLW:
18513     case X86ISD::PSHUFHW:
18514       if (V.getOpcode() == CombineOpcode)
18515         break;
18516
18517       // Other-half shuffles are no-ops.
18518       continue;
18519
18520     case X86ISD::PSHUFD: {
18521       // We can only handle pshufd if the half we are combining either stays in
18522       // its half, or switches to the other half. Bail if one of these isn't
18523       // true.
18524       SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
18525       int DOffset = CombineOpcode == X86ISD::PSHUFLW ? 0 : 2;
18526       if (!((VMask[DOffset + 0] < 2 && VMask[DOffset + 1] < 2) ||
18527             (VMask[DOffset + 0] >= 2 && VMask[DOffset + 1] >= 2)))
18528         return false;
18529
18530       // Map the mask through the pshufd and keep walking up the chain.
18531       for (int i = 0; i < 4; ++i)
18532         Mask[i] = 2 * (VMask[DOffset + Mask[i] / 2] % 2) + Mask[i] % 2;
18533
18534       // Switch halves if the pshufd does.
18535       CombineOpcode =
18536           VMask[DOffset + Mask[0] / 2] < 2 ? X86ISD::PSHUFLW : X86ISD::PSHUFHW;
18537       continue;
18538     }
18539     }
18540     // Break out of the loop if we break out of the switch.
18541     break;
18542   }
18543
18544   if (!V.hasOneUse())
18545     // We fell out of the loop without finding a viable combining instruction.
18546     return false;
18547
18548   // Record the old value to use in RAUW-ing.
18549   SDValue Old = V;
18550
18551   // Merge this node's mask and our incoming mask (adjusted to account for all
18552   // the pshufd instructions encountered).
18553   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
18554   for (int &M : Mask)
18555     M = VMask[M];
18556   V = DAG.getNode(V.getOpcode(), DL, MVT::v8i16, V.getOperand(0),
18557                   getV4X86ShuffleImm8ForMask(Mask, DAG));
18558
18559   // Replace N with its operand as we're going to combine that shuffle away.
18560   DAG.ReplaceAllUsesWith(N, N.getOperand(0));
18561
18562   // Replace the combinable shuffle with the combined one, updating all users
18563   // so that we re-evaluate the chain here.
18564   DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
18565   return true;
18566 }
18567
18568 /// \brief Try to combine x86 target specific shuffles.
18569 static SDValue PerformTargetShuffleCombine(SDValue N, SelectionDAG &DAG,
18570                                            TargetLowering::DAGCombinerInfo &DCI,
18571                                            const X86Subtarget *Subtarget) {
18572   SDLoc DL(N);
18573   MVT VT = N.getSimpleValueType();
18574   SmallVector<int, 4> Mask;
18575
18576   switch (N.getOpcode()) {
18577   case X86ISD::PSHUFD:
18578   case X86ISD::PSHUFLW:
18579   case X86ISD::PSHUFHW:
18580     Mask = getPSHUFShuffleMask(N);
18581     assert(Mask.size() == 4);
18582     break;
18583   default:
18584     return SDValue();
18585   }
18586
18587   // Nuke no-op shuffles that show up after combining.
18588   if (isNoopShuffleMask(Mask))
18589     return DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
18590
18591   // Look for simplifications involving one or two shuffle instructions.
18592   SDValue V = N.getOperand(0);
18593   switch (N.getOpcode()) {
18594   default:
18595     break;
18596   case X86ISD::PSHUFLW:
18597   case X86ISD::PSHUFHW:
18598     assert(VT == MVT::v8i16);
18599     (void)VT;
18600
18601     if (combineRedundantHalfShuffle(N, Mask, DAG, DCI))
18602       return SDValue(); // We combined away this shuffle, so we're done.
18603
18604     // See if this reduces to a PSHUFD which is no more expensive and can
18605     // combine with more operations.
18606     if (Mask[0] % 2 == 0 && Mask[2] % 2 == 0 &&
18607         areAdjacentMasksSequential(Mask)) {
18608       int DMask[] = {-1, -1, -1, -1};
18609       int DOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 2;
18610       DMask[DOffset + 0] = DOffset + Mask[0] / 2;
18611       DMask[DOffset + 1] = DOffset + Mask[2] / 2;
18612       V = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, V);
18613       DCI.AddToWorklist(V.getNode());
18614       V = DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V,
18615                       getV4X86ShuffleImm8ForMask(DMask, DAG));
18616       DCI.AddToWorklist(V.getNode());
18617       return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, V);
18618     }
18619
18620     break;
18621
18622   case X86ISD::PSHUFD:
18623     if (combineRedundantDWordShuffle(N, Mask, DAG, DCI))
18624       return SDValue(); // We combined away this shuffle.
18625
18626     break;
18627   }
18628
18629   return SDValue();
18630 }
18631
18632 /// PerformShuffleCombine - Performs several different shuffle combines.
18633 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
18634                                      TargetLowering::DAGCombinerInfo &DCI,
18635                                      const X86Subtarget *Subtarget) {
18636   SDLoc dl(N);
18637   SDValue N0 = N->getOperand(0);
18638   SDValue N1 = N->getOperand(1);
18639   EVT VT = N->getValueType(0);
18640
18641   // Canonicalize shuffles that perform 'addsub' on packed float vectors
18642   // according to the rule:
18643   //  (shuffle (FADD A, B), (FSUB A, B), Mask) ->
18644   //  (shuffle (FSUB A, -B), (FADD A, -B), Mask)
18645   //
18646   // Where 'Mask' is:
18647   //  <0,5,2,7>             -- for v4f32 and v4f64 shuffles;
18648   //  <0,3>                 -- for v2f64 shuffles;
18649   //  <0,9,2,11,4,13,6,15>  -- for v8f32 shuffles.
18650   //
18651   // This helps pattern-matching more SSE3/AVX ADDSUB instructions
18652   // during ISel stage.
18653   if (N->getOpcode() == ISD::VECTOR_SHUFFLE &&
18654       ((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18655        (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18656       N0->getOpcode() == ISD::FADD && N1->getOpcode() == ISD::FSUB &&
18657       // Operands to the FADD and FSUB must be the same.
18658       ((N0->getOperand(0) == N1->getOperand(0) &&
18659         N0->getOperand(1) == N1->getOperand(1)) ||
18660        // FADD is commutable. See if by commuting the operands of the FADD
18661        // we would still be able to match the operands of the FSUB dag node.
18662        (N0->getOperand(1) == N1->getOperand(0) &&
18663         N0->getOperand(0) == N1->getOperand(1))) &&
18664       N0->getOperand(0)->getOpcode() != ISD::UNDEF &&
18665       N0->getOperand(1)->getOpcode() != ISD::UNDEF) {
18666     
18667     ShuffleVectorSDNode *SV = cast<ShuffleVectorSDNode>(N);
18668     unsigned NumElts = VT.getVectorNumElements();
18669     ArrayRef<int> Mask = SV->getMask();
18670     bool CanFold = true;
18671
18672     for (unsigned i = 0, e = NumElts; i != e && CanFold; ++i)
18673       CanFold = Mask[i] == (int)((i & 1) ? i + NumElts : i);
18674
18675     if (CanFold) {
18676       SDValue Op0 = N1->getOperand(0);
18677       SDValue Op1 = DAG.getNode(ISD::FNEG, dl, VT, N1->getOperand(1));
18678       SDValue Sub = DAG.getNode(ISD::FSUB, dl, VT, Op0, Op1);
18679       SDValue Add = DAG.getNode(ISD::FADD, dl, VT, Op0, Op1);
18680       return DAG.getVectorShuffle(VT, dl, Sub, Add, Mask);
18681     }
18682   }
18683
18684   // Don't create instructions with illegal types after legalize types has run.
18685   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18686   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
18687     return SDValue();
18688
18689   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
18690   if (Subtarget->hasFp256() && VT.is256BitVector() &&
18691       N->getOpcode() == ISD::VECTOR_SHUFFLE)
18692     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
18693
18694   // During Type Legalization, when promoting illegal vector types,
18695   // the backend might introduce new shuffle dag nodes and bitcasts.
18696   //
18697   // This code performs the following transformation:
18698   // fold: (shuffle (bitcast (BINOP A, B)), Undef, <Mask>) ->
18699   //       (shuffle (BINOP (bitcast A), (bitcast B)), Undef, <Mask>)
18700   //
18701   // We do this only if both the bitcast and the BINOP dag nodes have
18702   // one use. Also, perform this transformation only if the new binary
18703   // operation is legal. This is to avoid introducing dag nodes that
18704   // potentially need to be further expanded (or custom lowered) into a
18705   // less optimal sequence of dag nodes.
18706   if (!DCI.isBeforeLegalize() && DCI.isBeforeLegalizeOps() &&
18707       N1.getOpcode() == ISD::UNDEF && N0.hasOneUse() &&
18708       N0.getOpcode() == ISD::BITCAST) {
18709     SDValue BC0 = N0.getOperand(0);
18710     EVT SVT = BC0.getValueType();
18711     unsigned Opcode = BC0.getOpcode();
18712     unsigned NumElts = VT.getVectorNumElements();
18713     
18714     if (BC0.hasOneUse() && SVT.isVector() &&
18715         SVT.getVectorNumElements() * 2 == NumElts &&
18716         TLI.isOperationLegal(Opcode, VT)) {
18717       bool CanFold = false;
18718       switch (Opcode) {
18719       default : break;
18720       case ISD::ADD :
18721       case ISD::FADD :
18722       case ISD::SUB :
18723       case ISD::FSUB :
18724       case ISD::MUL :
18725       case ISD::FMUL :
18726         CanFold = true;
18727       }
18728
18729       unsigned SVTNumElts = SVT.getVectorNumElements();
18730       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
18731       for (unsigned i = 0, e = SVTNumElts; i != e && CanFold; ++i)
18732         CanFold = SVOp->getMaskElt(i) == (int)(i * 2);
18733       for (unsigned i = SVTNumElts, e = NumElts; i != e && CanFold; ++i)
18734         CanFold = SVOp->getMaskElt(i) < 0;
18735
18736       if (CanFold) {
18737         SDValue BC00 = DAG.getNode(ISD::BITCAST, dl, VT, BC0.getOperand(0));
18738         SDValue BC01 = DAG.getNode(ISD::BITCAST, dl, VT, BC0.getOperand(1));
18739         SDValue NewBinOp = DAG.getNode(BC0.getOpcode(), dl, VT, BC00, BC01);
18740         return DAG.getVectorShuffle(VT, dl, NewBinOp, N1, &SVOp->getMask()[0]);
18741       }
18742     }
18743   }
18744
18745   // Only handle 128 wide vector from here on.
18746   if (!VT.is128BitVector())
18747     return SDValue();
18748
18749   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
18750   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
18751   // consecutive, non-overlapping, and in the right order.
18752   SmallVector<SDValue, 16> Elts;
18753   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
18754     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
18755
18756   SDValue LD = EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
18757   if (LD.getNode())
18758     return LD;
18759
18760   if (isTargetShuffle(N->getOpcode())) {
18761     SDValue Shuffle =
18762         PerformTargetShuffleCombine(SDValue(N, 0), DAG, DCI, Subtarget);
18763     if (Shuffle.getNode())
18764       return Shuffle;
18765   }
18766
18767   return SDValue();
18768 }
18769
18770 /// PerformTruncateCombine - Converts truncate operation to
18771 /// a sequence of vector shuffle operations.
18772 /// It is possible when we truncate 256-bit vector to 128-bit vector
18773 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
18774                                       TargetLowering::DAGCombinerInfo &DCI,
18775                                       const X86Subtarget *Subtarget)  {
18776   return SDValue();
18777 }
18778
18779 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
18780 /// specific shuffle of a load can be folded into a single element load.
18781 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
18782 /// shuffles have been customed lowered so we need to handle those here.
18783 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
18784                                          TargetLowering::DAGCombinerInfo &DCI) {
18785   if (DCI.isBeforeLegalizeOps())
18786     return SDValue();
18787
18788   SDValue InVec = N->getOperand(0);
18789   SDValue EltNo = N->getOperand(1);
18790
18791   if (!isa<ConstantSDNode>(EltNo))
18792     return SDValue();
18793
18794   EVT VT = InVec.getValueType();
18795
18796   bool HasShuffleIntoBitcast = false;
18797   if (InVec.getOpcode() == ISD::BITCAST) {
18798     // Don't duplicate a load with other uses.
18799     if (!InVec.hasOneUse())
18800       return SDValue();
18801     EVT BCVT = InVec.getOperand(0).getValueType();
18802     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
18803       return SDValue();
18804     InVec = InVec.getOperand(0);
18805     HasShuffleIntoBitcast = true;
18806   }
18807
18808   if (!isTargetShuffle(InVec.getOpcode()))
18809     return SDValue();
18810
18811   // Don't duplicate a load with other uses.
18812   if (!InVec.hasOneUse())
18813     return SDValue();
18814
18815   SmallVector<int, 16> ShuffleMask;
18816   bool UnaryShuffle;
18817   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
18818                             UnaryShuffle))
18819     return SDValue();
18820
18821   // Select the input vector, guarding against out of range extract vector.
18822   unsigned NumElems = VT.getVectorNumElements();
18823   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
18824   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
18825   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
18826                                          : InVec.getOperand(1);
18827
18828   // If inputs to shuffle are the same for both ops, then allow 2 uses
18829   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
18830
18831   if (LdNode.getOpcode() == ISD::BITCAST) {
18832     // Don't duplicate a load with other uses.
18833     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
18834       return SDValue();
18835
18836     AllowedUses = 1; // only allow 1 load use if we have a bitcast
18837     LdNode = LdNode.getOperand(0);
18838   }
18839
18840   if (!ISD::isNormalLoad(LdNode.getNode()))
18841     return SDValue();
18842
18843   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
18844
18845   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
18846     return SDValue();
18847
18848   if (HasShuffleIntoBitcast) {
18849     // If there's a bitcast before the shuffle, check if the load type and
18850     // alignment is valid.
18851     unsigned Align = LN0->getAlignment();
18852     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18853     unsigned NewAlign = TLI.getDataLayout()->
18854       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
18855
18856     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
18857       return SDValue();
18858   }
18859
18860   // All checks match so transform back to vector_shuffle so that DAG combiner
18861   // can finish the job
18862   SDLoc dl(N);
18863
18864   // Create shuffle node taking into account the case that its a unary shuffle
18865   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
18866   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
18867                                  InVec.getOperand(0), Shuffle,
18868                                  &ShuffleMask[0]);
18869   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
18870   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
18871                      EltNo);
18872 }
18873
18874 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
18875 /// generation and convert it from being a bunch of shuffles and extracts
18876 /// to a simple store and scalar loads to extract the elements.
18877 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
18878                                          TargetLowering::DAGCombinerInfo &DCI) {
18879   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
18880   if (NewOp.getNode())
18881     return NewOp;
18882
18883   SDValue InputVector = N->getOperand(0);
18884
18885   // Detect whether we are trying to convert from mmx to i32 and the bitcast
18886   // from mmx to v2i32 has a single usage.
18887   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
18888       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
18889       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
18890     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
18891                        N->getValueType(0),
18892                        InputVector.getNode()->getOperand(0));
18893
18894   // Only operate on vectors of 4 elements, where the alternative shuffling
18895   // gets to be more expensive.
18896   if (InputVector.getValueType() != MVT::v4i32)
18897     return SDValue();
18898
18899   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
18900   // single use which is a sign-extend or zero-extend, and all elements are
18901   // used.
18902   SmallVector<SDNode *, 4> Uses;
18903   unsigned ExtractedElements = 0;
18904   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
18905        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
18906     if (UI.getUse().getResNo() != InputVector.getResNo())
18907       return SDValue();
18908
18909     SDNode *Extract = *UI;
18910     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
18911       return SDValue();
18912
18913     if (Extract->getValueType(0) != MVT::i32)
18914       return SDValue();
18915     if (!Extract->hasOneUse())
18916       return SDValue();
18917     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
18918         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
18919       return SDValue();
18920     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
18921       return SDValue();
18922
18923     // Record which element was extracted.
18924     ExtractedElements |=
18925       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
18926
18927     Uses.push_back(Extract);
18928   }
18929
18930   // If not all the elements were used, this may not be worthwhile.
18931   if (ExtractedElements != 15)
18932     return SDValue();
18933
18934   // Ok, we've now decided to do the transformation.
18935   SDLoc dl(InputVector);
18936
18937   // Store the value to a temporary stack slot.
18938   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
18939   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
18940                             MachinePointerInfo(), false, false, 0);
18941
18942   // Replace each use (extract) with a load of the appropriate element.
18943   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
18944        UE = Uses.end(); UI != UE; ++UI) {
18945     SDNode *Extract = *UI;
18946
18947     // cOMpute the element's address.
18948     SDValue Idx = Extract->getOperand(1);
18949     unsigned EltSize =
18950         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
18951     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
18952     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18953     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
18954
18955     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
18956                                      StackPtr, OffsetVal);
18957
18958     // Load the scalar.
18959     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
18960                                      ScalarAddr, MachinePointerInfo(),
18961                                      false, false, false, 0);
18962
18963     // Replace the exact with the load.
18964     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
18965   }
18966
18967   // The replacement was made in place; don't return anything.
18968   return SDValue();
18969 }
18970
18971 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
18972 static std::pair<unsigned, bool>
18973 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
18974                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
18975   if (!VT.isVector())
18976     return std::make_pair(0, false);
18977
18978   bool NeedSplit = false;
18979   switch (VT.getSimpleVT().SimpleTy) {
18980   default: return std::make_pair(0, false);
18981   case MVT::v32i8:
18982   case MVT::v16i16:
18983   case MVT::v8i32:
18984     if (!Subtarget->hasAVX2())
18985       NeedSplit = true;
18986     if (!Subtarget->hasAVX())
18987       return std::make_pair(0, false);
18988     break;
18989   case MVT::v16i8:
18990   case MVT::v8i16:
18991   case MVT::v4i32:
18992     if (!Subtarget->hasSSE2())
18993       return std::make_pair(0, false);
18994   }
18995
18996   // SSE2 has only a small subset of the operations.
18997   bool hasUnsigned = Subtarget->hasSSE41() ||
18998                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
18999   bool hasSigned = Subtarget->hasSSE41() ||
19000                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
19001
19002   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
19003
19004   unsigned Opc = 0;
19005   // Check for x CC y ? x : y.
19006   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
19007       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
19008     switch (CC) {
19009     default: break;
19010     case ISD::SETULT:
19011     case ISD::SETULE:
19012       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
19013     case ISD::SETUGT:
19014     case ISD::SETUGE:
19015       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
19016     case ISD::SETLT:
19017     case ISD::SETLE:
19018       Opc = hasSigned ? X86ISD::SMIN : 0; break;
19019     case ISD::SETGT:
19020     case ISD::SETGE:
19021       Opc = hasSigned ? X86ISD::SMAX : 0; break;
19022     }
19023   // Check for x CC y ? y : x -- a min/max with reversed arms.
19024   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
19025              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
19026     switch (CC) {
19027     default: break;
19028     case ISD::SETULT:
19029     case ISD::SETULE:
19030       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
19031     case ISD::SETUGT:
19032     case ISD::SETUGE:
19033       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
19034     case ISD::SETLT:
19035     case ISD::SETLE:
19036       Opc = hasSigned ? X86ISD::SMAX : 0; break;
19037     case ISD::SETGT:
19038     case ISD::SETGE:
19039       Opc = hasSigned ? X86ISD::SMIN : 0; break;
19040     }
19041   }
19042
19043   return std::make_pair(Opc, NeedSplit);
19044 }
19045
19046 static SDValue
19047 TransformVSELECTtoBlendVECTOR_SHUFFLE(SDNode *N, SelectionDAG &DAG,
19048                                       const X86Subtarget *Subtarget) {
19049   SDLoc dl(N);
19050   SDValue Cond = N->getOperand(0);
19051   SDValue LHS = N->getOperand(1);
19052   SDValue RHS = N->getOperand(2);
19053
19054   if (Cond.getOpcode() == ISD::SIGN_EXTEND) {
19055     SDValue CondSrc = Cond->getOperand(0);
19056     if (CondSrc->getOpcode() == ISD::SIGN_EXTEND_INREG)
19057       Cond = CondSrc->getOperand(0);
19058   }
19059
19060   MVT VT = N->getSimpleValueType(0);
19061   MVT EltVT = VT.getVectorElementType();
19062   unsigned NumElems = VT.getVectorNumElements();
19063   // There is no blend with immediate in AVX-512.
19064   if (VT.is512BitVector())
19065     return SDValue();
19066
19067   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
19068     return SDValue();
19069   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
19070     return SDValue();
19071
19072   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
19073     return SDValue();
19074
19075   unsigned MaskValue = 0;
19076   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
19077     return SDValue();
19078
19079   SmallVector<int, 8> ShuffleMask(NumElems, -1);
19080   for (unsigned i = 0; i < NumElems; ++i) {
19081     // Be sure we emit undef where we can.
19082     if (Cond.getOperand(i)->getOpcode() == ISD::UNDEF)
19083       ShuffleMask[i] = -1;
19084     else
19085       ShuffleMask[i] = i + NumElems * ((MaskValue >> i) & 1);
19086   }
19087
19088   return DAG.getVectorShuffle(VT, dl, LHS, RHS, &ShuffleMask[0]);
19089 }
19090
19091 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
19092 /// nodes.
19093 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
19094                                     TargetLowering::DAGCombinerInfo &DCI,
19095                                     const X86Subtarget *Subtarget) {
19096   SDLoc DL(N);
19097   SDValue Cond = N->getOperand(0);
19098   // Get the LHS/RHS of the select.
19099   SDValue LHS = N->getOperand(1);
19100   SDValue RHS = N->getOperand(2);
19101   EVT VT = LHS.getValueType();
19102   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19103
19104   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
19105   // instructions match the semantics of the common C idiom x<y?x:y but not
19106   // x<=y?x:y, because of how they handle negative zero (which can be
19107   // ignored in unsafe-math mode).
19108   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
19109       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
19110       (Subtarget->hasSSE2() ||
19111        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
19112     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
19113
19114     unsigned Opcode = 0;
19115     // Check for x CC y ? x : y.
19116     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
19117         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
19118       switch (CC) {
19119       default: break;
19120       case ISD::SETULT:
19121         // Converting this to a min would handle NaNs incorrectly, and swapping
19122         // the operands would cause it to handle comparisons between positive
19123         // and negative zero incorrectly.
19124         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
19125           if (!DAG.getTarget().Options.UnsafeFPMath &&
19126               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
19127             break;
19128           std::swap(LHS, RHS);
19129         }
19130         Opcode = X86ISD::FMIN;
19131         break;
19132       case ISD::SETOLE:
19133         // Converting this to a min would handle comparisons between positive
19134         // and negative zero incorrectly.
19135         if (!DAG.getTarget().Options.UnsafeFPMath &&
19136             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
19137           break;
19138         Opcode = X86ISD::FMIN;
19139         break;
19140       case ISD::SETULE:
19141         // Converting this to a min would handle both negative zeros and NaNs
19142         // incorrectly, but we can swap the operands to fix both.
19143         std::swap(LHS, RHS);
19144       case ISD::SETOLT:
19145       case ISD::SETLT:
19146       case ISD::SETLE:
19147         Opcode = X86ISD::FMIN;
19148         break;
19149
19150       case ISD::SETOGE:
19151         // Converting this to a max would handle comparisons between positive
19152         // and negative zero incorrectly.
19153         if (!DAG.getTarget().Options.UnsafeFPMath &&
19154             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
19155           break;
19156         Opcode = X86ISD::FMAX;
19157         break;
19158       case ISD::SETUGT:
19159         // Converting this to a max would handle NaNs incorrectly, and swapping
19160         // the operands would cause it to handle comparisons between positive
19161         // and negative zero incorrectly.
19162         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
19163           if (!DAG.getTarget().Options.UnsafeFPMath &&
19164               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
19165             break;
19166           std::swap(LHS, RHS);
19167         }
19168         Opcode = X86ISD::FMAX;
19169         break;
19170       case ISD::SETUGE:
19171         // Converting this to a max would handle both negative zeros and NaNs
19172         // incorrectly, but we can swap the operands to fix both.
19173         std::swap(LHS, RHS);
19174       case ISD::SETOGT:
19175       case ISD::SETGT:
19176       case ISD::SETGE:
19177         Opcode = X86ISD::FMAX;
19178         break;
19179       }
19180     // Check for x CC y ? y : x -- a min/max with reversed arms.
19181     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
19182                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
19183       switch (CC) {
19184       default: break;
19185       case ISD::SETOGE:
19186         // Converting this to a min would handle comparisons between positive
19187         // and negative zero incorrectly, and swapping the operands would
19188         // cause it to handle NaNs incorrectly.
19189         if (!DAG.getTarget().Options.UnsafeFPMath &&
19190             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
19191           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
19192             break;
19193           std::swap(LHS, RHS);
19194         }
19195         Opcode = X86ISD::FMIN;
19196         break;
19197       case ISD::SETUGT:
19198         // Converting this to a min would handle NaNs incorrectly.
19199         if (!DAG.getTarget().Options.UnsafeFPMath &&
19200             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
19201           break;
19202         Opcode = X86ISD::FMIN;
19203         break;
19204       case ISD::SETUGE:
19205         // Converting this to a min would handle both negative zeros and NaNs
19206         // incorrectly, but we can swap the operands to fix both.
19207         std::swap(LHS, RHS);
19208       case ISD::SETOGT:
19209       case ISD::SETGT:
19210       case ISD::SETGE:
19211         Opcode = X86ISD::FMIN;
19212         break;
19213
19214       case ISD::SETULT:
19215         // Converting this to a max would handle NaNs incorrectly.
19216         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
19217           break;
19218         Opcode = X86ISD::FMAX;
19219         break;
19220       case ISD::SETOLE:
19221         // Converting this to a max would handle comparisons between positive
19222         // and negative zero incorrectly, and swapping the operands would
19223         // cause it to handle NaNs incorrectly.
19224         if (!DAG.getTarget().Options.UnsafeFPMath &&
19225             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
19226           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
19227             break;
19228           std::swap(LHS, RHS);
19229         }
19230         Opcode = X86ISD::FMAX;
19231         break;
19232       case ISD::SETULE:
19233         // Converting this to a max would handle both negative zeros and NaNs
19234         // incorrectly, but we can swap the operands to fix both.
19235         std::swap(LHS, RHS);
19236       case ISD::SETOLT:
19237       case ISD::SETLT:
19238       case ISD::SETLE:
19239         Opcode = X86ISD::FMAX;
19240         break;
19241       }
19242     }
19243
19244     if (Opcode)
19245       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
19246   }
19247
19248   EVT CondVT = Cond.getValueType();
19249   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
19250       CondVT.getVectorElementType() == MVT::i1) {
19251     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
19252     // lowering on AVX-512. In this case we convert it to
19253     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
19254     // The same situation for all 128 and 256-bit vectors of i8 and i16
19255     EVT OpVT = LHS.getValueType();
19256     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
19257         (OpVT.getVectorElementType() == MVT::i8 ||
19258          OpVT.getVectorElementType() == MVT::i16)) {
19259       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
19260       DCI.AddToWorklist(Cond.getNode());
19261       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
19262     }
19263   }
19264   // If this is a select between two integer constants, try to do some
19265   // optimizations.
19266   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
19267     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
19268       // Don't do this for crazy integer types.
19269       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
19270         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
19271         // so that TrueC (the true value) is larger than FalseC.
19272         bool NeedsCondInvert = false;
19273
19274         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
19275             // Efficiently invertible.
19276             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
19277              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
19278               isa<ConstantSDNode>(Cond.getOperand(1))))) {
19279           NeedsCondInvert = true;
19280           std::swap(TrueC, FalseC);
19281         }
19282
19283         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
19284         if (FalseC->getAPIntValue() == 0 &&
19285             TrueC->getAPIntValue().isPowerOf2()) {
19286           if (NeedsCondInvert) // Invert the condition if needed.
19287             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
19288                                DAG.getConstant(1, Cond.getValueType()));
19289
19290           // Zero extend the condition if needed.
19291           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
19292
19293           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
19294           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
19295                              DAG.getConstant(ShAmt, MVT::i8));
19296         }
19297
19298         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
19299         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
19300           if (NeedsCondInvert) // Invert the condition if needed.
19301             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
19302                                DAG.getConstant(1, Cond.getValueType()));
19303
19304           // Zero extend the condition if needed.
19305           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
19306                              FalseC->getValueType(0), Cond);
19307           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
19308                              SDValue(FalseC, 0));
19309         }
19310
19311         // Optimize cases that will turn into an LEA instruction.  This requires
19312         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
19313         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
19314           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
19315           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
19316
19317           bool isFastMultiplier = false;
19318           if (Diff < 10) {
19319             switch ((unsigned char)Diff) {
19320               default: break;
19321               case 1:  // result = add base, cond
19322               case 2:  // result = lea base(    , cond*2)
19323               case 3:  // result = lea base(cond, cond*2)
19324               case 4:  // result = lea base(    , cond*4)
19325               case 5:  // result = lea base(cond, cond*4)
19326               case 8:  // result = lea base(    , cond*8)
19327               case 9:  // result = lea base(cond, cond*8)
19328                 isFastMultiplier = true;
19329                 break;
19330             }
19331           }
19332
19333           if (isFastMultiplier) {
19334             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
19335             if (NeedsCondInvert) // Invert the condition if needed.
19336               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
19337                                  DAG.getConstant(1, Cond.getValueType()));
19338
19339             // Zero extend the condition if needed.
19340             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
19341                                Cond);
19342             // Scale the condition by the difference.
19343             if (Diff != 1)
19344               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
19345                                  DAG.getConstant(Diff, Cond.getValueType()));
19346
19347             // Add the base if non-zero.
19348             if (FalseC->getAPIntValue() != 0)
19349               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
19350                                  SDValue(FalseC, 0));
19351             return Cond;
19352           }
19353         }
19354       }
19355   }
19356
19357   // Canonicalize max and min:
19358   // (x > y) ? x : y -> (x >= y) ? x : y
19359   // (x < y) ? x : y -> (x <= y) ? x : y
19360   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
19361   // the need for an extra compare
19362   // against zero. e.g.
19363   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
19364   // subl   %esi, %edi
19365   // testl  %edi, %edi
19366   // movl   $0, %eax
19367   // cmovgl %edi, %eax
19368   // =>
19369   // xorl   %eax, %eax
19370   // subl   %esi, $edi
19371   // cmovsl %eax, %edi
19372   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
19373       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
19374       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
19375     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
19376     switch (CC) {
19377     default: break;
19378     case ISD::SETLT:
19379     case ISD::SETGT: {
19380       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
19381       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
19382                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
19383       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
19384     }
19385     }
19386   }
19387
19388   // Early exit check
19389   if (!TLI.isTypeLegal(VT))
19390     return SDValue();
19391
19392   // Match VSELECTs into subs with unsigned saturation.
19393   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
19394       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
19395       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
19396        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
19397     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
19398
19399     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
19400     // left side invert the predicate to simplify logic below.
19401     SDValue Other;
19402     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
19403       Other = RHS;
19404       CC = ISD::getSetCCInverse(CC, true);
19405     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
19406       Other = LHS;
19407     }
19408
19409     if (Other.getNode() && Other->getNumOperands() == 2 &&
19410         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
19411       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
19412       SDValue CondRHS = Cond->getOperand(1);
19413
19414       // Look for a general sub with unsigned saturation first.
19415       // x >= y ? x-y : 0 --> subus x, y
19416       // x >  y ? x-y : 0 --> subus x, y
19417       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
19418           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
19419         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
19420
19421       if (auto *OpRHSBV = dyn_cast<BuildVectorSDNode>(OpRHS)) {
19422         SDValue OpRHSSplat = OpRHSBV->getConstantSplatValue();
19423         auto *OpRHSSplatConst = dyn_cast<ConstantSDNode>(OpRHSSplat);
19424         if (auto *CondRHSBV = dyn_cast<BuildVectorSDNode>(CondRHS)) {
19425           // If the RHS is a constant we have to reverse the const
19426           // canonicalization.
19427           // x > C-1 ? x+-C : 0 --> subus x, C
19428           SDValue CondRHSSplat = CondRHSBV->getConstantSplatValue();
19429           auto *CondRHSSplatConst = dyn_cast<ConstantSDNode>(CondRHSSplat);
19430           if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
19431               CondRHSSplatConst && OpRHSSplatConst) {
19432             APInt A = OpRHSSplatConst->getAPIntValue();
19433             if (CondRHSSplatConst->getAPIntValue() == -A - 1)
19434               return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
19435                                  DAG.getConstant(-A, VT));
19436           }
19437         }
19438
19439         // Another special case: If C was a sign bit, the sub has been
19440         // canonicalized into a xor.
19441         // FIXME: Would it be better to use computeKnownBits to determine
19442         //        whether it's safe to decanonicalize the xor?
19443         // x s< 0 ? x^C : 0 --> subus x, C
19444         if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
19445             ISD::isBuildVectorAllZeros(CondRHS.getNode()) && OpRHSSplatConst) {
19446           APInt A = OpRHSSplatConst->getAPIntValue();
19447           if (A.isSignBit())
19448             return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
19449         }
19450       }
19451     }
19452   }
19453
19454   // Try to match a min/max vector operation.
19455   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
19456     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
19457     unsigned Opc = ret.first;
19458     bool NeedSplit = ret.second;
19459
19460     if (Opc && NeedSplit) {
19461       unsigned NumElems = VT.getVectorNumElements();
19462       // Extract the LHS vectors
19463       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
19464       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
19465
19466       // Extract the RHS vectors
19467       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
19468       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
19469
19470       // Create min/max for each subvector
19471       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
19472       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
19473
19474       // Merge the result
19475       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
19476     } else if (Opc)
19477       return DAG.getNode(Opc, DL, VT, LHS, RHS);
19478   }
19479
19480   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
19481   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
19482       // Check if SETCC has already been promoted
19483       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
19484       // Check that condition value type matches vselect operand type
19485       CondVT == VT) { 
19486
19487     assert(Cond.getValueType().isVector() &&
19488            "vector select expects a vector selector!");
19489
19490     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
19491     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
19492
19493     if (!TValIsAllOnes && !FValIsAllZeros) {
19494       // Try invert the condition if true value is not all 1s and false value
19495       // is not all 0s.
19496       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
19497       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
19498
19499       if (TValIsAllZeros || FValIsAllOnes) {
19500         SDValue CC = Cond.getOperand(2);
19501         ISD::CondCode NewCC =
19502           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
19503                                Cond.getOperand(0).getValueType().isInteger());
19504         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
19505         std::swap(LHS, RHS);
19506         TValIsAllOnes = FValIsAllOnes;
19507         FValIsAllZeros = TValIsAllZeros;
19508       }
19509     }
19510
19511     if (TValIsAllOnes || FValIsAllZeros) {
19512       SDValue Ret;
19513
19514       if (TValIsAllOnes && FValIsAllZeros)
19515         Ret = Cond;
19516       else if (TValIsAllOnes)
19517         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
19518                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
19519       else if (FValIsAllZeros)
19520         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
19521                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
19522
19523       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
19524     }
19525   }
19526
19527   // Try to fold this VSELECT into a MOVSS/MOVSD
19528   if (N->getOpcode() == ISD::VSELECT &&
19529       Cond.getOpcode() == ISD::BUILD_VECTOR && !DCI.isBeforeLegalize()) {
19530     if (VT == MVT::v4i32 || VT == MVT::v4f32 ||
19531         (Subtarget->hasSSE2() && (VT == MVT::v2i64 || VT == MVT::v2f64))) {
19532       bool CanFold = false;
19533       unsigned NumElems = Cond.getNumOperands();
19534       SDValue A = LHS;
19535       SDValue B = RHS;
19536       
19537       if (isZero(Cond.getOperand(0))) {
19538         CanFold = true;
19539
19540         // fold (vselect <0,-1,-1,-1>, A, B) -> (movss A, B)
19541         // fold (vselect <0,-1> -> (movsd A, B)
19542         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
19543           CanFold = isAllOnes(Cond.getOperand(i));
19544       } else if (isAllOnes(Cond.getOperand(0))) {
19545         CanFold = true;
19546         std::swap(A, B);
19547
19548         // fold (vselect <-1,0,0,0>, A, B) -> (movss B, A)
19549         // fold (vselect <-1,0> -> (movsd B, A)
19550         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
19551           CanFold = isZero(Cond.getOperand(i));
19552       }
19553
19554       if (CanFold) {
19555         if (VT == MVT::v4i32 || VT == MVT::v4f32)
19556           return getTargetShuffleNode(X86ISD::MOVSS, DL, VT, A, B, DAG);
19557         return getTargetShuffleNode(X86ISD::MOVSD, DL, VT, A, B, DAG);
19558       }
19559
19560       if (Subtarget->hasSSE2() && (VT == MVT::v4i32 || VT == MVT::v4f32)) {
19561         // fold (v4i32: vselect <0,0,-1,-1>, A, B) ->
19562         //      (v4i32 (bitcast (movsd (v2i64 (bitcast A)),
19563         //                             (v2i64 (bitcast B)))))
19564         //
19565         // fold (v4f32: vselect <0,0,-1,-1>, A, B) ->
19566         //      (v4f32 (bitcast (movsd (v2f64 (bitcast A)),
19567         //                             (v2f64 (bitcast B)))))
19568         //
19569         // fold (v4i32: vselect <-1,-1,0,0>, A, B) ->
19570         //      (v4i32 (bitcast (movsd (v2i64 (bitcast B)),
19571         //                             (v2i64 (bitcast A)))))
19572         //
19573         // fold (v4f32: vselect <-1,-1,0,0>, A, B) ->
19574         //      (v4f32 (bitcast (movsd (v2f64 (bitcast B)),
19575         //                             (v2f64 (bitcast A)))))
19576
19577         CanFold = (isZero(Cond.getOperand(0)) &&
19578                    isZero(Cond.getOperand(1)) &&
19579                    isAllOnes(Cond.getOperand(2)) &&
19580                    isAllOnes(Cond.getOperand(3)));
19581
19582         if (!CanFold && isAllOnes(Cond.getOperand(0)) &&
19583             isAllOnes(Cond.getOperand(1)) &&
19584             isZero(Cond.getOperand(2)) &&
19585             isZero(Cond.getOperand(3))) {
19586           CanFold = true;
19587           std::swap(LHS, RHS);
19588         }
19589
19590         if (CanFold) {
19591           EVT NVT = (VT == MVT::v4i32) ? MVT::v2i64 : MVT::v2f64;
19592           SDValue NewA = DAG.getNode(ISD::BITCAST, DL, NVT, LHS);
19593           SDValue NewB = DAG.getNode(ISD::BITCAST, DL, NVT, RHS);
19594           SDValue Select = getTargetShuffleNode(X86ISD::MOVSD, DL, NVT, NewA,
19595                                                 NewB, DAG);
19596           return DAG.getNode(ISD::BITCAST, DL, VT, Select);
19597         }
19598       }
19599     }
19600   }
19601
19602   // If we know that this node is legal then we know that it is going to be
19603   // matched by one of the SSE/AVX BLEND instructions. These instructions only
19604   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
19605   // to simplify previous instructions.
19606   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
19607       !DCI.isBeforeLegalize() &&
19608       // We explicitly check against v8i16 and v16i16 because, although
19609       // they're marked as Custom, they might only be legal when Cond is a
19610       // build_vector of constants. This will be taken care in a later
19611       // condition.
19612       (TLI.isOperationLegalOrCustom(ISD::VSELECT, VT) && VT != MVT::v16i16 &&
19613        VT != MVT::v8i16)) {
19614     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
19615
19616     // Don't optimize vector selects that map to mask-registers.
19617     if (BitWidth == 1)
19618       return SDValue();
19619
19620     // Check all uses of that condition operand to check whether it will be
19621     // consumed by non-BLEND instructions, which may depend on all bits are set
19622     // properly.
19623     for (SDNode::use_iterator I = Cond->use_begin(),
19624                               E = Cond->use_end(); I != E; ++I)
19625       if (I->getOpcode() != ISD::VSELECT)
19626         // TODO: Add other opcodes eventually lowered into BLEND.
19627         return SDValue();
19628
19629     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
19630     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
19631
19632     APInt KnownZero, KnownOne;
19633     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
19634                                           DCI.isBeforeLegalizeOps());
19635     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
19636         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
19637       DCI.CommitTargetLoweringOpt(TLO);
19638   }
19639
19640   // We should generate an X86ISD::BLENDI from a vselect if its argument
19641   // is a sign_extend_inreg of an any_extend of a BUILD_VECTOR of
19642   // constants. This specific pattern gets generated when we split a
19643   // selector for a 512 bit vector in a machine without AVX512 (but with
19644   // 256-bit vectors), during legalization:
19645   //
19646   // (vselect (sign_extend (any_extend (BUILD_VECTOR)) i1) LHS RHS)
19647   //
19648   // Iff we find this pattern and the build_vectors are built from
19649   // constants, we translate the vselect into a shuffle_vector that we
19650   // know will be matched by LowerVECTOR_SHUFFLEtoBlend.
19651   if (N->getOpcode() == ISD::VSELECT && !DCI.isBeforeLegalize()) {
19652     SDValue Shuffle = TransformVSELECTtoBlendVECTOR_SHUFFLE(N, DAG, Subtarget);
19653     if (Shuffle.getNode())
19654       return Shuffle;
19655   }
19656
19657   return SDValue();
19658 }
19659
19660 // Check whether a boolean test is testing a boolean value generated by
19661 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
19662 // code.
19663 //
19664 // Simplify the following patterns:
19665 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
19666 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
19667 // to (Op EFLAGS Cond)
19668 //
19669 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
19670 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
19671 // to (Op EFLAGS !Cond)
19672 //
19673 // where Op could be BRCOND or CMOV.
19674 //
19675 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
19676   // Quit if not CMP and SUB with its value result used.
19677   if (Cmp.getOpcode() != X86ISD::CMP &&
19678       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
19679       return SDValue();
19680
19681   // Quit if not used as a boolean value.
19682   if (CC != X86::COND_E && CC != X86::COND_NE)
19683     return SDValue();
19684
19685   // Check CMP operands. One of them should be 0 or 1 and the other should be
19686   // an SetCC or extended from it.
19687   SDValue Op1 = Cmp.getOperand(0);
19688   SDValue Op2 = Cmp.getOperand(1);
19689
19690   SDValue SetCC;
19691   const ConstantSDNode* C = nullptr;
19692   bool needOppositeCond = (CC == X86::COND_E);
19693   bool checkAgainstTrue = false; // Is it a comparison against 1?
19694
19695   if ((C = dyn_cast<ConstantSDNode>(Op1)))
19696     SetCC = Op2;
19697   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
19698     SetCC = Op1;
19699   else // Quit if all operands are not constants.
19700     return SDValue();
19701
19702   if (C->getZExtValue() == 1) {
19703     needOppositeCond = !needOppositeCond;
19704     checkAgainstTrue = true;
19705   } else if (C->getZExtValue() != 0)
19706     // Quit if the constant is neither 0 or 1.
19707     return SDValue();
19708
19709   bool truncatedToBoolWithAnd = false;
19710   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
19711   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
19712          SetCC.getOpcode() == ISD::TRUNCATE ||
19713          SetCC.getOpcode() == ISD::AND) {
19714     if (SetCC.getOpcode() == ISD::AND) {
19715       int OpIdx = -1;
19716       ConstantSDNode *CS;
19717       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
19718           CS->getZExtValue() == 1)
19719         OpIdx = 1;
19720       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
19721           CS->getZExtValue() == 1)
19722         OpIdx = 0;
19723       if (OpIdx == -1)
19724         break;
19725       SetCC = SetCC.getOperand(OpIdx);
19726       truncatedToBoolWithAnd = true;
19727     } else
19728       SetCC = SetCC.getOperand(0);
19729   }
19730
19731   switch (SetCC.getOpcode()) {
19732   case X86ISD::SETCC_CARRY:
19733     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
19734     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
19735     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
19736     // truncated to i1 using 'and'.
19737     if (checkAgainstTrue && !truncatedToBoolWithAnd)
19738       break;
19739     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
19740            "Invalid use of SETCC_CARRY!");
19741     // FALL THROUGH
19742   case X86ISD::SETCC:
19743     // Set the condition code or opposite one if necessary.
19744     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
19745     if (needOppositeCond)
19746       CC = X86::GetOppositeBranchCondition(CC);
19747     return SetCC.getOperand(1);
19748   case X86ISD::CMOV: {
19749     // Check whether false/true value has canonical one, i.e. 0 or 1.
19750     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
19751     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
19752     // Quit if true value is not a constant.
19753     if (!TVal)
19754       return SDValue();
19755     // Quit if false value is not a constant.
19756     if (!FVal) {
19757       SDValue Op = SetCC.getOperand(0);
19758       // Skip 'zext' or 'trunc' node.
19759       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
19760           Op.getOpcode() == ISD::TRUNCATE)
19761         Op = Op.getOperand(0);
19762       // A special case for rdrand/rdseed, where 0 is set if false cond is
19763       // found.
19764       if ((Op.getOpcode() != X86ISD::RDRAND &&
19765            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
19766         return SDValue();
19767     }
19768     // Quit if false value is not the constant 0 or 1.
19769     bool FValIsFalse = true;
19770     if (FVal && FVal->getZExtValue() != 0) {
19771       if (FVal->getZExtValue() != 1)
19772         return SDValue();
19773       // If FVal is 1, opposite cond is needed.
19774       needOppositeCond = !needOppositeCond;
19775       FValIsFalse = false;
19776     }
19777     // Quit if TVal is not the constant opposite of FVal.
19778     if (FValIsFalse && TVal->getZExtValue() != 1)
19779       return SDValue();
19780     if (!FValIsFalse && TVal->getZExtValue() != 0)
19781       return SDValue();
19782     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
19783     if (needOppositeCond)
19784       CC = X86::GetOppositeBranchCondition(CC);
19785     return SetCC.getOperand(3);
19786   }
19787   }
19788
19789   return SDValue();
19790 }
19791
19792 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
19793 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
19794                                   TargetLowering::DAGCombinerInfo &DCI,
19795                                   const X86Subtarget *Subtarget) {
19796   SDLoc DL(N);
19797
19798   // If the flag operand isn't dead, don't touch this CMOV.
19799   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
19800     return SDValue();
19801
19802   SDValue FalseOp = N->getOperand(0);
19803   SDValue TrueOp = N->getOperand(1);
19804   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
19805   SDValue Cond = N->getOperand(3);
19806
19807   if (CC == X86::COND_E || CC == X86::COND_NE) {
19808     switch (Cond.getOpcode()) {
19809     default: break;
19810     case X86ISD::BSR:
19811     case X86ISD::BSF:
19812       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
19813       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
19814         return (CC == X86::COND_E) ? FalseOp : TrueOp;
19815     }
19816   }
19817
19818   SDValue Flags;
19819
19820   Flags = checkBoolTestSetCCCombine(Cond, CC);
19821   if (Flags.getNode() &&
19822       // Extra check as FCMOV only supports a subset of X86 cond.
19823       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
19824     SDValue Ops[] = { FalseOp, TrueOp,
19825                       DAG.getConstant(CC, MVT::i8), Flags };
19826     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
19827   }
19828
19829   // If this is a select between two integer constants, try to do some
19830   // optimizations.  Note that the operands are ordered the opposite of SELECT
19831   // operands.
19832   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
19833     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
19834       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
19835       // larger than FalseC (the false value).
19836       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
19837         CC = X86::GetOppositeBranchCondition(CC);
19838         std::swap(TrueC, FalseC);
19839         std::swap(TrueOp, FalseOp);
19840       }
19841
19842       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
19843       // This is efficient for any integer data type (including i8/i16) and
19844       // shift amount.
19845       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
19846         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
19847                            DAG.getConstant(CC, MVT::i8), Cond);
19848
19849         // Zero extend the condition if needed.
19850         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
19851
19852         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
19853         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
19854                            DAG.getConstant(ShAmt, MVT::i8));
19855         if (N->getNumValues() == 2)  // Dead flag value?
19856           return DCI.CombineTo(N, Cond, SDValue());
19857         return Cond;
19858       }
19859
19860       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
19861       // for any integer data type, including i8/i16.
19862       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
19863         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
19864                            DAG.getConstant(CC, MVT::i8), Cond);
19865
19866         // Zero extend the condition if needed.
19867         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
19868                            FalseC->getValueType(0), Cond);
19869         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
19870                            SDValue(FalseC, 0));
19871
19872         if (N->getNumValues() == 2)  // Dead flag value?
19873           return DCI.CombineTo(N, Cond, SDValue());
19874         return Cond;
19875       }
19876
19877       // Optimize cases that will turn into an LEA instruction.  This requires
19878       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
19879       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
19880         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
19881         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
19882
19883         bool isFastMultiplier = false;
19884         if (Diff < 10) {
19885           switch ((unsigned char)Diff) {
19886           default: break;
19887           case 1:  // result = add base, cond
19888           case 2:  // result = lea base(    , cond*2)
19889           case 3:  // result = lea base(cond, cond*2)
19890           case 4:  // result = lea base(    , cond*4)
19891           case 5:  // result = lea base(cond, cond*4)
19892           case 8:  // result = lea base(    , cond*8)
19893           case 9:  // result = lea base(cond, cond*8)
19894             isFastMultiplier = true;
19895             break;
19896           }
19897         }
19898
19899         if (isFastMultiplier) {
19900           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
19901           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
19902                              DAG.getConstant(CC, MVT::i8), Cond);
19903           // Zero extend the condition if needed.
19904           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
19905                              Cond);
19906           // Scale the condition by the difference.
19907           if (Diff != 1)
19908             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
19909                                DAG.getConstant(Diff, Cond.getValueType()));
19910
19911           // Add the base if non-zero.
19912           if (FalseC->getAPIntValue() != 0)
19913             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
19914                                SDValue(FalseC, 0));
19915           if (N->getNumValues() == 2)  // Dead flag value?
19916             return DCI.CombineTo(N, Cond, SDValue());
19917           return Cond;
19918         }
19919       }
19920     }
19921   }
19922
19923   // Handle these cases:
19924   //   (select (x != c), e, c) -> select (x != c), e, x),
19925   //   (select (x == c), c, e) -> select (x == c), x, e)
19926   // where the c is an integer constant, and the "select" is the combination
19927   // of CMOV and CMP.
19928   //
19929   // The rationale for this change is that the conditional-move from a constant
19930   // needs two instructions, however, conditional-move from a register needs
19931   // only one instruction.
19932   //
19933   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
19934   //  some instruction-combining opportunities. This opt needs to be
19935   //  postponed as late as possible.
19936   //
19937   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
19938     // the DCI.xxxx conditions are provided to postpone the optimization as
19939     // late as possible.
19940
19941     ConstantSDNode *CmpAgainst = nullptr;
19942     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
19943         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
19944         !isa<ConstantSDNode>(Cond.getOperand(0))) {
19945
19946       if (CC == X86::COND_NE &&
19947           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
19948         CC = X86::GetOppositeBranchCondition(CC);
19949         std::swap(TrueOp, FalseOp);
19950       }
19951
19952       if (CC == X86::COND_E &&
19953           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
19954         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
19955                           DAG.getConstant(CC, MVT::i8), Cond };
19956         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
19957       }
19958     }
19959   }
19960
19961   return SDValue();
19962 }
19963
19964 static SDValue PerformINTRINSIC_WO_CHAINCombine(SDNode *N, SelectionDAG &DAG,
19965                                                 const X86Subtarget *Subtarget) {
19966   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
19967   switch (IntNo) {
19968   default: return SDValue();
19969   // SSE/AVX/AVX2 blend intrinsics.
19970   case Intrinsic::x86_avx2_pblendvb:
19971   case Intrinsic::x86_avx2_pblendw:
19972   case Intrinsic::x86_avx2_pblendd_128:
19973   case Intrinsic::x86_avx2_pblendd_256:
19974     // Don't try to simplify this intrinsic if we don't have AVX2.
19975     if (!Subtarget->hasAVX2())
19976       return SDValue();
19977     // FALL-THROUGH
19978   case Intrinsic::x86_avx_blend_pd_256:
19979   case Intrinsic::x86_avx_blend_ps_256:
19980   case Intrinsic::x86_avx_blendv_pd_256:
19981   case Intrinsic::x86_avx_blendv_ps_256:
19982     // Don't try to simplify this intrinsic if we don't have AVX.
19983     if (!Subtarget->hasAVX())
19984       return SDValue();
19985     // FALL-THROUGH
19986   case Intrinsic::x86_sse41_pblendw:
19987   case Intrinsic::x86_sse41_blendpd:
19988   case Intrinsic::x86_sse41_blendps:
19989   case Intrinsic::x86_sse41_blendvps:
19990   case Intrinsic::x86_sse41_blendvpd:
19991   case Intrinsic::x86_sse41_pblendvb: {
19992     SDValue Op0 = N->getOperand(1);
19993     SDValue Op1 = N->getOperand(2);
19994     SDValue Mask = N->getOperand(3);
19995
19996     // Don't try to simplify this intrinsic if we don't have SSE4.1.
19997     if (!Subtarget->hasSSE41())
19998       return SDValue();
19999
20000     // fold (blend A, A, Mask) -> A
20001     if (Op0 == Op1)
20002       return Op0;
20003     // fold (blend A, B, allZeros) -> A
20004     if (ISD::isBuildVectorAllZeros(Mask.getNode()))
20005       return Op0;
20006     // fold (blend A, B, allOnes) -> B
20007     if (ISD::isBuildVectorAllOnes(Mask.getNode()))
20008       return Op1;
20009     
20010     // Simplify the case where the mask is a constant i32 value.
20011     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Mask)) {
20012       if (C->isNullValue())
20013         return Op0;
20014       if (C->isAllOnesValue())
20015         return Op1;
20016     }
20017
20018     return SDValue();
20019   }
20020
20021   // Packed SSE2/AVX2 arithmetic shift immediate intrinsics.
20022   case Intrinsic::x86_sse2_psrai_w:
20023   case Intrinsic::x86_sse2_psrai_d:
20024   case Intrinsic::x86_avx2_psrai_w:
20025   case Intrinsic::x86_avx2_psrai_d:
20026   case Intrinsic::x86_sse2_psra_w:
20027   case Intrinsic::x86_sse2_psra_d:
20028   case Intrinsic::x86_avx2_psra_w:
20029   case Intrinsic::x86_avx2_psra_d: {
20030     SDValue Op0 = N->getOperand(1);
20031     SDValue Op1 = N->getOperand(2);
20032     EVT VT = Op0.getValueType();
20033     assert(VT.isVector() && "Expected a vector type!");
20034
20035     if (isa<BuildVectorSDNode>(Op1))
20036       Op1 = Op1.getOperand(0);
20037
20038     if (!isa<ConstantSDNode>(Op1))
20039       return SDValue();
20040
20041     EVT SVT = VT.getVectorElementType();
20042     unsigned SVTBits = SVT.getSizeInBits();
20043
20044     ConstantSDNode *CND = cast<ConstantSDNode>(Op1);
20045     const APInt &C = APInt(SVTBits, CND->getAPIntValue().getZExtValue());
20046     uint64_t ShAmt = C.getZExtValue();
20047
20048     // Don't try to convert this shift into a ISD::SRA if the shift
20049     // count is bigger than or equal to the element size.
20050     if (ShAmt >= SVTBits)
20051       return SDValue();
20052
20053     // Trivial case: if the shift count is zero, then fold this
20054     // into the first operand.
20055     if (ShAmt == 0)
20056       return Op0;
20057
20058     // Replace this packed shift intrinsic with a target independent
20059     // shift dag node.
20060     SDValue Splat = DAG.getConstant(C, VT);
20061     return DAG.getNode(ISD::SRA, SDLoc(N), VT, Op0, Splat);
20062   }
20063   }
20064 }
20065
20066 /// PerformMulCombine - Optimize a single multiply with constant into two
20067 /// in order to implement it with two cheaper instructions, e.g.
20068 /// LEA + SHL, LEA + LEA.
20069 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
20070                                  TargetLowering::DAGCombinerInfo &DCI) {
20071   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
20072     return SDValue();
20073
20074   EVT VT = N->getValueType(0);
20075   if (VT != MVT::i64)
20076     return SDValue();
20077
20078   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
20079   if (!C)
20080     return SDValue();
20081   uint64_t MulAmt = C->getZExtValue();
20082   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
20083     return SDValue();
20084
20085   uint64_t MulAmt1 = 0;
20086   uint64_t MulAmt2 = 0;
20087   if ((MulAmt % 9) == 0) {
20088     MulAmt1 = 9;
20089     MulAmt2 = MulAmt / 9;
20090   } else if ((MulAmt % 5) == 0) {
20091     MulAmt1 = 5;
20092     MulAmt2 = MulAmt / 5;
20093   } else if ((MulAmt % 3) == 0) {
20094     MulAmt1 = 3;
20095     MulAmt2 = MulAmt / 3;
20096   }
20097   if (MulAmt2 &&
20098       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
20099     SDLoc DL(N);
20100
20101     if (isPowerOf2_64(MulAmt2) &&
20102         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
20103       // If second multiplifer is pow2, issue it first. We want the multiply by
20104       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
20105       // is an add.
20106       std::swap(MulAmt1, MulAmt2);
20107
20108     SDValue NewMul;
20109     if (isPowerOf2_64(MulAmt1))
20110       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
20111                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
20112     else
20113       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
20114                            DAG.getConstant(MulAmt1, VT));
20115
20116     if (isPowerOf2_64(MulAmt2))
20117       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
20118                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
20119     else
20120       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
20121                            DAG.getConstant(MulAmt2, VT));
20122
20123     // Do not add new nodes to DAG combiner worklist.
20124     DCI.CombineTo(N, NewMul, false);
20125   }
20126   return SDValue();
20127 }
20128
20129 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
20130   SDValue N0 = N->getOperand(0);
20131   SDValue N1 = N->getOperand(1);
20132   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
20133   EVT VT = N0.getValueType();
20134
20135   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
20136   // since the result of setcc_c is all zero's or all ones.
20137   if (VT.isInteger() && !VT.isVector() &&
20138       N1C && N0.getOpcode() == ISD::AND &&
20139       N0.getOperand(1).getOpcode() == ISD::Constant) {
20140     SDValue N00 = N0.getOperand(0);
20141     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
20142         ((N00.getOpcode() == ISD::ANY_EXTEND ||
20143           N00.getOpcode() == ISD::ZERO_EXTEND) &&
20144          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
20145       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
20146       APInt ShAmt = N1C->getAPIntValue();
20147       Mask = Mask.shl(ShAmt);
20148       if (Mask != 0)
20149         return DAG.getNode(ISD::AND, SDLoc(N), VT,
20150                            N00, DAG.getConstant(Mask, VT));
20151     }
20152   }
20153
20154   // Hardware support for vector shifts is sparse which makes us scalarize the
20155   // vector operations in many cases. Also, on sandybridge ADD is faster than
20156   // shl.
20157   // (shl V, 1) -> add V,V
20158   if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
20159     if (SDValue N1Splat = N1BV->getConstantSplatValue()) {
20160       assert(N0.getValueType().isVector() && "Invalid vector shift type");
20161       // We shift all of the values by one. In many cases we do not have
20162       // hardware support for this operation. This is better expressed as an ADD
20163       // of two values.
20164       if (N1Splat.getOpcode() == ISD::Constant &&
20165           cast<ConstantSDNode>(N1Splat)->getZExtValue() == 1)
20166         return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
20167     }
20168
20169   return SDValue();
20170 }
20171
20172 /// \brief Returns a vector of 0s if the node in input is a vector logical
20173 /// shift by a constant amount which is known to be bigger than or equal
20174 /// to the vector element size in bits.
20175 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
20176                                       const X86Subtarget *Subtarget) {
20177   EVT VT = N->getValueType(0);
20178
20179   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
20180       (!Subtarget->hasInt256() ||
20181        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
20182     return SDValue();
20183
20184   SDValue Amt = N->getOperand(1);
20185   SDLoc DL(N);
20186   if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Amt))
20187     if (SDValue AmtSplat = AmtBV->getConstantSplatValue())
20188       if (auto *AmtConst = dyn_cast<ConstantSDNode>(AmtSplat)) {
20189         APInt ShiftAmt = AmtConst->getAPIntValue();
20190         unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
20191
20192         // SSE2/AVX2 logical shifts always return a vector of 0s
20193         // if the shift amount is bigger than or equal to
20194         // the element size. The constant shift amount will be
20195         // encoded as a 8-bit immediate.
20196         if (ShiftAmt.trunc(8).uge(MaxAmount))
20197           return getZeroVector(VT, Subtarget, DAG, DL);
20198       }
20199
20200   return SDValue();
20201 }
20202
20203 /// PerformShiftCombine - Combine shifts.
20204 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
20205                                    TargetLowering::DAGCombinerInfo &DCI,
20206                                    const X86Subtarget *Subtarget) {
20207   if (N->getOpcode() == ISD::SHL) {
20208     SDValue V = PerformSHLCombine(N, DAG);
20209     if (V.getNode()) return V;
20210   }
20211
20212   if (N->getOpcode() != ISD::SRA) {
20213     // Try to fold this logical shift into a zero vector.
20214     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
20215     if (V.getNode()) return V;
20216   }
20217
20218   return SDValue();
20219 }
20220
20221 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
20222 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
20223 // and friends.  Likewise for OR -> CMPNEQSS.
20224 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
20225                             TargetLowering::DAGCombinerInfo &DCI,
20226                             const X86Subtarget *Subtarget) {
20227   unsigned opcode;
20228
20229   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
20230   // we're requiring SSE2 for both.
20231   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
20232     SDValue N0 = N->getOperand(0);
20233     SDValue N1 = N->getOperand(1);
20234     SDValue CMP0 = N0->getOperand(1);
20235     SDValue CMP1 = N1->getOperand(1);
20236     SDLoc DL(N);
20237
20238     // The SETCCs should both refer to the same CMP.
20239     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
20240       return SDValue();
20241
20242     SDValue CMP00 = CMP0->getOperand(0);
20243     SDValue CMP01 = CMP0->getOperand(1);
20244     EVT     VT    = CMP00.getValueType();
20245
20246     if (VT == MVT::f32 || VT == MVT::f64) {
20247       bool ExpectingFlags = false;
20248       // Check for any users that want flags:
20249       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
20250            !ExpectingFlags && UI != UE; ++UI)
20251         switch (UI->getOpcode()) {
20252         default:
20253         case ISD::BR_CC:
20254         case ISD::BRCOND:
20255         case ISD::SELECT:
20256           ExpectingFlags = true;
20257           break;
20258         case ISD::CopyToReg:
20259         case ISD::SIGN_EXTEND:
20260         case ISD::ZERO_EXTEND:
20261         case ISD::ANY_EXTEND:
20262           break;
20263         }
20264
20265       if (!ExpectingFlags) {
20266         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
20267         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
20268
20269         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
20270           X86::CondCode tmp = cc0;
20271           cc0 = cc1;
20272           cc1 = tmp;
20273         }
20274
20275         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
20276             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
20277           // FIXME: need symbolic constants for these magic numbers.
20278           // See X86ATTInstPrinter.cpp:printSSECC().
20279           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
20280           if (Subtarget->hasAVX512()) {
20281             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
20282                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
20283             if (N->getValueType(0) != MVT::i1)
20284               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
20285                                  FSetCC);
20286             return FSetCC;
20287           }
20288           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
20289                                               CMP00.getValueType(), CMP00, CMP01,
20290                                               DAG.getConstant(x86cc, MVT::i8));
20291
20292           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
20293           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
20294
20295           if (is64BitFP && !Subtarget->is64Bit()) {
20296             // On a 32-bit target, we cannot bitcast the 64-bit float to a
20297             // 64-bit integer, since that's not a legal type. Since
20298             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
20299             // bits, but can do this little dance to extract the lowest 32 bits
20300             // and work with those going forward.
20301             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
20302                                            OnesOrZeroesF);
20303             SDValue Vector32 = DAG.getNode(ISD::BITCAST, DL, MVT::v4f32,
20304                                            Vector64);
20305             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
20306                                         Vector32, DAG.getIntPtrConstant(0));
20307             IntVT = MVT::i32;
20308           }
20309
20310           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT, OnesOrZeroesF);
20311           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
20312                                       DAG.getConstant(1, IntVT));
20313           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
20314           return OneBitOfTruth;
20315         }
20316       }
20317     }
20318   }
20319   return SDValue();
20320 }
20321
20322 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
20323 /// so it can be folded inside ANDNP.
20324 static bool CanFoldXORWithAllOnes(const SDNode *N) {
20325   EVT VT = N->getValueType(0);
20326
20327   // Match direct AllOnes for 128 and 256-bit vectors
20328   if (ISD::isBuildVectorAllOnes(N))
20329     return true;
20330
20331   // Look through a bit convert.
20332   if (N->getOpcode() == ISD::BITCAST)
20333     N = N->getOperand(0).getNode();
20334
20335   // Sometimes the operand may come from a insert_subvector building a 256-bit
20336   // allones vector
20337   if (VT.is256BitVector() &&
20338       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
20339     SDValue V1 = N->getOperand(0);
20340     SDValue V2 = N->getOperand(1);
20341
20342     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
20343         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
20344         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
20345         ISD::isBuildVectorAllOnes(V2.getNode()))
20346       return true;
20347   }
20348
20349   return false;
20350 }
20351
20352 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
20353 // register. In most cases we actually compare or select YMM-sized registers
20354 // and mixing the two types creates horrible code. This method optimizes
20355 // some of the transition sequences.
20356 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
20357                                  TargetLowering::DAGCombinerInfo &DCI,
20358                                  const X86Subtarget *Subtarget) {
20359   EVT VT = N->getValueType(0);
20360   if (!VT.is256BitVector())
20361     return SDValue();
20362
20363   assert((N->getOpcode() == ISD::ANY_EXTEND ||
20364           N->getOpcode() == ISD::ZERO_EXTEND ||
20365           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
20366
20367   SDValue Narrow = N->getOperand(0);
20368   EVT NarrowVT = Narrow->getValueType(0);
20369   if (!NarrowVT.is128BitVector())
20370     return SDValue();
20371
20372   if (Narrow->getOpcode() != ISD::XOR &&
20373       Narrow->getOpcode() != ISD::AND &&
20374       Narrow->getOpcode() != ISD::OR)
20375     return SDValue();
20376
20377   SDValue N0  = Narrow->getOperand(0);
20378   SDValue N1  = Narrow->getOperand(1);
20379   SDLoc DL(Narrow);
20380
20381   // The Left side has to be a trunc.
20382   if (N0.getOpcode() != ISD::TRUNCATE)
20383     return SDValue();
20384
20385   // The type of the truncated inputs.
20386   EVT WideVT = N0->getOperand(0)->getValueType(0);
20387   if (WideVT != VT)
20388     return SDValue();
20389
20390   // The right side has to be a 'trunc' or a constant vector.
20391   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
20392   SDValue RHSConstSplat;
20393   if (auto *RHSBV = dyn_cast<BuildVectorSDNode>(N1))
20394     RHSConstSplat = RHSBV->getConstantSplatValue();
20395   if (!RHSTrunc && !RHSConstSplat)
20396     return SDValue();
20397
20398   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
20399
20400   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
20401     return SDValue();
20402
20403   // Set N0 and N1 to hold the inputs to the new wide operation.
20404   N0 = N0->getOperand(0);
20405   if (RHSConstSplat) {
20406     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
20407                      RHSConstSplat);
20408     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
20409     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
20410   } else if (RHSTrunc) {
20411     N1 = N1->getOperand(0);
20412   }
20413
20414   // Generate the wide operation.
20415   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
20416   unsigned Opcode = N->getOpcode();
20417   switch (Opcode) {
20418   case ISD::ANY_EXTEND:
20419     return Op;
20420   case ISD::ZERO_EXTEND: {
20421     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
20422     APInt Mask = APInt::getAllOnesValue(InBits);
20423     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
20424     return DAG.getNode(ISD::AND, DL, VT,
20425                        Op, DAG.getConstant(Mask, VT));
20426   }
20427   case ISD::SIGN_EXTEND:
20428     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
20429                        Op, DAG.getValueType(NarrowVT));
20430   default:
20431     llvm_unreachable("Unexpected opcode");
20432   }
20433 }
20434
20435 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
20436                                  TargetLowering::DAGCombinerInfo &DCI,
20437                                  const X86Subtarget *Subtarget) {
20438   EVT VT = N->getValueType(0);
20439   if (DCI.isBeforeLegalizeOps())
20440     return SDValue();
20441
20442   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
20443   if (R.getNode())
20444     return R;
20445
20446   // Create BEXTR instructions
20447   // BEXTR is ((X >> imm) & (2**size-1))
20448   if (VT == MVT::i32 || VT == MVT::i64) {
20449     SDValue N0 = N->getOperand(0);
20450     SDValue N1 = N->getOperand(1);
20451     SDLoc DL(N);
20452
20453     // Check for BEXTR.
20454     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
20455         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
20456       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
20457       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
20458       if (MaskNode && ShiftNode) {
20459         uint64_t Mask = MaskNode->getZExtValue();
20460         uint64_t Shift = ShiftNode->getZExtValue();
20461         if (isMask_64(Mask)) {
20462           uint64_t MaskSize = CountPopulation_64(Mask);
20463           if (Shift + MaskSize <= VT.getSizeInBits())
20464             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
20465                                DAG.getConstant(Shift | (MaskSize << 8), VT));
20466         }
20467       }
20468     } // BEXTR
20469
20470     return SDValue();
20471   }
20472
20473   // Want to form ANDNP nodes:
20474   // 1) In the hopes of then easily combining them with OR and AND nodes
20475   //    to form PBLEND/PSIGN.
20476   // 2) To match ANDN packed intrinsics
20477   if (VT != MVT::v2i64 && VT != MVT::v4i64)
20478     return SDValue();
20479
20480   SDValue N0 = N->getOperand(0);
20481   SDValue N1 = N->getOperand(1);
20482   SDLoc DL(N);
20483
20484   // Check LHS for vnot
20485   if (N0.getOpcode() == ISD::XOR &&
20486       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
20487       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
20488     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
20489
20490   // Check RHS for vnot
20491   if (N1.getOpcode() == ISD::XOR &&
20492       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
20493       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
20494     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
20495
20496   return SDValue();
20497 }
20498
20499 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
20500                                 TargetLowering::DAGCombinerInfo &DCI,
20501                                 const X86Subtarget *Subtarget) {
20502   if (DCI.isBeforeLegalizeOps())
20503     return SDValue();
20504
20505   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
20506   if (R.getNode())
20507     return R;
20508
20509   SDValue N0 = N->getOperand(0);
20510   SDValue N1 = N->getOperand(1);
20511   EVT VT = N->getValueType(0);
20512
20513   // look for psign/blend
20514   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
20515     if (!Subtarget->hasSSSE3() ||
20516         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
20517       return SDValue();
20518
20519     // Canonicalize pandn to RHS
20520     if (N0.getOpcode() == X86ISD::ANDNP)
20521       std::swap(N0, N1);
20522     // or (and (m, y), (pandn m, x))
20523     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
20524       SDValue Mask = N1.getOperand(0);
20525       SDValue X    = N1.getOperand(1);
20526       SDValue Y;
20527       if (N0.getOperand(0) == Mask)
20528         Y = N0.getOperand(1);
20529       if (N0.getOperand(1) == Mask)
20530         Y = N0.getOperand(0);
20531
20532       // Check to see if the mask appeared in both the AND and ANDNP and
20533       if (!Y.getNode())
20534         return SDValue();
20535
20536       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
20537       // Look through mask bitcast.
20538       if (Mask.getOpcode() == ISD::BITCAST)
20539         Mask = Mask.getOperand(0);
20540       if (X.getOpcode() == ISD::BITCAST)
20541         X = X.getOperand(0);
20542       if (Y.getOpcode() == ISD::BITCAST)
20543         Y = Y.getOperand(0);
20544
20545       EVT MaskVT = Mask.getValueType();
20546
20547       // Validate that the Mask operand is a vector sra node.
20548       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
20549       // there is no psrai.b
20550       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
20551       unsigned SraAmt = ~0;
20552       if (Mask.getOpcode() == ISD::SRA) {
20553         if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Mask.getOperand(1)))
20554           if (SDValue AmtSplat = AmtBV->getConstantSplatValue())
20555             if (auto *AmtConst = dyn_cast<ConstantSDNode>(AmtSplat))
20556               SraAmt = AmtConst->getZExtValue();
20557       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
20558         SDValue SraC = Mask.getOperand(1);
20559         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
20560       }
20561       if ((SraAmt + 1) != EltBits)
20562         return SDValue();
20563
20564       SDLoc DL(N);
20565
20566       // Now we know we at least have a plendvb with the mask val.  See if
20567       // we can form a psignb/w/d.
20568       // psign = x.type == y.type == mask.type && y = sub(0, x);
20569       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
20570           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
20571           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
20572         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
20573                "Unsupported VT for PSIGN");
20574         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
20575         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
20576       }
20577       // PBLENDVB only available on SSE 4.1
20578       if (!Subtarget->hasSSE41())
20579         return SDValue();
20580
20581       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
20582
20583       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
20584       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
20585       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
20586       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
20587       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
20588     }
20589   }
20590
20591   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
20592     return SDValue();
20593
20594   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
20595   MachineFunction &MF = DAG.getMachineFunction();
20596   bool OptForSize = MF.getFunction()->getAttributes().
20597     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
20598
20599   // SHLD/SHRD instructions have lower register pressure, but on some
20600   // platforms they have higher latency than the equivalent
20601   // series of shifts/or that would otherwise be generated.
20602   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
20603   // have higher latencies and we are not optimizing for size.
20604   if (!OptForSize && Subtarget->isSHLDSlow())
20605     return SDValue();
20606
20607   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
20608     std::swap(N0, N1);
20609   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
20610     return SDValue();
20611   if (!N0.hasOneUse() || !N1.hasOneUse())
20612     return SDValue();
20613
20614   SDValue ShAmt0 = N0.getOperand(1);
20615   if (ShAmt0.getValueType() != MVT::i8)
20616     return SDValue();
20617   SDValue ShAmt1 = N1.getOperand(1);
20618   if (ShAmt1.getValueType() != MVT::i8)
20619     return SDValue();
20620   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
20621     ShAmt0 = ShAmt0.getOperand(0);
20622   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
20623     ShAmt1 = ShAmt1.getOperand(0);
20624
20625   SDLoc DL(N);
20626   unsigned Opc = X86ISD::SHLD;
20627   SDValue Op0 = N0.getOperand(0);
20628   SDValue Op1 = N1.getOperand(0);
20629   if (ShAmt0.getOpcode() == ISD::SUB) {
20630     Opc = X86ISD::SHRD;
20631     std::swap(Op0, Op1);
20632     std::swap(ShAmt0, ShAmt1);
20633   }
20634
20635   unsigned Bits = VT.getSizeInBits();
20636   if (ShAmt1.getOpcode() == ISD::SUB) {
20637     SDValue Sum = ShAmt1.getOperand(0);
20638     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
20639       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
20640       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
20641         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
20642       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
20643         return DAG.getNode(Opc, DL, VT,
20644                            Op0, Op1,
20645                            DAG.getNode(ISD::TRUNCATE, DL,
20646                                        MVT::i8, ShAmt0));
20647     }
20648   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
20649     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
20650     if (ShAmt0C &&
20651         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
20652       return DAG.getNode(Opc, DL, VT,
20653                          N0.getOperand(0), N1.getOperand(0),
20654                          DAG.getNode(ISD::TRUNCATE, DL,
20655                                        MVT::i8, ShAmt0));
20656   }
20657
20658   return SDValue();
20659 }
20660
20661 // Generate NEG and CMOV for integer abs.
20662 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
20663   EVT VT = N->getValueType(0);
20664
20665   // Since X86 does not have CMOV for 8-bit integer, we don't convert
20666   // 8-bit integer abs to NEG and CMOV.
20667   if (VT.isInteger() && VT.getSizeInBits() == 8)
20668     return SDValue();
20669
20670   SDValue N0 = N->getOperand(0);
20671   SDValue N1 = N->getOperand(1);
20672   SDLoc DL(N);
20673
20674   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
20675   // and change it to SUB and CMOV.
20676   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
20677       N0.getOpcode() == ISD::ADD &&
20678       N0.getOperand(1) == N1 &&
20679       N1.getOpcode() == ISD::SRA &&
20680       N1.getOperand(0) == N0.getOperand(0))
20681     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
20682       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
20683         // Generate SUB & CMOV.
20684         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
20685                                   DAG.getConstant(0, VT), N0.getOperand(0));
20686
20687         SDValue Ops[] = { N0.getOperand(0), Neg,
20688                           DAG.getConstant(X86::COND_GE, MVT::i8),
20689                           SDValue(Neg.getNode(), 1) };
20690         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
20691       }
20692   return SDValue();
20693 }
20694
20695 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
20696 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
20697                                  TargetLowering::DAGCombinerInfo &DCI,
20698                                  const X86Subtarget *Subtarget) {
20699   if (DCI.isBeforeLegalizeOps())
20700     return SDValue();
20701
20702   if (Subtarget->hasCMov()) {
20703     SDValue RV = performIntegerAbsCombine(N, DAG);
20704     if (RV.getNode())
20705       return RV;
20706   }
20707
20708   return SDValue();
20709 }
20710
20711 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
20712 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
20713                                   TargetLowering::DAGCombinerInfo &DCI,
20714                                   const X86Subtarget *Subtarget) {
20715   LoadSDNode *Ld = cast<LoadSDNode>(N);
20716   EVT RegVT = Ld->getValueType(0);
20717   EVT MemVT = Ld->getMemoryVT();
20718   SDLoc dl(Ld);
20719   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
20720   unsigned RegSz = RegVT.getSizeInBits();
20721
20722   // On Sandybridge unaligned 256bit loads are inefficient.
20723   ISD::LoadExtType Ext = Ld->getExtensionType();
20724   unsigned Alignment = Ld->getAlignment();
20725   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
20726   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
20727       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
20728     unsigned NumElems = RegVT.getVectorNumElements();
20729     if (NumElems < 2)
20730       return SDValue();
20731
20732     SDValue Ptr = Ld->getBasePtr();
20733     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
20734
20735     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
20736                                   NumElems/2);
20737     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
20738                                 Ld->getPointerInfo(), Ld->isVolatile(),
20739                                 Ld->isNonTemporal(), Ld->isInvariant(),
20740                                 Alignment);
20741     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
20742     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
20743                                 Ld->getPointerInfo(), Ld->isVolatile(),
20744                                 Ld->isNonTemporal(), Ld->isInvariant(),
20745                                 std::min(16U, Alignment));
20746     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
20747                              Load1.getValue(1),
20748                              Load2.getValue(1));
20749
20750     SDValue NewVec = DAG.getUNDEF(RegVT);
20751     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
20752     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
20753     return DCI.CombineTo(N, NewVec, TF, true);
20754   }
20755
20756   // If this is a vector EXT Load then attempt to optimize it using a
20757   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
20758   // expansion is still better than scalar code.
20759   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
20760   // emit a shuffle and a arithmetic shift.
20761   // TODO: It is possible to support ZExt by zeroing the undef values
20762   // during the shuffle phase or after the shuffle.
20763   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
20764       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
20765     assert(MemVT != RegVT && "Cannot extend to the same type");
20766     assert(MemVT.isVector() && "Must load a vector from memory");
20767
20768     unsigned NumElems = RegVT.getVectorNumElements();
20769     unsigned MemSz = MemVT.getSizeInBits();
20770     assert(RegSz > MemSz && "Register size must be greater than the mem size");
20771
20772     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
20773       return SDValue();
20774
20775     // All sizes must be a power of two.
20776     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
20777       return SDValue();
20778
20779     // Attempt to load the original value using scalar loads.
20780     // Find the largest scalar type that divides the total loaded size.
20781     MVT SclrLoadTy = MVT::i8;
20782     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
20783          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
20784       MVT Tp = (MVT::SimpleValueType)tp;
20785       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
20786         SclrLoadTy = Tp;
20787       }
20788     }
20789
20790     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
20791     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
20792         (64 <= MemSz))
20793       SclrLoadTy = MVT::f64;
20794
20795     // Calculate the number of scalar loads that we need to perform
20796     // in order to load our vector from memory.
20797     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
20798     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
20799       return SDValue();
20800
20801     unsigned loadRegZize = RegSz;
20802     if (Ext == ISD::SEXTLOAD && RegSz == 256)
20803       loadRegZize /= 2;
20804
20805     // Represent our vector as a sequence of elements which are the
20806     // largest scalar that we can load.
20807     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
20808       loadRegZize/SclrLoadTy.getSizeInBits());
20809
20810     // Represent the data using the same element type that is stored in
20811     // memory. In practice, we ''widen'' MemVT.
20812     EVT WideVecVT =
20813           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
20814                        loadRegZize/MemVT.getScalarType().getSizeInBits());
20815
20816     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
20817       "Invalid vector type");
20818
20819     // We can't shuffle using an illegal type.
20820     if (!TLI.isTypeLegal(WideVecVT))
20821       return SDValue();
20822
20823     SmallVector<SDValue, 8> Chains;
20824     SDValue Ptr = Ld->getBasePtr();
20825     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
20826                                         TLI.getPointerTy());
20827     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
20828
20829     for (unsigned i = 0; i < NumLoads; ++i) {
20830       // Perform a single load.
20831       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
20832                                        Ptr, Ld->getPointerInfo(),
20833                                        Ld->isVolatile(), Ld->isNonTemporal(),
20834                                        Ld->isInvariant(), Ld->getAlignment());
20835       Chains.push_back(ScalarLoad.getValue(1));
20836       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
20837       // another round of DAGCombining.
20838       if (i == 0)
20839         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
20840       else
20841         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
20842                           ScalarLoad, DAG.getIntPtrConstant(i));
20843
20844       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
20845     }
20846
20847     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
20848
20849     // Bitcast the loaded value to a vector of the original element type, in
20850     // the size of the target vector type.
20851     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
20852     unsigned SizeRatio = RegSz/MemSz;
20853
20854     if (Ext == ISD::SEXTLOAD) {
20855       // If we have SSE4.1 we can directly emit a VSEXT node.
20856       if (Subtarget->hasSSE41()) {
20857         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
20858         return DCI.CombineTo(N, Sext, TF, true);
20859       }
20860
20861       // Otherwise we'll shuffle the small elements in the high bits of the
20862       // larger type and perform an arithmetic shift. If the shift is not legal
20863       // it's better to scalarize.
20864       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
20865         return SDValue();
20866
20867       // Redistribute the loaded elements into the different locations.
20868       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
20869       for (unsigned i = 0; i != NumElems; ++i)
20870         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
20871
20872       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
20873                                            DAG.getUNDEF(WideVecVT),
20874                                            &ShuffleVec[0]);
20875
20876       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
20877
20878       // Build the arithmetic shift.
20879       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
20880                      MemVT.getVectorElementType().getSizeInBits();
20881       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
20882                           DAG.getConstant(Amt, RegVT));
20883
20884       return DCI.CombineTo(N, Shuff, TF, true);
20885     }
20886
20887     // Redistribute the loaded elements into the different locations.
20888     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
20889     for (unsigned i = 0; i != NumElems; ++i)
20890       ShuffleVec[i*SizeRatio] = i;
20891
20892     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
20893                                          DAG.getUNDEF(WideVecVT),
20894                                          &ShuffleVec[0]);
20895
20896     // Bitcast to the requested type.
20897     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
20898     // Replace the original load with the new sequence
20899     // and return the new chain.
20900     return DCI.CombineTo(N, Shuff, TF, true);
20901   }
20902
20903   return SDValue();
20904 }
20905
20906 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
20907 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
20908                                    const X86Subtarget *Subtarget) {
20909   StoreSDNode *St = cast<StoreSDNode>(N);
20910   EVT VT = St->getValue().getValueType();
20911   EVT StVT = St->getMemoryVT();
20912   SDLoc dl(St);
20913   SDValue StoredVal = St->getOperand(1);
20914   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
20915
20916   // If we are saving a concatenation of two XMM registers, perform two stores.
20917   // On Sandy Bridge, 256-bit memory operations are executed by two
20918   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
20919   // memory  operation.
20920   unsigned Alignment = St->getAlignment();
20921   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
20922   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
20923       StVT == VT && !IsAligned) {
20924     unsigned NumElems = VT.getVectorNumElements();
20925     if (NumElems < 2)
20926       return SDValue();
20927
20928     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
20929     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
20930
20931     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
20932     SDValue Ptr0 = St->getBasePtr();
20933     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
20934
20935     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
20936                                 St->getPointerInfo(), St->isVolatile(),
20937                                 St->isNonTemporal(), Alignment);
20938     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
20939                                 St->getPointerInfo(), St->isVolatile(),
20940                                 St->isNonTemporal(),
20941                                 std::min(16U, Alignment));
20942     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
20943   }
20944
20945   // Optimize trunc store (of multiple scalars) to shuffle and store.
20946   // First, pack all of the elements in one place. Next, store to memory
20947   // in fewer chunks.
20948   if (St->isTruncatingStore() && VT.isVector()) {
20949     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
20950     unsigned NumElems = VT.getVectorNumElements();
20951     assert(StVT != VT && "Cannot truncate to the same type");
20952     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
20953     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
20954
20955     // From, To sizes and ElemCount must be pow of two
20956     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
20957     // We are going to use the original vector elt for storing.
20958     // Accumulated smaller vector elements must be a multiple of the store size.
20959     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
20960
20961     unsigned SizeRatio  = FromSz / ToSz;
20962
20963     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
20964
20965     // Create a type on which we perform the shuffle
20966     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
20967             StVT.getScalarType(), NumElems*SizeRatio);
20968
20969     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
20970
20971     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
20972     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
20973     for (unsigned i = 0; i != NumElems; ++i)
20974       ShuffleVec[i] = i * SizeRatio;
20975
20976     // Can't shuffle using an illegal type.
20977     if (!TLI.isTypeLegal(WideVecVT))
20978       return SDValue();
20979
20980     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
20981                                          DAG.getUNDEF(WideVecVT),
20982                                          &ShuffleVec[0]);
20983     // At this point all of the data is stored at the bottom of the
20984     // register. We now need to save it to mem.
20985
20986     // Find the largest store unit
20987     MVT StoreType = MVT::i8;
20988     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
20989          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
20990       MVT Tp = (MVT::SimpleValueType)tp;
20991       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
20992         StoreType = Tp;
20993     }
20994
20995     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
20996     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
20997         (64 <= NumElems * ToSz))
20998       StoreType = MVT::f64;
20999
21000     // Bitcast the original vector into a vector of store-size units
21001     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
21002             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
21003     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
21004     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
21005     SmallVector<SDValue, 8> Chains;
21006     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
21007                                         TLI.getPointerTy());
21008     SDValue Ptr = St->getBasePtr();
21009
21010     // Perform one or more big stores into memory.
21011     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
21012       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
21013                                    StoreType, ShuffWide,
21014                                    DAG.getIntPtrConstant(i));
21015       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
21016                                 St->getPointerInfo(), St->isVolatile(),
21017                                 St->isNonTemporal(), St->getAlignment());
21018       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
21019       Chains.push_back(Ch);
21020     }
21021
21022     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
21023   }
21024
21025   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
21026   // the FP state in cases where an emms may be missing.
21027   // A preferable solution to the general problem is to figure out the right
21028   // places to insert EMMS.  This qualifies as a quick hack.
21029
21030   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
21031   if (VT.getSizeInBits() != 64)
21032     return SDValue();
21033
21034   const Function *F = DAG.getMachineFunction().getFunction();
21035   bool NoImplicitFloatOps = F->getAttributes().
21036     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
21037   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
21038                      && Subtarget->hasSSE2();
21039   if ((VT.isVector() ||
21040        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
21041       isa<LoadSDNode>(St->getValue()) &&
21042       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
21043       St->getChain().hasOneUse() && !St->isVolatile()) {
21044     SDNode* LdVal = St->getValue().getNode();
21045     LoadSDNode *Ld = nullptr;
21046     int TokenFactorIndex = -1;
21047     SmallVector<SDValue, 8> Ops;
21048     SDNode* ChainVal = St->getChain().getNode();
21049     // Must be a store of a load.  We currently handle two cases:  the load
21050     // is a direct child, and it's under an intervening TokenFactor.  It is
21051     // possible to dig deeper under nested TokenFactors.
21052     if (ChainVal == LdVal)
21053       Ld = cast<LoadSDNode>(St->getChain());
21054     else if (St->getValue().hasOneUse() &&
21055              ChainVal->getOpcode() == ISD::TokenFactor) {
21056       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
21057         if (ChainVal->getOperand(i).getNode() == LdVal) {
21058           TokenFactorIndex = i;
21059           Ld = cast<LoadSDNode>(St->getValue());
21060         } else
21061           Ops.push_back(ChainVal->getOperand(i));
21062       }
21063     }
21064
21065     if (!Ld || !ISD::isNormalLoad(Ld))
21066       return SDValue();
21067
21068     // If this is not the MMX case, i.e. we are just turning i64 load/store
21069     // into f64 load/store, avoid the transformation if there are multiple
21070     // uses of the loaded value.
21071     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
21072       return SDValue();
21073
21074     SDLoc LdDL(Ld);
21075     SDLoc StDL(N);
21076     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
21077     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
21078     // pair instead.
21079     if (Subtarget->is64Bit() || F64IsLegal) {
21080       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
21081       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
21082                                   Ld->getPointerInfo(), Ld->isVolatile(),
21083                                   Ld->isNonTemporal(), Ld->isInvariant(),
21084                                   Ld->getAlignment());
21085       SDValue NewChain = NewLd.getValue(1);
21086       if (TokenFactorIndex != -1) {
21087         Ops.push_back(NewChain);
21088         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
21089       }
21090       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
21091                           St->getPointerInfo(),
21092                           St->isVolatile(), St->isNonTemporal(),
21093                           St->getAlignment());
21094     }
21095
21096     // Otherwise, lower to two pairs of 32-bit loads / stores.
21097     SDValue LoAddr = Ld->getBasePtr();
21098     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
21099                                  DAG.getConstant(4, MVT::i32));
21100
21101     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
21102                                Ld->getPointerInfo(),
21103                                Ld->isVolatile(), Ld->isNonTemporal(),
21104                                Ld->isInvariant(), Ld->getAlignment());
21105     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
21106                                Ld->getPointerInfo().getWithOffset(4),
21107                                Ld->isVolatile(), Ld->isNonTemporal(),
21108                                Ld->isInvariant(),
21109                                MinAlign(Ld->getAlignment(), 4));
21110
21111     SDValue NewChain = LoLd.getValue(1);
21112     if (TokenFactorIndex != -1) {
21113       Ops.push_back(LoLd);
21114       Ops.push_back(HiLd);
21115       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
21116     }
21117
21118     LoAddr = St->getBasePtr();
21119     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
21120                          DAG.getConstant(4, MVT::i32));
21121
21122     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
21123                                 St->getPointerInfo(),
21124                                 St->isVolatile(), St->isNonTemporal(),
21125                                 St->getAlignment());
21126     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
21127                                 St->getPointerInfo().getWithOffset(4),
21128                                 St->isVolatile(),
21129                                 St->isNonTemporal(),
21130                                 MinAlign(St->getAlignment(), 4));
21131     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
21132   }
21133   return SDValue();
21134 }
21135
21136 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
21137 /// and return the operands for the horizontal operation in LHS and RHS.  A
21138 /// horizontal operation performs the binary operation on successive elements
21139 /// of its first operand, then on successive elements of its second operand,
21140 /// returning the resulting values in a vector.  For example, if
21141 ///   A = < float a0, float a1, float a2, float a3 >
21142 /// and
21143 ///   B = < float b0, float b1, float b2, float b3 >
21144 /// then the result of doing a horizontal operation on A and B is
21145 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
21146 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
21147 /// A horizontal-op B, for some already available A and B, and if so then LHS is
21148 /// set to A, RHS to B, and the routine returns 'true'.
21149 /// Note that the binary operation should have the property that if one of the
21150 /// operands is UNDEF then the result is UNDEF.
21151 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
21152   // Look for the following pattern: if
21153   //   A = < float a0, float a1, float a2, float a3 >
21154   //   B = < float b0, float b1, float b2, float b3 >
21155   // and
21156   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
21157   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
21158   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
21159   // which is A horizontal-op B.
21160
21161   // At least one of the operands should be a vector shuffle.
21162   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
21163       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
21164     return false;
21165
21166   MVT VT = LHS.getSimpleValueType();
21167
21168   assert((VT.is128BitVector() || VT.is256BitVector()) &&
21169          "Unsupported vector type for horizontal add/sub");
21170
21171   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
21172   // operate independently on 128-bit lanes.
21173   unsigned NumElts = VT.getVectorNumElements();
21174   unsigned NumLanes = VT.getSizeInBits()/128;
21175   unsigned NumLaneElts = NumElts / NumLanes;
21176   assert((NumLaneElts % 2 == 0) &&
21177          "Vector type should have an even number of elements in each lane");
21178   unsigned HalfLaneElts = NumLaneElts/2;
21179
21180   // View LHS in the form
21181   //   LHS = VECTOR_SHUFFLE A, B, LMask
21182   // If LHS is not a shuffle then pretend it is the shuffle
21183   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
21184   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
21185   // type VT.
21186   SDValue A, B;
21187   SmallVector<int, 16> LMask(NumElts);
21188   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
21189     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
21190       A = LHS.getOperand(0);
21191     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
21192       B = LHS.getOperand(1);
21193     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
21194     std::copy(Mask.begin(), Mask.end(), LMask.begin());
21195   } else {
21196     if (LHS.getOpcode() != ISD::UNDEF)
21197       A = LHS;
21198     for (unsigned i = 0; i != NumElts; ++i)
21199       LMask[i] = i;
21200   }
21201
21202   // Likewise, view RHS in the form
21203   //   RHS = VECTOR_SHUFFLE C, D, RMask
21204   SDValue C, D;
21205   SmallVector<int, 16> RMask(NumElts);
21206   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
21207     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
21208       C = RHS.getOperand(0);
21209     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
21210       D = RHS.getOperand(1);
21211     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
21212     std::copy(Mask.begin(), Mask.end(), RMask.begin());
21213   } else {
21214     if (RHS.getOpcode() != ISD::UNDEF)
21215       C = RHS;
21216     for (unsigned i = 0; i != NumElts; ++i)
21217       RMask[i] = i;
21218   }
21219
21220   // Check that the shuffles are both shuffling the same vectors.
21221   if (!(A == C && B == D) && !(A == D && B == C))
21222     return false;
21223
21224   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
21225   if (!A.getNode() && !B.getNode())
21226     return false;
21227
21228   // If A and B occur in reverse order in RHS, then "swap" them (which means
21229   // rewriting the mask).
21230   if (A != C)
21231     CommuteVectorShuffleMask(RMask, NumElts);
21232
21233   // At this point LHS and RHS are equivalent to
21234   //   LHS = VECTOR_SHUFFLE A, B, LMask
21235   //   RHS = VECTOR_SHUFFLE A, B, RMask
21236   // Check that the masks correspond to performing a horizontal operation.
21237   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
21238     for (unsigned i = 0; i != NumLaneElts; ++i) {
21239       int LIdx = LMask[i+l], RIdx = RMask[i+l];
21240
21241       // Ignore any UNDEF components.
21242       if (LIdx < 0 || RIdx < 0 ||
21243           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
21244           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
21245         continue;
21246
21247       // Check that successive elements are being operated on.  If not, this is
21248       // not a horizontal operation.
21249       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
21250       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
21251       if (!(LIdx == Index && RIdx == Index + 1) &&
21252           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
21253         return false;
21254     }
21255   }
21256
21257   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
21258   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
21259   return true;
21260 }
21261
21262 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
21263 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
21264                                   const X86Subtarget *Subtarget) {
21265   EVT VT = N->getValueType(0);
21266   SDValue LHS = N->getOperand(0);
21267   SDValue RHS = N->getOperand(1);
21268
21269   // Try to synthesize horizontal adds from adds of shuffles.
21270   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
21271        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
21272       isHorizontalBinOp(LHS, RHS, true))
21273     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
21274   return SDValue();
21275 }
21276
21277 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
21278 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
21279                                   const X86Subtarget *Subtarget) {
21280   EVT VT = N->getValueType(0);
21281   SDValue LHS = N->getOperand(0);
21282   SDValue RHS = N->getOperand(1);
21283
21284   // Try to synthesize horizontal subs from subs of shuffles.
21285   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
21286        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
21287       isHorizontalBinOp(LHS, RHS, false))
21288     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
21289   return SDValue();
21290 }
21291
21292 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
21293 /// X86ISD::FXOR nodes.
21294 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
21295   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
21296   // F[X]OR(0.0, x) -> x
21297   // F[X]OR(x, 0.0) -> x
21298   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
21299     if (C->getValueAPF().isPosZero())
21300       return N->getOperand(1);
21301   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
21302     if (C->getValueAPF().isPosZero())
21303       return N->getOperand(0);
21304   return SDValue();
21305 }
21306
21307 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
21308 /// X86ISD::FMAX nodes.
21309 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
21310   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
21311
21312   // Only perform optimizations if UnsafeMath is used.
21313   if (!DAG.getTarget().Options.UnsafeFPMath)
21314     return SDValue();
21315
21316   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
21317   // into FMINC and FMAXC, which are Commutative operations.
21318   unsigned NewOp = 0;
21319   switch (N->getOpcode()) {
21320     default: llvm_unreachable("unknown opcode");
21321     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
21322     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
21323   }
21324
21325   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
21326                      N->getOperand(0), N->getOperand(1));
21327 }
21328
21329 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
21330 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
21331   // FAND(0.0, x) -> 0.0
21332   // FAND(x, 0.0) -> 0.0
21333   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
21334     if (C->getValueAPF().isPosZero())
21335       return N->getOperand(0);
21336   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
21337     if (C->getValueAPF().isPosZero())
21338       return N->getOperand(1);
21339   return SDValue();
21340 }
21341
21342 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
21343 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
21344   // FANDN(x, 0.0) -> 0.0
21345   // FANDN(0.0, x) -> x
21346   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
21347     if (C->getValueAPF().isPosZero())
21348       return N->getOperand(1);
21349   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
21350     if (C->getValueAPF().isPosZero())
21351       return N->getOperand(1);
21352   return SDValue();
21353 }
21354
21355 static SDValue PerformBTCombine(SDNode *N,
21356                                 SelectionDAG &DAG,
21357                                 TargetLowering::DAGCombinerInfo &DCI) {
21358   // BT ignores high bits in the bit index operand.
21359   SDValue Op1 = N->getOperand(1);
21360   if (Op1.hasOneUse()) {
21361     unsigned BitWidth = Op1.getValueSizeInBits();
21362     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
21363     APInt KnownZero, KnownOne;
21364     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
21365                                           !DCI.isBeforeLegalizeOps());
21366     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21367     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
21368         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
21369       DCI.CommitTargetLoweringOpt(TLO);
21370   }
21371   return SDValue();
21372 }
21373
21374 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
21375   SDValue Op = N->getOperand(0);
21376   if (Op.getOpcode() == ISD::BITCAST)
21377     Op = Op.getOperand(0);
21378   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
21379   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
21380       VT.getVectorElementType().getSizeInBits() ==
21381       OpVT.getVectorElementType().getSizeInBits()) {
21382     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
21383   }
21384   return SDValue();
21385 }
21386
21387 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
21388                                                const X86Subtarget *Subtarget) {
21389   EVT VT = N->getValueType(0);
21390   if (!VT.isVector())
21391     return SDValue();
21392
21393   SDValue N0 = N->getOperand(0);
21394   SDValue N1 = N->getOperand(1);
21395   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
21396   SDLoc dl(N);
21397
21398   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
21399   // both SSE and AVX2 since there is no sign-extended shift right
21400   // operation on a vector with 64-bit elements.
21401   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
21402   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
21403   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
21404       N0.getOpcode() == ISD::SIGN_EXTEND)) {
21405     SDValue N00 = N0.getOperand(0);
21406
21407     // EXTLOAD has a better solution on AVX2,
21408     // it may be replaced with X86ISD::VSEXT node.
21409     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
21410       if (!ISD::isNormalLoad(N00.getNode()))
21411         return SDValue();
21412
21413     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
21414         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
21415                                   N00, N1);
21416       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
21417     }
21418   }
21419   return SDValue();
21420 }
21421
21422 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
21423                                   TargetLowering::DAGCombinerInfo &DCI,
21424                                   const X86Subtarget *Subtarget) {
21425   if (!DCI.isBeforeLegalizeOps())
21426     return SDValue();
21427
21428   if (!Subtarget->hasFp256())
21429     return SDValue();
21430
21431   EVT VT = N->getValueType(0);
21432   if (VT.isVector() && VT.getSizeInBits() == 256) {
21433     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
21434     if (R.getNode())
21435       return R;
21436   }
21437
21438   return SDValue();
21439 }
21440
21441 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
21442                                  const X86Subtarget* Subtarget) {
21443   SDLoc dl(N);
21444   EVT VT = N->getValueType(0);
21445
21446   // Let legalize expand this if it isn't a legal type yet.
21447   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
21448     return SDValue();
21449
21450   EVT ScalarVT = VT.getScalarType();
21451   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
21452       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
21453     return SDValue();
21454
21455   SDValue A = N->getOperand(0);
21456   SDValue B = N->getOperand(1);
21457   SDValue C = N->getOperand(2);
21458
21459   bool NegA = (A.getOpcode() == ISD::FNEG);
21460   bool NegB = (B.getOpcode() == ISD::FNEG);
21461   bool NegC = (C.getOpcode() == ISD::FNEG);
21462
21463   // Negative multiplication when NegA xor NegB
21464   bool NegMul = (NegA != NegB);
21465   if (NegA)
21466     A = A.getOperand(0);
21467   if (NegB)
21468     B = B.getOperand(0);
21469   if (NegC)
21470     C = C.getOperand(0);
21471
21472   unsigned Opcode;
21473   if (!NegMul)
21474     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
21475   else
21476     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
21477
21478   return DAG.getNode(Opcode, dl, VT, A, B, C);
21479 }
21480
21481 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
21482                                   TargetLowering::DAGCombinerInfo &DCI,
21483                                   const X86Subtarget *Subtarget) {
21484   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
21485   //           (and (i32 x86isd::setcc_carry), 1)
21486   // This eliminates the zext. This transformation is necessary because
21487   // ISD::SETCC is always legalized to i8.
21488   SDLoc dl(N);
21489   SDValue N0 = N->getOperand(0);
21490   EVT VT = N->getValueType(0);
21491
21492   if (N0.getOpcode() == ISD::AND &&
21493       N0.hasOneUse() &&
21494       N0.getOperand(0).hasOneUse()) {
21495     SDValue N00 = N0.getOperand(0);
21496     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
21497       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
21498       if (!C || C->getZExtValue() != 1)
21499         return SDValue();
21500       return DAG.getNode(ISD::AND, dl, VT,
21501                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
21502                                      N00.getOperand(0), N00.getOperand(1)),
21503                          DAG.getConstant(1, VT));
21504     }
21505   }
21506
21507   if (N0.getOpcode() == ISD::TRUNCATE &&
21508       N0.hasOneUse() &&
21509       N0.getOperand(0).hasOneUse()) {
21510     SDValue N00 = N0.getOperand(0);
21511     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
21512       return DAG.getNode(ISD::AND, dl, VT,
21513                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
21514                                      N00.getOperand(0), N00.getOperand(1)),
21515                          DAG.getConstant(1, VT));
21516     }
21517   }
21518   if (VT.is256BitVector()) {
21519     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
21520     if (R.getNode())
21521       return R;
21522   }
21523
21524   return SDValue();
21525 }
21526
21527 // Optimize x == -y --> x+y == 0
21528 //          x != -y --> x+y != 0
21529 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
21530                                       const X86Subtarget* Subtarget) {
21531   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
21532   SDValue LHS = N->getOperand(0);
21533   SDValue RHS = N->getOperand(1);
21534   EVT VT = N->getValueType(0);
21535   SDLoc DL(N);
21536
21537   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
21538     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
21539       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
21540         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
21541                                    LHS.getValueType(), RHS, LHS.getOperand(1));
21542         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
21543                             addV, DAG.getConstant(0, addV.getValueType()), CC);
21544       }
21545   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
21546     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
21547       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
21548         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
21549                                    RHS.getValueType(), LHS, RHS.getOperand(1));
21550         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
21551                             addV, DAG.getConstant(0, addV.getValueType()), CC);
21552       }
21553
21554   if (VT.getScalarType() == MVT::i1) {
21555     bool IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
21556       (LHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
21557     bool IsVZero0 = ISD::isBuildVectorAllZeros(LHS.getNode());
21558     if (!IsSEXT0 && !IsVZero0)
21559       return SDValue();
21560     bool IsSEXT1 = (RHS.getOpcode() == ISD::SIGN_EXTEND) &&
21561       (RHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
21562     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
21563
21564     if (!IsSEXT1 && !IsVZero1)
21565       return SDValue();
21566
21567     if (IsSEXT0 && IsVZero1) {
21568       assert(VT == LHS.getOperand(0).getValueType() && "Uexpected operand type");
21569       if (CC == ISD::SETEQ)
21570         return DAG.getNOT(DL, LHS.getOperand(0), VT);
21571       return LHS.getOperand(0);
21572     }
21573     if (IsSEXT1 && IsVZero0) {
21574       assert(VT == RHS.getOperand(0).getValueType() && "Uexpected operand type");
21575       if (CC == ISD::SETEQ)
21576         return DAG.getNOT(DL, RHS.getOperand(0), VT);
21577       return RHS.getOperand(0);
21578     }
21579   }
21580
21581   return SDValue();
21582 }
21583
21584 static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG,
21585                                       const X86Subtarget *Subtarget) {
21586   SDLoc dl(N);
21587   MVT VT = N->getOperand(1)->getSimpleValueType(0);
21588   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
21589          "X86insertps is only defined for v4x32");
21590
21591   SDValue Ld = N->getOperand(1);
21592   if (MayFoldLoad(Ld)) {
21593     // Extract the countS bits from the immediate so we can get the proper
21594     // address when narrowing the vector load to a specific element.
21595     // When the second source op is a memory address, interps doesn't use
21596     // countS and just gets an f32 from that address.
21597     unsigned DestIndex =
21598         cast<ConstantSDNode>(N->getOperand(2))->getZExtValue() >> 6;
21599     Ld = NarrowVectorLoadToElement(cast<LoadSDNode>(Ld), DestIndex, DAG);
21600   } else
21601     return SDValue();
21602
21603   // Create this as a scalar to vector to match the instruction pattern.
21604   SDValue LoadScalarToVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Ld);
21605   // countS bits are ignored when loading from memory on insertps, which
21606   // means we don't need to explicitly set them to 0.
21607   return DAG.getNode(X86ISD::INSERTPS, dl, VT, N->getOperand(0),
21608                      LoadScalarToVector, N->getOperand(2));
21609 }
21610
21611 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
21612 // as "sbb reg,reg", since it can be extended without zext and produces
21613 // an all-ones bit which is more useful than 0/1 in some cases.
21614 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
21615                                MVT VT) {
21616   if (VT == MVT::i8)
21617     return DAG.getNode(ISD::AND, DL, VT,
21618                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
21619                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
21620                        DAG.getConstant(1, VT));
21621   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
21622   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
21623                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
21624                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
21625 }
21626
21627 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
21628 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
21629                                    TargetLowering::DAGCombinerInfo &DCI,
21630                                    const X86Subtarget *Subtarget) {
21631   SDLoc DL(N);
21632   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
21633   SDValue EFLAGS = N->getOperand(1);
21634
21635   if (CC == X86::COND_A) {
21636     // Try to convert COND_A into COND_B in an attempt to facilitate
21637     // materializing "setb reg".
21638     //
21639     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
21640     // cannot take an immediate as its first operand.
21641     //
21642     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
21643         EFLAGS.getValueType().isInteger() &&
21644         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
21645       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
21646                                    EFLAGS.getNode()->getVTList(),
21647                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
21648       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
21649       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
21650     }
21651   }
21652
21653   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
21654   // a zext and produces an all-ones bit which is more useful than 0/1 in some
21655   // cases.
21656   if (CC == X86::COND_B)
21657     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
21658
21659   SDValue Flags;
21660
21661   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
21662   if (Flags.getNode()) {
21663     SDValue Cond = DAG.getConstant(CC, MVT::i8);
21664     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
21665   }
21666
21667   return SDValue();
21668 }
21669
21670 // Optimize branch condition evaluation.
21671 //
21672 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
21673                                     TargetLowering::DAGCombinerInfo &DCI,
21674                                     const X86Subtarget *Subtarget) {
21675   SDLoc DL(N);
21676   SDValue Chain = N->getOperand(0);
21677   SDValue Dest = N->getOperand(1);
21678   SDValue EFLAGS = N->getOperand(3);
21679   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
21680
21681   SDValue Flags;
21682
21683   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
21684   if (Flags.getNode()) {
21685     SDValue Cond = DAG.getConstant(CC, MVT::i8);
21686     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
21687                        Flags);
21688   }
21689
21690   return SDValue();
21691 }
21692
21693 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
21694                                         const X86TargetLowering *XTLI) {
21695   SDValue Op0 = N->getOperand(0);
21696   EVT InVT = Op0->getValueType(0);
21697
21698   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
21699   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
21700     SDLoc dl(N);
21701     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
21702     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
21703     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
21704   }
21705
21706   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
21707   // a 32-bit target where SSE doesn't support i64->FP operations.
21708   if (Op0.getOpcode() == ISD::LOAD) {
21709     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
21710     EVT VT = Ld->getValueType(0);
21711     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
21712         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
21713         !XTLI->getSubtarget()->is64Bit() &&
21714         VT == MVT::i64) {
21715       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
21716                                           Ld->getChain(), Op0, DAG);
21717       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
21718       return FILDChain;
21719     }
21720   }
21721   return SDValue();
21722 }
21723
21724 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
21725 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
21726                                  X86TargetLowering::DAGCombinerInfo &DCI) {
21727   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
21728   // the result is either zero or one (depending on the input carry bit).
21729   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
21730   if (X86::isZeroNode(N->getOperand(0)) &&
21731       X86::isZeroNode(N->getOperand(1)) &&
21732       // We don't have a good way to replace an EFLAGS use, so only do this when
21733       // dead right now.
21734       SDValue(N, 1).use_empty()) {
21735     SDLoc DL(N);
21736     EVT VT = N->getValueType(0);
21737     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
21738     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
21739                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
21740                                            DAG.getConstant(X86::COND_B,MVT::i8),
21741                                            N->getOperand(2)),
21742                                DAG.getConstant(1, VT));
21743     return DCI.CombineTo(N, Res1, CarryOut);
21744   }
21745
21746   return SDValue();
21747 }
21748
21749 // fold (add Y, (sete  X, 0)) -> adc  0, Y
21750 //      (add Y, (setne X, 0)) -> sbb -1, Y
21751 //      (sub (sete  X, 0), Y) -> sbb  0, Y
21752 //      (sub (setne X, 0), Y) -> adc -1, Y
21753 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
21754   SDLoc DL(N);
21755
21756   // Look through ZExts.
21757   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
21758   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
21759     return SDValue();
21760
21761   SDValue SetCC = Ext.getOperand(0);
21762   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
21763     return SDValue();
21764
21765   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
21766   if (CC != X86::COND_E && CC != X86::COND_NE)
21767     return SDValue();
21768
21769   SDValue Cmp = SetCC.getOperand(1);
21770   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
21771       !X86::isZeroNode(Cmp.getOperand(1)) ||
21772       !Cmp.getOperand(0).getValueType().isInteger())
21773     return SDValue();
21774
21775   SDValue CmpOp0 = Cmp.getOperand(0);
21776   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
21777                                DAG.getConstant(1, CmpOp0.getValueType()));
21778
21779   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
21780   if (CC == X86::COND_NE)
21781     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
21782                        DL, OtherVal.getValueType(), OtherVal,
21783                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
21784   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
21785                      DL, OtherVal.getValueType(), OtherVal,
21786                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
21787 }
21788
21789 /// PerformADDCombine - Do target-specific dag combines on integer adds.
21790 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
21791                                  const X86Subtarget *Subtarget) {
21792   EVT VT = N->getValueType(0);
21793   SDValue Op0 = N->getOperand(0);
21794   SDValue Op1 = N->getOperand(1);
21795
21796   // Try to synthesize horizontal adds from adds of shuffles.
21797   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
21798        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
21799       isHorizontalBinOp(Op0, Op1, true))
21800     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
21801
21802   return OptimizeConditionalInDecrement(N, DAG);
21803 }
21804
21805 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
21806                                  const X86Subtarget *Subtarget) {
21807   SDValue Op0 = N->getOperand(0);
21808   SDValue Op1 = N->getOperand(1);
21809
21810   // X86 can't encode an immediate LHS of a sub. See if we can push the
21811   // negation into a preceding instruction.
21812   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
21813     // If the RHS of the sub is a XOR with one use and a constant, invert the
21814     // immediate. Then add one to the LHS of the sub so we can turn
21815     // X-Y -> X+~Y+1, saving one register.
21816     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
21817         isa<ConstantSDNode>(Op1.getOperand(1))) {
21818       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
21819       EVT VT = Op0.getValueType();
21820       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
21821                                    Op1.getOperand(0),
21822                                    DAG.getConstant(~XorC, VT));
21823       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
21824                          DAG.getConstant(C->getAPIntValue()+1, VT));
21825     }
21826   }
21827
21828   // Try to synthesize horizontal adds from adds of shuffles.
21829   EVT VT = N->getValueType(0);
21830   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
21831        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
21832       isHorizontalBinOp(Op0, Op1, true))
21833     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
21834
21835   return OptimizeConditionalInDecrement(N, DAG);
21836 }
21837
21838 /// performVZEXTCombine - Performs build vector combines
21839 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
21840                                         TargetLowering::DAGCombinerInfo &DCI,
21841                                         const X86Subtarget *Subtarget) {
21842   // (vzext (bitcast (vzext (x)) -> (vzext x)
21843   SDValue In = N->getOperand(0);
21844   while (In.getOpcode() == ISD::BITCAST)
21845     In = In.getOperand(0);
21846
21847   if (In.getOpcode() != X86ISD::VZEXT)
21848     return SDValue();
21849
21850   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
21851                      In.getOperand(0));
21852 }
21853
21854 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
21855                                              DAGCombinerInfo &DCI) const {
21856   SelectionDAG &DAG = DCI.DAG;
21857   switch (N->getOpcode()) {
21858   default: break;
21859   case ISD::EXTRACT_VECTOR_ELT:
21860     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
21861   case ISD::VSELECT:
21862   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
21863   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
21864   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
21865   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
21866   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
21867   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
21868   case ISD::SHL:
21869   case ISD::SRA:
21870   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
21871   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
21872   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
21873   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
21874   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
21875   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
21876   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
21877   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
21878   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
21879   case X86ISD::FXOR:
21880   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
21881   case X86ISD::FMIN:
21882   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
21883   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
21884   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
21885   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
21886   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
21887   case ISD::ANY_EXTEND:
21888   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
21889   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
21890   case ISD::SIGN_EXTEND_INREG:
21891     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
21892   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
21893   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
21894   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
21895   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
21896   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
21897   case X86ISD::SHUFP:       // Handle all target specific shuffles
21898   case X86ISD::PALIGNR:
21899   case X86ISD::UNPCKH:
21900   case X86ISD::UNPCKL:
21901   case X86ISD::MOVHLPS:
21902   case X86ISD::MOVLHPS:
21903   case X86ISD::PSHUFD:
21904   case X86ISD::PSHUFHW:
21905   case X86ISD::PSHUFLW:
21906   case X86ISD::MOVSS:
21907   case X86ISD::MOVSD:
21908   case X86ISD::VPERMILP:
21909   case X86ISD::VPERM2X128:
21910   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
21911   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
21912   case ISD::INTRINSIC_WO_CHAIN:
21913     return PerformINTRINSIC_WO_CHAINCombine(N, DAG, Subtarget);
21914   case X86ISD::INSERTPS:
21915     return PerformINSERTPSCombine(N, DAG, Subtarget);
21916   case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DAG, Subtarget);
21917   }
21918
21919   return SDValue();
21920 }
21921
21922 /// isTypeDesirableForOp - Return true if the target has native support for
21923 /// the specified value type and it is 'desirable' to use the type for the
21924 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
21925 /// instruction encodings are longer and some i16 instructions are slow.
21926 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
21927   if (!isTypeLegal(VT))
21928     return false;
21929   if (VT != MVT::i16)
21930     return true;
21931
21932   switch (Opc) {
21933   default:
21934     return true;
21935   case ISD::LOAD:
21936   case ISD::SIGN_EXTEND:
21937   case ISD::ZERO_EXTEND:
21938   case ISD::ANY_EXTEND:
21939   case ISD::SHL:
21940   case ISD::SRL:
21941   case ISD::SUB:
21942   case ISD::ADD:
21943   case ISD::MUL:
21944   case ISD::AND:
21945   case ISD::OR:
21946   case ISD::XOR:
21947     return false;
21948   }
21949 }
21950
21951 /// IsDesirableToPromoteOp - This method query the target whether it is
21952 /// beneficial for dag combiner to promote the specified node. If true, it
21953 /// should return the desired promotion type by reference.
21954 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
21955   EVT VT = Op.getValueType();
21956   if (VT != MVT::i16)
21957     return false;
21958
21959   bool Promote = false;
21960   bool Commute = false;
21961   switch (Op.getOpcode()) {
21962   default: break;
21963   case ISD::LOAD: {
21964     LoadSDNode *LD = cast<LoadSDNode>(Op);
21965     // If the non-extending load has a single use and it's not live out, then it
21966     // might be folded.
21967     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
21968                                                      Op.hasOneUse()*/) {
21969       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
21970              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
21971         // The only case where we'd want to promote LOAD (rather then it being
21972         // promoted as an operand is when it's only use is liveout.
21973         if (UI->getOpcode() != ISD::CopyToReg)
21974           return false;
21975       }
21976     }
21977     Promote = true;
21978     break;
21979   }
21980   case ISD::SIGN_EXTEND:
21981   case ISD::ZERO_EXTEND:
21982   case ISD::ANY_EXTEND:
21983     Promote = true;
21984     break;
21985   case ISD::SHL:
21986   case ISD::SRL: {
21987     SDValue N0 = Op.getOperand(0);
21988     // Look out for (store (shl (load), x)).
21989     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
21990       return false;
21991     Promote = true;
21992     break;
21993   }
21994   case ISD::ADD:
21995   case ISD::MUL:
21996   case ISD::AND:
21997   case ISD::OR:
21998   case ISD::XOR:
21999     Commute = true;
22000     // fallthrough
22001   case ISD::SUB: {
22002     SDValue N0 = Op.getOperand(0);
22003     SDValue N1 = Op.getOperand(1);
22004     if (!Commute && MayFoldLoad(N1))
22005       return false;
22006     // Avoid disabling potential load folding opportunities.
22007     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
22008       return false;
22009     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
22010       return false;
22011     Promote = true;
22012   }
22013   }
22014
22015   PVT = MVT::i32;
22016   return Promote;
22017 }
22018
22019 //===----------------------------------------------------------------------===//
22020 //                           X86 Inline Assembly Support
22021 //===----------------------------------------------------------------------===//
22022
22023 namespace {
22024   // Helper to match a string separated by whitespace.
22025   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
22026     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
22027
22028     for (unsigned i = 0, e = args.size(); i != e; ++i) {
22029       StringRef piece(*args[i]);
22030       if (!s.startswith(piece)) // Check if the piece matches.
22031         return false;
22032
22033       s = s.substr(piece.size());
22034       StringRef::size_type pos = s.find_first_not_of(" \t");
22035       if (pos == 0) // We matched a prefix.
22036         return false;
22037
22038       s = s.substr(pos);
22039     }
22040
22041     return s.empty();
22042   }
22043   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
22044 }
22045
22046 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
22047
22048   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
22049     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
22050         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
22051         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
22052
22053       if (AsmPieces.size() == 3)
22054         return true;
22055       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
22056         return true;
22057     }
22058   }
22059   return false;
22060 }
22061
22062 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
22063   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
22064
22065   std::string AsmStr = IA->getAsmString();
22066
22067   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
22068   if (!Ty || Ty->getBitWidth() % 16 != 0)
22069     return false;
22070
22071   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
22072   SmallVector<StringRef, 4> AsmPieces;
22073   SplitString(AsmStr, AsmPieces, ";\n");
22074
22075   switch (AsmPieces.size()) {
22076   default: return false;
22077   case 1:
22078     // FIXME: this should verify that we are targeting a 486 or better.  If not,
22079     // we will turn this bswap into something that will be lowered to logical
22080     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
22081     // lower so don't worry about this.
22082     // bswap $0
22083     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
22084         matchAsm(AsmPieces[0], "bswapl", "$0") ||
22085         matchAsm(AsmPieces[0], "bswapq", "$0") ||
22086         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
22087         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
22088         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
22089       // No need to check constraints, nothing other than the equivalent of
22090       // "=r,0" would be valid here.
22091       return IntrinsicLowering::LowerToByteSwap(CI);
22092     }
22093
22094     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
22095     if (CI->getType()->isIntegerTy(16) &&
22096         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
22097         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
22098          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
22099       AsmPieces.clear();
22100       const std::string &ConstraintsStr = IA->getConstraintString();
22101       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
22102       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
22103       if (clobbersFlagRegisters(AsmPieces))
22104         return IntrinsicLowering::LowerToByteSwap(CI);
22105     }
22106     break;
22107   case 3:
22108     if (CI->getType()->isIntegerTy(32) &&
22109         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
22110         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
22111         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
22112         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
22113       AsmPieces.clear();
22114       const std::string &ConstraintsStr = IA->getConstraintString();
22115       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
22116       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
22117       if (clobbersFlagRegisters(AsmPieces))
22118         return IntrinsicLowering::LowerToByteSwap(CI);
22119     }
22120
22121     if (CI->getType()->isIntegerTy(64)) {
22122       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
22123       if (Constraints.size() >= 2 &&
22124           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
22125           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
22126         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
22127         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
22128             matchAsm(AsmPieces[1], "bswap", "%edx") &&
22129             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
22130           return IntrinsicLowering::LowerToByteSwap(CI);
22131       }
22132     }
22133     break;
22134   }
22135   return false;
22136 }
22137
22138 /// getConstraintType - Given a constraint letter, return the type of
22139 /// constraint it is for this target.
22140 X86TargetLowering::ConstraintType
22141 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
22142   if (Constraint.size() == 1) {
22143     switch (Constraint[0]) {
22144     case 'R':
22145     case 'q':
22146     case 'Q':
22147     case 'f':
22148     case 't':
22149     case 'u':
22150     case 'y':
22151     case 'x':
22152     case 'Y':
22153     case 'l':
22154       return C_RegisterClass;
22155     case 'a':
22156     case 'b':
22157     case 'c':
22158     case 'd':
22159     case 'S':
22160     case 'D':
22161     case 'A':
22162       return C_Register;
22163     case 'I':
22164     case 'J':
22165     case 'K':
22166     case 'L':
22167     case 'M':
22168     case 'N':
22169     case 'G':
22170     case 'C':
22171     case 'e':
22172     case 'Z':
22173       return C_Other;
22174     default:
22175       break;
22176     }
22177   }
22178   return TargetLowering::getConstraintType(Constraint);
22179 }
22180
22181 /// Examine constraint type and operand type and determine a weight value.
22182 /// This object must already have been set up with the operand type
22183 /// and the current alternative constraint selected.
22184 TargetLowering::ConstraintWeight
22185   X86TargetLowering::getSingleConstraintMatchWeight(
22186     AsmOperandInfo &info, const char *constraint) const {
22187   ConstraintWeight weight = CW_Invalid;
22188   Value *CallOperandVal = info.CallOperandVal;
22189     // If we don't have a value, we can't do a match,
22190     // but allow it at the lowest weight.
22191   if (!CallOperandVal)
22192     return CW_Default;
22193   Type *type = CallOperandVal->getType();
22194   // Look at the constraint type.
22195   switch (*constraint) {
22196   default:
22197     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
22198   case 'R':
22199   case 'q':
22200   case 'Q':
22201   case 'a':
22202   case 'b':
22203   case 'c':
22204   case 'd':
22205   case 'S':
22206   case 'D':
22207   case 'A':
22208     if (CallOperandVal->getType()->isIntegerTy())
22209       weight = CW_SpecificReg;
22210     break;
22211   case 'f':
22212   case 't':
22213   case 'u':
22214     if (type->isFloatingPointTy())
22215       weight = CW_SpecificReg;
22216     break;
22217   case 'y':
22218     if (type->isX86_MMXTy() && Subtarget->hasMMX())
22219       weight = CW_SpecificReg;
22220     break;
22221   case 'x':
22222   case 'Y':
22223     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
22224         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
22225       weight = CW_Register;
22226     break;
22227   case 'I':
22228     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
22229       if (C->getZExtValue() <= 31)
22230         weight = CW_Constant;
22231     }
22232     break;
22233   case 'J':
22234     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22235       if (C->getZExtValue() <= 63)
22236         weight = CW_Constant;
22237     }
22238     break;
22239   case 'K':
22240     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22241       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
22242         weight = CW_Constant;
22243     }
22244     break;
22245   case 'L':
22246     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22247       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
22248         weight = CW_Constant;
22249     }
22250     break;
22251   case 'M':
22252     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22253       if (C->getZExtValue() <= 3)
22254         weight = CW_Constant;
22255     }
22256     break;
22257   case 'N':
22258     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22259       if (C->getZExtValue() <= 0xff)
22260         weight = CW_Constant;
22261     }
22262     break;
22263   case 'G':
22264   case 'C':
22265     if (dyn_cast<ConstantFP>(CallOperandVal)) {
22266       weight = CW_Constant;
22267     }
22268     break;
22269   case 'e':
22270     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22271       if ((C->getSExtValue() >= -0x80000000LL) &&
22272           (C->getSExtValue() <= 0x7fffffffLL))
22273         weight = CW_Constant;
22274     }
22275     break;
22276   case 'Z':
22277     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
22278       if (C->getZExtValue() <= 0xffffffff)
22279         weight = CW_Constant;
22280     }
22281     break;
22282   }
22283   return weight;
22284 }
22285
22286 /// LowerXConstraint - try to replace an X constraint, which matches anything,
22287 /// with another that has more specific requirements based on the type of the
22288 /// corresponding operand.
22289 const char *X86TargetLowering::
22290 LowerXConstraint(EVT ConstraintVT) const {
22291   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
22292   // 'f' like normal targets.
22293   if (ConstraintVT.isFloatingPoint()) {
22294     if (Subtarget->hasSSE2())
22295       return "Y";
22296     if (Subtarget->hasSSE1())
22297       return "x";
22298   }
22299
22300   return TargetLowering::LowerXConstraint(ConstraintVT);
22301 }
22302
22303 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
22304 /// vector.  If it is invalid, don't add anything to Ops.
22305 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
22306                                                      std::string &Constraint,
22307                                                      std::vector<SDValue>&Ops,
22308                                                      SelectionDAG &DAG) const {
22309   SDValue Result;
22310
22311   // Only support length 1 constraints for now.
22312   if (Constraint.length() > 1) return;
22313
22314   char ConstraintLetter = Constraint[0];
22315   switch (ConstraintLetter) {
22316   default: break;
22317   case 'I':
22318     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
22319       if (C->getZExtValue() <= 31) {
22320         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
22321         break;
22322       }
22323     }
22324     return;
22325   case 'J':
22326     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
22327       if (C->getZExtValue() <= 63) {
22328         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
22329         break;
22330       }
22331     }
22332     return;
22333   case 'K':
22334     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
22335       if (isInt<8>(C->getSExtValue())) {
22336         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
22337         break;
22338       }
22339     }
22340     return;
22341   case 'N':
22342     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
22343       if (C->getZExtValue() <= 255) {
22344         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
22345         break;
22346       }
22347     }
22348     return;
22349   case 'e': {
22350     // 32-bit signed value
22351     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
22352       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
22353                                            C->getSExtValue())) {
22354         // Widen to 64 bits here to get it sign extended.
22355         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
22356         break;
22357       }
22358     // FIXME gcc accepts some relocatable values here too, but only in certain
22359     // memory models; it's complicated.
22360     }
22361     return;
22362   }
22363   case 'Z': {
22364     // 32-bit unsigned value
22365     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
22366       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
22367                                            C->getZExtValue())) {
22368         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
22369         break;
22370       }
22371     }
22372     // FIXME gcc accepts some relocatable values here too, but only in certain
22373     // memory models; it's complicated.
22374     return;
22375   }
22376   case 'i': {
22377     // Literal immediates are always ok.
22378     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
22379       // Widen to 64 bits here to get it sign extended.
22380       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
22381       break;
22382     }
22383
22384     // In any sort of PIC mode addresses need to be computed at runtime by
22385     // adding in a register or some sort of table lookup.  These can't
22386     // be used as immediates.
22387     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
22388       return;
22389
22390     // If we are in non-pic codegen mode, we allow the address of a global (with
22391     // an optional displacement) to be used with 'i'.
22392     GlobalAddressSDNode *GA = nullptr;
22393     int64_t Offset = 0;
22394
22395     // Match either (GA), (GA+C), (GA+C1+C2), etc.
22396     while (1) {
22397       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
22398         Offset += GA->getOffset();
22399         break;
22400       } else if (Op.getOpcode() == ISD::ADD) {
22401         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
22402           Offset += C->getZExtValue();
22403           Op = Op.getOperand(0);
22404           continue;
22405         }
22406       } else if (Op.getOpcode() == ISD::SUB) {
22407         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
22408           Offset += -C->getZExtValue();
22409           Op = Op.getOperand(0);
22410           continue;
22411         }
22412       }
22413
22414       // Otherwise, this isn't something we can handle, reject it.
22415       return;
22416     }
22417
22418     const GlobalValue *GV = GA->getGlobal();
22419     // If we require an extra load to get this address, as in PIC mode, we
22420     // can't accept it.
22421     if (isGlobalStubReference(
22422             Subtarget->ClassifyGlobalReference(GV, DAG.getTarget())))
22423       return;
22424
22425     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
22426                                         GA->getValueType(0), Offset);
22427     break;
22428   }
22429   }
22430
22431   if (Result.getNode()) {
22432     Ops.push_back(Result);
22433     return;
22434   }
22435   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
22436 }
22437
22438 std::pair<unsigned, const TargetRegisterClass*>
22439 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
22440                                                 MVT VT) const {
22441   // First, see if this is a constraint that directly corresponds to an LLVM
22442   // register class.
22443   if (Constraint.size() == 1) {
22444     // GCC Constraint Letters
22445     switch (Constraint[0]) {
22446     default: break;
22447       // TODO: Slight differences here in allocation order and leaving
22448       // RIP in the class. Do they matter any more here than they do
22449       // in the normal allocation?
22450     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
22451       if (Subtarget->is64Bit()) {
22452         if (VT == MVT::i32 || VT == MVT::f32)
22453           return std::make_pair(0U, &X86::GR32RegClass);
22454         if (VT == MVT::i16)
22455           return std::make_pair(0U, &X86::GR16RegClass);
22456         if (VT == MVT::i8 || VT == MVT::i1)
22457           return std::make_pair(0U, &X86::GR8RegClass);
22458         if (VT == MVT::i64 || VT == MVT::f64)
22459           return std::make_pair(0U, &X86::GR64RegClass);
22460         break;
22461       }
22462       // 32-bit fallthrough
22463     case 'Q':   // Q_REGS
22464       if (VT == MVT::i32 || VT == MVT::f32)
22465         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
22466       if (VT == MVT::i16)
22467         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
22468       if (VT == MVT::i8 || VT == MVT::i1)
22469         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
22470       if (VT == MVT::i64)
22471         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
22472       break;
22473     case 'r':   // GENERAL_REGS
22474     case 'l':   // INDEX_REGS
22475       if (VT == MVT::i8 || VT == MVT::i1)
22476         return std::make_pair(0U, &X86::GR8RegClass);
22477       if (VT == MVT::i16)
22478         return std::make_pair(0U, &X86::GR16RegClass);
22479       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
22480         return std::make_pair(0U, &X86::GR32RegClass);
22481       return std::make_pair(0U, &X86::GR64RegClass);
22482     case 'R':   // LEGACY_REGS
22483       if (VT == MVT::i8 || VT == MVT::i1)
22484         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
22485       if (VT == MVT::i16)
22486         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
22487       if (VT == MVT::i32 || !Subtarget->is64Bit())
22488         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
22489       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
22490     case 'f':  // FP Stack registers.
22491       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
22492       // value to the correct fpstack register class.
22493       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
22494         return std::make_pair(0U, &X86::RFP32RegClass);
22495       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
22496         return std::make_pair(0U, &X86::RFP64RegClass);
22497       return std::make_pair(0U, &X86::RFP80RegClass);
22498     case 'y':   // MMX_REGS if MMX allowed.
22499       if (!Subtarget->hasMMX()) break;
22500       return std::make_pair(0U, &X86::VR64RegClass);
22501     case 'Y':   // SSE_REGS if SSE2 allowed
22502       if (!Subtarget->hasSSE2()) break;
22503       // FALL THROUGH.
22504     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
22505       if (!Subtarget->hasSSE1()) break;
22506
22507       switch (VT.SimpleTy) {
22508       default: break;
22509       // Scalar SSE types.
22510       case MVT::f32:
22511       case MVT::i32:
22512         return std::make_pair(0U, &X86::FR32RegClass);
22513       case MVT::f64:
22514       case MVT::i64:
22515         return std::make_pair(0U, &X86::FR64RegClass);
22516       // Vector types.
22517       case MVT::v16i8:
22518       case MVT::v8i16:
22519       case MVT::v4i32:
22520       case MVT::v2i64:
22521       case MVT::v4f32:
22522       case MVT::v2f64:
22523         return std::make_pair(0U, &X86::VR128RegClass);
22524       // AVX types.
22525       case MVT::v32i8:
22526       case MVT::v16i16:
22527       case MVT::v8i32:
22528       case MVT::v4i64:
22529       case MVT::v8f32:
22530       case MVT::v4f64:
22531         return std::make_pair(0U, &X86::VR256RegClass);
22532       case MVT::v8f64:
22533       case MVT::v16f32:
22534       case MVT::v16i32:
22535       case MVT::v8i64:
22536         return std::make_pair(0U, &X86::VR512RegClass);
22537       }
22538       break;
22539     }
22540   }
22541
22542   // Use the default implementation in TargetLowering to convert the register
22543   // constraint into a member of a register class.
22544   std::pair<unsigned, const TargetRegisterClass*> Res;
22545   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
22546
22547   // Not found as a standard register?
22548   if (!Res.second) {
22549     // Map st(0) -> st(7) -> ST0
22550     if (Constraint.size() == 7 && Constraint[0] == '{' &&
22551         tolower(Constraint[1]) == 's' &&
22552         tolower(Constraint[2]) == 't' &&
22553         Constraint[3] == '(' &&
22554         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
22555         Constraint[5] == ')' &&
22556         Constraint[6] == '}') {
22557
22558       Res.first = X86::ST0+Constraint[4]-'0';
22559       Res.second = &X86::RFP80RegClass;
22560       return Res;
22561     }
22562
22563     // GCC allows "st(0)" to be called just plain "st".
22564     if (StringRef("{st}").equals_lower(Constraint)) {
22565       Res.first = X86::ST0;
22566       Res.second = &X86::RFP80RegClass;
22567       return Res;
22568     }
22569
22570     // flags -> EFLAGS
22571     if (StringRef("{flags}").equals_lower(Constraint)) {
22572       Res.first = X86::EFLAGS;
22573       Res.second = &X86::CCRRegClass;
22574       return Res;
22575     }
22576
22577     // 'A' means EAX + EDX.
22578     if (Constraint == "A") {
22579       Res.first = X86::EAX;
22580       Res.second = &X86::GR32_ADRegClass;
22581       return Res;
22582     }
22583     return Res;
22584   }
22585
22586   // Otherwise, check to see if this is a register class of the wrong value
22587   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
22588   // turn into {ax},{dx}.
22589   if (Res.second->hasType(VT))
22590     return Res;   // Correct type already, nothing to do.
22591
22592   // All of the single-register GCC register classes map their values onto
22593   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
22594   // really want an 8-bit or 32-bit register, map to the appropriate register
22595   // class and return the appropriate register.
22596   if (Res.second == &X86::GR16RegClass) {
22597     if (VT == MVT::i8 || VT == MVT::i1) {
22598       unsigned DestReg = 0;
22599       switch (Res.first) {
22600       default: break;
22601       case X86::AX: DestReg = X86::AL; break;
22602       case X86::DX: DestReg = X86::DL; break;
22603       case X86::CX: DestReg = X86::CL; break;
22604       case X86::BX: DestReg = X86::BL; break;
22605       }
22606       if (DestReg) {
22607         Res.first = DestReg;
22608         Res.second = &X86::GR8RegClass;
22609       }
22610     } else if (VT == MVT::i32 || VT == MVT::f32) {
22611       unsigned DestReg = 0;
22612       switch (Res.first) {
22613       default: break;
22614       case X86::AX: DestReg = X86::EAX; break;
22615       case X86::DX: DestReg = X86::EDX; break;
22616       case X86::CX: DestReg = X86::ECX; break;
22617       case X86::BX: DestReg = X86::EBX; break;
22618       case X86::SI: DestReg = X86::ESI; break;
22619       case X86::DI: DestReg = X86::EDI; break;
22620       case X86::BP: DestReg = X86::EBP; break;
22621       case X86::SP: DestReg = X86::ESP; break;
22622       }
22623       if (DestReg) {
22624         Res.first = DestReg;
22625         Res.second = &X86::GR32RegClass;
22626       }
22627     } else if (VT == MVT::i64 || VT == MVT::f64) {
22628       unsigned DestReg = 0;
22629       switch (Res.first) {
22630       default: break;
22631       case X86::AX: DestReg = X86::RAX; break;
22632       case X86::DX: DestReg = X86::RDX; break;
22633       case X86::CX: DestReg = X86::RCX; break;
22634       case X86::BX: DestReg = X86::RBX; break;
22635       case X86::SI: DestReg = X86::RSI; break;
22636       case X86::DI: DestReg = X86::RDI; break;
22637       case X86::BP: DestReg = X86::RBP; break;
22638       case X86::SP: DestReg = X86::RSP; break;
22639       }
22640       if (DestReg) {
22641         Res.first = DestReg;
22642         Res.second = &X86::GR64RegClass;
22643       }
22644     }
22645   } else if (Res.second == &X86::FR32RegClass ||
22646              Res.second == &X86::FR64RegClass ||
22647              Res.second == &X86::VR128RegClass ||
22648              Res.second == &X86::VR256RegClass ||
22649              Res.second == &X86::FR32XRegClass ||
22650              Res.second == &X86::FR64XRegClass ||
22651              Res.second == &X86::VR128XRegClass ||
22652              Res.second == &X86::VR256XRegClass ||
22653              Res.second == &X86::VR512RegClass) {
22654     // Handle references to XMM physical registers that got mapped into the
22655     // wrong class.  This can happen with constraints like {xmm0} where the
22656     // target independent register mapper will just pick the first match it can
22657     // find, ignoring the required type.
22658
22659     if (VT == MVT::f32 || VT == MVT::i32)
22660       Res.second = &X86::FR32RegClass;
22661     else if (VT == MVT::f64 || VT == MVT::i64)
22662       Res.second = &X86::FR64RegClass;
22663     else if (X86::VR128RegClass.hasType(VT))
22664       Res.second = &X86::VR128RegClass;
22665     else if (X86::VR256RegClass.hasType(VT))
22666       Res.second = &X86::VR256RegClass;
22667     else if (X86::VR512RegClass.hasType(VT))
22668       Res.second = &X86::VR512RegClass;
22669   }
22670
22671   return Res;
22672 }
22673
22674 int X86TargetLowering::getScalingFactorCost(const AddrMode &AM,
22675                                             Type *Ty) const {
22676   // Scaling factors are not free at all.
22677   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
22678   // will take 2 allocations in the out of order engine instead of 1
22679   // for plain addressing mode, i.e. inst (reg1).
22680   // E.g.,
22681   // vaddps (%rsi,%drx), %ymm0, %ymm1
22682   // Requires two allocations (one for the load, one for the computation)
22683   // whereas:
22684   // vaddps (%rsi), %ymm0, %ymm1
22685   // Requires just 1 allocation, i.e., freeing allocations for other operations
22686   // and having less micro operations to execute.
22687   //
22688   // For some X86 architectures, this is even worse because for instance for
22689   // stores, the complex addressing mode forces the instruction to use the
22690   // "load" ports instead of the dedicated "store" port.
22691   // E.g., on Haswell:
22692   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
22693   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.   
22694   if (isLegalAddressingMode(AM, Ty))
22695     // Scale represents reg2 * scale, thus account for 1
22696     // as soon as we use a second register.
22697     return AM.Scale != 0;
22698   return -1;
22699 }
22700
22701 bool X86TargetLowering::isTargetFTOL() const {
22702   return Subtarget->isTargetKnownWindowsMSVC() && !Subtarget->is64Bit();
22703 }