Fixed a bug when lowering build_vector (PR19694)
[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/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 #define DEBUG_TYPE "x86-isel"
56
57 STATISTIC(NumTailCalls, "Number of tail calls");
58
59 // Forward declarations.
60 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
61                        SDValue V2);
62
63 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
64                                 SelectionDAG &DAG, SDLoc dl,
65                                 unsigned vectorWidth) {
66   assert((vectorWidth == 128 || vectorWidth == 256) &&
67          "Unsupported vector width");
68   EVT VT = Vec.getValueType();
69   EVT ElVT = VT.getVectorElementType();
70   unsigned Factor = VT.getSizeInBits()/vectorWidth;
71   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
72                                   VT.getVectorNumElements()/Factor);
73
74   // Extract from UNDEF is UNDEF.
75   if (Vec.getOpcode() == ISD::UNDEF)
76     return DAG.getUNDEF(ResultVT);
77
78   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
79   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
80
81   // This is the index of the first element of the vectorWidth-bit chunk
82   // we want.
83   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
84                                * ElemsPerChunk);
85
86   // If the input is a buildvector just emit a smaller one.
87   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
88     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
89                        makeArrayRef(Vec->op_begin()+NormalizedIdxVal,
90                                     ElemsPerChunk));
91
92   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
93   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
94                                VecIdx);
95
96   return Result;
97
98 }
99 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
100 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
101 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
102 /// instructions or a simple subregister reference. Idx is an index in the
103 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
104 /// lowering EXTRACT_VECTOR_ELT operations easier.
105 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
106                                    SelectionDAG &DAG, SDLoc dl) {
107   assert((Vec.getValueType().is256BitVector() ||
108           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
109   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
110 }
111
112 /// Generate a DAG to grab 256-bits from a 512-bit vector.
113 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
114                                    SelectionDAG &DAG, SDLoc dl) {
115   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
116   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
117 }
118
119 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
120                                unsigned IdxVal, SelectionDAG &DAG,
121                                SDLoc dl, unsigned vectorWidth) {
122   assert((vectorWidth == 128 || vectorWidth == 256) &&
123          "Unsupported vector width");
124   // Inserting UNDEF is Result
125   if (Vec.getOpcode() == ISD::UNDEF)
126     return Result;
127   EVT VT = Vec.getValueType();
128   EVT ElVT = VT.getVectorElementType();
129   EVT ResultVT = Result.getValueType();
130
131   // Insert the relevant vectorWidth bits.
132   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
133
134   // This is the index of the first element of the vectorWidth-bit chunk
135   // we want.
136   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
137                                * ElemsPerChunk);
138
139   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
140   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
141                      VecIdx);
142 }
143 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
144 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
145 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
146 /// simple superregister reference.  Idx is an index in the 128 bits
147 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
148 /// lowering INSERT_VECTOR_ELT operations easier.
149 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
150                                   unsigned IdxVal, SelectionDAG &DAG,
151                                   SDLoc dl) {
152   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
153   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
154 }
155
156 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
157                                   unsigned IdxVal, SelectionDAG &DAG,
158                                   SDLoc dl) {
159   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
160   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
161 }
162
163 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
164 /// instructions. This is used because creating CONCAT_VECTOR nodes of
165 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
166 /// large BUILD_VECTORS.
167 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
168                                    unsigned NumElems, SelectionDAG &DAG,
169                                    SDLoc dl) {
170   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
171   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
172 }
173
174 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
175                                    unsigned NumElems, SelectionDAG &DAG,
176                                    SDLoc dl) {
177   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
178   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
179 }
180
181 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
182   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
183   bool is64Bit = Subtarget->is64Bit();
184
185   if (Subtarget->isTargetMacho()) {
186     if (is64Bit)
187       return new X86_64MachoTargetObjectFile();
188     return new TargetLoweringObjectFileMachO();
189   }
190
191   if (Subtarget->isTargetLinux())
192     return new X86LinuxTargetObjectFile();
193   if (Subtarget->isTargetELF())
194     return new TargetLoweringObjectFileELF();
195   if (Subtarget->isTargetKnownWindowsMSVC())
196     return new X86WindowsTargetObjectFile();
197   if (Subtarget->isTargetCOFF())
198     return new TargetLoweringObjectFileCOFF();
199   llvm_unreachable("unknown subtarget type");
200 }
201
202 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
203   : TargetLowering(TM, createTLOF(TM)) {
204   Subtarget = &TM.getSubtarget<X86Subtarget>();
205   X86ScalarSSEf64 = Subtarget->hasSSE2();
206   X86ScalarSSEf32 = Subtarget->hasSSE1();
207   TD = getDataLayout();
208
209   resetOperationActions();
210 }
211
212 void X86TargetLowering::resetOperationActions() {
213   const TargetMachine &TM = getTargetMachine();
214   static bool FirstTimeThrough = true;
215
216   // If none of the target options have changed, then we don't need to reset the
217   // operation actions.
218   if (!FirstTimeThrough && TO == TM.Options) return;
219
220   if (!FirstTimeThrough) {
221     // Reinitialize the actions.
222     initActions();
223     FirstTimeThrough = false;
224   }
225
226   TO = TM.Options;
227
228   // Set up the TargetLowering object.
229   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
230
231   // X86 is weird, it always uses i8 for shift amounts and setcc results.
232   setBooleanContents(ZeroOrOneBooleanContent);
233   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
234   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
235
236   // For 64-bit since we have so many registers use the ILP scheduler, for
237   // 32-bit code use the register pressure specific scheduling.
238   // For Atom, always use ILP scheduling.
239   if (Subtarget->isAtom())
240     setSchedulingPreference(Sched::ILP);
241   else if (Subtarget->is64Bit())
242     setSchedulingPreference(Sched::ILP);
243   else
244     setSchedulingPreference(Sched::RegPressure);
245   const X86RegisterInfo *RegInfo =
246     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
247   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
248
249   // Bypass expensive divides on Atom when compiling with O2
250   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
251     addBypassSlowDiv(32, 8);
252     if (Subtarget->is64Bit())
253       addBypassSlowDiv(64, 16);
254   }
255
256   if (Subtarget->isTargetKnownWindowsMSVC()) {
257     // Setup Windows compiler runtime calls.
258     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
259     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
260     setLibcallName(RTLIB::SREM_I64, "_allrem");
261     setLibcallName(RTLIB::UREM_I64, "_aullrem");
262     setLibcallName(RTLIB::MUL_I64, "_allmul");
263     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
264     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
265     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
266     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
267     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
268
269     // The _ftol2 runtime function has an unusual calling conv, which
270     // is modeled by a special pseudo-instruction.
271     setLibcallName(RTLIB::FPTOUINT_F64_I64, nullptr);
272     setLibcallName(RTLIB::FPTOUINT_F32_I64, nullptr);
273     setLibcallName(RTLIB::FPTOUINT_F64_I32, nullptr);
274     setLibcallName(RTLIB::FPTOUINT_F32_I32, nullptr);
275   }
276
277   if (Subtarget->isTargetDarwin()) {
278     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
279     setUseUnderscoreSetJmp(false);
280     setUseUnderscoreLongJmp(false);
281   } else if (Subtarget->isTargetWindowsGNU()) {
282     // MS runtime is weird: it exports _setjmp, but longjmp!
283     setUseUnderscoreSetJmp(true);
284     setUseUnderscoreLongJmp(false);
285   } else {
286     setUseUnderscoreSetJmp(true);
287     setUseUnderscoreLongJmp(true);
288   }
289
290   // Set up the register classes.
291   addRegisterClass(MVT::i8, &X86::GR8RegClass);
292   addRegisterClass(MVT::i16, &X86::GR16RegClass);
293   addRegisterClass(MVT::i32, &X86::GR32RegClass);
294   if (Subtarget->is64Bit())
295     addRegisterClass(MVT::i64, &X86::GR64RegClass);
296
297   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
298
299   // We don't accept any truncstore of integer registers.
300   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
301   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
302   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
303   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
304   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
305   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
306
307   // SETOEQ and SETUNE require checking two conditions.
308   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
309   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
310   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
311   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
312   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
313   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
314
315   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
316   // operation.
317   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
318   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
319   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
320
321   if (Subtarget->is64Bit()) {
322     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
323     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
324   } else if (!TM.Options.UseSoftFloat) {
325     // We have an algorithm for SSE2->double, and we turn this into a
326     // 64-bit FILD followed by conditional FADD for other targets.
327     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
328     // We have an algorithm for SSE2, and we turn this into a 64-bit
329     // FILD for other targets.
330     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
331   }
332
333   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
334   // this operation.
335   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
336   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
337
338   if (!TM.Options.UseSoftFloat) {
339     // SSE has no i16 to fp conversion, only i32
340     if (X86ScalarSSEf32) {
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
342       // f32 and f64 cases are Legal, f80 case is not
343       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
344     } else {
345       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
346       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
347     }
348   } else {
349     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
350     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
351   }
352
353   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
354   // are Legal, f80 is custom lowered.
355   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
356   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
357
358   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
359   // this operation.
360   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
361   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
362
363   if (X86ScalarSSEf32) {
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
365     // f32 and f64 cases are Legal, f80 case is not
366     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
367   } else {
368     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
369     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
370   }
371
372   // Handle FP_TO_UINT by promoting the destination to a larger signed
373   // conversion.
374   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
375   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
376   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
377
378   if (Subtarget->is64Bit()) {
379     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
380     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
381   } else if (!TM.Options.UseSoftFloat) {
382     // Since AVX is a superset of SSE3, only check for SSE here.
383     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
384       // Expand FP_TO_UINT into a select.
385       // FIXME: We would like to use a Custom expander here eventually to do
386       // the optimal thing for SSE vs. the default expansion in the legalizer.
387       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
388     else
389       // With SSE3 we can use fisttpll to convert to a signed i64; without
390       // SSE, we're stuck with a fistpll.
391       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
392   }
393
394   if (isTargetFTOL()) {
395     // Use the _ftol2 runtime function, which has a pseudo-instruction
396     // to handle its weird calling convention.
397     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
398   }
399
400   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
401   if (!X86ScalarSSEf64) {
402     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
403     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
404     if (Subtarget->is64Bit()) {
405       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
406       // Without SSE, i64->f64 goes through memory.
407       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
408     }
409   }
410
411   // Scalar integer divide and remainder are lowered to use operations that
412   // produce two results, to match the available instructions. This exposes
413   // the two-result form to trivial CSE, which is able to combine x/y and x%y
414   // into a single instruction.
415   //
416   // Scalar integer multiply-high is also lowered to use two-result
417   // operations, to match the available instructions. However, plain multiply
418   // (low) operations are left as Legal, as there are single-result
419   // instructions for this in x86. Using the two-result multiply instructions
420   // when both high and low results are needed must be arranged by dagcombine.
421   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
422     MVT VT = IntVTs[i];
423     setOperationAction(ISD::MULHS, VT, Expand);
424     setOperationAction(ISD::MULHU, VT, Expand);
425     setOperationAction(ISD::SDIV, VT, Expand);
426     setOperationAction(ISD::UDIV, VT, Expand);
427     setOperationAction(ISD::SREM, VT, Expand);
428     setOperationAction(ISD::UREM, VT, Expand);
429
430     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
431     setOperationAction(ISD::ADDC, VT, Custom);
432     setOperationAction(ISD::ADDE, VT, Custom);
433     setOperationAction(ISD::SUBC, VT, Custom);
434     setOperationAction(ISD::SUBE, VT, Custom);
435   }
436
437   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
438   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
439   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
441   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
442   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
443   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
444   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
445   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
446   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
447   if (Subtarget->is64Bit())
448     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
449   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
450   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
451   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
452   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
453   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
454   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
455   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
456   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
457
458   // Promote the i8 variants and force them on up to i32 which has a shorter
459   // encoding.
460   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
461   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
462   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
463   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
464   if (Subtarget->hasBMI()) {
465     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
466     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
467     if (Subtarget->is64Bit())
468       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
469   } else {
470     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
471     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
472     if (Subtarget->is64Bit())
473       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
474   }
475
476   if (Subtarget->hasLZCNT()) {
477     // When promoting the i8 variants, force them to i32 for a shorter
478     // encoding.
479     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
480     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
481     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
482     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
483     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
484     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
485     if (Subtarget->is64Bit())
486       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
487   } else {
488     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
489     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
490     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
491     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
492     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
493     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
494     if (Subtarget->is64Bit()) {
495       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
496       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
497     }
498   }
499
500   if (Subtarget->hasPOPCNT()) {
501     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
502   } else {
503     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
504     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
505     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
506     if (Subtarget->is64Bit())
507       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
508   }
509
510   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
511
512   if (!Subtarget->hasMOVBE())
513     setOperationAction(ISD::BSWAP          , MVT::i16  , Expand);
514
515   // These should be promoted to a larger select which is supported.
516   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
517   // X86 wants to expand cmov itself.
518   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
519   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
520   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
521   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
522   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
523   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
524   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
525   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
526   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
527   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
528   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
529   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
530   if (Subtarget->is64Bit()) {
531     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
532     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
533   }
534   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
535   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
536   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
537   // support continuation, user-level threading, and etc.. As a result, no
538   // other SjLj exception interfaces are implemented and please don't build
539   // your own exception handling based on them.
540   // LLVM/Clang supports zero-cost DWARF exception handling.
541   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
542   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
543
544   // Darwin ABI issue.
545   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
546   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
547   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
548   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
549   if (Subtarget->is64Bit())
550     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
551   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
552   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
553   if (Subtarget->is64Bit()) {
554     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
555     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
556     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
557     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
558     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
559   }
560   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
561   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
562   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
563   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
564   if (Subtarget->is64Bit()) {
565     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
566     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
567     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
568   }
569
570   if (Subtarget->hasSSE1())
571     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
572
573   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
574
575   // Expand certain atomics
576   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
577     MVT VT = IntVTs[i];
578     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
580     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
581   }
582
583   if (!Subtarget->is64Bit()) {
584     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
589     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
590     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
591     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
592     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
593     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
594     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
595     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
596   }
597
598   if (Subtarget->hasCmpxchg16b()) {
599     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
600   }
601
602   // FIXME - use subtarget debug flags
603   if (!Subtarget->isTargetDarwin() &&
604       !Subtarget->isTargetELF() &&
605       !Subtarget->isTargetCygMing()) {
606     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
607   }
608
609   if (Subtarget->is64Bit()) {
610     setExceptionPointerRegister(X86::RAX);
611     setExceptionSelectorRegister(X86::RDX);
612   } else {
613     setExceptionPointerRegister(X86::EAX);
614     setExceptionSelectorRegister(X86::EDX);
615   }
616   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
617   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
618
619   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
620   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
621
622   setOperationAction(ISD::TRAP, MVT::Other, Legal);
623   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
624
625   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
626   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
627   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
628   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
629     // TargetInfo::X86_64ABIBuiltinVaList
630     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
631     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
632   } else {
633     // TargetInfo::CharPtrBuiltinVaList
634     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
635     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
636   }
637
638   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
639   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
640
641   setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642                      MVT::i64 : MVT::i32, Custom);
643
644   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
645     // f32 and f64 use SSE.
646     // Set up the FP register classes.
647     addRegisterClass(MVT::f32, &X86::FR32RegClass);
648     addRegisterClass(MVT::f64, &X86::FR64RegClass);
649
650     // Use ANDPD to simulate FABS.
651     setOperationAction(ISD::FABS , MVT::f64, Custom);
652     setOperationAction(ISD::FABS , MVT::f32, Custom);
653
654     // Use XORP to simulate FNEG.
655     setOperationAction(ISD::FNEG , MVT::f64, Custom);
656     setOperationAction(ISD::FNEG , MVT::f32, Custom);
657
658     // Use ANDPD and ORPD to simulate FCOPYSIGN.
659     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
661
662     // Lower this to FGETSIGNx86 plus an AND.
663     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
666     // We don't support sin/cos/fmod
667     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
668     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
669     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
671     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
672     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
673
674     // Expand FP immediates into loads from the stack, except for the special
675     // cases we handle.
676     addLegalFPImmediate(APFloat(+0.0)); // xorpd
677     addLegalFPImmediate(APFloat(+0.0f)); // xorps
678   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
679     // Use SSE for f32, x87 for f64.
680     // Set up the FP register classes.
681     addRegisterClass(MVT::f32, &X86::FR32RegClass);
682     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
683
684     // Use ANDPS to simulate FABS.
685     setOperationAction(ISD::FABS , MVT::f32, Custom);
686
687     // Use XORP to simulate FNEG.
688     setOperationAction(ISD::FNEG , MVT::f32, Custom);
689
690     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
691
692     // Use ANDPS and ORPS to simulate FCOPYSIGN.
693     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
695
696     // We don't support sin/cos/fmod
697     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
698     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
699     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
700
701     // Special cases we handle for FP constants.
702     addLegalFPImmediate(APFloat(+0.0f)); // xorps
703     addLegalFPImmediate(APFloat(+0.0)); // FLD0
704     addLegalFPImmediate(APFloat(+1.0)); // FLD1
705     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
708     if (!TM.Options.UnsafeFPMath) {
709       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
710       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
711       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
712     }
713   } else if (!TM.Options.UseSoftFloat) {
714     // f32 and f64 in x87.
715     // Set up the FP register classes.
716     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
718
719     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
720     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
721     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
723
724     if (!TM.Options.UnsafeFPMath) {
725       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
726       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
727       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
729       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
731     }
732     addLegalFPImmediate(APFloat(+0.0)); // FLD0
733     addLegalFPImmediate(APFloat(+1.0)); // FLD1
734     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
736     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
740   }
741
742   // We don't support FMA.
743   setOperationAction(ISD::FMA, MVT::f64, Expand);
744   setOperationAction(ISD::FMA, MVT::f32, Expand);
745
746   // Long double always uses X87.
747   if (!TM.Options.UseSoftFloat) {
748     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
749     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
750     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
751     {
752       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
753       addLegalFPImmediate(TmpFlt);  // FLD0
754       TmpFlt.changeSign();
755       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
756
757       bool ignored;
758       APFloat TmpFlt2(+1.0);
759       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760                       &ignored);
761       addLegalFPImmediate(TmpFlt2);  // FLD1
762       TmpFlt2.changeSign();
763       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
764     }
765
766     if (!TM.Options.UnsafeFPMath) {
767       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
768       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
769       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
770     }
771
772     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
774     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
776     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
777     setOperationAction(ISD::FMA, MVT::f80, Expand);
778   }
779
780   // Always use a library call for pow.
781   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
782   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
784
785   setOperationAction(ISD::FLOG, MVT::f80, Expand);
786   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788   setOperationAction(ISD::FEXP, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
790
791   // First set operation action for all vector types to either promote
792   // (for widening) or expand (for scalarization). Then we will selectively
793   // turn on ones that can be effectively codegen'd.
794   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
796     MVT VT = (MVT::SimpleValueType)i;
797     setOperationAction(ISD::ADD , VT, Expand);
798     setOperationAction(ISD::SUB , VT, Expand);
799     setOperationAction(ISD::FADD, VT, Expand);
800     setOperationAction(ISD::FNEG, VT, Expand);
801     setOperationAction(ISD::FSUB, VT, Expand);
802     setOperationAction(ISD::MUL , VT, Expand);
803     setOperationAction(ISD::FMUL, VT, Expand);
804     setOperationAction(ISD::SDIV, VT, Expand);
805     setOperationAction(ISD::UDIV, VT, Expand);
806     setOperationAction(ISD::FDIV, VT, Expand);
807     setOperationAction(ISD::SREM, VT, Expand);
808     setOperationAction(ISD::UREM, VT, Expand);
809     setOperationAction(ISD::LOAD, VT, Expand);
810     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::FABS, VT, Expand);
816     setOperationAction(ISD::FSIN, VT, Expand);
817     setOperationAction(ISD::FSINCOS, VT, Expand);
818     setOperationAction(ISD::FCOS, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FREM, VT, Expand);
821     setOperationAction(ISD::FMA,  VT, Expand);
822     setOperationAction(ISD::FPOWI, VT, Expand);
823     setOperationAction(ISD::FSQRT, VT, Expand);
824     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825     setOperationAction(ISD::FFLOOR, VT, Expand);
826     setOperationAction(ISD::FCEIL, VT, Expand);
827     setOperationAction(ISD::FTRUNC, VT, Expand);
828     setOperationAction(ISD::FRINT, VT, Expand);
829     setOperationAction(ISD::FNEARBYINT, VT, Expand);
830     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831     setOperationAction(ISD::MULHS, VT, Expand);
832     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
833     setOperationAction(ISD::MULHU, VT, Expand);
834     setOperationAction(ISD::SDIVREM, VT, Expand);
835     setOperationAction(ISD::UDIVREM, VT, Expand);
836     setOperationAction(ISD::FPOW, VT, Expand);
837     setOperationAction(ISD::CTPOP, VT, Expand);
838     setOperationAction(ISD::CTTZ, VT, Expand);
839     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::CTLZ, VT, Expand);
841     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
842     setOperationAction(ISD::SHL, VT, Expand);
843     setOperationAction(ISD::SRA, VT, Expand);
844     setOperationAction(ISD::SRL, VT, Expand);
845     setOperationAction(ISD::ROTL, VT, Expand);
846     setOperationAction(ISD::ROTR, VT, Expand);
847     setOperationAction(ISD::BSWAP, VT, Expand);
848     setOperationAction(ISD::SETCC, VT, Expand);
849     setOperationAction(ISD::FLOG, VT, Expand);
850     setOperationAction(ISD::FLOG2, VT, Expand);
851     setOperationAction(ISD::FLOG10, VT, Expand);
852     setOperationAction(ISD::FEXP, VT, Expand);
853     setOperationAction(ISD::FEXP2, VT, Expand);
854     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
855     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
856     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
857     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
859     setOperationAction(ISD::TRUNCATE, VT, Expand);
860     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
861     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
862     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
863     setOperationAction(ISD::VSELECT, VT, Expand);
864     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
865              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
866       setTruncStoreAction(VT,
867                           (MVT::SimpleValueType)InnerVT, Expand);
868     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
869     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
870     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
871   }
872
873   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
874   // with -msoft-float, disable use of MMX as well.
875   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
876     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
877     // No operations on x86mmx supported, everything uses intrinsics.
878   }
879
880   // MMX-sized vectors (other than x86mmx) are expected to be expanded
881   // into smaller operations.
882   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
883   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
884   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
885   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
886   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
887   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
888   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
889   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
890   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
891   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
892   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
893   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
894   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
895   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
896   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
897   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
900   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
901   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
902   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
904   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
905   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
906   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
909   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
910   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
911
912   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
913     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
914
915     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
918     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
919     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
920     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
921     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
922     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
923     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
924     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
925     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
926     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
927   }
928
929   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
930     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
931
932     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
933     // registers cannot be used even for integer operations.
934     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
935     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
936     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
937     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
938
939     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
940     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
941     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
942     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
943     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
944     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
945     setOperationAction(ISD::UMUL_LOHI,          MVT::v4i32, Custom);
946     setOperationAction(ISD::SMUL_LOHI,          MVT::v4i32, Custom);
947     setOperationAction(ISD::MULHU,              MVT::v8i16, Legal);
948     setOperationAction(ISD::MULHS,              MVT::v8i16, Legal);
949     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
950     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
951     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
952     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
953     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
954     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
955     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
956     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
957     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
958     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
959     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
960     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
961
962     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
963     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
964     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
965     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
966
967     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
968     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
969     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
970     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
971     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
972
973     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
974     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
975       MVT VT = (MVT::SimpleValueType)i;
976       // Do not attempt to custom lower non-power-of-2 vectors
977       if (!isPowerOf2_32(VT.getVectorNumElements()))
978         continue;
979       // Do not attempt to custom lower non-128-bit vectors
980       if (!VT.is128BitVector())
981         continue;
982       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
983       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
984       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
985     }
986
987     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
988     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
989     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
990     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
991     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
992     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
993
994     if (Subtarget->is64Bit()) {
995       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
996       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
997     }
998
999     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
1000     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
1001       MVT VT = (MVT::SimpleValueType)i;
1002
1003       // Do not attempt to promote non-128-bit vectors
1004       if (!VT.is128BitVector())
1005         continue;
1006
1007       setOperationAction(ISD::AND,    VT, Promote);
1008       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1009       setOperationAction(ISD::OR,     VT, Promote);
1010       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1011       setOperationAction(ISD::XOR,    VT, Promote);
1012       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1013       setOperationAction(ISD::LOAD,   VT, Promote);
1014       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1015       setOperationAction(ISD::SELECT, VT, Promote);
1016       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1017     }
1018
1019     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1020
1021     // Custom lower v2i64 and v2f64 selects.
1022     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1023     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1024     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1025     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1026
1027     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1028     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1029
1030     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1031     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1032     // As there is no 64-bit GPR available, we need build a special custom
1033     // sequence to convert from v2i32 to v2f32.
1034     if (!Subtarget->is64Bit())
1035       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1036
1037     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1038     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1039
1040     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1041
1042     setOperationAction(ISD::BITCAST,            MVT::v2i32, Custom);
1043   }
1044
1045   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1046     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1047     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1048     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1049     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1050     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1051     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1052     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1053     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1054     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1055     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1056
1057     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1058     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1059     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1060     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1061     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1062     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1063     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1064     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1065     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1066     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1067
1068     // FIXME: Do we need to handle scalar-to-vector here?
1069     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1070
1071     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1072     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1073     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1074     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1075     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1076
1077     // i8 and i16 vectors are custom , because the source register and source
1078     // source memory operand types are not the same width.  f32 vectors are
1079     // custom since the immediate controlling the insert encodes additional
1080     // information.
1081     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1082     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1083     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1084     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1085
1086     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1087     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1088     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1089     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1090
1091     // FIXME: these should be Legal but thats only for the case where
1092     // the index is constant.  For now custom expand to deal with that.
1093     if (Subtarget->is64Bit()) {
1094       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1095       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1096     }
1097   }
1098
1099   if (Subtarget->hasSSE2()) {
1100     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1101     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1102
1103     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1104     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1105
1106     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1107     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1108
1109     // In the customized shift lowering, the legal cases in AVX2 will be
1110     // recognized.
1111     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1112     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1113
1114     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1115     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1116
1117     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1118   }
1119
1120   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1121     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1122     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1123     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1124     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1125     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1126     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1127
1128     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1130     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1131
1132     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1133     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1134     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1135     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1136     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1137     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1138     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1139     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1140     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1141     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1142     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1143     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1144
1145     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1146     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1147     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1148     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1149     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1150     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1151     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1152     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1153     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1154     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1155     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1156     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1157
1158     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1159     // even though v8i16 is a legal type.
1160     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1161     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1162     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1163
1164     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1165     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1166     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1167
1168     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1169     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1170
1171     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1172
1173     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1174     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1175
1176     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1177     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1178
1179     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1180     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1181
1182     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1183     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1184     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1185     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1186
1187     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1188     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1189     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1190
1191     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1192     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1193     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1194     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1195
1196     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1197     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1198     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1199     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1200     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1201     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1202     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1203     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1204     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1205     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1206     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1207     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1208
1209     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1210       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1211       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1212       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1213       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1214       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1215       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1216     }
1217
1218     if (Subtarget->hasInt256()) {
1219       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1220       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1221       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1222       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1223
1224       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1225       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1226       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1227       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1228
1229       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1230       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1231       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1232       // Don't lower v32i8 because there is no 128-bit byte mul
1233
1234       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1235       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1236       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1237       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1238
1239       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1240     } else {
1241       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1242       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1243       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1244       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1245
1246       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1247       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1248       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1249       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1250
1251       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1252       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1253       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1254       // Don't lower v32i8 because there is no 128-bit byte mul
1255     }
1256
1257     // In the customized shift lowering, the legal cases in AVX2 will be
1258     // recognized.
1259     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1260     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1261
1262     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1263     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1264
1265     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1266
1267     // Custom lower several nodes for 256-bit types.
1268     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1269              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1270       MVT VT = (MVT::SimpleValueType)i;
1271
1272       // Extract subvector is special because the value type
1273       // (result) is 128-bit but the source is 256-bit wide.
1274       if (VT.is128BitVector())
1275         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1276
1277       // Do not attempt to custom lower other non-256-bit vectors
1278       if (!VT.is256BitVector())
1279         continue;
1280
1281       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1282       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1283       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1284       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1285       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1286       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1287       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1288     }
1289
1290     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1291     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1292       MVT VT = (MVT::SimpleValueType)i;
1293
1294       // Do not attempt to promote non-256-bit vectors
1295       if (!VT.is256BitVector())
1296         continue;
1297
1298       setOperationAction(ISD::AND,    VT, Promote);
1299       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1300       setOperationAction(ISD::OR,     VT, Promote);
1301       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1302       setOperationAction(ISD::XOR,    VT, Promote);
1303       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1304       setOperationAction(ISD::LOAD,   VT, Promote);
1305       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1306       setOperationAction(ISD::SELECT, VT, Promote);
1307       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1308     }
1309   }
1310
1311   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1312     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1313     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1314     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1315     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1316
1317     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1318     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1319     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1320
1321     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1322     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1323     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1324     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1325     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1326     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1327     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1328     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1329     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1330     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1331     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1332
1333     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1334     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1335     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1336     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1337     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1338     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1339
1340     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1341     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1342     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1343     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1344     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1345     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1346     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1347     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1348
1349     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1350     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1351     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1352     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1353     if (Subtarget->is64Bit()) {
1354       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1355       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1356       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1357       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1358     }
1359     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1360     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1361     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1362     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1363     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1364     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1365     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1366     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1367     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1368     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1369
1370     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1371     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1372     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1373     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1374     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1375     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1376     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1377     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1378     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1379     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1380     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1381     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1382     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1383
1384     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1385     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1386     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1387     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1388     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1389     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1390
1391     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1392     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1393
1394     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1395
1396     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1397     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1398     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1399     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1400     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1401     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1402     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1403     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1404     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1405
1406     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1407     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1408
1409     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1410     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1411
1412     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1413
1414     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1415     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1416
1417     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1418     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1419
1420     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1421     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1422
1423     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1424     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1425     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1426     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1427     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1428     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1429
1430     // Custom lower several nodes.
1431     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1432              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1433       MVT VT = (MVT::SimpleValueType)i;
1434
1435       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1436       // Extract subvector is special because the value type
1437       // (result) is 256/128-bit but the source is 512-bit wide.
1438       if (VT.is128BitVector() || VT.is256BitVector())
1439         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1440
1441       if (VT.getVectorElementType() == MVT::i1)
1442         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1443
1444       // Do not attempt to custom lower other non-512-bit vectors
1445       if (!VT.is512BitVector())
1446         continue;
1447
1448       if ( EltSize >= 32) {
1449         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1450         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1451         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1452         setOperationAction(ISD::VSELECT,             VT, Legal);
1453         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1454         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1455         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1456       }
1457     }
1458     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1459       MVT VT = (MVT::SimpleValueType)i;
1460
1461       // Do not attempt to promote non-256-bit vectors
1462       if (!VT.is512BitVector())
1463         continue;
1464
1465       setOperationAction(ISD::SELECT, VT, Promote);
1466       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1467     }
1468   }// has  AVX-512
1469
1470   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1471   // of this type with custom code.
1472   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1473            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1474     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1475                        Custom);
1476   }
1477
1478   // We want to custom lower some of our intrinsics.
1479   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1480   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1481   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1482   if (!Subtarget->is64Bit())
1483     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1484
1485   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1486   // handle type legalization for these operations here.
1487   //
1488   // FIXME: We really should do custom legalization for addition and
1489   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1490   // than generic legalization for 64-bit multiplication-with-overflow, though.
1491   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1492     // Add/Sub/Mul with overflow operations are custom lowered.
1493     MVT VT = IntVTs[i];
1494     setOperationAction(ISD::SADDO, VT, Custom);
1495     setOperationAction(ISD::UADDO, VT, Custom);
1496     setOperationAction(ISD::SSUBO, VT, Custom);
1497     setOperationAction(ISD::USUBO, VT, Custom);
1498     setOperationAction(ISD::SMULO, VT, Custom);
1499     setOperationAction(ISD::UMULO, VT, Custom);
1500   }
1501
1502   // There are no 8-bit 3-address imul/mul instructions
1503   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1504   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1505
1506   if (!Subtarget->is64Bit()) {
1507     // These libcalls are not available in 32-bit.
1508     setLibcallName(RTLIB::SHL_I128, nullptr);
1509     setLibcallName(RTLIB::SRL_I128, nullptr);
1510     setLibcallName(RTLIB::SRA_I128, nullptr);
1511   }
1512
1513   // Combine sin / cos into one node or libcall if possible.
1514   if (Subtarget->hasSinCos()) {
1515     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1516     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1517     if (Subtarget->isTargetDarwin()) {
1518       // For MacOSX, we don't want to the normal expansion of a libcall to
1519       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1520       // traffic.
1521       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1522       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1523     }
1524   }
1525
1526   if (Subtarget->isTargetWin64()) {
1527     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1528     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1529     setOperationAction(ISD::SREM, MVT::i128, Custom);
1530     setOperationAction(ISD::UREM, MVT::i128, Custom);
1531     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1532     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1533   }
1534
1535   // We have target-specific dag combine patterns for the following nodes:
1536   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1537   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1538   setTargetDAGCombine(ISD::VSELECT);
1539   setTargetDAGCombine(ISD::SELECT);
1540   setTargetDAGCombine(ISD::SHL);
1541   setTargetDAGCombine(ISD::SRA);
1542   setTargetDAGCombine(ISD::SRL);
1543   setTargetDAGCombine(ISD::OR);
1544   setTargetDAGCombine(ISD::AND);
1545   setTargetDAGCombine(ISD::ADD);
1546   setTargetDAGCombine(ISD::FADD);
1547   setTargetDAGCombine(ISD::FSUB);
1548   setTargetDAGCombine(ISD::FMA);
1549   setTargetDAGCombine(ISD::SUB);
1550   setTargetDAGCombine(ISD::LOAD);
1551   setTargetDAGCombine(ISD::STORE);
1552   setTargetDAGCombine(ISD::ZERO_EXTEND);
1553   setTargetDAGCombine(ISD::ANY_EXTEND);
1554   setTargetDAGCombine(ISD::SIGN_EXTEND);
1555   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1556   setTargetDAGCombine(ISD::TRUNCATE);
1557   setTargetDAGCombine(ISD::SINT_TO_FP);
1558   setTargetDAGCombine(ISD::SETCC);
1559   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
1560   if (Subtarget->is64Bit())
1561     setTargetDAGCombine(ISD::MUL);
1562   setTargetDAGCombine(ISD::XOR);
1563
1564   computeRegisterProperties();
1565
1566   // On Darwin, -Os means optimize for size without hurting performance,
1567   // do not reduce the limit.
1568   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1569   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1570   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1571   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1572   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1573   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1574   setPrefLoopAlignment(4); // 2^4 bytes.
1575
1576   // Predictable cmov don't hurt on atom because it's in-order.
1577   PredictableSelectIsExpensive = !Subtarget->isAtom();
1578
1579   setPrefFunctionAlignment(4); // 2^4 bytes.
1580 }
1581
1582 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1583   if (!VT.isVector())
1584     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1585
1586   if (Subtarget->hasAVX512())
1587     switch(VT.getVectorNumElements()) {
1588     case  8: return MVT::v8i1;
1589     case 16: return MVT::v16i1;
1590   }
1591
1592   return VT.changeVectorElementTypeToInteger();
1593 }
1594
1595 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1596 /// the desired ByVal argument alignment.
1597 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1598   if (MaxAlign == 16)
1599     return;
1600   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1601     if (VTy->getBitWidth() == 128)
1602       MaxAlign = 16;
1603   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1604     unsigned EltAlign = 0;
1605     getMaxByValAlign(ATy->getElementType(), EltAlign);
1606     if (EltAlign > MaxAlign)
1607       MaxAlign = EltAlign;
1608   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1609     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1610       unsigned EltAlign = 0;
1611       getMaxByValAlign(STy->getElementType(i), EltAlign);
1612       if (EltAlign > MaxAlign)
1613         MaxAlign = EltAlign;
1614       if (MaxAlign == 16)
1615         break;
1616     }
1617   }
1618 }
1619
1620 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1621 /// function arguments in the caller parameter area. For X86, aggregates
1622 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1623 /// are at 4-byte boundaries.
1624 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1625   if (Subtarget->is64Bit()) {
1626     // Max of 8 and alignment of type.
1627     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1628     if (TyAlign > 8)
1629       return TyAlign;
1630     return 8;
1631   }
1632
1633   unsigned Align = 4;
1634   if (Subtarget->hasSSE1())
1635     getMaxByValAlign(Ty, Align);
1636   return Align;
1637 }
1638
1639 /// getOptimalMemOpType - Returns the target specific optimal type for load
1640 /// and store operations as a result of memset, memcpy, and memmove
1641 /// lowering. If DstAlign is zero that means it's safe to destination
1642 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1643 /// means there isn't a need to check it against alignment requirement,
1644 /// probably because the source does not need to be loaded. If 'IsMemset' is
1645 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1646 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1647 /// source is constant so it does not need to be loaded.
1648 /// It returns EVT::Other if the type should be determined using generic
1649 /// target-independent logic.
1650 EVT
1651 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1652                                        unsigned DstAlign, unsigned SrcAlign,
1653                                        bool IsMemset, bool ZeroMemset,
1654                                        bool MemcpyStrSrc,
1655                                        MachineFunction &MF) const {
1656   const Function *F = MF.getFunction();
1657   if ((!IsMemset || ZeroMemset) &&
1658       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1659                                        Attribute::NoImplicitFloat)) {
1660     if (Size >= 16 &&
1661         (Subtarget->isUnalignedMemAccessFast() ||
1662          ((DstAlign == 0 || DstAlign >= 16) &&
1663           (SrcAlign == 0 || SrcAlign >= 16)))) {
1664       if (Size >= 32) {
1665         if (Subtarget->hasInt256())
1666           return MVT::v8i32;
1667         if (Subtarget->hasFp256())
1668           return MVT::v8f32;
1669       }
1670       if (Subtarget->hasSSE2())
1671         return MVT::v4i32;
1672       if (Subtarget->hasSSE1())
1673         return MVT::v4f32;
1674     } else if (!MemcpyStrSrc && Size >= 8 &&
1675                !Subtarget->is64Bit() &&
1676                Subtarget->hasSSE2()) {
1677       // Do not use f64 to lower memcpy if source is string constant. It's
1678       // better to use i32 to avoid the loads.
1679       return MVT::f64;
1680     }
1681   }
1682   if (Subtarget->is64Bit() && Size >= 8)
1683     return MVT::i64;
1684   return MVT::i32;
1685 }
1686
1687 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1688   if (VT == MVT::f32)
1689     return X86ScalarSSEf32;
1690   else if (VT == MVT::f64)
1691     return X86ScalarSSEf64;
1692   return true;
1693 }
1694
1695 bool
1696 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
1697                                                  unsigned,
1698                                                  bool *Fast) const {
1699   if (Fast)
1700     *Fast = Subtarget->isUnalignedMemAccessFast();
1701   return true;
1702 }
1703
1704 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1705 /// current function.  The returned value is a member of the
1706 /// MachineJumpTableInfo::JTEntryKind enum.
1707 unsigned X86TargetLowering::getJumpTableEncoding() const {
1708   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1709   // symbol.
1710   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1711       Subtarget->isPICStyleGOT())
1712     return MachineJumpTableInfo::EK_Custom32;
1713
1714   // Otherwise, use the normal jump table encoding heuristics.
1715   return TargetLowering::getJumpTableEncoding();
1716 }
1717
1718 const MCExpr *
1719 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1720                                              const MachineBasicBlock *MBB,
1721                                              unsigned uid,MCContext &Ctx) const{
1722   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1723          Subtarget->isPICStyleGOT());
1724   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1725   // entries.
1726   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1727                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1728 }
1729
1730 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1731 /// jumptable.
1732 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1733                                                     SelectionDAG &DAG) const {
1734   if (!Subtarget->is64Bit())
1735     // This doesn't have SDLoc associated with it, but is not really the
1736     // same as a Register.
1737     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1738   return Table;
1739 }
1740
1741 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1742 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1743 /// MCExpr.
1744 const MCExpr *X86TargetLowering::
1745 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1746                              MCContext &Ctx) const {
1747   // X86-64 uses RIP relative addressing based on the jump table label.
1748   if (Subtarget->isPICStyleRIPRel())
1749     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1750
1751   // Otherwise, the reference is relative to the PIC base.
1752   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1753 }
1754
1755 // FIXME: Why this routine is here? Move to RegInfo!
1756 std::pair<const TargetRegisterClass*, uint8_t>
1757 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1758   const TargetRegisterClass *RRC = nullptr;
1759   uint8_t Cost = 1;
1760   switch (VT.SimpleTy) {
1761   default:
1762     return TargetLowering::findRepresentativeClass(VT);
1763   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1764     RRC = Subtarget->is64Bit() ?
1765       (const TargetRegisterClass*)&X86::GR64RegClass :
1766       (const TargetRegisterClass*)&X86::GR32RegClass;
1767     break;
1768   case MVT::x86mmx:
1769     RRC = &X86::VR64RegClass;
1770     break;
1771   case MVT::f32: case MVT::f64:
1772   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1773   case MVT::v4f32: case MVT::v2f64:
1774   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1775   case MVT::v4f64:
1776     RRC = &X86::VR128RegClass;
1777     break;
1778   }
1779   return std::make_pair(RRC, Cost);
1780 }
1781
1782 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1783                                                unsigned &Offset) const {
1784   if (!Subtarget->isTargetLinux())
1785     return false;
1786
1787   if (Subtarget->is64Bit()) {
1788     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1789     Offset = 0x28;
1790     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1791       AddressSpace = 256;
1792     else
1793       AddressSpace = 257;
1794   } else {
1795     // %gs:0x14 on i386
1796     Offset = 0x14;
1797     AddressSpace = 256;
1798   }
1799   return true;
1800 }
1801
1802 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1803                                             unsigned DestAS) const {
1804   assert(SrcAS != DestAS && "Expected different address spaces!");
1805
1806   return SrcAS < 256 && DestAS < 256;
1807 }
1808
1809 //===----------------------------------------------------------------------===//
1810 //               Return Value Calling Convention Implementation
1811 //===----------------------------------------------------------------------===//
1812
1813 #include "X86GenCallingConv.inc"
1814
1815 bool
1816 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1817                                   MachineFunction &MF, bool isVarArg,
1818                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1819                         LLVMContext &Context) const {
1820   SmallVector<CCValAssign, 16> RVLocs;
1821   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1822                  RVLocs, Context);
1823   return CCInfo.CheckReturn(Outs, RetCC_X86);
1824 }
1825
1826 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1827   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
1828   return ScratchRegs;
1829 }
1830
1831 SDValue
1832 X86TargetLowering::LowerReturn(SDValue Chain,
1833                                CallingConv::ID CallConv, bool isVarArg,
1834                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1835                                const SmallVectorImpl<SDValue> &OutVals,
1836                                SDLoc dl, SelectionDAG &DAG) const {
1837   MachineFunction &MF = DAG.getMachineFunction();
1838   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1839
1840   SmallVector<CCValAssign, 16> RVLocs;
1841   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1842                  RVLocs, *DAG.getContext());
1843   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1844
1845   SDValue Flag;
1846   SmallVector<SDValue, 6> RetOps;
1847   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1848   // Operand #1 = Bytes To Pop
1849   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1850                    MVT::i16));
1851
1852   // Copy the result values into the output registers.
1853   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1854     CCValAssign &VA = RVLocs[i];
1855     assert(VA.isRegLoc() && "Can only return in registers!");
1856     SDValue ValToCopy = OutVals[i];
1857     EVT ValVT = ValToCopy.getValueType();
1858
1859     // Promote values to the appropriate types
1860     if (VA.getLocInfo() == CCValAssign::SExt)
1861       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1862     else if (VA.getLocInfo() == CCValAssign::ZExt)
1863       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1864     else if (VA.getLocInfo() == CCValAssign::AExt)
1865       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1866     else if (VA.getLocInfo() == CCValAssign::BCvt)
1867       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1868
1869     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1870            "Unexpected FP-extend for return value.");  
1871
1872     // If this is x86-64, and we disabled SSE, we can't return FP values,
1873     // or SSE or MMX vectors.
1874     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1875          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1876           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1877       report_fatal_error("SSE register return with SSE disabled");
1878     }
1879     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1880     // llvm-gcc has never done it right and no one has noticed, so this
1881     // should be OK for now.
1882     if (ValVT == MVT::f64 &&
1883         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1884       report_fatal_error("SSE2 register return with SSE2 disabled");
1885
1886     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1887     // the RET instruction and handled by the FP Stackifier.
1888     if (VA.getLocReg() == X86::ST0 ||
1889         VA.getLocReg() == X86::ST1) {
1890       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1891       // change the value to the FP stack register class.
1892       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1893         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1894       RetOps.push_back(ValToCopy);
1895       // Don't emit a copytoreg.
1896       continue;
1897     }
1898
1899     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1900     // which is returned in RAX / RDX.
1901     if (Subtarget->is64Bit()) {
1902       if (ValVT == MVT::x86mmx) {
1903         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1904           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1905           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1906                                   ValToCopy);
1907           // If we don't have SSE2 available, convert to v4f32 so the generated
1908           // register is legal.
1909           if (!Subtarget->hasSSE2())
1910             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1911         }
1912       }
1913     }
1914
1915     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1916     Flag = Chain.getValue(1);
1917     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1918   }
1919
1920   // The x86-64 ABIs require that for returning structs by value we copy
1921   // the sret argument into %rax/%eax (depending on ABI) for the return.
1922   // Win32 requires us to put the sret argument to %eax as well.
1923   // We saved the argument into a virtual register in the entry block,
1924   // so now we copy the value out and into %rax/%eax.
1925   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1926       (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
1927     MachineFunction &MF = DAG.getMachineFunction();
1928     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1929     unsigned Reg = FuncInfo->getSRetReturnReg();
1930     assert(Reg &&
1931            "SRetReturnReg should have been set in LowerFormalArguments().");
1932     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1933
1934     unsigned RetValReg
1935         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1936           X86::RAX : X86::EAX;
1937     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1938     Flag = Chain.getValue(1);
1939
1940     // RAX/EAX now acts like a return value.
1941     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1942   }
1943
1944   RetOps[0] = Chain;  // Update chain.
1945
1946   // Add the flag if we have it.
1947   if (Flag.getNode())
1948     RetOps.push_back(Flag);
1949
1950   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
1951 }
1952
1953 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1954   if (N->getNumValues() != 1)
1955     return false;
1956   if (!N->hasNUsesOfValue(1, 0))
1957     return false;
1958
1959   SDValue TCChain = Chain;
1960   SDNode *Copy = *N->use_begin();
1961   if (Copy->getOpcode() == ISD::CopyToReg) {
1962     // If the copy has a glue operand, we conservatively assume it isn't safe to
1963     // perform a tail call.
1964     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1965       return false;
1966     TCChain = Copy->getOperand(0);
1967   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1968     return false;
1969
1970   bool HasRet = false;
1971   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1972        UI != UE; ++UI) {
1973     if (UI->getOpcode() != X86ISD::RET_FLAG)
1974       return false;
1975     HasRet = true;
1976   }
1977
1978   if (!HasRet)
1979     return false;
1980
1981   Chain = TCChain;
1982   return true;
1983 }
1984
1985 MVT
1986 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1987                                             ISD::NodeType ExtendKind) const {
1988   MVT ReturnMVT;
1989   // TODO: Is this also valid on 32-bit?
1990   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1991     ReturnMVT = MVT::i8;
1992   else
1993     ReturnMVT = MVT::i32;
1994
1995   MVT MinVT = getRegisterType(ReturnMVT);
1996   return VT.bitsLT(MinVT) ? MinVT : VT;
1997 }
1998
1999 /// LowerCallResult - Lower the result values of a call into the
2000 /// appropriate copies out of appropriate physical registers.
2001 ///
2002 SDValue
2003 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2004                                    CallingConv::ID CallConv, bool isVarArg,
2005                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2006                                    SDLoc dl, SelectionDAG &DAG,
2007                                    SmallVectorImpl<SDValue> &InVals) const {
2008
2009   // Assign locations to each value returned by this call.
2010   SmallVector<CCValAssign, 16> RVLocs;
2011   bool Is64Bit = Subtarget->is64Bit();
2012   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2013                  getTargetMachine(), RVLocs, *DAG.getContext());
2014   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2015
2016   // Copy all of the result registers out of their specified physreg.
2017   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2018     CCValAssign &VA = RVLocs[i];
2019     EVT CopyVT = VA.getValVT();
2020
2021     // If this is x86-64, and we disabled SSE, we can't return FP values
2022     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2023         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2024       report_fatal_error("SSE register return with SSE disabled");
2025     }
2026
2027     SDValue Val;
2028
2029     // If this is a call to a function that returns an fp value on the floating
2030     // point stack, we must guarantee the value is popped from the stack, so
2031     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2032     // if the return value is not used. We use the FpPOP_RETVAL instruction
2033     // instead.
2034     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2035       // If we prefer to use the value in xmm registers, copy it out as f80 and
2036       // use a truncate to move it from fp stack reg to xmm reg.
2037       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2038       SDValue Ops[] = { Chain, InFlag };
2039       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2040                                          MVT::Other, MVT::Glue, Ops), 1);
2041       Val = Chain.getValue(0);
2042
2043       // Round the f80 to the right size, which also moves it to the appropriate
2044       // xmm register.
2045       if (CopyVT != VA.getValVT())
2046         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2047                           // This truncation won't change the value.
2048                           DAG.getIntPtrConstant(1));
2049     } else {
2050       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2051                                  CopyVT, InFlag).getValue(1);
2052       Val = Chain.getValue(0);
2053     }
2054     InFlag = Chain.getValue(2);
2055     InVals.push_back(Val);
2056   }
2057
2058   return Chain;
2059 }
2060
2061 //===----------------------------------------------------------------------===//
2062 //                C & StdCall & Fast Calling Convention implementation
2063 //===----------------------------------------------------------------------===//
2064 //  StdCall calling convention seems to be standard for many Windows' API
2065 //  routines and around. It differs from C calling convention just a little:
2066 //  callee should clean up the stack, not caller. Symbols should be also
2067 //  decorated in some fancy way :) It doesn't support any vector arguments.
2068 //  For info on fast calling convention see Fast Calling Convention (tail call)
2069 //  implementation LowerX86_32FastCCCallTo.
2070
2071 /// CallIsStructReturn - Determines whether a call uses struct return
2072 /// semantics.
2073 enum StructReturnType {
2074   NotStructReturn,
2075   RegStructReturn,
2076   StackStructReturn
2077 };
2078 static StructReturnType
2079 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2080   if (Outs.empty())
2081     return NotStructReturn;
2082
2083   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2084   if (!Flags.isSRet())
2085     return NotStructReturn;
2086   if (Flags.isInReg())
2087     return RegStructReturn;
2088   return StackStructReturn;
2089 }
2090
2091 /// ArgsAreStructReturn - Determines whether a function uses struct
2092 /// return semantics.
2093 static StructReturnType
2094 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2095   if (Ins.empty())
2096     return NotStructReturn;
2097
2098   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2099   if (!Flags.isSRet())
2100     return NotStructReturn;
2101   if (Flags.isInReg())
2102     return RegStructReturn;
2103   return StackStructReturn;
2104 }
2105
2106 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2107 /// by "Src" to address "Dst" with size and alignment information specified by
2108 /// the specific parameter attribute. The copy will be passed as a byval
2109 /// function parameter.
2110 static SDValue
2111 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2112                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2113                           SDLoc dl) {
2114   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2115
2116   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2117                        /*isVolatile*/false, /*AlwaysInline=*/true,
2118                        MachinePointerInfo(), MachinePointerInfo());
2119 }
2120
2121 /// IsTailCallConvention - Return true if the calling convention is one that
2122 /// supports tail call optimization.
2123 static bool IsTailCallConvention(CallingConv::ID CC) {
2124   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2125           CC == CallingConv::HiPE);
2126 }
2127
2128 /// \brief Return true if the calling convention is a C calling convention.
2129 static bool IsCCallConvention(CallingConv::ID CC) {
2130   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2131           CC == CallingConv::X86_64_SysV);
2132 }
2133
2134 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2135   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2136     return false;
2137
2138   CallSite CS(CI);
2139   CallingConv::ID CalleeCC = CS.getCallingConv();
2140   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2141     return false;
2142
2143   return true;
2144 }
2145
2146 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2147 /// a tailcall target by changing its ABI.
2148 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2149                                    bool GuaranteedTailCallOpt) {
2150   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2151 }
2152
2153 SDValue
2154 X86TargetLowering::LowerMemArgument(SDValue Chain,
2155                                     CallingConv::ID CallConv,
2156                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2157                                     SDLoc dl, SelectionDAG &DAG,
2158                                     const CCValAssign &VA,
2159                                     MachineFrameInfo *MFI,
2160                                     unsigned i) const {
2161   // Create the nodes corresponding to a load from this parameter slot.
2162   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2163   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2164                               getTargetMachine().Options.GuaranteedTailCallOpt);
2165   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2166   EVT ValVT;
2167
2168   // If value is passed by pointer we have address passed instead of the value
2169   // itself.
2170   if (VA.getLocInfo() == CCValAssign::Indirect)
2171     ValVT = VA.getLocVT();
2172   else
2173     ValVT = VA.getValVT();
2174
2175   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2176   // changed with more analysis.
2177   // In case of tail call optimization mark all arguments mutable. Since they
2178   // could be overwritten by lowering of arguments in case of a tail call.
2179   if (Flags.isByVal()) {
2180     unsigned Bytes = Flags.getByValSize();
2181     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2182     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2183     return DAG.getFrameIndex(FI, getPointerTy());
2184   } else {
2185     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2186                                     VA.getLocMemOffset(), isImmutable);
2187     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2188     return DAG.getLoad(ValVT, dl, Chain, FIN,
2189                        MachinePointerInfo::getFixedStack(FI),
2190                        false, false, false, 0);
2191   }
2192 }
2193
2194 SDValue
2195 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2196                                         CallingConv::ID CallConv,
2197                                         bool isVarArg,
2198                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2199                                         SDLoc dl,
2200                                         SelectionDAG &DAG,
2201                                         SmallVectorImpl<SDValue> &InVals)
2202                                           const {
2203   MachineFunction &MF = DAG.getMachineFunction();
2204   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2205
2206   const Function* Fn = MF.getFunction();
2207   if (Fn->hasExternalLinkage() &&
2208       Subtarget->isTargetCygMing() &&
2209       Fn->getName() == "main")
2210     FuncInfo->setForceFramePointer(true);
2211
2212   MachineFrameInfo *MFI = MF.getFrameInfo();
2213   bool Is64Bit = Subtarget->is64Bit();
2214   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2215
2216   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2217          "Var args not supported with calling convention fastcc, ghc or hipe");
2218
2219   // Assign locations to all of the incoming arguments.
2220   SmallVector<CCValAssign, 16> ArgLocs;
2221   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2222                  ArgLocs, *DAG.getContext());
2223
2224   // Allocate shadow area for Win64
2225   if (IsWin64)
2226     CCInfo.AllocateStack(32, 8);
2227
2228   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2229
2230   unsigned LastVal = ~0U;
2231   SDValue ArgValue;
2232   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2233     CCValAssign &VA = ArgLocs[i];
2234     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2235     // places.
2236     assert(VA.getValNo() != LastVal &&
2237            "Don't support value assigned to multiple locs yet");
2238     (void)LastVal;
2239     LastVal = VA.getValNo();
2240
2241     if (VA.isRegLoc()) {
2242       EVT RegVT = VA.getLocVT();
2243       const TargetRegisterClass *RC;
2244       if (RegVT == MVT::i32)
2245         RC = &X86::GR32RegClass;
2246       else if (Is64Bit && RegVT == MVT::i64)
2247         RC = &X86::GR64RegClass;
2248       else if (RegVT == MVT::f32)
2249         RC = &X86::FR32RegClass;
2250       else if (RegVT == MVT::f64)
2251         RC = &X86::FR64RegClass;
2252       else if (RegVT.is512BitVector())
2253         RC = &X86::VR512RegClass;
2254       else if (RegVT.is256BitVector())
2255         RC = &X86::VR256RegClass;
2256       else if (RegVT.is128BitVector())
2257         RC = &X86::VR128RegClass;
2258       else if (RegVT == MVT::x86mmx)
2259         RC = &X86::VR64RegClass;
2260       else if (RegVT == MVT::i1)
2261         RC = &X86::VK1RegClass;
2262       else if (RegVT == MVT::v8i1)
2263         RC = &X86::VK8RegClass;
2264       else if (RegVT == MVT::v16i1)
2265         RC = &X86::VK16RegClass;
2266       else
2267         llvm_unreachable("Unknown argument type!");
2268
2269       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2270       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2271
2272       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2273       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2274       // right size.
2275       if (VA.getLocInfo() == CCValAssign::SExt)
2276         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2277                                DAG.getValueType(VA.getValVT()));
2278       else if (VA.getLocInfo() == CCValAssign::ZExt)
2279         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2280                                DAG.getValueType(VA.getValVT()));
2281       else if (VA.getLocInfo() == CCValAssign::BCvt)
2282         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2283
2284       if (VA.isExtInLoc()) {
2285         // Handle MMX values passed in XMM regs.
2286         if (RegVT.isVector())
2287           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2288         else
2289           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2290       }
2291     } else {
2292       assert(VA.isMemLoc());
2293       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2294     }
2295
2296     // If value is passed via pointer - do a load.
2297     if (VA.getLocInfo() == CCValAssign::Indirect)
2298       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2299                              MachinePointerInfo(), false, false, false, 0);
2300
2301     InVals.push_back(ArgValue);
2302
2303     // The x86-64 ABIs require that for returning structs by value we copy
2304     // the sret argument into %rax/%eax (depending on ABI) for the return.
2305     // Win32 requires us to put the sret argument to %eax as well.
2306     // Save the argument into a virtual register so that we can access it
2307     // from the return points.
2308     if (Ins[i].Flags.isSRet() &&
2309         (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
2310       unsigned Reg = FuncInfo->getSRetReturnReg();
2311       if (!Reg) {
2312         MVT PtrTy = getPointerTy();
2313         Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2314         FuncInfo->setSRetReturnReg(Reg);
2315       }
2316       SDValue Copy =
2317           DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals.back());
2318       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2319     }
2320   }
2321
2322   unsigned StackSize = CCInfo.getNextStackOffset();
2323   // Align stack specially for tail calls.
2324   if (FuncIsMadeTailCallSafe(CallConv,
2325                              MF.getTarget().Options.GuaranteedTailCallOpt))
2326     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2327
2328   // If the function takes variable number of arguments, make a frame index for
2329   // the start of the first vararg value... for expansion of llvm.va_start.
2330   if (isVarArg) {
2331     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2332                     CallConv != CallingConv::X86_ThisCall)) {
2333       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2334     }
2335     if (Is64Bit) {
2336       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2337
2338       // FIXME: We should really autogenerate these arrays
2339       static const MCPhysReg GPR64ArgRegsWin64[] = {
2340         X86::RCX, X86::RDX, X86::R8,  X86::R9
2341       };
2342       static const MCPhysReg GPR64ArgRegs64Bit[] = {
2343         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2344       };
2345       static const MCPhysReg XMMArgRegs64Bit[] = {
2346         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2347         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2348       };
2349       const MCPhysReg *GPR64ArgRegs;
2350       unsigned NumXMMRegs = 0;
2351
2352       if (IsWin64) {
2353         // The XMM registers which might contain var arg parameters are shadowed
2354         // in their paired GPR.  So we only need to save the GPR to their home
2355         // slots.
2356         TotalNumIntRegs = 4;
2357         GPR64ArgRegs = GPR64ArgRegsWin64;
2358       } else {
2359         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2360         GPR64ArgRegs = GPR64ArgRegs64Bit;
2361
2362         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2363                                                 TotalNumXMMRegs);
2364       }
2365       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2366                                                        TotalNumIntRegs);
2367
2368       bool NoImplicitFloatOps = Fn->getAttributes().
2369         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2370       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2371              "SSE register cannot be used when SSE is disabled!");
2372       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2373                NoImplicitFloatOps) &&
2374              "SSE register cannot be used when SSE is disabled!");
2375       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2376           !Subtarget->hasSSE1())
2377         // Kernel mode asks for SSE to be disabled, so don't push them
2378         // on the stack.
2379         TotalNumXMMRegs = 0;
2380
2381       if (IsWin64) {
2382         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2383         // Get to the caller-allocated home save location.  Add 8 to account
2384         // for the return address.
2385         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2386         FuncInfo->setRegSaveFrameIndex(
2387           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2388         // Fixup to set vararg frame on shadow area (4 x i64).
2389         if (NumIntRegs < 4)
2390           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2391       } else {
2392         // For X86-64, if there are vararg parameters that are passed via
2393         // registers, then we must store them to their spots on the stack so
2394         // they may be loaded by deferencing the result of va_next.
2395         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2396         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2397         FuncInfo->setRegSaveFrameIndex(
2398           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2399                                false));
2400       }
2401
2402       // Store the integer parameter registers.
2403       SmallVector<SDValue, 8> MemOps;
2404       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2405                                         getPointerTy());
2406       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2407       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2408         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2409                                   DAG.getIntPtrConstant(Offset));
2410         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2411                                      &X86::GR64RegClass);
2412         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2413         SDValue Store =
2414           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2415                        MachinePointerInfo::getFixedStack(
2416                          FuncInfo->getRegSaveFrameIndex(), Offset),
2417                        false, false, 0);
2418         MemOps.push_back(Store);
2419         Offset += 8;
2420       }
2421
2422       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2423         // Now store the XMM (fp + vector) parameter registers.
2424         SmallVector<SDValue, 11> SaveXMMOps;
2425         SaveXMMOps.push_back(Chain);
2426
2427         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2428         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2429         SaveXMMOps.push_back(ALVal);
2430
2431         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2432                                FuncInfo->getRegSaveFrameIndex()));
2433         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2434                                FuncInfo->getVarArgsFPOffset()));
2435
2436         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2437           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2438                                        &X86::VR128RegClass);
2439           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2440           SaveXMMOps.push_back(Val);
2441         }
2442         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2443                                      MVT::Other, SaveXMMOps));
2444       }
2445
2446       if (!MemOps.empty())
2447         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2448     }
2449   }
2450
2451   // Some CCs need callee pop.
2452   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2453                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2454     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2455   } else {
2456     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2457     // If this is an sret function, the return should pop the hidden pointer.
2458     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2459         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2460         argsAreStructReturn(Ins) == StackStructReturn)
2461       FuncInfo->setBytesToPopOnReturn(4);
2462   }
2463
2464   if (!Is64Bit) {
2465     // RegSaveFrameIndex is X86-64 only.
2466     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2467     if (CallConv == CallingConv::X86_FastCall ||
2468         CallConv == CallingConv::X86_ThisCall)
2469       // fastcc functions can't have varargs.
2470       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2471   }
2472
2473   FuncInfo->setArgumentStackSize(StackSize);
2474
2475   return Chain;
2476 }
2477
2478 SDValue
2479 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2480                                     SDValue StackPtr, SDValue Arg,
2481                                     SDLoc dl, SelectionDAG &DAG,
2482                                     const CCValAssign &VA,
2483                                     ISD::ArgFlagsTy Flags) const {
2484   unsigned LocMemOffset = VA.getLocMemOffset();
2485   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2486   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2487   if (Flags.isByVal())
2488     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2489
2490   return DAG.getStore(Chain, dl, Arg, PtrOff,
2491                       MachinePointerInfo::getStack(LocMemOffset),
2492                       false, false, 0);
2493 }
2494
2495 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2496 /// optimization is performed and it is required.
2497 SDValue
2498 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2499                                            SDValue &OutRetAddr, SDValue Chain,
2500                                            bool IsTailCall, bool Is64Bit,
2501                                            int FPDiff, SDLoc dl) const {
2502   // Adjust the Return address stack slot.
2503   EVT VT = getPointerTy();
2504   OutRetAddr = getReturnAddressFrameIndex(DAG);
2505
2506   // Load the "old" Return address.
2507   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2508                            false, false, false, 0);
2509   return SDValue(OutRetAddr.getNode(), 1);
2510 }
2511
2512 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2513 /// optimization is performed and it is required (FPDiff!=0).
2514 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2515                                         SDValue Chain, SDValue RetAddrFrIdx,
2516                                         EVT PtrVT, unsigned SlotSize,
2517                                         int FPDiff, SDLoc dl) {
2518   // Store the return address to the appropriate stack slot.
2519   if (!FPDiff) return Chain;
2520   // Calculate the new stack slot for the return address.
2521   int NewReturnAddrFI =
2522     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2523                                          false);
2524   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2525   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2526                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2527                        false, false, 0);
2528   return Chain;
2529 }
2530
2531 SDValue
2532 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2533                              SmallVectorImpl<SDValue> &InVals) const {
2534   SelectionDAG &DAG                     = CLI.DAG;
2535   SDLoc &dl                             = CLI.DL;
2536   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2537   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2538   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2539   SDValue Chain                         = CLI.Chain;
2540   SDValue Callee                        = CLI.Callee;
2541   CallingConv::ID CallConv              = CLI.CallConv;
2542   bool &isTailCall                      = CLI.IsTailCall;
2543   bool isVarArg                         = CLI.IsVarArg;
2544
2545   MachineFunction &MF = DAG.getMachineFunction();
2546   bool Is64Bit        = Subtarget->is64Bit();
2547   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2548   StructReturnType SR = callIsStructReturn(Outs);
2549   bool IsSibcall      = false;
2550
2551   if (MF.getTarget().Options.DisableTailCalls)
2552     isTailCall = false;
2553
2554   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
2555   if (IsMustTail) {
2556     // Force this to be a tail call.  The verifier rules are enough to ensure
2557     // that we can lower this successfully without moving the return address
2558     // around.
2559     isTailCall = true;
2560   } else if (isTailCall) {
2561     // Check if it's really possible to do a tail call.
2562     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2563                     isVarArg, SR != NotStructReturn,
2564                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2565                     Outs, OutVals, Ins, DAG);
2566
2567     // Sibcalls are automatically detected tailcalls which do not require
2568     // ABI changes.
2569     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2570       IsSibcall = true;
2571
2572     if (isTailCall)
2573       ++NumTailCalls;
2574   }
2575
2576   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2577          "Var args not supported with calling convention fastcc, ghc or hipe");
2578
2579   // Analyze operands of the call, assigning locations to each operand.
2580   SmallVector<CCValAssign, 16> ArgLocs;
2581   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2582                  ArgLocs, *DAG.getContext());
2583
2584   // Allocate shadow area for Win64
2585   if (IsWin64)
2586     CCInfo.AllocateStack(32, 8);
2587
2588   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2589
2590   // Get a count of how many bytes are to be pushed on the stack.
2591   unsigned NumBytes = CCInfo.getNextStackOffset();
2592   if (IsSibcall)
2593     // This is a sibcall. The memory operands are available in caller's
2594     // own caller's stack.
2595     NumBytes = 0;
2596   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2597            IsTailCallConvention(CallConv))
2598     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2599
2600   int FPDiff = 0;
2601   if (isTailCall && !IsSibcall && !IsMustTail) {
2602     // Lower arguments at fp - stackoffset + fpdiff.
2603     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2604     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2605
2606     FPDiff = NumBytesCallerPushed - NumBytes;
2607
2608     // Set the delta of movement of the returnaddr stackslot.
2609     // But only set if delta is greater than previous delta.
2610     if (FPDiff < X86Info->getTCReturnAddrDelta())
2611       X86Info->setTCReturnAddrDelta(FPDiff);
2612   }
2613
2614   unsigned NumBytesToPush = NumBytes;
2615   unsigned NumBytesToPop = NumBytes;
2616
2617   // If we have an inalloca argument, all stack space has already been allocated
2618   // for us and be right at the top of the stack.  We don't support multiple
2619   // arguments passed in memory when using inalloca.
2620   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2621     NumBytesToPush = 0;
2622     assert(ArgLocs.back().getLocMemOffset() == 0 &&
2623            "an inalloca argument must be the only memory argument");
2624   }
2625
2626   if (!IsSibcall)
2627     Chain = DAG.getCALLSEQ_START(
2628         Chain, DAG.getIntPtrConstant(NumBytesToPush, true), dl);
2629
2630   SDValue RetAddrFrIdx;
2631   // Load return address for tail calls.
2632   if (isTailCall && FPDiff)
2633     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2634                                     Is64Bit, FPDiff, dl);
2635
2636   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2637   SmallVector<SDValue, 8> MemOpChains;
2638   SDValue StackPtr;
2639
2640   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2641   // of tail call optimization arguments are handle later.
2642   const X86RegisterInfo *RegInfo =
2643     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2644   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2645     // Skip inalloca arguments, they have already been written.
2646     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2647     if (Flags.isInAlloca())
2648       continue;
2649
2650     CCValAssign &VA = ArgLocs[i];
2651     EVT RegVT = VA.getLocVT();
2652     SDValue Arg = OutVals[i];
2653     bool isByVal = Flags.isByVal();
2654
2655     // Promote the value if needed.
2656     switch (VA.getLocInfo()) {
2657     default: llvm_unreachable("Unknown loc info!");
2658     case CCValAssign::Full: break;
2659     case CCValAssign::SExt:
2660       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2661       break;
2662     case CCValAssign::ZExt:
2663       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2664       break;
2665     case CCValAssign::AExt:
2666       if (RegVT.is128BitVector()) {
2667         // Special case: passing MMX values in XMM registers.
2668         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2669         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2670         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2671       } else
2672         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2673       break;
2674     case CCValAssign::BCvt:
2675       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2676       break;
2677     case CCValAssign::Indirect: {
2678       // Store the argument.
2679       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2680       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2681       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2682                            MachinePointerInfo::getFixedStack(FI),
2683                            false, false, 0);
2684       Arg = SpillSlot;
2685       break;
2686     }
2687     }
2688
2689     if (VA.isRegLoc()) {
2690       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2691       if (isVarArg && IsWin64) {
2692         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2693         // shadow reg if callee is a varargs function.
2694         unsigned ShadowReg = 0;
2695         switch (VA.getLocReg()) {
2696         case X86::XMM0: ShadowReg = X86::RCX; break;
2697         case X86::XMM1: ShadowReg = X86::RDX; break;
2698         case X86::XMM2: ShadowReg = X86::R8; break;
2699         case X86::XMM3: ShadowReg = X86::R9; break;
2700         }
2701         if (ShadowReg)
2702           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2703       }
2704     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2705       assert(VA.isMemLoc());
2706       if (!StackPtr.getNode())
2707         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2708                                       getPointerTy());
2709       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2710                                              dl, DAG, VA, Flags));
2711     }
2712   }
2713
2714   if (!MemOpChains.empty())
2715     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
2716
2717   if (Subtarget->isPICStyleGOT()) {
2718     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2719     // GOT pointer.
2720     if (!isTailCall) {
2721       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2722                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2723     } else {
2724       // If we are tail calling and generating PIC/GOT style code load the
2725       // address of the callee into ECX. The value in ecx is used as target of
2726       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2727       // for tail calls on PIC/GOT architectures. Normally we would just put the
2728       // address of GOT into ebx and then call target@PLT. But for tail calls
2729       // ebx would be restored (since ebx is callee saved) before jumping to the
2730       // target@PLT.
2731
2732       // Note: The actual moving to ECX is done further down.
2733       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2734       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2735           !G->getGlobal()->hasProtectedVisibility())
2736         Callee = LowerGlobalAddress(Callee, DAG);
2737       else if (isa<ExternalSymbolSDNode>(Callee))
2738         Callee = LowerExternalSymbol(Callee, DAG);
2739     }
2740   }
2741
2742   if (Is64Bit && isVarArg && !IsWin64) {
2743     // From AMD64 ABI document:
2744     // For calls that may call functions that use varargs or stdargs
2745     // (prototype-less calls or calls to functions containing ellipsis (...) in
2746     // the declaration) %al is used as hidden argument to specify the number
2747     // of SSE registers used. The contents of %al do not need to match exactly
2748     // the number of registers, but must be an ubound on the number of SSE
2749     // registers used and is in the range 0 - 8 inclusive.
2750
2751     // Count the number of XMM registers allocated.
2752     static const MCPhysReg XMMArgRegs[] = {
2753       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2754       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2755     };
2756     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2757     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2758            && "SSE registers cannot be used when SSE is disabled");
2759
2760     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2761                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2762   }
2763
2764   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
2765   // don't need this because the eligibility check rejects calls that require
2766   // shuffling arguments passed in memory.
2767   if (!IsSibcall && isTailCall) {
2768     // Force all the incoming stack arguments to be loaded from the stack
2769     // before any new outgoing arguments are stored to the stack, because the
2770     // outgoing stack slots may alias the incoming argument stack slots, and
2771     // the alias isn't otherwise explicit. This is slightly more conservative
2772     // than necessary, because it means that each store effectively depends
2773     // on every argument instead of just those arguments it would clobber.
2774     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2775
2776     SmallVector<SDValue, 8> MemOpChains2;
2777     SDValue FIN;
2778     int FI = 0;
2779     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2780       CCValAssign &VA = ArgLocs[i];
2781       if (VA.isRegLoc())
2782         continue;
2783       assert(VA.isMemLoc());
2784       SDValue Arg = OutVals[i];
2785       ISD::ArgFlagsTy Flags = Outs[i].Flags;
2786       // Skip inalloca arguments.  They don't require any work.
2787       if (Flags.isInAlloca())
2788         continue;
2789       // Create frame index.
2790       int32_t Offset = VA.getLocMemOffset()+FPDiff;
2791       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2792       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2793       FIN = DAG.getFrameIndex(FI, getPointerTy());
2794
2795       if (Flags.isByVal()) {
2796         // Copy relative to framepointer.
2797         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2798         if (!StackPtr.getNode())
2799           StackPtr = DAG.getCopyFromReg(Chain, dl,
2800                                         RegInfo->getStackRegister(),
2801                                         getPointerTy());
2802         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2803
2804         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2805                                                          ArgChain,
2806                                                          Flags, DAG, dl));
2807       } else {
2808         // Store relative to framepointer.
2809         MemOpChains2.push_back(
2810           DAG.getStore(ArgChain, dl, Arg, FIN,
2811                        MachinePointerInfo::getFixedStack(FI),
2812                        false, false, 0));
2813       }
2814     }
2815
2816     if (!MemOpChains2.empty())
2817       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
2818
2819     // Store the return address to the appropriate stack slot.
2820     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2821                                      getPointerTy(), RegInfo->getSlotSize(),
2822                                      FPDiff, dl);
2823   }
2824
2825   // Build a sequence of copy-to-reg nodes chained together with token chain
2826   // and flag operands which copy the outgoing args into registers.
2827   SDValue InFlag;
2828   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2829     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2830                              RegsToPass[i].second, InFlag);
2831     InFlag = Chain.getValue(1);
2832   }
2833
2834   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2835     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2836     // In the 64-bit large code model, we have to make all calls
2837     // through a register, since the call instruction's 32-bit
2838     // pc-relative offset may not be large enough to hold the whole
2839     // address.
2840   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2841     // If the callee is a GlobalAddress node (quite common, every direct call
2842     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2843     // it.
2844
2845     // We should use extra load for direct calls to dllimported functions in
2846     // non-JIT mode.
2847     const GlobalValue *GV = G->getGlobal();
2848     if (!GV->hasDLLImportStorageClass()) {
2849       unsigned char OpFlags = 0;
2850       bool ExtraLoad = false;
2851       unsigned WrapperKind = ISD::DELETED_NODE;
2852
2853       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2854       // external symbols most go through the PLT in PIC mode.  If the symbol
2855       // has hidden or protected visibility, or if it is static or local, then
2856       // we don't need to use the PLT - we can directly call it.
2857       if (Subtarget->isTargetELF() &&
2858           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2859           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2860         OpFlags = X86II::MO_PLT;
2861       } else if (Subtarget->isPICStyleStubAny() &&
2862                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2863                  (!Subtarget->getTargetTriple().isMacOSX() ||
2864                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2865         // PC-relative references to external symbols should go through $stub,
2866         // unless we're building with the leopard linker or later, which
2867         // automatically synthesizes these stubs.
2868         OpFlags = X86II::MO_DARWIN_STUB;
2869       } else if (Subtarget->isPICStyleRIPRel() &&
2870                  isa<Function>(GV) &&
2871                  cast<Function>(GV)->getAttributes().
2872                    hasAttribute(AttributeSet::FunctionIndex,
2873                                 Attribute::NonLazyBind)) {
2874         // If the function is marked as non-lazy, generate an indirect call
2875         // which loads from the GOT directly. This avoids runtime overhead
2876         // at the cost of eager binding (and one extra byte of encoding).
2877         OpFlags = X86II::MO_GOTPCREL;
2878         WrapperKind = X86ISD::WrapperRIP;
2879         ExtraLoad = true;
2880       }
2881
2882       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2883                                           G->getOffset(), OpFlags);
2884
2885       // Add a wrapper if needed.
2886       if (WrapperKind != ISD::DELETED_NODE)
2887         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2888       // Add extra indirection if needed.
2889       if (ExtraLoad)
2890         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2891                              MachinePointerInfo::getGOT(),
2892                              false, false, false, 0);
2893     }
2894   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2895     unsigned char OpFlags = 0;
2896
2897     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2898     // external symbols should go through the PLT.
2899     if (Subtarget->isTargetELF() &&
2900         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2901       OpFlags = X86II::MO_PLT;
2902     } else if (Subtarget->isPICStyleStubAny() &&
2903                (!Subtarget->getTargetTriple().isMacOSX() ||
2904                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2905       // PC-relative references to external symbols should go through $stub,
2906       // unless we're building with the leopard linker or later, which
2907       // automatically synthesizes these stubs.
2908       OpFlags = X86II::MO_DARWIN_STUB;
2909     }
2910
2911     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2912                                          OpFlags);
2913   }
2914
2915   // Returns a chain & a flag for retval copy to use.
2916   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2917   SmallVector<SDValue, 8> Ops;
2918
2919   if (!IsSibcall && isTailCall) {
2920     Chain = DAG.getCALLSEQ_END(Chain,
2921                                DAG.getIntPtrConstant(NumBytesToPop, true),
2922                                DAG.getIntPtrConstant(0, true), InFlag, dl);
2923     InFlag = Chain.getValue(1);
2924   }
2925
2926   Ops.push_back(Chain);
2927   Ops.push_back(Callee);
2928
2929   if (isTailCall)
2930     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2931
2932   // Add argument registers to the end of the list so that they are known live
2933   // into the call.
2934   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2935     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2936                                   RegsToPass[i].second.getValueType()));
2937
2938   // Add a register mask operand representing the call-preserved registers.
2939   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2940   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2941   assert(Mask && "Missing call preserved mask for calling convention");
2942   Ops.push_back(DAG.getRegisterMask(Mask));
2943
2944   if (InFlag.getNode())
2945     Ops.push_back(InFlag);
2946
2947   if (isTailCall) {
2948     // We used to do:
2949     //// If this is the first return lowered for this function, add the regs
2950     //// to the liveout set for the function.
2951     // This isn't right, although it's probably harmless on x86; liveouts
2952     // should be computed from returns not tail calls.  Consider a void
2953     // function making a tail call to a function returning int.
2954     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
2955   }
2956
2957   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
2958   InFlag = Chain.getValue(1);
2959
2960   // Create the CALLSEQ_END node.
2961   unsigned NumBytesForCalleeToPop;
2962   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2963                        getTargetMachine().Options.GuaranteedTailCallOpt))
2964     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
2965   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2966            !Subtarget->getTargetTriple().isOSMSVCRT() &&
2967            SR == StackStructReturn)
2968     // If this is a call to a struct-return function, the callee
2969     // pops the hidden struct pointer, so we have to push it back.
2970     // This is common for Darwin/X86, Linux & Mingw32 targets.
2971     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2972     NumBytesForCalleeToPop = 4;
2973   else
2974     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
2975
2976   // Returns a flag for retval copy to use.
2977   if (!IsSibcall) {
2978     Chain = DAG.getCALLSEQ_END(Chain,
2979                                DAG.getIntPtrConstant(NumBytesToPop, true),
2980                                DAG.getIntPtrConstant(NumBytesForCalleeToPop,
2981                                                      true),
2982                                InFlag, dl);
2983     InFlag = Chain.getValue(1);
2984   }
2985
2986   // Handle result values, copying them out of physregs into vregs that we
2987   // return.
2988   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2989                          Ins, dl, DAG, InVals);
2990 }
2991
2992 //===----------------------------------------------------------------------===//
2993 //                Fast Calling Convention (tail call) implementation
2994 //===----------------------------------------------------------------------===//
2995
2996 //  Like std call, callee cleans arguments, convention except that ECX is
2997 //  reserved for storing the tail called function address. Only 2 registers are
2998 //  free for argument passing (inreg). Tail call optimization is performed
2999 //  provided:
3000 //                * tailcallopt is enabled
3001 //                * caller/callee are fastcc
3002 //  On X86_64 architecture with GOT-style position independent code only local
3003 //  (within module) calls are supported at the moment.
3004 //  To keep the stack aligned according to platform abi the function
3005 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3006 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3007 //  If a tail called function callee has more arguments than the caller the
3008 //  caller needs to make sure that there is room to move the RETADDR to. This is
3009 //  achieved by reserving an area the size of the argument delta right after the
3010 //  original REtADDR, but before the saved framepointer or the spilled registers
3011 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3012 //  stack layout:
3013 //    arg1
3014 //    arg2
3015 //    RETADDR
3016 //    [ new RETADDR
3017 //      move area ]
3018 //    (possible EBP)
3019 //    ESI
3020 //    EDI
3021 //    local1 ..
3022
3023 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
3024 /// for a 16 byte align requirement.
3025 unsigned
3026 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3027                                                SelectionDAG& DAG) const {
3028   MachineFunction &MF = DAG.getMachineFunction();
3029   const TargetMachine &TM = MF.getTarget();
3030   const X86RegisterInfo *RegInfo =
3031     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
3032   const TargetFrameLowering &TFI = *TM.getFrameLowering();
3033   unsigned StackAlignment = TFI.getStackAlignment();
3034   uint64_t AlignMask = StackAlignment - 1;
3035   int64_t Offset = StackSize;
3036   unsigned SlotSize = RegInfo->getSlotSize();
3037   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3038     // Number smaller than 12 so just add the difference.
3039     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3040   } else {
3041     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3042     Offset = ((~AlignMask) & Offset) + StackAlignment +
3043       (StackAlignment-SlotSize);
3044   }
3045   return Offset;
3046 }
3047
3048 /// MatchingStackOffset - Return true if the given stack call argument is
3049 /// already available in the same position (relatively) of the caller's
3050 /// incoming argument stack.
3051 static
3052 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3053                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3054                          const X86InstrInfo *TII) {
3055   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3056   int FI = INT_MAX;
3057   if (Arg.getOpcode() == ISD::CopyFromReg) {
3058     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3059     if (!TargetRegisterInfo::isVirtualRegister(VR))
3060       return false;
3061     MachineInstr *Def = MRI->getVRegDef(VR);
3062     if (!Def)
3063       return false;
3064     if (!Flags.isByVal()) {
3065       if (!TII->isLoadFromStackSlot(Def, FI))
3066         return false;
3067     } else {
3068       unsigned Opcode = Def->getOpcode();
3069       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3070           Def->getOperand(1).isFI()) {
3071         FI = Def->getOperand(1).getIndex();
3072         Bytes = Flags.getByValSize();
3073       } else
3074         return false;
3075     }
3076   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3077     if (Flags.isByVal())
3078       // ByVal argument is passed in as a pointer but it's now being
3079       // dereferenced. e.g.
3080       // define @foo(%struct.X* %A) {
3081       //   tail call @bar(%struct.X* byval %A)
3082       // }
3083       return false;
3084     SDValue Ptr = Ld->getBasePtr();
3085     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3086     if (!FINode)
3087       return false;
3088     FI = FINode->getIndex();
3089   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3090     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3091     FI = FINode->getIndex();
3092     Bytes = Flags.getByValSize();
3093   } else
3094     return false;
3095
3096   assert(FI != INT_MAX);
3097   if (!MFI->isFixedObjectIndex(FI))
3098     return false;
3099   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3100 }
3101
3102 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3103 /// for tail call optimization. Targets which want to do tail call
3104 /// optimization should implement this function.
3105 bool
3106 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3107                                                      CallingConv::ID CalleeCC,
3108                                                      bool isVarArg,
3109                                                      bool isCalleeStructRet,
3110                                                      bool isCallerStructRet,
3111                                                      Type *RetTy,
3112                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3113                                     const SmallVectorImpl<SDValue> &OutVals,
3114                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3115                                                      SelectionDAG &DAG) const {
3116   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3117     return false;
3118
3119   // If -tailcallopt is specified, make fastcc functions tail-callable.
3120   const MachineFunction &MF = DAG.getMachineFunction();
3121   const Function *CallerF = MF.getFunction();
3122
3123   // If the function return type is x86_fp80 and the callee return type is not,
3124   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3125   // perform a tailcall optimization here.
3126   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3127     return false;
3128
3129   CallingConv::ID CallerCC = CallerF->getCallingConv();
3130   bool CCMatch = CallerCC == CalleeCC;
3131   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3132   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3133
3134   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3135     if (IsTailCallConvention(CalleeCC) && CCMatch)
3136       return true;
3137     return false;
3138   }
3139
3140   // Look for obvious safe cases to perform tail call optimization that do not
3141   // require ABI changes. This is what gcc calls sibcall.
3142
3143   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3144   // emit a special epilogue.
3145   const X86RegisterInfo *RegInfo =
3146     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3147   if (RegInfo->needsStackRealignment(MF))
3148     return false;
3149
3150   // Also avoid sibcall optimization if either caller or callee uses struct
3151   // return semantics.
3152   if (isCalleeStructRet || isCallerStructRet)
3153     return false;
3154
3155   // An stdcall/thiscall caller is expected to clean up its arguments; the
3156   // callee isn't going to do that.
3157   // FIXME: this is more restrictive than needed. We could produce a tailcall
3158   // when the stack adjustment matches. For example, with a thiscall that takes
3159   // only one argument.
3160   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3161                    CallerCC == CallingConv::X86_ThisCall))
3162     return false;
3163
3164   // Do not sibcall optimize vararg calls unless all arguments are passed via
3165   // registers.
3166   if (isVarArg && !Outs.empty()) {
3167
3168     // Optimizing for varargs on Win64 is unlikely to be safe without
3169     // additional testing.
3170     if (IsCalleeWin64 || IsCallerWin64)
3171       return false;
3172
3173     SmallVector<CCValAssign, 16> ArgLocs;
3174     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3175                    getTargetMachine(), ArgLocs, *DAG.getContext());
3176
3177     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3178     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3179       if (!ArgLocs[i].isRegLoc())
3180         return false;
3181   }
3182
3183   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3184   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3185   // this into a sibcall.
3186   bool Unused = false;
3187   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3188     if (!Ins[i].Used) {
3189       Unused = true;
3190       break;
3191     }
3192   }
3193   if (Unused) {
3194     SmallVector<CCValAssign, 16> RVLocs;
3195     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3196                    getTargetMachine(), RVLocs, *DAG.getContext());
3197     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3198     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3199       CCValAssign &VA = RVLocs[i];
3200       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3201         return false;
3202     }
3203   }
3204
3205   // If the calling conventions do not match, then we'd better make sure the
3206   // results are returned in the same way as what the caller expects.
3207   if (!CCMatch) {
3208     SmallVector<CCValAssign, 16> RVLocs1;
3209     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3210                     getTargetMachine(), RVLocs1, *DAG.getContext());
3211     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3212
3213     SmallVector<CCValAssign, 16> RVLocs2;
3214     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3215                     getTargetMachine(), RVLocs2, *DAG.getContext());
3216     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3217
3218     if (RVLocs1.size() != RVLocs2.size())
3219       return false;
3220     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3221       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3222         return false;
3223       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3224         return false;
3225       if (RVLocs1[i].isRegLoc()) {
3226         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3227           return false;
3228       } else {
3229         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3230           return false;
3231       }
3232     }
3233   }
3234
3235   // If the callee takes no arguments then go on to check the results of the
3236   // call.
3237   if (!Outs.empty()) {
3238     // Check if stack adjustment is needed. For now, do not do this if any
3239     // argument is passed on the stack.
3240     SmallVector<CCValAssign, 16> ArgLocs;
3241     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3242                    getTargetMachine(), ArgLocs, *DAG.getContext());
3243
3244     // Allocate shadow area for Win64
3245     if (IsCalleeWin64)
3246       CCInfo.AllocateStack(32, 8);
3247
3248     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3249     if (CCInfo.getNextStackOffset()) {
3250       MachineFunction &MF = DAG.getMachineFunction();
3251       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3252         return false;
3253
3254       // Check if the arguments are already laid out in the right way as
3255       // the caller's fixed stack objects.
3256       MachineFrameInfo *MFI = MF.getFrameInfo();
3257       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3258       const X86InstrInfo *TII =
3259         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3260       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3261         CCValAssign &VA = ArgLocs[i];
3262         SDValue Arg = OutVals[i];
3263         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3264         if (VA.getLocInfo() == CCValAssign::Indirect)
3265           return false;
3266         if (!VA.isRegLoc()) {
3267           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3268                                    MFI, MRI, TII))
3269             return false;
3270         }
3271       }
3272     }
3273
3274     // If the tailcall address may be in a register, then make sure it's
3275     // possible to register allocate for it. In 32-bit, the call address can
3276     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3277     // callee-saved registers are restored. These happen to be the same
3278     // registers used to pass 'inreg' arguments so watch out for those.
3279     if (!Subtarget->is64Bit() &&
3280         ((!isa<GlobalAddressSDNode>(Callee) &&
3281           !isa<ExternalSymbolSDNode>(Callee)) ||
3282          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3283       unsigned NumInRegs = 0;
3284       // In PIC we need an extra register to formulate the address computation
3285       // for the callee.
3286       unsigned MaxInRegs =
3287           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3288
3289       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3290         CCValAssign &VA = ArgLocs[i];
3291         if (!VA.isRegLoc())
3292           continue;
3293         unsigned Reg = VA.getLocReg();
3294         switch (Reg) {
3295         default: break;
3296         case X86::EAX: case X86::EDX: case X86::ECX:
3297           if (++NumInRegs == MaxInRegs)
3298             return false;
3299           break;
3300         }
3301       }
3302     }
3303   }
3304
3305   return true;
3306 }
3307
3308 FastISel *
3309 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3310                                   const TargetLibraryInfo *libInfo) const {
3311   return X86::createFastISel(funcInfo, libInfo);
3312 }
3313
3314 //===----------------------------------------------------------------------===//
3315 //                           Other Lowering Hooks
3316 //===----------------------------------------------------------------------===//
3317
3318 static bool MayFoldLoad(SDValue Op) {
3319   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3320 }
3321
3322 static bool MayFoldIntoStore(SDValue Op) {
3323   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3324 }
3325
3326 static bool isTargetShuffle(unsigned Opcode) {
3327   switch(Opcode) {
3328   default: return false;
3329   case X86ISD::PSHUFD:
3330   case X86ISD::PSHUFHW:
3331   case X86ISD::PSHUFLW:
3332   case X86ISD::SHUFP:
3333   case X86ISD::PALIGNR:
3334   case X86ISD::MOVLHPS:
3335   case X86ISD::MOVLHPD:
3336   case X86ISD::MOVHLPS:
3337   case X86ISD::MOVLPS:
3338   case X86ISD::MOVLPD:
3339   case X86ISD::MOVSHDUP:
3340   case X86ISD::MOVSLDUP:
3341   case X86ISD::MOVDDUP:
3342   case X86ISD::MOVSS:
3343   case X86ISD::MOVSD:
3344   case X86ISD::UNPCKL:
3345   case X86ISD::UNPCKH:
3346   case X86ISD::VPERMILP:
3347   case X86ISD::VPERM2X128:
3348   case X86ISD::VPERMI:
3349     return true;
3350   }
3351 }
3352
3353 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3354                                     SDValue V1, SelectionDAG &DAG) {
3355   switch(Opc) {
3356   default: llvm_unreachable("Unknown x86 shuffle node");
3357   case X86ISD::MOVSHDUP:
3358   case X86ISD::MOVSLDUP:
3359   case X86ISD::MOVDDUP:
3360     return DAG.getNode(Opc, dl, VT, V1);
3361   }
3362 }
3363
3364 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3365                                     SDValue V1, unsigned TargetMask,
3366                                     SelectionDAG &DAG) {
3367   switch(Opc) {
3368   default: llvm_unreachable("Unknown x86 shuffle node");
3369   case X86ISD::PSHUFD:
3370   case X86ISD::PSHUFHW:
3371   case X86ISD::PSHUFLW:
3372   case X86ISD::VPERMILP:
3373   case X86ISD::VPERMI:
3374     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3375   }
3376 }
3377
3378 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3379                                     SDValue V1, SDValue V2, unsigned TargetMask,
3380                                     SelectionDAG &DAG) {
3381   switch(Opc) {
3382   default: llvm_unreachable("Unknown x86 shuffle node");
3383   case X86ISD::PALIGNR:
3384   case X86ISD::SHUFP:
3385   case X86ISD::VPERM2X128:
3386     return DAG.getNode(Opc, dl, VT, V1, V2,
3387                        DAG.getConstant(TargetMask, MVT::i8));
3388   }
3389 }
3390
3391 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3392                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3393   switch(Opc) {
3394   default: llvm_unreachable("Unknown x86 shuffle node");
3395   case X86ISD::MOVLHPS:
3396   case X86ISD::MOVLHPD:
3397   case X86ISD::MOVHLPS:
3398   case X86ISD::MOVLPS:
3399   case X86ISD::MOVLPD:
3400   case X86ISD::MOVSS:
3401   case X86ISD::MOVSD:
3402   case X86ISD::UNPCKL:
3403   case X86ISD::UNPCKH:
3404     return DAG.getNode(Opc, dl, VT, V1, V2);
3405   }
3406 }
3407
3408 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3409   MachineFunction &MF = DAG.getMachineFunction();
3410   const X86RegisterInfo *RegInfo =
3411     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3412   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3413   int ReturnAddrIndex = FuncInfo->getRAIndex();
3414
3415   if (ReturnAddrIndex == 0) {
3416     // Set up a frame object for the return address.
3417     unsigned SlotSize = RegInfo->getSlotSize();
3418     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3419                                                            -(int64_t)SlotSize,
3420                                                            false);
3421     FuncInfo->setRAIndex(ReturnAddrIndex);
3422   }
3423
3424   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3425 }
3426
3427 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3428                                        bool hasSymbolicDisplacement) {
3429   // Offset should fit into 32 bit immediate field.
3430   if (!isInt<32>(Offset))
3431     return false;
3432
3433   // If we don't have a symbolic displacement - we don't have any extra
3434   // restrictions.
3435   if (!hasSymbolicDisplacement)
3436     return true;
3437
3438   // FIXME: Some tweaks might be needed for medium code model.
3439   if (M != CodeModel::Small && M != CodeModel::Kernel)
3440     return false;
3441
3442   // For small code model we assume that latest object is 16MB before end of 31
3443   // bits boundary. We may also accept pretty large negative constants knowing
3444   // that all objects are in the positive half of address space.
3445   if (M == CodeModel::Small && Offset < 16*1024*1024)
3446     return true;
3447
3448   // For kernel code model we know that all object resist in the negative half
3449   // of 32bits address space. We may not accept negative offsets, since they may
3450   // be just off and we may accept pretty large positive ones.
3451   if (M == CodeModel::Kernel && Offset > 0)
3452     return true;
3453
3454   return false;
3455 }
3456
3457 /// isCalleePop - Determines whether the callee is required to pop its
3458 /// own arguments. Callee pop is necessary to support tail calls.
3459 bool X86::isCalleePop(CallingConv::ID CallingConv,
3460                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3461   if (IsVarArg)
3462     return false;
3463
3464   switch (CallingConv) {
3465   default:
3466     return false;
3467   case CallingConv::X86_StdCall:
3468     return !is64Bit;
3469   case CallingConv::X86_FastCall:
3470     return !is64Bit;
3471   case CallingConv::X86_ThisCall:
3472     return !is64Bit;
3473   case CallingConv::Fast:
3474     return TailCallOpt;
3475   case CallingConv::GHC:
3476     return TailCallOpt;
3477   case CallingConv::HiPE:
3478     return TailCallOpt;
3479   }
3480 }
3481
3482 /// \brief Return true if the condition is an unsigned comparison operation.
3483 static bool isX86CCUnsigned(unsigned X86CC) {
3484   switch (X86CC) {
3485   default: llvm_unreachable("Invalid integer condition!");
3486   case X86::COND_E:     return true;
3487   case X86::COND_G:     return false;
3488   case X86::COND_GE:    return false;
3489   case X86::COND_L:     return false;
3490   case X86::COND_LE:    return false;
3491   case X86::COND_NE:    return true;
3492   case X86::COND_B:     return true;
3493   case X86::COND_A:     return true;
3494   case X86::COND_BE:    return true;
3495   case X86::COND_AE:    return true;
3496   }
3497   llvm_unreachable("covered switch fell through?!");
3498 }
3499
3500 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3501 /// specific condition code, returning the condition code and the LHS/RHS of the
3502 /// comparison to make.
3503 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3504                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3505   if (!isFP) {
3506     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3507       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3508         // X > -1   -> X == 0, jump !sign.
3509         RHS = DAG.getConstant(0, RHS.getValueType());
3510         return X86::COND_NS;
3511       }
3512       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3513         // X < 0   -> X == 0, jump on sign.
3514         return X86::COND_S;
3515       }
3516       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3517         // X < 1   -> X <= 0
3518         RHS = DAG.getConstant(0, RHS.getValueType());
3519         return X86::COND_LE;
3520       }
3521     }
3522
3523     switch (SetCCOpcode) {
3524     default: llvm_unreachable("Invalid integer condition!");
3525     case ISD::SETEQ:  return X86::COND_E;
3526     case ISD::SETGT:  return X86::COND_G;
3527     case ISD::SETGE:  return X86::COND_GE;
3528     case ISD::SETLT:  return X86::COND_L;
3529     case ISD::SETLE:  return X86::COND_LE;
3530     case ISD::SETNE:  return X86::COND_NE;
3531     case ISD::SETULT: return X86::COND_B;
3532     case ISD::SETUGT: return X86::COND_A;
3533     case ISD::SETULE: return X86::COND_BE;
3534     case ISD::SETUGE: return X86::COND_AE;
3535     }
3536   }
3537
3538   // First determine if it is required or is profitable to flip the operands.
3539
3540   // If LHS is a foldable load, but RHS is not, flip the condition.
3541   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3542       !ISD::isNON_EXTLoad(RHS.getNode())) {
3543     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3544     std::swap(LHS, RHS);
3545   }
3546
3547   switch (SetCCOpcode) {
3548   default: break;
3549   case ISD::SETOLT:
3550   case ISD::SETOLE:
3551   case ISD::SETUGT:
3552   case ISD::SETUGE:
3553     std::swap(LHS, RHS);
3554     break;
3555   }
3556
3557   // On a floating point condition, the flags are set as follows:
3558   // ZF  PF  CF   op
3559   //  0 | 0 | 0 | X > Y
3560   //  0 | 0 | 1 | X < Y
3561   //  1 | 0 | 0 | X == Y
3562   //  1 | 1 | 1 | unordered
3563   switch (SetCCOpcode) {
3564   default: llvm_unreachable("Condcode should be pre-legalized away");
3565   case ISD::SETUEQ:
3566   case ISD::SETEQ:   return X86::COND_E;
3567   case ISD::SETOLT:              // flipped
3568   case ISD::SETOGT:
3569   case ISD::SETGT:   return X86::COND_A;
3570   case ISD::SETOLE:              // flipped
3571   case ISD::SETOGE:
3572   case ISD::SETGE:   return X86::COND_AE;
3573   case ISD::SETUGT:              // flipped
3574   case ISD::SETULT:
3575   case ISD::SETLT:   return X86::COND_B;
3576   case ISD::SETUGE:              // flipped
3577   case ISD::SETULE:
3578   case ISD::SETLE:   return X86::COND_BE;
3579   case ISD::SETONE:
3580   case ISD::SETNE:   return X86::COND_NE;
3581   case ISD::SETUO:   return X86::COND_P;
3582   case ISD::SETO:    return X86::COND_NP;
3583   case ISD::SETOEQ:
3584   case ISD::SETUNE:  return X86::COND_INVALID;
3585   }
3586 }
3587
3588 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3589 /// code. Current x86 isa includes the following FP cmov instructions:
3590 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3591 static bool hasFPCMov(unsigned X86CC) {
3592   switch (X86CC) {
3593   default:
3594     return false;
3595   case X86::COND_B:
3596   case X86::COND_BE:
3597   case X86::COND_E:
3598   case X86::COND_P:
3599   case X86::COND_A:
3600   case X86::COND_AE:
3601   case X86::COND_NE:
3602   case X86::COND_NP:
3603     return true;
3604   }
3605 }
3606
3607 /// isFPImmLegal - Returns true if the target can instruction select the
3608 /// specified FP immediate natively. If false, the legalizer will
3609 /// materialize the FP immediate as a load from a constant pool.
3610 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3611   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3612     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3613       return true;
3614   }
3615   return false;
3616 }
3617
3618 /// \brief Returns true if it is beneficial to convert a load of a constant
3619 /// to just the constant itself.
3620 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3621                                                           Type *Ty) const {
3622   assert(Ty->isIntegerTy());
3623
3624   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3625   if (BitSize == 0 || BitSize > 64)
3626     return false;
3627   return true;
3628 }
3629
3630 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3631 /// the specified range (L, H].
3632 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3633   return (Val < 0) || (Val >= Low && Val < Hi);
3634 }
3635
3636 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3637 /// specified value.
3638 static bool isUndefOrEqual(int Val, int CmpVal) {
3639   return (Val < 0 || Val == CmpVal);
3640 }
3641
3642 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3643 /// from position Pos and ending in Pos+Size, falls within the specified
3644 /// sequential range (L, L+Pos]. or is undef.
3645 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3646                                        unsigned Pos, unsigned Size, int Low) {
3647   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3648     if (!isUndefOrEqual(Mask[i], Low))
3649       return false;
3650   return true;
3651 }
3652
3653 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3654 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3655 /// the second operand.
3656 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3657   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3658     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3659   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3660     return (Mask[0] < 2 && Mask[1] < 2);
3661   return false;
3662 }
3663
3664 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3665 /// is suitable for input to PSHUFHW.
3666 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3667   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3668     return false;
3669
3670   // Lower quadword copied in order or undef.
3671   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3672     return false;
3673
3674   // Upper quadword shuffled.
3675   for (unsigned i = 4; i != 8; ++i)
3676     if (!isUndefOrInRange(Mask[i], 4, 8))
3677       return false;
3678
3679   if (VT == MVT::v16i16) {
3680     // Lower quadword copied in order or undef.
3681     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3682       return false;
3683
3684     // Upper quadword shuffled.
3685     for (unsigned i = 12; i != 16; ++i)
3686       if (!isUndefOrInRange(Mask[i], 12, 16))
3687         return false;
3688   }
3689
3690   return true;
3691 }
3692
3693 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3694 /// is suitable for input to PSHUFLW.
3695 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3696   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3697     return false;
3698
3699   // Upper quadword copied in order.
3700   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3701     return false;
3702
3703   // Lower quadword shuffled.
3704   for (unsigned i = 0; i != 4; ++i)
3705     if (!isUndefOrInRange(Mask[i], 0, 4))
3706       return false;
3707
3708   if (VT == MVT::v16i16) {
3709     // Upper quadword copied in order.
3710     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3711       return false;
3712
3713     // Lower quadword shuffled.
3714     for (unsigned i = 8; i != 12; ++i)
3715       if (!isUndefOrInRange(Mask[i], 8, 12))
3716         return false;
3717   }
3718
3719   return true;
3720 }
3721
3722 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3723 /// is suitable for input to PALIGNR.
3724 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3725                           const X86Subtarget *Subtarget) {
3726   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3727       (VT.is256BitVector() && !Subtarget->hasInt256()))
3728     return false;
3729
3730   unsigned NumElts = VT.getVectorNumElements();
3731   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3732   unsigned NumLaneElts = NumElts/NumLanes;
3733
3734   // Do not handle 64-bit element shuffles with palignr.
3735   if (NumLaneElts == 2)
3736     return false;
3737
3738   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3739     unsigned i;
3740     for (i = 0; i != NumLaneElts; ++i) {
3741       if (Mask[i+l] >= 0)
3742         break;
3743     }
3744
3745     // Lane is all undef, go to next lane
3746     if (i == NumLaneElts)
3747       continue;
3748
3749     int Start = Mask[i+l];
3750
3751     // Make sure its in this lane in one of the sources
3752     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3753         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3754       return false;
3755
3756     // If not lane 0, then we must match lane 0
3757     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3758       return false;
3759
3760     // Correct second source to be contiguous with first source
3761     if (Start >= (int)NumElts)
3762       Start -= NumElts - NumLaneElts;
3763
3764     // Make sure we're shifting in the right direction.
3765     if (Start <= (int)(i+l))
3766       return false;
3767
3768     Start -= i;
3769
3770     // Check the rest of the elements to see if they are consecutive.
3771     for (++i; i != NumLaneElts; ++i) {
3772       int Idx = Mask[i+l];
3773
3774       // Make sure its in this lane
3775       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3776           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3777         return false;
3778
3779       // If not lane 0, then we must match lane 0
3780       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3781         return false;
3782
3783       if (Idx >= (int)NumElts)
3784         Idx -= NumElts - NumLaneElts;
3785
3786       if (!isUndefOrEqual(Idx, Start+i))
3787         return false;
3788
3789     }
3790   }
3791
3792   return true;
3793 }
3794
3795 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3796 /// the two vector operands have swapped position.
3797 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3798                                      unsigned NumElems) {
3799   for (unsigned i = 0; i != NumElems; ++i) {
3800     int idx = Mask[i];
3801     if (idx < 0)
3802       continue;
3803     else if (idx < (int)NumElems)
3804       Mask[i] = idx + NumElems;
3805     else
3806       Mask[i] = idx - NumElems;
3807   }
3808 }
3809
3810 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3811 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3812 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3813 /// reverse of what x86 shuffles want.
3814 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3815
3816   unsigned NumElems = VT.getVectorNumElements();
3817   unsigned NumLanes = VT.getSizeInBits()/128;
3818   unsigned NumLaneElems = NumElems/NumLanes;
3819
3820   if (NumLaneElems != 2 && NumLaneElems != 4)
3821     return false;
3822
3823   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3824   bool symetricMaskRequired =
3825     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3826
3827   // VSHUFPSY divides the resulting vector into 4 chunks.
3828   // The sources are also splitted into 4 chunks, and each destination
3829   // chunk must come from a different source chunk.
3830   //
3831   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3832   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3833   //
3834   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3835   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3836   //
3837   // VSHUFPDY divides the resulting vector into 4 chunks.
3838   // The sources are also splitted into 4 chunks, and each destination
3839   // chunk must come from a different source chunk.
3840   //
3841   //  SRC1 =>      X3       X2       X1       X0
3842   //  SRC2 =>      Y3       Y2       Y1       Y0
3843   //
3844   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3845   //
3846   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3847   unsigned HalfLaneElems = NumLaneElems/2;
3848   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3849     for (unsigned i = 0; i != NumLaneElems; ++i) {
3850       int Idx = Mask[i+l];
3851       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3852       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3853         return false;
3854       // For VSHUFPSY, the mask of the second half must be the same as the
3855       // first but with the appropriate offsets. This works in the same way as
3856       // VPERMILPS works with masks.
3857       if (!symetricMaskRequired || Idx < 0)
3858         continue;
3859       if (MaskVal[i] < 0) {
3860         MaskVal[i] = Idx - l;
3861         continue;
3862       }
3863       if ((signed)(Idx - l) != MaskVal[i])
3864         return false;
3865     }
3866   }
3867
3868   return true;
3869 }
3870
3871 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3872 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3873 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3874   if (!VT.is128BitVector())
3875     return false;
3876
3877   unsigned NumElems = VT.getVectorNumElements();
3878
3879   if (NumElems != 4)
3880     return false;
3881
3882   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3883   return isUndefOrEqual(Mask[0], 6) &&
3884          isUndefOrEqual(Mask[1], 7) &&
3885          isUndefOrEqual(Mask[2], 2) &&
3886          isUndefOrEqual(Mask[3], 3);
3887 }
3888
3889 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3890 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3891 /// <2, 3, 2, 3>
3892 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3893   if (!VT.is128BitVector())
3894     return false;
3895
3896   unsigned NumElems = VT.getVectorNumElements();
3897
3898   if (NumElems != 4)
3899     return false;
3900
3901   return isUndefOrEqual(Mask[0], 2) &&
3902          isUndefOrEqual(Mask[1], 3) &&
3903          isUndefOrEqual(Mask[2], 2) &&
3904          isUndefOrEqual(Mask[3], 3);
3905 }
3906
3907 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3908 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3909 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3910   if (!VT.is128BitVector())
3911     return false;
3912
3913   unsigned NumElems = VT.getVectorNumElements();
3914
3915   if (NumElems != 2 && NumElems != 4)
3916     return false;
3917
3918   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3919     if (!isUndefOrEqual(Mask[i], i + NumElems))
3920       return false;
3921
3922   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3923     if (!isUndefOrEqual(Mask[i], i))
3924       return false;
3925
3926   return true;
3927 }
3928
3929 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3930 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3931 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3932   if (!VT.is128BitVector())
3933     return false;
3934
3935   unsigned NumElems = VT.getVectorNumElements();
3936
3937   if (NumElems != 2 && NumElems != 4)
3938     return false;
3939
3940   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3941     if (!isUndefOrEqual(Mask[i], i))
3942       return false;
3943
3944   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3945     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3946       return false;
3947
3948   return true;
3949 }
3950
3951 /// isINSERTPSMask - Return true if the specified VECTOR_SHUFFLE operand
3952 /// specifies a shuffle of elements that is suitable for input to INSERTPS.
3953 /// i. e: If all but one element come from the same vector.
3954 static bool isINSERTPSMask(ArrayRef<int> Mask, MVT VT) {
3955   // TODO: Deal with AVX's VINSERTPS
3956   if (!VT.is128BitVector() || (VT != MVT::v4f32 && VT != MVT::v4i32))
3957     return false;
3958
3959   unsigned CorrectPosV1 = 0;
3960   unsigned CorrectPosV2 = 0;
3961   for (int i = 0, e = (int)VT.getVectorNumElements(); i != e; ++i)
3962     if (Mask[i] == i)
3963       ++CorrectPosV1;
3964     else if (Mask[i] == i + 4)
3965       ++CorrectPosV2;
3966
3967   if (CorrectPosV1 == 3 || CorrectPosV2 == 3)
3968     // We have 3 elements from one vector, and one from another.
3969     return true;
3970
3971   return false;
3972 }
3973
3974 //
3975 // Some special combinations that can be optimized.
3976 //
3977 static
3978 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3979                                SelectionDAG &DAG) {
3980   MVT VT = SVOp->getSimpleValueType(0);
3981   SDLoc dl(SVOp);
3982
3983   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3984     return SDValue();
3985
3986   ArrayRef<int> Mask = SVOp->getMask();
3987
3988   // These are the special masks that may be optimized.
3989   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3990   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3991   bool MatchEvenMask = true;
3992   bool MatchOddMask  = true;
3993   for (int i=0; i<8; ++i) {
3994     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3995       MatchEvenMask = false;
3996     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3997       MatchOddMask = false;
3998   }
3999
4000   if (!MatchEvenMask && !MatchOddMask)
4001     return SDValue();
4002
4003   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
4004
4005   SDValue Op0 = SVOp->getOperand(0);
4006   SDValue Op1 = SVOp->getOperand(1);
4007
4008   if (MatchEvenMask) {
4009     // Shift the second operand right to 32 bits.
4010     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
4011     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
4012   } else {
4013     // Shift the first operand left to 32 bits.
4014     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
4015     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
4016   }
4017   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
4018   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
4019 }
4020
4021 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
4022 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
4023 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
4024                          bool HasInt256, bool V2IsSplat = false) {
4025
4026   assert(VT.getSizeInBits() >= 128 &&
4027          "Unsupported vector type for unpckl");
4028
4029   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4030   unsigned NumLanes;
4031   unsigned NumOf256BitLanes;
4032   unsigned NumElts = VT.getVectorNumElements();
4033   if (VT.is256BitVector()) {
4034     if (NumElts != 4 && NumElts != 8 &&
4035         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4036     return false;
4037     NumLanes = 2;
4038     NumOf256BitLanes = 1;
4039   } else if (VT.is512BitVector()) {
4040     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4041            "Unsupported vector type for unpckh");
4042     NumLanes = 2;
4043     NumOf256BitLanes = 2;
4044   } else {
4045     NumLanes = 1;
4046     NumOf256BitLanes = 1;
4047   }
4048
4049   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4050   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4051
4052   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4053     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4054       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4055         int BitI  = Mask[l256*NumEltsInStride+l+i];
4056         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4057         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4058           return false;
4059         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4060           return false;
4061         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4062           return false;
4063       }
4064     }
4065   }
4066   return true;
4067 }
4068
4069 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
4070 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
4071 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
4072                          bool HasInt256, bool V2IsSplat = false) {
4073   assert(VT.getSizeInBits() >= 128 &&
4074          "Unsupported vector type for unpckh");
4075
4076   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4077   unsigned NumLanes;
4078   unsigned NumOf256BitLanes;
4079   unsigned NumElts = VT.getVectorNumElements();
4080   if (VT.is256BitVector()) {
4081     if (NumElts != 4 && NumElts != 8 &&
4082         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4083     return false;
4084     NumLanes = 2;
4085     NumOf256BitLanes = 1;
4086   } else if (VT.is512BitVector()) {
4087     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4088            "Unsupported vector type for unpckh");
4089     NumLanes = 2;
4090     NumOf256BitLanes = 2;
4091   } else {
4092     NumLanes = 1;
4093     NumOf256BitLanes = 1;
4094   }
4095
4096   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4097   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4098
4099   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4100     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4101       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4102         int BitI  = Mask[l256*NumEltsInStride+l+i];
4103         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4104         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4105           return false;
4106         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4107           return false;
4108         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4109           return false;
4110       }
4111     }
4112   }
4113   return true;
4114 }
4115
4116 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4117 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4118 /// <0, 0, 1, 1>
4119 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4120   unsigned NumElts = VT.getVectorNumElements();
4121   bool Is256BitVec = VT.is256BitVector();
4122
4123   if (VT.is512BitVector())
4124     return false;
4125   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4126          "Unsupported vector type for unpckh");
4127
4128   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4129       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4130     return false;
4131
4132   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4133   // FIXME: Need a better way to get rid of this, there's no latency difference
4134   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4135   // the former later. We should also remove the "_undef" special mask.
4136   if (NumElts == 4 && Is256BitVec)
4137     return false;
4138
4139   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4140   // independently on 128-bit lanes.
4141   unsigned NumLanes = VT.getSizeInBits()/128;
4142   unsigned NumLaneElts = NumElts/NumLanes;
4143
4144   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4145     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4146       int BitI  = Mask[l+i];
4147       int BitI1 = Mask[l+i+1];
4148
4149       if (!isUndefOrEqual(BitI, j))
4150         return false;
4151       if (!isUndefOrEqual(BitI1, j))
4152         return false;
4153     }
4154   }
4155
4156   return true;
4157 }
4158
4159 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4160 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4161 /// <2, 2, 3, 3>
4162 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4163   unsigned NumElts = VT.getVectorNumElements();
4164
4165   if (VT.is512BitVector())
4166     return false;
4167
4168   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4169          "Unsupported vector type for unpckh");
4170
4171   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4172       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4173     return false;
4174
4175   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4176   // independently on 128-bit lanes.
4177   unsigned NumLanes = VT.getSizeInBits()/128;
4178   unsigned NumLaneElts = NumElts/NumLanes;
4179
4180   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4181     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4182       int BitI  = Mask[l+i];
4183       int BitI1 = Mask[l+i+1];
4184       if (!isUndefOrEqual(BitI, j))
4185         return false;
4186       if (!isUndefOrEqual(BitI1, j))
4187         return false;
4188     }
4189   }
4190   return true;
4191 }
4192
4193 // Match for INSERTI64x4 INSERTF64x4 instructions (src0[0], src1[0]) or
4194 // (src1[0], src0[1]), manipulation with 256-bit sub-vectors
4195 static bool isINSERT64x4Mask(ArrayRef<int> Mask, MVT VT, unsigned int *Imm) {
4196   if (!VT.is512BitVector())
4197     return false;
4198
4199   unsigned NumElts = VT.getVectorNumElements();
4200   unsigned HalfSize = NumElts/2;
4201   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, 0)) {
4202     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, NumElts)) {
4203       *Imm = 1;
4204       return true;
4205     }
4206   }
4207   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, NumElts)) {
4208     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, HalfSize)) {
4209       *Imm = 0;
4210       return true;
4211     }
4212   }
4213   return false;
4214 }
4215
4216 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4217 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4218 /// MOVSD, and MOVD, i.e. setting the lowest element.
4219 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4220   if (VT.getVectorElementType().getSizeInBits() < 32)
4221     return false;
4222   if (!VT.is128BitVector())
4223     return false;
4224
4225   unsigned NumElts = VT.getVectorNumElements();
4226
4227   if (!isUndefOrEqual(Mask[0], NumElts))
4228     return false;
4229
4230   for (unsigned i = 1; i != NumElts; ++i)
4231     if (!isUndefOrEqual(Mask[i], i))
4232       return false;
4233
4234   return true;
4235 }
4236
4237 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4238 /// as permutations between 128-bit chunks or halves. As an example: this
4239 /// shuffle bellow:
4240 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4241 /// The first half comes from the second half of V1 and the second half from the
4242 /// the second half of V2.
4243 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4244   if (!HasFp256 || !VT.is256BitVector())
4245     return false;
4246
4247   // The shuffle result is divided into half A and half B. In total the two
4248   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4249   // B must come from C, D, E or F.
4250   unsigned HalfSize = VT.getVectorNumElements()/2;
4251   bool MatchA = false, MatchB = false;
4252
4253   // Check if A comes from one of C, D, E, F.
4254   for (unsigned Half = 0; Half != 4; ++Half) {
4255     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4256       MatchA = true;
4257       break;
4258     }
4259   }
4260
4261   // Check if B comes from one of C, D, E, F.
4262   for (unsigned Half = 0; Half != 4; ++Half) {
4263     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4264       MatchB = true;
4265       break;
4266     }
4267   }
4268
4269   return MatchA && MatchB;
4270 }
4271
4272 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4273 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4274 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4275   MVT VT = SVOp->getSimpleValueType(0);
4276
4277   unsigned HalfSize = VT.getVectorNumElements()/2;
4278
4279   unsigned FstHalf = 0, SndHalf = 0;
4280   for (unsigned i = 0; i < HalfSize; ++i) {
4281     if (SVOp->getMaskElt(i) > 0) {
4282       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4283       break;
4284     }
4285   }
4286   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4287     if (SVOp->getMaskElt(i) > 0) {
4288       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4289       break;
4290     }
4291   }
4292
4293   return (FstHalf | (SndHalf << 4));
4294 }
4295
4296 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4297 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4298   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4299   if (EltSize < 32)
4300     return false;
4301
4302   unsigned NumElts = VT.getVectorNumElements();
4303   Imm8 = 0;
4304   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4305     for (unsigned i = 0; i != NumElts; ++i) {
4306       if (Mask[i] < 0)
4307         continue;
4308       Imm8 |= Mask[i] << (i*2);
4309     }
4310     return true;
4311   }
4312
4313   unsigned LaneSize = 4;
4314   SmallVector<int, 4> MaskVal(LaneSize, -1);
4315
4316   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4317     for (unsigned i = 0; i != LaneSize; ++i) {
4318       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4319         return false;
4320       if (Mask[i+l] < 0)
4321         continue;
4322       if (MaskVal[i] < 0) {
4323         MaskVal[i] = Mask[i+l] - l;
4324         Imm8 |= MaskVal[i] << (i*2);
4325         continue;
4326       }
4327       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4328         return false;
4329     }
4330   }
4331   return true;
4332 }
4333
4334 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4335 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4336 /// Note that VPERMIL mask matching is different depending whether theunderlying
4337 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4338 /// to the same elements of the low, but to the higher half of the source.
4339 /// In VPERMILPD the two lanes could be shuffled independently of each other
4340 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4341 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4342   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4343   if (VT.getSizeInBits() < 256 || EltSize < 32)
4344     return false;
4345   bool symetricMaskRequired = (EltSize == 32);
4346   unsigned NumElts = VT.getVectorNumElements();
4347
4348   unsigned NumLanes = VT.getSizeInBits()/128;
4349   unsigned LaneSize = NumElts/NumLanes;
4350   // 2 or 4 elements in one lane
4351
4352   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4353   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4354     for (unsigned i = 0; i != LaneSize; ++i) {
4355       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4356         return false;
4357       if (symetricMaskRequired) {
4358         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4359           ExpectedMaskVal[i] = Mask[i+l] - l;
4360           continue;
4361         }
4362         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4363           return false;
4364       }
4365     }
4366   }
4367   return true;
4368 }
4369
4370 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4371 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4372 /// element of vector 2 and the other elements to come from vector 1 in order.
4373 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4374                                bool V2IsSplat = false, bool V2IsUndef = false) {
4375   if (!VT.is128BitVector())
4376     return false;
4377
4378   unsigned NumOps = VT.getVectorNumElements();
4379   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4380     return false;
4381
4382   if (!isUndefOrEqual(Mask[0], 0))
4383     return false;
4384
4385   for (unsigned i = 1; i != NumOps; ++i)
4386     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4387           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4388           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4389       return false;
4390
4391   return true;
4392 }
4393
4394 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4395 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4396 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4397 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4398                            const X86Subtarget *Subtarget) {
4399   if (!Subtarget->hasSSE3())
4400     return false;
4401
4402   unsigned NumElems = VT.getVectorNumElements();
4403
4404   if ((VT.is128BitVector() && NumElems != 4) ||
4405       (VT.is256BitVector() && NumElems != 8) ||
4406       (VT.is512BitVector() && NumElems != 16))
4407     return false;
4408
4409   // "i+1" is the value the indexed mask element must have
4410   for (unsigned i = 0; i != NumElems; i += 2)
4411     if (!isUndefOrEqual(Mask[i], i+1) ||
4412         !isUndefOrEqual(Mask[i+1], i+1))
4413       return false;
4414
4415   return true;
4416 }
4417
4418 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4419 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4420 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4421 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4422                            const X86Subtarget *Subtarget) {
4423   if (!Subtarget->hasSSE3())
4424     return false;
4425
4426   unsigned NumElems = VT.getVectorNumElements();
4427
4428   if ((VT.is128BitVector() && NumElems != 4) ||
4429       (VT.is256BitVector() && NumElems != 8) ||
4430       (VT.is512BitVector() && NumElems != 16))
4431     return false;
4432
4433   // "i" is the value the indexed mask element must have
4434   for (unsigned i = 0; i != NumElems; i += 2)
4435     if (!isUndefOrEqual(Mask[i], i) ||
4436         !isUndefOrEqual(Mask[i+1], i))
4437       return false;
4438
4439   return true;
4440 }
4441
4442 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4443 /// specifies a shuffle of elements that is suitable for input to 256-bit
4444 /// version of MOVDDUP.
4445 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4446   if (!HasFp256 || !VT.is256BitVector())
4447     return false;
4448
4449   unsigned NumElts = VT.getVectorNumElements();
4450   if (NumElts != 4)
4451     return false;
4452
4453   for (unsigned i = 0; i != NumElts/2; ++i)
4454     if (!isUndefOrEqual(Mask[i], 0))
4455       return false;
4456   for (unsigned i = NumElts/2; i != NumElts; ++i)
4457     if (!isUndefOrEqual(Mask[i], NumElts/2))
4458       return false;
4459   return true;
4460 }
4461
4462 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4463 /// specifies a shuffle of elements that is suitable for input to 128-bit
4464 /// version of MOVDDUP.
4465 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4466   if (!VT.is128BitVector())
4467     return false;
4468
4469   unsigned e = VT.getVectorNumElements() / 2;
4470   for (unsigned i = 0; i != e; ++i)
4471     if (!isUndefOrEqual(Mask[i], i))
4472       return false;
4473   for (unsigned i = 0; i != e; ++i)
4474     if (!isUndefOrEqual(Mask[e+i], i))
4475       return false;
4476   return true;
4477 }
4478
4479 /// isVEXTRACTIndex - Return true if the specified
4480 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4481 /// suitable for instruction that extract 128 or 256 bit vectors
4482 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4483   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4484   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4485     return false;
4486
4487   // The index should be aligned on a vecWidth-bit boundary.
4488   uint64_t Index =
4489     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4490
4491   MVT VT = N->getSimpleValueType(0);
4492   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4493   bool Result = (Index * ElSize) % vecWidth == 0;
4494
4495   return Result;
4496 }
4497
4498 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4499 /// operand specifies a subvector insert that is suitable for input to
4500 /// insertion of 128 or 256-bit subvectors
4501 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4502   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4503   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4504     return false;
4505   // The index should be aligned on a vecWidth-bit boundary.
4506   uint64_t Index =
4507     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4508
4509   MVT VT = N->getSimpleValueType(0);
4510   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4511   bool Result = (Index * ElSize) % vecWidth == 0;
4512
4513   return Result;
4514 }
4515
4516 bool X86::isVINSERT128Index(SDNode *N) {
4517   return isVINSERTIndex(N, 128);
4518 }
4519
4520 bool X86::isVINSERT256Index(SDNode *N) {
4521   return isVINSERTIndex(N, 256);
4522 }
4523
4524 bool X86::isVEXTRACT128Index(SDNode *N) {
4525   return isVEXTRACTIndex(N, 128);
4526 }
4527
4528 bool X86::isVEXTRACT256Index(SDNode *N) {
4529   return isVEXTRACTIndex(N, 256);
4530 }
4531
4532 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4533 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4534 /// Handles 128-bit and 256-bit.
4535 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4536   MVT VT = N->getSimpleValueType(0);
4537
4538   assert((VT.getSizeInBits() >= 128) &&
4539          "Unsupported vector type for PSHUF/SHUFP");
4540
4541   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4542   // independently on 128-bit lanes.
4543   unsigned NumElts = VT.getVectorNumElements();
4544   unsigned NumLanes = VT.getSizeInBits()/128;
4545   unsigned NumLaneElts = NumElts/NumLanes;
4546
4547   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4548          "Only supports 2, 4 or 8 elements per lane");
4549
4550   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4551   unsigned Mask = 0;
4552   for (unsigned i = 0; i != NumElts; ++i) {
4553     int Elt = N->getMaskElt(i);
4554     if (Elt < 0) continue;
4555     Elt &= NumLaneElts - 1;
4556     unsigned ShAmt = (i << Shift) % 8;
4557     Mask |= Elt << ShAmt;
4558   }
4559
4560   return Mask;
4561 }
4562
4563 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4564 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4565 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4566   MVT VT = N->getSimpleValueType(0);
4567
4568   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4569          "Unsupported vector type for PSHUFHW");
4570
4571   unsigned NumElts = VT.getVectorNumElements();
4572
4573   unsigned Mask = 0;
4574   for (unsigned l = 0; l != NumElts; l += 8) {
4575     // 8 nodes per lane, but we only care about the last 4.
4576     for (unsigned i = 0; i < 4; ++i) {
4577       int Elt = N->getMaskElt(l+i+4);
4578       if (Elt < 0) continue;
4579       Elt &= 0x3; // only 2-bits.
4580       Mask |= Elt << (i * 2);
4581     }
4582   }
4583
4584   return Mask;
4585 }
4586
4587 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4588 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4589 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4590   MVT VT = N->getSimpleValueType(0);
4591
4592   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4593          "Unsupported vector type for PSHUFHW");
4594
4595   unsigned NumElts = VT.getVectorNumElements();
4596
4597   unsigned Mask = 0;
4598   for (unsigned l = 0; l != NumElts; l += 8) {
4599     // 8 nodes per lane, but we only care about the first 4.
4600     for (unsigned i = 0; i < 4; ++i) {
4601       int Elt = N->getMaskElt(l+i);
4602       if (Elt < 0) continue;
4603       Elt &= 0x3; // only 2-bits
4604       Mask |= Elt << (i * 2);
4605     }
4606   }
4607
4608   return Mask;
4609 }
4610
4611 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4612 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4613 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4614   MVT VT = SVOp->getSimpleValueType(0);
4615   unsigned EltSize = VT.is512BitVector() ? 1 :
4616     VT.getVectorElementType().getSizeInBits() >> 3;
4617
4618   unsigned NumElts = VT.getVectorNumElements();
4619   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4620   unsigned NumLaneElts = NumElts/NumLanes;
4621
4622   int Val = 0;
4623   unsigned i;
4624   for (i = 0; i != NumElts; ++i) {
4625     Val = SVOp->getMaskElt(i);
4626     if (Val >= 0)
4627       break;
4628   }
4629   if (Val >= (int)NumElts)
4630     Val -= NumElts - NumLaneElts;
4631
4632   assert(Val - i > 0 && "PALIGNR imm should be positive");
4633   return (Val - i) * EltSize;
4634 }
4635
4636 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4637   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4638   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4639     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4640
4641   uint64_t Index =
4642     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4643
4644   MVT VecVT = N->getOperand(0).getSimpleValueType();
4645   MVT ElVT = VecVT.getVectorElementType();
4646
4647   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4648   return Index / NumElemsPerChunk;
4649 }
4650
4651 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4652   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4653   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4654     llvm_unreachable("Illegal insert subvector for VINSERT");
4655
4656   uint64_t Index =
4657     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4658
4659   MVT VecVT = N->getSimpleValueType(0);
4660   MVT ElVT = VecVT.getVectorElementType();
4661
4662   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4663   return Index / NumElemsPerChunk;
4664 }
4665
4666 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4667 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4668 /// and VINSERTI128 instructions.
4669 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4670   return getExtractVEXTRACTImmediate(N, 128);
4671 }
4672
4673 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4674 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4675 /// and VINSERTI64x4 instructions.
4676 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4677   return getExtractVEXTRACTImmediate(N, 256);
4678 }
4679
4680 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4681 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4682 /// and VINSERTI128 instructions.
4683 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4684   return getInsertVINSERTImmediate(N, 128);
4685 }
4686
4687 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4688 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4689 /// and VINSERTI64x4 instructions.
4690 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4691   return getInsertVINSERTImmediate(N, 256);
4692 }
4693
4694 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4695 /// constant +0.0.
4696 bool X86::isZeroNode(SDValue Elt) {
4697   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4698     return CN->isNullValue();
4699   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4700     return CFP->getValueAPF().isPosZero();
4701   return false;
4702 }
4703
4704 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4705 /// their permute mask.
4706 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4707                                     SelectionDAG &DAG) {
4708   MVT VT = SVOp->getSimpleValueType(0);
4709   unsigned NumElems = VT.getVectorNumElements();
4710   SmallVector<int, 8> MaskVec;
4711
4712   for (unsigned i = 0; i != NumElems; ++i) {
4713     int Idx = SVOp->getMaskElt(i);
4714     if (Idx >= 0) {
4715       if (Idx < (int)NumElems)
4716         Idx += NumElems;
4717       else
4718         Idx -= NumElems;
4719     }
4720     MaskVec.push_back(Idx);
4721   }
4722   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4723                               SVOp->getOperand(0), &MaskVec[0]);
4724 }
4725
4726 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4727 /// match movhlps. The lower half elements should come from upper half of
4728 /// V1 (and in order), and the upper half elements should come from the upper
4729 /// half of V2 (and in order).
4730 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4731   if (!VT.is128BitVector())
4732     return false;
4733   if (VT.getVectorNumElements() != 4)
4734     return false;
4735   for (unsigned i = 0, e = 2; i != e; ++i)
4736     if (!isUndefOrEqual(Mask[i], i+2))
4737       return false;
4738   for (unsigned i = 2; i != 4; ++i)
4739     if (!isUndefOrEqual(Mask[i], i+4))
4740       return false;
4741   return true;
4742 }
4743
4744 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4745 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4746 /// required.
4747 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = nullptr) {
4748   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4749     return false;
4750   N = N->getOperand(0).getNode();
4751   if (!ISD::isNON_EXTLoad(N))
4752     return false;
4753   if (LD)
4754     *LD = cast<LoadSDNode>(N);
4755   return true;
4756 }
4757
4758 // Test whether the given value is a vector value which will be legalized
4759 // into a load.
4760 static bool WillBeConstantPoolLoad(SDNode *N) {
4761   if (N->getOpcode() != ISD::BUILD_VECTOR)
4762     return false;
4763
4764   // Check for any non-constant elements.
4765   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4766     switch (N->getOperand(i).getNode()->getOpcode()) {
4767     case ISD::UNDEF:
4768     case ISD::ConstantFP:
4769     case ISD::Constant:
4770       break;
4771     default:
4772       return false;
4773     }
4774
4775   // Vectors of all-zeros and all-ones are materialized with special
4776   // instructions rather than being loaded.
4777   return !ISD::isBuildVectorAllZeros(N) &&
4778          !ISD::isBuildVectorAllOnes(N);
4779 }
4780
4781 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4782 /// match movlp{s|d}. The lower half elements should come from lower half of
4783 /// V1 (and in order), and the upper half elements should come from the upper
4784 /// half of V2 (and in order). And since V1 will become the source of the
4785 /// MOVLP, it must be either a vector load or a scalar load to vector.
4786 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4787                                ArrayRef<int> Mask, MVT VT) {
4788   if (!VT.is128BitVector())
4789     return false;
4790
4791   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4792     return false;
4793   // Is V2 is a vector load, don't do this transformation. We will try to use
4794   // load folding shufps op.
4795   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4796     return false;
4797
4798   unsigned NumElems = VT.getVectorNumElements();
4799
4800   if (NumElems != 2 && NumElems != 4)
4801     return false;
4802   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4803     if (!isUndefOrEqual(Mask[i], i))
4804       return false;
4805   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4806     if (!isUndefOrEqual(Mask[i], i+NumElems))
4807       return false;
4808   return true;
4809 }
4810
4811 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4812 /// all the same.
4813 static bool isSplatVector(SDNode *N) {
4814   if (N->getOpcode() != ISD::BUILD_VECTOR)
4815     return false;
4816
4817   SDValue SplatValue = N->getOperand(0);
4818   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4819     if (N->getOperand(i) != SplatValue)
4820       return false;
4821   return true;
4822 }
4823
4824 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4825 /// to an zero vector.
4826 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4827 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4828   SDValue V1 = N->getOperand(0);
4829   SDValue V2 = N->getOperand(1);
4830   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4831   for (unsigned i = 0; i != NumElems; ++i) {
4832     int Idx = N->getMaskElt(i);
4833     if (Idx >= (int)NumElems) {
4834       unsigned Opc = V2.getOpcode();
4835       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4836         continue;
4837       if (Opc != ISD::BUILD_VECTOR ||
4838           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4839         return false;
4840     } else if (Idx >= 0) {
4841       unsigned Opc = V1.getOpcode();
4842       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4843         continue;
4844       if (Opc != ISD::BUILD_VECTOR ||
4845           !X86::isZeroNode(V1.getOperand(Idx)))
4846         return false;
4847     }
4848   }
4849   return true;
4850 }
4851
4852 /// getZeroVector - Returns a vector of specified type with all zero elements.
4853 ///
4854 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4855                              SelectionDAG &DAG, SDLoc dl) {
4856   assert(VT.isVector() && "Expected a vector type");
4857
4858   // Always build SSE zero vectors as <4 x i32> bitcasted
4859   // to their dest type. This ensures they get CSE'd.
4860   SDValue Vec;
4861   if (VT.is128BitVector()) {  // SSE
4862     if (Subtarget->hasSSE2()) {  // SSE2
4863       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4864       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4865     } else { // SSE1
4866       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4867       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4868     }
4869   } else if (VT.is256BitVector()) { // AVX
4870     if (Subtarget->hasInt256()) { // AVX2
4871       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4872       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4873       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4874     } else {
4875       // 256-bit logic and arithmetic instructions in AVX are all
4876       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4877       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4878       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4879       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4880     }
4881   } else if (VT.is512BitVector()) { // AVX-512
4882       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4883       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4884                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4885       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4886   } else if (VT.getScalarType() == MVT::i1) {
4887     assert(VT.getVectorNumElements() <= 16 && "Unexpected vector type");
4888     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
4889     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
4890     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4891   } else
4892     llvm_unreachable("Unexpected vector type");
4893
4894   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4895 }
4896
4897 /// getOnesVector - Returns a vector of specified type with all bits set.
4898 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4899 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4900 /// Then bitcast to their original type, ensuring they get CSE'd.
4901 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4902                              SDLoc dl) {
4903   assert(VT.isVector() && "Expected a vector type");
4904
4905   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4906   SDValue Vec;
4907   if (VT.is256BitVector()) {
4908     if (HasInt256) { // AVX2
4909       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4910       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4911     } else { // AVX
4912       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4913       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4914     }
4915   } else if (VT.is128BitVector()) {
4916     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4917   } else
4918     llvm_unreachable("Unexpected vector type");
4919
4920   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4921 }
4922
4923 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4924 /// that point to V2 points to its first element.
4925 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4926   for (unsigned i = 0; i != NumElems; ++i) {
4927     if (Mask[i] > (int)NumElems) {
4928       Mask[i] = NumElems;
4929     }
4930   }
4931 }
4932
4933 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4934 /// operation of specified width.
4935 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4936                        SDValue V2) {
4937   unsigned NumElems = VT.getVectorNumElements();
4938   SmallVector<int, 8> Mask;
4939   Mask.push_back(NumElems);
4940   for (unsigned i = 1; i != NumElems; ++i)
4941     Mask.push_back(i);
4942   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4943 }
4944
4945 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4946 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4947                           SDValue V2) {
4948   unsigned NumElems = VT.getVectorNumElements();
4949   SmallVector<int, 8> Mask;
4950   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4951     Mask.push_back(i);
4952     Mask.push_back(i + NumElems);
4953   }
4954   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4955 }
4956
4957 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4958 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4959                           SDValue V2) {
4960   unsigned NumElems = VT.getVectorNumElements();
4961   SmallVector<int, 8> Mask;
4962   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4963     Mask.push_back(i + Half);
4964     Mask.push_back(i + NumElems + Half);
4965   }
4966   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4967 }
4968
4969 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4970 // a generic shuffle instruction because the target has no such instructions.
4971 // Generate shuffles which repeat i16 and i8 several times until they can be
4972 // represented by v4f32 and then be manipulated by target suported shuffles.
4973 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4974   MVT VT = V.getSimpleValueType();
4975   int NumElems = VT.getVectorNumElements();
4976   SDLoc dl(V);
4977
4978   while (NumElems > 4) {
4979     if (EltNo < NumElems/2) {
4980       V = getUnpackl(DAG, dl, VT, V, V);
4981     } else {
4982       V = getUnpackh(DAG, dl, VT, V, V);
4983       EltNo -= NumElems/2;
4984     }
4985     NumElems >>= 1;
4986   }
4987   return V;
4988 }
4989
4990 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4991 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4992   MVT VT = V.getSimpleValueType();
4993   SDLoc dl(V);
4994
4995   if (VT.is128BitVector()) {
4996     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4997     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4998     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4999                              &SplatMask[0]);
5000   } else if (VT.is256BitVector()) {
5001     // To use VPERMILPS to splat scalars, the second half of indicies must
5002     // refer to the higher part, which is a duplication of the lower one,
5003     // because VPERMILPS can only handle in-lane permutations.
5004     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
5005                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
5006
5007     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
5008     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
5009                              &SplatMask[0]);
5010   } else
5011     llvm_unreachable("Vector size not supported");
5012
5013   return DAG.getNode(ISD::BITCAST, dl, VT, V);
5014 }
5015
5016 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
5017 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
5018   MVT SrcVT = SV->getSimpleValueType(0);
5019   SDValue V1 = SV->getOperand(0);
5020   SDLoc dl(SV);
5021
5022   int EltNo = SV->getSplatIndex();
5023   int NumElems = SrcVT.getVectorNumElements();
5024   bool Is256BitVec = SrcVT.is256BitVector();
5025
5026   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
5027          "Unknown how to promote splat for type");
5028
5029   // Extract the 128-bit part containing the splat element and update
5030   // the splat element index when it refers to the higher register.
5031   if (Is256BitVec) {
5032     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
5033     if (EltNo >= NumElems/2)
5034       EltNo -= NumElems/2;
5035   }
5036
5037   // All i16 and i8 vector types can't be used directly by a generic shuffle
5038   // instruction because the target has no such instruction. Generate shuffles
5039   // which repeat i16 and i8 several times until they fit in i32, and then can
5040   // be manipulated by target suported shuffles.
5041   MVT EltVT = SrcVT.getVectorElementType();
5042   if (EltVT == MVT::i8 || EltVT == MVT::i16)
5043     V1 = PromoteSplati8i16(V1, DAG, EltNo);
5044
5045   // Recreate the 256-bit vector and place the same 128-bit vector
5046   // into the low and high part. This is necessary because we want
5047   // to use VPERM* to shuffle the vectors
5048   if (Is256BitVec) {
5049     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
5050   }
5051
5052   return getLegalSplat(DAG, V1, EltNo);
5053 }
5054
5055 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
5056 /// vector of zero or undef vector.  This produces a shuffle where the low
5057 /// element of V2 is swizzled into the zero/undef vector, landing at element
5058 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
5059 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
5060                                            bool IsZero,
5061                                            const X86Subtarget *Subtarget,
5062                                            SelectionDAG &DAG) {
5063   MVT VT = V2.getSimpleValueType();
5064   SDValue V1 = IsZero
5065     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
5066   unsigned NumElems = VT.getVectorNumElements();
5067   SmallVector<int, 16> MaskVec;
5068   for (unsigned i = 0; i != NumElems; ++i)
5069     // If this is the insertion idx, put the low elt of V2 here.
5070     MaskVec.push_back(i == Idx ? NumElems : i);
5071   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
5072 }
5073
5074 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
5075 /// target specific opcode. Returns true if the Mask could be calculated.
5076 /// Sets IsUnary to true if only uses one source.
5077 static bool getTargetShuffleMask(SDNode *N, MVT VT,
5078                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
5079   unsigned NumElems = VT.getVectorNumElements();
5080   SDValue ImmN;
5081
5082   IsUnary = false;
5083   switch(N->getOpcode()) {
5084   case X86ISD::SHUFP:
5085     ImmN = N->getOperand(N->getNumOperands()-1);
5086     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5087     break;
5088   case X86ISD::UNPCKH:
5089     DecodeUNPCKHMask(VT, Mask);
5090     break;
5091   case X86ISD::UNPCKL:
5092     DecodeUNPCKLMask(VT, Mask);
5093     break;
5094   case X86ISD::MOVHLPS:
5095     DecodeMOVHLPSMask(NumElems, Mask);
5096     break;
5097   case X86ISD::MOVLHPS:
5098     DecodeMOVLHPSMask(NumElems, Mask);
5099     break;
5100   case X86ISD::PALIGNR:
5101     ImmN = N->getOperand(N->getNumOperands()-1);
5102     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5103     break;
5104   case X86ISD::PSHUFD:
5105   case X86ISD::VPERMILP:
5106     ImmN = N->getOperand(N->getNumOperands()-1);
5107     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5108     IsUnary = true;
5109     break;
5110   case X86ISD::PSHUFHW:
5111     ImmN = N->getOperand(N->getNumOperands()-1);
5112     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5113     IsUnary = true;
5114     break;
5115   case X86ISD::PSHUFLW:
5116     ImmN = N->getOperand(N->getNumOperands()-1);
5117     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5118     IsUnary = true;
5119     break;
5120   case X86ISD::VPERMI:
5121     ImmN = N->getOperand(N->getNumOperands()-1);
5122     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5123     IsUnary = true;
5124     break;
5125   case X86ISD::MOVSS:
5126   case X86ISD::MOVSD: {
5127     // The index 0 always comes from the first element of the second source,
5128     // this is why MOVSS and MOVSD are used in the first place. The other
5129     // elements come from the other positions of the first source vector
5130     Mask.push_back(NumElems);
5131     for (unsigned i = 1; i != NumElems; ++i) {
5132       Mask.push_back(i);
5133     }
5134     break;
5135   }
5136   case X86ISD::VPERM2X128:
5137     ImmN = N->getOperand(N->getNumOperands()-1);
5138     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5139     if (Mask.empty()) return false;
5140     break;
5141   case X86ISD::MOVDDUP:
5142   case X86ISD::MOVLHPD:
5143   case X86ISD::MOVLPD:
5144   case X86ISD::MOVLPS:
5145   case X86ISD::MOVSHDUP:
5146   case X86ISD::MOVSLDUP:
5147     // Not yet implemented
5148     return false;
5149   default: llvm_unreachable("unknown target shuffle node");
5150   }
5151
5152   return true;
5153 }
5154
5155 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5156 /// element of the result of the vector shuffle.
5157 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5158                                    unsigned Depth) {
5159   if (Depth == 6)
5160     return SDValue();  // Limit search depth.
5161
5162   SDValue V = SDValue(N, 0);
5163   EVT VT = V.getValueType();
5164   unsigned Opcode = V.getOpcode();
5165
5166   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5167   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5168     int Elt = SV->getMaskElt(Index);
5169
5170     if (Elt < 0)
5171       return DAG.getUNDEF(VT.getVectorElementType());
5172
5173     unsigned NumElems = VT.getVectorNumElements();
5174     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5175                                          : SV->getOperand(1);
5176     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5177   }
5178
5179   // Recurse into target specific vector shuffles to find scalars.
5180   if (isTargetShuffle(Opcode)) {
5181     MVT ShufVT = V.getSimpleValueType();
5182     unsigned NumElems = ShufVT.getVectorNumElements();
5183     SmallVector<int, 16> ShuffleMask;
5184     bool IsUnary;
5185
5186     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5187       return SDValue();
5188
5189     int Elt = ShuffleMask[Index];
5190     if (Elt < 0)
5191       return DAG.getUNDEF(ShufVT.getVectorElementType());
5192
5193     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5194                                          : N->getOperand(1);
5195     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5196                                Depth+1);
5197   }
5198
5199   // Actual nodes that may contain scalar elements
5200   if (Opcode == ISD::BITCAST) {
5201     V = V.getOperand(0);
5202     EVT SrcVT = V.getValueType();
5203     unsigned NumElems = VT.getVectorNumElements();
5204
5205     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5206       return SDValue();
5207   }
5208
5209   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5210     return (Index == 0) ? V.getOperand(0)
5211                         : DAG.getUNDEF(VT.getVectorElementType());
5212
5213   if (V.getOpcode() == ISD::BUILD_VECTOR)
5214     return V.getOperand(Index);
5215
5216   return SDValue();
5217 }
5218
5219 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5220 /// shuffle operation which come from a consecutively from a zero. The
5221 /// search can start in two different directions, from left or right.
5222 /// We count undefs as zeros until PreferredNum is reached.
5223 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5224                                          unsigned NumElems, bool ZerosFromLeft,
5225                                          SelectionDAG &DAG,
5226                                          unsigned PreferredNum = -1U) {
5227   unsigned NumZeros = 0;
5228   for (unsigned i = 0; i != NumElems; ++i) {
5229     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5230     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5231     if (!Elt.getNode())
5232       break;
5233
5234     if (X86::isZeroNode(Elt))
5235       ++NumZeros;
5236     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5237       NumZeros = std::min(NumZeros + 1, PreferredNum);
5238     else
5239       break;
5240   }
5241
5242   return NumZeros;
5243 }
5244
5245 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5246 /// correspond consecutively to elements from one of the vector operands,
5247 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5248 static
5249 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5250                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5251                               unsigned NumElems, unsigned &OpNum) {
5252   bool SeenV1 = false;
5253   bool SeenV2 = false;
5254
5255   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5256     int Idx = SVOp->getMaskElt(i);
5257     // Ignore undef indicies
5258     if (Idx < 0)
5259       continue;
5260
5261     if (Idx < (int)NumElems)
5262       SeenV1 = true;
5263     else
5264       SeenV2 = true;
5265
5266     // Only accept consecutive elements from the same vector
5267     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5268       return false;
5269   }
5270
5271   OpNum = SeenV1 ? 0 : 1;
5272   return true;
5273 }
5274
5275 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5276 /// logical left shift of a vector.
5277 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5278                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5279   unsigned NumElems =
5280     SVOp->getSimpleValueType(0).getVectorNumElements();
5281   unsigned NumZeros = getNumOfConsecutiveZeros(
5282       SVOp, NumElems, false /* check zeros from right */, DAG,
5283       SVOp->getMaskElt(0));
5284   unsigned OpSrc;
5285
5286   if (!NumZeros)
5287     return false;
5288
5289   // Considering the elements in the mask that are not consecutive zeros,
5290   // check if they consecutively come from only one of the source vectors.
5291   //
5292   //               V1 = {X, A, B, C}     0
5293   //                         \  \  \    /
5294   //   vector_shuffle V1, V2 <1, 2, 3, X>
5295   //
5296   if (!isShuffleMaskConsecutive(SVOp,
5297             0,                   // Mask Start Index
5298             NumElems-NumZeros,   // Mask End Index(exclusive)
5299             NumZeros,            // Where to start looking in the src vector
5300             NumElems,            // Number of elements in vector
5301             OpSrc))              // Which source operand ?
5302     return false;
5303
5304   isLeft = false;
5305   ShAmt = NumZeros;
5306   ShVal = SVOp->getOperand(OpSrc);
5307   return true;
5308 }
5309
5310 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5311 /// logical left shift of a vector.
5312 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5313                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5314   unsigned NumElems =
5315     SVOp->getSimpleValueType(0).getVectorNumElements();
5316   unsigned NumZeros = getNumOfConsecutiveZeros(
5317       SVOp, NumElems, true /* check zeros from left */, DAG,
5318       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5319   unsigned OpSrc;
5320
5321   if (!NumZeros)
5322     return false;
5323
5324   // Considering the elements in the mask that are not consecutive zeros,
5325   // check if they consecutively come from only one of the source vectors.
5326   //
5327   //                           0    { A, B, X, X } = V2
5328   //                          / \    /  /
5329   //   vector_shuffle V1, V2 <X, X, 4, 5>
5330   //
5331   if (!isShuffleMaskConsecutive(SVOp,
5332             NumZeros,     // Mask Start Index
5333             NumElems,     // Mask End Index(exclusive)
5334             0,            // Where to start looking in the src vector
5335             NumElems,     // Number of elements in vector
5336             OpSrc))       // Which source operand ?
5337     return false;
5338
5339   isLeft = true;
5340   ShAmt = NumZeros;
5341   ShVal = SVOp->getOperand(OpSrc);
5342   return true;
5343 }
5344
5345 /// isVectorShift - Returns true if the shuffle can be implemented as a
5346 /// logical left or right shift of a vector.
5347 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5348                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5349   // Although the logic below support any bitwidth size, there are no
5350   // shift instructions which handle more than 128-bit vectors.
5351   if (!SVOp->getSimpleValueType(0).is128BitVector())
5352     return false;
5353
5354   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5355       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5356     return true;
5357
5358   return false;
5359 }
5360
5361 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5362 ///
5363 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5364                                        unsigned NumNonZero, unsigned NumZero,
5365                                        SelectionDAG &DAG,
5366                                        const X86Subtarget* Subtarget,
5367                                        const TargetLowering &TLI) {
5368   if (NumNonZero > 8)
5369     return SDValue();
5370
5371   SDLoc dl(Op);
5372   SDValue V;
5373   bool First = true;
5374   for (unsigned i = 0; i < 16; ++i) {
5375     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5376     if (ThisIsNonZero && First) {
5377       if (NumZero)
5378         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5379       else
5380         V = DAG.getUNDEF(MVT::v8i16);
5381       First = false;
5382     }
5383
5384     if ((i & 1) != 0) {
5385       SDValue ThisElt, LastElt;
5386       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5387       if (LastIsNonZero) {
5388         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5389                               MVT::i16, Op.getOperand(i-1));
5390       }
5391       if (ThisIsNonZero) {
5392         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5393         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5394                               ThisElt, DAG.getConstant(8, MVT::i8));
5395         if (LastIsNonZero)
5396           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5397       } else
5398         ThisElt = LastElt;
5399
5400       if (ThisElt.getNode())
5401         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5402                         DAG.getIntPtrConstant(i/2));
5403     }
5404   }
5405
5406   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5407 }
5408
5409 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5410 ///
5411 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5412                                      unsigned NumNonZero, unsigned NumZero,
5413                                      SelectionDAG &DAG,
5414                                      const X86Subtarget* Subtarget,
5415                                      const TargetLowering &TLI) {
5416   if (NumNonZero > 4)
5417     return SDValue();
5418
5419   SDLoc dl(Op);
5420   SDValue V;
5421   bool First = true;
5422   for (unsigned i = 0; i < 8; ++i) {
5423     bool isNonZero = (NonZeros & (1 << i)) != 0;
5424     if (isNonZero) {
5425       if (First) {
5426         if (NumZero)
5427           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5428         else
5429           V = DAG.getUNDEF(MVT::v8i16);
5430         First = false;
5431       }
5432       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5433                       MVT::v8i16, V, Op.getOperand(i),
5434                       DAG.getIntPtrConstant(i));
5435     }
5436   }
5437
5438   return V;
5439 }
5440
5441 /// LowerBuildVectorv4x32 - Custom lower build_vector of v4i32 or v4f32.
5442 static SDValue LowerBuildVectorv4x32(SDValue Op, unsigned NumElems,
5443                                      unsigned NonZeros, unsigned NumNonZero,
5444                                      unsigned NumZero, SelectionDAG &DAG,
5445                                      const X86Subtarget *Subtarget,
5446                                      const TargetLowering &TLI) {
5447   // We know there's at least one non-zero element
5448   unsigned FirstNonZeroIdx = 0;
5449   SDValue FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5450   while (FirstNonZero.getOpcode() == ISD::UNDEF ||
5451          X86::isZeroNode(FirstNonZero)) {
5452     ++FirstNonZeroIdx;
5453     FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5454   }
5455
5456   if (FirstNonZero.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5457       !isa<ConstantSDNode>(FirstNonZero.getOperand(1)))
5458     return SDValue();
5459
5460   SDValue V = FirstNonZero.getOperand(0);
5461   MVT VVT = V.getSimpleValueType();
5462   if (VVT != MVT::v4f32 && VVT != MVT::v4i32)
5463     return SDValue();
5464
5465   unsigned FirstNonZeroDst =
5466       cast<ConstantSDNode>(FirstNonZero.getOperand(1))->getZExtValue();
5467   unsigned CorrectIdx = FirstNonZeroDst == FirstNonZeroIdx;
5468   unsigned IncorrectIdx = CorrectIdx ? -1U : FirstNonZeroIdx;
5469   unsigned IncorrectDst = CorrectIdx ? -1U : FirstNonZeroDst;
5470
5471   for (unsigned Idx = FirstNonZeroIdx + 1; Idx < NumElems; ++Idx) {
5472     SDValue Elem = Op.getOperand(Idx);
5473     if (Elem.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elem))
5474       continue;
5475
5476     // TODO: What else can be here? Deal with it.
5477     if (Elem.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5478       return SDValue();
5479
5480     // TODO: Some optimizations are still possible here
5481     // ex: Getting one element from a vector, and the rest from another.
5482     if (Elem.getOperand(0) != V)
5483       return SDValue();
5484
5485     unsigned Dst = cast<ConstantSDNode>(Elem.getOperand(1))->getZExtValue();
5486     if (Dst == Idx)
5487       ++CorrectIdx;
5488     else if (IncorrectIdx == -1U) {
5489       IncorrectIdx = Idx;
5490       IncorrectDst = Dst;
5491     } else
5492       // There was already one element with an incorrect index.
5493       // We can't optimize this case to an insertps.
5494       return SDValue();
5495   }
5496
5497   if (NumNonZero == CorrectIdx || NumNonZero == CorrectIdx + 1) {
5498     SDLoc dl(Op);
5499     EVT VT = Op.getSimpleValueType();
5500     unsigned ElementMoveMask = 0;
5501     if (IncorrectIdx == -1U)
5502       ElementMoveMask = FirstNonZeroIdx << 6 | FirstNonZeroIdx << 4;
5503     else
5504       ElementMoveMask = IncorrectDst << 6 | IncorrectIdx << 4;
5505
5506     SDValue InsertpsMask =
5507         DAG.getIntPtrConstant(ElementMoveMask | (~NonZeros & 0xf));
5508     return DAG.getNode(X86ISD::INSERTPS, dl, VT, V, V, InsertpsMask);
5509   }
5510
5511   return SDValue();
5512 }
5513
5514 /// getVShift - Return a vector logical shift node.
5515 ///
5516 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5517                          unsigned NumBits, SelectionDAG &DAG,
5518                          const TargetLowering &TLI, SDLoc dl) {
5519   assert(VT.is128BitVector() && "Unknown type for VShift");
5520   EVT ShVT = MVT::v2i64;
5521   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5522   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5523   return DAG.getNode(ISD::BITCAST, dl, VT,
5524                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5525                              DAG.getConstant(NumBits,
5526                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5527 }
5528
5529 static SDValue
5530 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5531
5532   // Check if the scalar load can be widened into a vector load. And if
5533   // the address is "base + cst" see if the cst can be "absorbed" into
5534   // the shuffle mask.
5535   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5536     SDValue Ptr = LD->getBasePtr();
5537     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5538       return SDValue();
5539     EVT PVT = LD->getValueType(0);
5540     if (PVT != MVT::i32 && PVT != MVT::f32)
5541       return SDValue();
5542
5543     int FI = -1;
5544     int64_t Offset = 0;
5545     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5546       FI = FINode->getIndex();
5547       Offset = 0;
5548     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5549                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5550       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5551       Offset = Ptr.getConstantOperandVal(1);
5552       Ptr = Ptr.getOperand(0);
5553     } else {
5554       return SDValue();
5555     }
5556
5557     // FIXME: 256-bit vector instructions don't require a strict alignment,
5558     // improve this code to support it better.
5559     unsigned RequiredAlign = VT.getSizeInBits()/8;
5560     SDValue Chain = LD->getChain();
5561     // Make sure the stack object alignment is at least 16 or 32.
5562     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5563     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5564       if (MFI->isFixedObjectIndex(FI)) {
5565         // Can't change the alignment. FIXME: It's possible to compute
5566         // the exact stack offset and reference FI + adjust offset instead.
5567         // If someone *really* cares about this. That's the way to implement it.
5568         return SDValue();
5569       } else {
5570         MFI->setObjectAlignment(FI, RequiredAlign);
5571       }
5572     }
5573
5574     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5575     // Ptr + (Offset & ~15).
5576     if (Offset < 0)
5577       return SDValue();
5578     if ((Offset % RequiredAlign) & 3)
5579       return SDValue();
5580     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5581     if (StartOffset)
5582       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5583                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5584
5585     int EltNo = (Offset - StartOffset) >> 2;
5586     unsigned NumElems = VT.getVectorNumElements();
5587
5588     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5589     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5590                              LD->getPointerInfo().getWithOffset(StartOffset),
5591                              false, false, false, 0);
5592
5593     SmallVector<int, 8> Mask;
5594     for (unsigned i = 0; i != NumElems; ++i)
5595       Mask.push_back(EltNo);
5596
5597     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5598   }
5599
5600   return SDValue();
5601 }
5602
5603 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5604 /// vector of type 'VT', see if the elements can be replaced by a single large
5605 /// load which has the same value as a build_vector whose operands are 'elts'.
5606 ///
5607 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5608 ///
5609 /// FIXME: we'd also like to handle the case where the last elements are zero
5610 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5611 /// There's even a handy isZeroNode for that purpose.
5612 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5613                                         SDLoc &DL, SelectionDAG &DAG,
5614                                         bool isAfterLegalize) {
5615   EVT EltVT = VT.getVectorElementType();
5616   unsigned NumElems = Elts.size();
5617
5618   LoadSDNode *LDBase = nullptr;
5619   unsigned LastLoadedElt = -1U;
5620
5621   // For each element in the initializer, see if we've found a load or an undef.
5622   // If we don't find an initial load element, or later load elements are
5623   // non-consecutive, bail out.
5624   for (unsigned i = 0; i < NumElems; ++i) {
5625     SDValue Elt = Elts[i];
5626
5627     if (!Elt.getNode() ||
5628         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5629       return SDValue();
5630     if (!LDBase) {
5631       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5632         return SDValue();
5633       LDBase = cast<LoadSDNode>(Elt.getNode());
5634       LastLoadedElt = i;
5635       continue;
5636     }
5637     if (Elt.getOpcode() == ISD::UNDEF)
5638       continue;
5639
5640     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5641     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5642       return SDValue();
5643     LastLoadedElt = i;
5644   }
5645
5646   // If we have found an entire vector of loads and undefs, then return a large
5647   // load of the entire vector width starting at the base pointer.  If we found
5648   // consecutive loads for the low half, generate a vzext_load node.
5649   if (LastLoadedElt == NumElems - 1) {
5650
5651     if (isAfterLegalize &&
5652         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5653       return SDValue();
5654
5655     SDValue NewLd = SDValue();
5656
5657     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5658       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5659                           LDBase->getPointerInfo(),
5660                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5661                           LDBase->isInvariant(), 0);
5662     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5663                         LDBase->getPointerInfo(),
5664                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5665                         LDBase->isInvariant(), LDBase->getAlignment());
5666
5667     if (LDBase->hasAnyUseOfValue(1)) {
5668       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5669                                      SDValue(LDBase, 1),
5670                                      SDValue(NewLd.getNode(), 1));
5671       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5672       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5673                              SDValue(NewLd.getNode(), 1));
5674     }
5675
5676     return NewLd;
5677   }
5678   if (NumElems == 4 && LastLoadedElt == 1 &&
5679       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5680     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5681     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5682     SDValue ResNode =
5683         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
5684                                 LDBase->getPointerInfo(),
5685                                 LDBase->getAlignment(),
5686                                 false/*isVolatile*/, true/*ReadMem*/,
5687                                 false/*WriteMem*/);
5688
5689     // Make sure the newly-created LOAD is in the same position as LDBase in
5690     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5691     // update uses of LDBase's output chain to use the TokenFactor.
5692     if (LDBase->hasAnyUseOfValue(1)) {
5693       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5694                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5695       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5696       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5697                              SDValue(ResNode.getNode(), 1));
5698     }
5699
5700     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5701   }
5702   return SDValue();
5703 }
5704
5705 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5706 /// to generate a splat value for the following cases:
5707 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5708 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5709 /// a scalar load, or a constant.
5710 /// The VBROADCAST node is returned when a pattern is found,
5711 /// or SDValue() otherwise.
5712 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5713                                     SelectionDAG &DAG) {
5714   if (!Subtarget->hasFp256())
5715     return SDValue();
5716
5717   MVT VT = Op.getSimpleValueType();
5718   SDLoc dl(Op);
5719
5720   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5721          "Unsupported vector type for broadcast.");
5722
5723   SDValue Ld;
5724   bool ConstSplatVal;
5725
5726   switch (Op.getOpcode()) {
5727     default:
5728       // Unknown pattern found.
5729       return SDValue();
5730
5731     case ISD::BUILD_VECTOR: {
5732       // The BUILD_VECTOR node must be a splat.
5733       if (!isSplatVector(Op.getNode()))
5734         return SDValue();
5735
5736       Ld = Op.getOperand(0);
5737       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5738                      Ld.getOpcode() == ISD::ConstantFP);
5739
5740       // The suspected load node has several users. Make sure that all
5741       // of its users are from the BUILD_VECTOR node.
5742       // Constants may have multiple users.
5743       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5744         return SDValue();
5745       break;
5746     }
5747
5748     case ISD::VECTOR_SHUFFLE: {
5749       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5750
5751       // Shuffles must have a splat mask where the first element is
5752       // broadcasted.
5753       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5754         return SDValue();
5755
5756       SDValue Sc = Op.getOperand(0);
5757       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5758           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5759
5760         if (!Subtarget->hasInt256())
5761           return SDValue();
5762
5763         // Use the register form of the broadcast instruction available on AVX2.
5764         if (VT.getSizeInBits() >= 256)
5765           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5766         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5767       }
5768
5769       Ld = Sc.getOperand(0);
5770       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5771                        Ld.getOpcode() == ISD::ConstantFP);
5772
5773       // The scalar_to_vector node and the suspected
5774       // load node must have exactly one user.
5775       // Constants may have multiple users.
5776
5777       // AVX-512 has register version of the broadcast
5778       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5779         Ld.getValueType().getSizeInBits() >= 32;
5780       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5781           !hasRegVer))
5782         return SDValue();
5783       break;
5784     }
5785   }
5786
5787   bool IsGE256 = (VT.getSizeInBits() >= 256);
5788
5789   // Handle the broadcasting a single constant scalar from the constant pool
5790   // into a vector. On Sandybridge it is still better to load a constant vector
5791   // from the constant pool and not to broadcast it from a scalar.
5792   if (ConstSplatVal && Subtarget->hasInt256()) {
5793     EVT CVT = Ld.getValueType();
5794     assert(!CVT.isVector() && "Must not broadcast a vector type");
5795     unsigned ScalarSize = CVT.getSizeInBits();
5796
5797     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5798       const Constant *C = nullptr;
5799       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5800         C = CI->getConstantIntValue();
5801       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5802         C = CF->getConstantFPValue();
5803
5804       assert(C && "Invalid constant type");
5805
5806       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5807       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5808       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5809       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5810                        MachinePointerInfo::getConstantPool(),
5811                        false, false, false, Alignment);
5812
5813       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5814     }
5815   }
5816
5817   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5818   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5819
5820   // Handle AVX2 in-register broadcasts.
5821   if (!IsLoad && Subtarget->hasInt256() &&
5822       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5823     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5824
5825   // The scalar source must be a normal load.
5826   if (!IsLoad)
5827     return SDValue();
5828
5829   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5830     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5831
5832   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5833   // double since there is no vbroadcastsd xmm
5834   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5835     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5836       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5837   }
5838
5839   // Unsupported broadcast.
5840   return SDValue();
5841 }
5842
5843 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5844 /// underlying vector and index.
5845 ///
5846 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5847 /// index.
5848 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5849                                          SDValue ExtIdx) {
5850   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5851   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5852     return Idx;
5853
5854   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5855   // lowered this:
5856   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
5857   // to:
5858   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
5859   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
5860   //                           undef)
5861   //                       Constant<0>)
5862   // In this case the vector is the extract_subvector expression and the index
5863   // is 2, as specified by the shuffle.
5864   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
5865   SDValue ShuffleVec = SVOp->getOperand(0);
5866   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
5867   assert(ShuffleVecVT.getVectorElementType() ==
5868          ExtractedFromVec.getSimpleValueType().getVectorElementType());
5869
5870   int ShuffleIdx = SVOp->getMaskElt(Idx);
5871   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
5872     ExtractedFromVec = ShuffleVec;
5873     return ShuffleIdx;
5874   }
5875   return Idx;
5876 }
5877
5878 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5879   MVT VT = Op.getSimpleValueType();
5880
5881   // Skip if insert_vec_elt is not supported.
5882   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5883   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5884     return SDValue();
5885
5886   SDLoc DL(Op);
5887   unsigned NumElems = Op.getNumOperands();
5888
5889   SDValue VecIn1;
5890   SDValue VecIn2;
5891   SmallVector<unsigned, 4> InsertIndices;
5892   SmallVector<int, 8> Mask(NumElems, -1);
5893
5894   for (unsigned i = 0; i != NumElems; ++i) {
5895     unsigned Opc = Op.getOperand(i).getOpcode();
5896
5897     if (Opc == ISD::UNDEF)
5898       continue;
5899
5900     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5901       // Quit if more than 1 elements need inserting.
5902       if (InsertIndices.size() > 1)
5903         return SDValue();
5904
5905       InsertIndices.push_back(i);
5906       continue;
5907     }
5908
5909     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5910     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5911     // Quit if non-constant index.
5912     if (!isa<ConstantSDNode>(ExtIdx))
5913       return SDValue();
5914     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
5915
5916     // Quit if extracted from vector of different type.
5917     if (ExtractedFromVec.getValueType() != VT)
5918       return SDValue();
5919
5920     if (!VecIn1.getNode())
5921       VecIn1 = ExtractedFromVec;
5922     else if (VecIn1 != ExtractedFromVec) {
5923       if (!VecIn2.getNode())
5924         VecIn2 = ExtractedFromVec;
5925       else if (VecIn2 != ExtractedFromVec)
5926         // Quit if more than 2 vectors to shuffle
5927         return SDValue();
5928     }
5929
5930     if (ExtractedFromVec == VecIn1)
5931       Mask[i] = Idx;
5932     else if (ExtractedFromVec == VecIn2)
5933       Mask[i] = Idx + NumElems;
5934   }
5935
5936   if (!VecIn1.getNode())
5937     return SDValue();
5938
5939   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5940   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5941   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5942     unsigned Idx = InsertIndices[i];
5943     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5944                      DAG.getIntPtrConstant(Idx));
5945   }
5946
5947   return NV;
5948 }
5949
5950 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5951 SDValue
5952 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5953
5954   MVT VT = Op.getSimpleValueType();
5955   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5956          "Unexpected type in LowerBUILD_VECTORvXi1!");
5957
5958   SDLoc dl(Op);
5959   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5960     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5961     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5962     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5963   }
5964
5965   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5966     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5967     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5968     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5969   }
5970
5971   bool AllContants = true;
5972   uint64_t Immediate = 0;
5973   int NonConstIdx = -1;
5974   bool IsSplat = true;
5975   unsigned NumNonConsts = 0;
5976   unsigned NumConsts = 0;
5977   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5978     SDValue In = Op.getOperand(idx);
5979     if (In.getOpcode() == ISD::UNDEF)
5980       continue;
5981     if (!isa<ConstantSDNode>(In)) {
5982       AllContants = false;
5983       NonConstIdx = idx;
5984       NumNonConsts++;
5985     }
5986     else {
5987       NumConsts++;
5988       if (cast<ConstantSDNode>(In)->getZExtValue())
5989       Immediate |= (1ULL << idx);
5990     }
5991     if (In != Op.getOperand(0))
5992       IsSplat = false;
5993   }
5994
5995   if (AllContants) {
5996     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5997       DAG.getConstant(Immediate, MVT::i16));
5998     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5999                        DAG.getIntPtrConstant(0));
6000   }
6001
6002   if (NumNonConsts == 1 && NonConstIdx != 0) {
6003     SDValue DstVec;
6004     if (NumConsts) {
6005       SDValue VecAsImm = DAG.getConstant(Immediate,
6006                                          MVT::getIntegerVT(VT.getSizeInBits()));
6007       DstVec = DAG.getNode(ISD::BITCAST, dl, VT, VecAsImm);
6008     }
6009     else 
6010       DstVec = DAG.getUNDEF(VT);
6011     return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
6012                        Op.getOperand(NonConstIdx),
6013                        DAG.getIntPtrConstant(NonConstIdx));
6014   }
6015   if (!IsSplat && (NonConstIdx != 0))
6016     llvm_unreachable("Unsupported BUILD_VECTOR operation");
6017   MVT SelectVT = (VT == MVT::v16i1)? MVT::i16 : MVT::i8;
6018   SDValue Select;
6019   if (IsSplat)
6020     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6021                           DAG.getConstant(-1, SelectVT),
6022                           DAG.getConstant(0, SelectVT));
6023   else
6024     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6025                          DAG.getConstant((Immediate | 1), SelectVT),
6026                          DAG.getConstant(Immediate, SelectVT));
6027   return DAG.getNode(ISD::BITCAST, dl, VT, Select);
6028 }
6029
6030 SDValue
6031 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6032   SDLoc dl(Op);
6033
6034   MVT VT = Op.getSimpleValueType();
6035   MVT ExtVT = VT.getVectorElementType();
6036   unsigned NumElems = Op.getNumOperands();
6037
6038   // Generate vectors for predicate vectors.
6039   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
6040     return LowerBUILD_VECTORvXi1(Op, DAG);
6041
6042   // Vectors containing all zeros can be matched by pxor and xorps later
6043   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6044     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
6045     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
6046     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
6047       return Op;
6048
6049     return getZeroVector(VT, Subtarget, DAG, dl);
6050   }
6051
6052   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
6053   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
6054   // vpcmpeqd on 256-bit vectors.
6055   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
6056     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
6057       return Op;
6058
6059     if (!VT.is512BitVector())
6060       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
6061   }
6062
6063   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
6064   if (Broadcast.getNode())
6065     return Broadcast;
6066
6067   unsigned EVTBits = ExtVT.getSizeInBits();
6068
6069   unsigned NumZero  = 0;
6070   unsigned NumNonZero = 0;
6071   unsigned NonZeros = 0;
6072   bool IsAllConstants = true;
6073   SmallSet<SDValue, 8> Values;
6074   for (unsigned i = 0; i < NumElems; ++i) {
6075     SDValue Elt = Op.getOperand(i);
6076     if (Elt.getOpcode() == ISD::UNDEF)
6077       continue;
6078     Values.insert(Elt);
6079     if (Elt.getOpcode() != ISD::Constant &&
6080         Elt.getOpcode() != ISD::ConstantFP)
6081       IsAllConstants = false;
6082     if (X86::isZeroNode(Elt))
6083       NumZero++;
6084     else {
6085       NonZeros |= (1 << i);
6086       NumNonZero++;
6087     }
6088   }
6089
6090   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
6091   if (NumNonZero == 0)
6092     return DAG.getUNDEF(VT);
6093
6094   // Special case for single non-zero, non-undef, element.
6095   if (NumNonZero == 1) {
6096     unsigned Idx = countTrailingZeros(NonZeros);
6097     SDValue Item = Op.getOperand(Idx);
6098
6099     // If this is an insertion of an i64 value on x86-32, and if the top bits of
6100     // the value are obviously zero, truncate the value to i32 and do the
6101     // insertion that way.  Only do this if the value is non-constant or if the
6102     // value is a constant being inserted into element 0.  It is cheaper to do
6103     // a constant pool load than it is to do a movd + shuffle.
6104     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
6105         (!IsAllConstants || Idx == 0)) {
6106       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
6107         // Handle SSE only.
6108         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6109         EVT VecVT = MVT::v4i32;
6110         unsigned VecElts = 4;
6111
6112         // Truncate the value (which may itself be a constant) to i32, and
6113         // convert it to a vector with movd (S2V+shuffle to zero extend).
6114         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
6115         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
6116         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6117
6118         // Now we have our 32-bit value zero extended in the low element of
6119         // a vector.  If Idx != 0, swizzle it into place.
6120         if (Idx != 0) {
6121           SmallVector<int, 4> Mask;
6122           Mask.push_back(Idx);
6123           for (unsigned i = 1; i != VecElts; ++i)
6124             Mask.push_back(i);
6125           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
6126                                       &Mask[0]);
6127         }
6128         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6129       }
6130     }
6131
6132     // If we have a constant or non-constant insertion into the low element of
6133     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
6134     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
6135     // depending on what the source datatype is.
6136     if (Idx == 0) {
6137       if (NumZero == 0)
6138         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6139
6140       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
6141           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
6142         if (VT.is256BitVector() || VT.is512BitVector()) {
6143           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
6144           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
6145                              Item, DAG.getIntPtrConstant(0));
6146         }
6147         assert(VT.is128BitVector() && "Expected an SSE value type!");
6148         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6149         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6150         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6151       }
6152
6153       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6154         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6155         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6156         if (VT.is256BitVector()) {
6157           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6158           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6159         } else {
6160           assert(VT.is128BitVector() && "Expected an SSE value type!");
6161           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6162         }
6163         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6164       }
6165     }
6166
6167     // Is it a vector logical left shift?
6168     if (NumElems == 2 && Idx == 1 &&
6169         X86::isZeroNode(Op.getOperand(0)) &&
6170         !X86::isZeroNode(Op.getOperand(1))) {
6171       unsigned NumBits = VT.getSizeInBits();
6172       return getVShift(true, VT,
6173                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6174                                    VT, Op.getOperand(1)),
6175                        NumBits/2, DAG, *this, dl);
6176     }
6177
6178     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6179       return SDValue();
6180
6181     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6182     // is a non-constant being inserted into an element other than the low one,
6183     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6184     // movd/movss) to move this into the low element, then shuffle it into
6185     // place.
6186     if (EVTBits == 32) {
6187       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6188
6189       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6190       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6191       SmallVector<int, 8> MaskVec;
6192       for (unsigned i = 0; i != NumElems; ++i)
6193         MaskVec.push_back(i == Idx ? 0 : 1);
6194       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6195     }
6196   }
6197
6198   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6199   if (Values.size() == 1) {
6200     if (EVTBits == 32) {
6201       // Instead of a shuffle like this:
6202       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6203       // Check if it's possible to issue this instead.
6204       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6205       unsigned Idx = countTrailingZeros(NonZeros);
6206       SDValue Item = Op.getOperand(Idx);
6207       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6208         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6209     }
6210     return SDValue();
6211   }
6212
6213   // A vector full of immediates; various special cases are already
6214   // handled, so this is best done with a single constant-pool load.
6215   if (IsAllConstants)
6216     return SDValue();
6217
6218   // For AVX-length vectors, build the individual 128-bit pieces and use
6219   // shuffles to put them in place.
6220   if (VT.is256BitVector() || VT.is512BitVector()) {
6221     SmallVector<SDValue, 64> V;
6222     for (unsigned i = 0; i != NumElems; ++i)
6223       V.push_back(Op.getOperand(i));
6224
6225     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6226
6227     // Build both the lower and upper subvector.
6228     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6229                                 makeArrayRef(&V[0], NumElems/2));
6230     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6231                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
6232
6233     // Recreate the wider vector with the lower and upper part.
6234     if (VT.is256BitVector())
6235       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6236     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6237   }
6238
6239   // Let legalizer expand 2-wide build_vectors.
6240   if (EVTBits == 64) {
6241     if (NumNonZero == 1) {
6242       // One half is zero or undef.
6243       unsigned Idx = countTrailingZeros(NonZeros);
6244       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6245                                  Op.getOperand(Idx));
6246       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6247     }
6248     return SDValue();
6249   }
6250
6251   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6252   if (EVTBits == 8 && NumElems == 16) {
6253     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6254                                         Subtarget, *this);
6255     if (V.getNode()) return V;
6256   }
6257
6258   if (EVTBits == 16 && NumElems == 8) {
6259     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6260                                       Subtarget, *this);
6261     if (V.getNode()) return V;
6262   }
6263
6264   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
6265   if (EVTBits == 32 && NumElems == 4) {
6266     SDValue V = LowerBuildVectorv4x32(Op, NumElems, NonZeros, NumNonZero,
6267                                       NumZero, DAG, Subtarget, *this);
6268     if (V.getNode())
6269       return V;
6270   }
6271
6272   // If element VT is == 32 bits, turn it into a number of shuffles.
6273   SmallVector<SDValue, 8> V(NumElems);
6274   if (NumElems == 4 && NumZero > 0) {
6275     for (unsigned i = 0; i < 4; ++i) {
6276       bool isZero = !(NonZeros & (1 << i));
6277       if (isZero)
6278         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6279       else
6280         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6281     }
6282
6283     for (unsigned i = 0; i < 2; ++i) {
6284       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6285         default: break;
6286         case 0:
6287           V[i] = V[i*2];  // Must be a zero vector.
6288           break;
6289         case 1:
6290           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6291           break;
6292         case 2:
6293           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6294           break;
6295         case 3:
6296           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6297           break;
6298       }
6299     }
6300
6301     bool Reverse1 = (NonZeros & 0x3) == 2;
6302     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6303     int MaskVec[] = {
6304       Reverse1 ? 1 : 0,
6305       Reverse1 ? 0 : 1,
6306       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6307       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6308     };
6309     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6310   }
6311
6312   if (Values.size() > 1 && VT.is128BitVector()) {
6313     // Check for a build vector of consecutive loads.
6314     for (unsigned i = 0; i < NumElems; ++i)
6315       V[i] = Op.getOperand(i);
6316
6317     // Check for elements which are consecutive loads.
6318     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6319     if (LD.getNode())
6320       return LD;
6321
6322     // Check for a build vector from mostly shuffle plus few inserting.
6323     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6324     if (Sh.getNode())
6325       return Sh;
6326
6327     // For SSE 4.1, use insertps to put the high elements into the low element.
6328     if (getSubtarget()->hasSSE41()) {
6329       SDValue Result;
6330       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6331         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6332       else
6333         Result = DAG.getUNDEF(VT);
6334
6335       for (unsigned i = 1; i < NumElems; ++i) {
6336         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6337         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6338                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6339       }
6340       return Result;
6341     }
6342
6343     // Otherwise, expand into a number of unpckl*, start by extending each of
6344     // our (non-undef) elements to the full vector width with the element in the
6345     // bottom slot of the vector (which generates no code for SSE).
6346     for (unsigned i = 0; i < NumElems; ++i) {
6347       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6348         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6349       else
6350         V[i] = DAG.getUNDEF(VT);
6351     }
6352
6353     // Next, we iteratively mix elements, e.g. for v4f32:
6354     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6355     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6356     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6357     unsigned EltStride = NumElems >> 1;
6358     while (EltStride != 0) {
6359       for (unsigned i = 0; i < EltStride; ++i) {
6360         // If V[i+EltStride] is undef and this is the first round of mixing,
6361         // then it is safe to just drop this shuffle: V[i] is already in the
6362         // right place, the one element (since it's the first round) being
6363         // inserted as undef can be dropped.  This isn't safe for successive
6364         // rounds because they will permute elements within both vectors.
6365         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6366             EltStride == NumElems/2)
6367           continue;
6368
6369         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6370       }
6371       EltStride >>= 1;
6372     }
6373     return V[0];
6374   }
6375   return SDValue();
6376 }
6377
6378 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6379 // to create 256-bit vectors from two other 128-bit ones.
6380 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6381   SDLoc dl(Op);
6382   MVT ResVT = Op.getSimpleValueType();
6383
6384   assert((ResVT.is256BitVector() ||
6385           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6386
6387   SDValue V1 = Op.getOperand(0);
6388   SDValue V2 = Op.getOperand(1);
6389   unsigned NumElems = ResVT.getVectorNumElements();
6390   if(ResVT.is256BitVector())
6391     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6392
6393   if (Op.getNumOperands() == 4) {
6394     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6395                                 ResVT.getVectorNumElements()/2);
6396     SDValue V3 = Op.getOperand(2);
6397     SDValue V4 = Op.getOperand(3);
6398     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6399       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6400   }
6401   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6402 }
6403
6404 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6405   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6406   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6407          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6408           Op.getNumOperands() == 4)));
6409
6410   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6411   // from two other 128-bit ones.
6412
6413   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6414   return LowerAVXCONCAT_VECTORS(Op, DAG);
6415 }
6416
6417 // Try to lower a shuffle node into a simple blend instruction.
6418 static SDValue
6419 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6420                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6421   SDValue V1 = SVOp->getOperand(0);
6422   SDValue V2 = SVOp->getOperand(1);
6423   SDLoc dl(SVOp);
6424   MVT VT = SVOp->getSimpleValueType(0);
6425   MVT EltVT = VT.getVectorElementType();
6426   unsigned NumElems = VT.getVectorNumElements();
6427
6428   // There is no blend with immediate in AVX-512.
6429   if (VT.is512BitVector())
6430     return SDValue();
6431
6432   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6433     return SDValue();
6434   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6435     return SDValue();
6436
6437   // Check the mask for BLEND and build the value.
6438   unsigned MaskValue = 0;
6439   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6440   unsigned NumLanes = (NumElems-1)/8 + 1;
6441   unsigned NumElemsInLane = NumElems / NumLanes;
6442
6443   // Blend for v16i16 should be symetric for the both lanes.
6444   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6445
6446     int SndLaneEltIdx = (NumLanes == 2) ?
6447       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6448     int EltIdx = SVOp->getMaskElt(i);
6449
6450     if ((EltIdx < 0 || EltIdx == (int)i) &&
6451         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6452       continue;
6453
6454     if (((unsigned)EltIdx == (i + NumElems)) &&
6455         (SndLaneEltIdx < 0 ||
6456          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6457       MaskValue |= (1<<i);
6458     else
6459       return SDValue();
6460   }
6461
6462   // Convert i32 vectors to floating point if it is not AVX2.
6463   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6464   MVT BlendVT = VT;
6465   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6466     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6467                                NumElems);
6468     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6469     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6470   }
6471
6472   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6473                             DAG.getConstant(MaskValue, MVT::i32));
6474   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6475 }
6476
6477 /// In vector type \p VT, return true if the element at index \p InputIdx
6478 /// falls on a different 128-bit lane than \p OutputIdx.
6479 static bool ShuffleCrosses128bitLane(MVT VT, unsigned InputIdx,
6480                                      unsigned OutputIdx) {
6481   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
6482   return InputIdx * EltSize / 128 != OutputIdx * EltSize / 128;
6483 }
6484
6485 /// Generate a PSHUFB if possible.  Selects elements from \p V1 according to
6486 /// \p MaskVals.  MaskVals[OutputIdx] = InputIdx specifies that we want to
6487 /// shuffle the element at InputIdx in V1 to OutputIdx in the result.  If \p
6488 /// MaskVals refers to elements outside of \p V1 or is undef (-1), insert a
6489 /// zero.
6490 static SDValue getPSHUFB(ArrayRef<int> MaskVals, SDValue V1, SDLoc &dl,
6491                          SelectionDAG &DAG) {
6492   MVT VT = V1.getSimpleValueType();
6493   assert(VT.is128BitVector() || VT.is256BitVector());
6494
6495   MVT EltVT = VT.getVectorElementType();
6496   unsigned EltSizeInBytes = EltVT.getSizeInBits() / 8;
6497   unsigned NumElts = VT.getVectorNumElements();
6498
6499   SmallVector<SDValue, 32> PshufbMask;
6500   for (unsigned OutputIdx = 0; OutputIdx < NumElts; ++OutputIdx) {
6501     int InputIdx = MaskVals[OutputIdx];
6502     unsigned InputByteIdx;
6503
6504     if (InputIdx < 0 || NumElts <= (unsigned)InputIdx)
6505       InputByteIdx = 0x80;
6506     else {
6507       // Cross lane is not allowed.
6508       if (ShuffleCrosses128bitLane(VT, InputIdx, OutputIdx))
6509         return SDValue();
6510       InputByteIdx = InputIdx * EltSizeInBytes;
6511       // Index is an byte offset within the 128-bit lane.
6512       InputByteIdx &= 0xf;
6513     }
6514
6515     for (unsigned j = 0; j < EltSizeInBytes; ++j) {
6516       PshufbMask.push_back(DAG.getConstant(InputByteIdx, MVT::i8));
6517       if (InputByteIdx != 0x80)
6518         ++InputByteIdx;
6519     }
6520   }
6521
6522   MVT ShufVT = MVT::getVectorVT(MVT::i8, PshufbMask.size());
6523   if (ShufVT != VT)
6524     V1 = DAG.getNode(ISD::BITCAST, dl, ShufVT, V1);
6525   return DAG.getNode(X86ISD::PSHUFB, dl, ShufVT, V1,
6526                      DAG.getNode(ISD::BUILD_VECTOR, dl, ShufVT, PshufbMask));
6527 }
6528
6529 // v8i16 shuffles - Prefer shuffles in the following order:
6530 // 1. [all]   pshuflw, pshufhw, optional move
6531 // 2. [ssse3] 1 x pshufb
6532 // 3. [ssse3] 2 x pshufb + 1 x por
6533 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6534 static SDValue
6535 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6536                          SelectionDAG &DAG) {
6537   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6538   SDValue V1 = SVOp->getOperand(0);
6539   SDValue V2 = SVOp->getOperand(1);
6540   SDLoc dl(SVOp);
6541   SmallVector<int, 8> MaskVals;
6542
6543   // Determine if more than 1 of the words in each of the low and high quadwords
6544   // of the result come from the same quadword of one of the two inputs.  Undef
6545   // mask values count as coming from any quadword, for better codegen.
6546   //
6547   // Lo/HiQuad[i] = j indicates how many words from the ith quad of the input
6548   // feeds this quad.  For i, 0 and 1 refer to V1, 2 and 3 refer to V2.
6549   unsigned LoQuad[] = { 0, 0, 0, 0 };
6550   unsigned HiQuad[] = { 0, 0, 0, 0 };
6551   // Indices of quads used.
6552   std::bitset<4> InputQuads;
6553   for (unsigned i = 0; i < 8; ++i) {
6554     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6555     int EltIdx = SVOp->getMaskElt(i);
6556     MaskVals.push_back(EltIdx);
6557     if (EltIdx < 0) {
6558       ++Quad[0];
6559       ++Quad[1];
6560       ++Quad[2];
6561       ++Quad[3];
6562       continue;
6563     }
6564     ++Quad[EltIdx / 4];
6565     InputQuads.set(EltIdx / 4);
6566   }
6567
6568   int BestLoQuad = -1;
6569   unsigned MaxQuad = 1;
6570   for (unsigned i = 0; i < 4; ++i) {
6571     if (LoQuad[i] > MaxQuad) {
6572       BestLoQuad = i;
6573       MaxQuad = LoQuad[i];
6574     }
6575   }
6576
6577   int BestHiQuad = -1;
6578   MaxQuad = 1;
6579   for (unsigned i = 0; i < 4; ++i) {
6580     if (HiQuad[i] > MaxQuad) {
6581       BestHiQuad = i;
6582       MaxQuad = HiQuad[i];
6583     }
6584   }
6585
6586   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6587   // of the two input vectors, shuffle them into one input vector so only a
6588   // single pshufb instruction is necessary. If there are more than 2 input
6589   // quads, disable the next transformation since it does not help SSSE3.
6590   bool V1Used = InputQuads[0] || InputQuads[1];
6591   bool V2Used = InputQuads[2] || InputQuads[3];
6592   if (Subtarget->hasSSSE3()) {
6593     if (InputQuads.count() == 2 && V1Used && V2Used) {
6594       BestLoQuad = InputQuads[0] ? 0 : 1;
6595       BestHiQuad = InputQuads[2] ? 2 : 3;
6596     }
6597     if (InputQuads.count() > 2) {
6598       BestLoQuad = -1;
6599       BestHiQuad = -1;
6600     }
6601   }
6602
6603   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6604   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6605   // words from all 4 input quadwords.
6606   SDValue NewV;
6607   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6608     int MaskV[] = {
6609       BestLoQuad < 0 ? 0 : BestLoQuad,
6610       BestHiQuad < 0 ? 1 : BestHiQuad
6611     };
6612     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6613                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6614                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6615     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6616
6617     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6618     // source words for the shuffle, to aid later transformations.
6619     bool AllWordsInNewV = true;
6620     bool InOrder[2] = { true, true };
6621     for (unsigned i = 0; i != 8; ++i) {
6622       int idx = MaskVals[i];
6623       if (idx != (int)i)
6624         InOrder[i/4] = false;
6625       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6626         continue;
6627       AllWordsInNewV = false;
6628       break;
6629     }
6630
6631     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6632     if (AllWordsInNewV) {
6633       for (int i = 0; i != 8; ++i) {
6634         int idx = MaskVals[i];
6635         if (idx < 0)
6636           continue;
6637         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6638         if ((idx != i) && idx < 4)
6639           pshufhw = false;
6640         if ((idx != i) && idx > 3)
6641           pshuflw = false;
6642       }
6643       V1 = NewV;
6644       V2Used = false;
6645       BestLoQuad = 0;
6646       BestHiQuad = 1;
6647     }
6648
6649     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6650     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6651     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6652       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6653       unsigned TargetMask = 0;
6654       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6655                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6656       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6657       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6658                              getShufflePSHUFLWImmediate(SVOp);
6659       V1 = NewV.getOperand(0);
6660       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6661     }
6662   }
6663
6664   // Promote splats to a larger type which usually leads to more efficient code.
6665   // FIXME: Is this true if pshufb is available?
6666   if (SVOp->isSplat())
6667     return PromoteSplat(SVOp, DAG);
6668
6669   // If we have SSSE3, and all words of the result are from 1 input vector,
6670   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6671   // is present, fall back to case 4.
6672   if (Subtarget->hasSSSE3()) {
6673     SmallVector<SDValue,16> pshufbMask;
6674
6675     // If we have elements from both input vectors, set the high bit of the
6676     // shuffle mask element to zero out elements that come from V2 in the V1
6677     // mask, and elements that come from V1 in the V2 mask, so that the two
6678     // results can be OR'd together.
6679     bool TwoInputs = V1Used && V2Used;
6680     V1 = getPSHUFB(MaskVals, V1, dl, DAG);
6681     if (!TwoInputs)
6682       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6683
6684     // Calculate the shuffle mask for the second input, shuffle it, and
6685     // OR it with the first shuffled input.
6686     CommuteVectorShuffleMask(MaskVals, 8);
6687     V2 = getPSHUFB(MaskVals, V2, dl, DAG);
6688     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6689     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6690   }
6691
6692   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6693   // and update MaskVals with new element order.
6694   std::bitset<8> InOrder;
6695   if (BestLoQuad >= 0) {
6696     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6697     for (int i = 0; i != 4; ++i) {
6698       int idx = MaskVals[i];
6699       if (idx < 0) {
6700         InOrder.set(i);
6701       } else if ((idx / 4) == BestLoQuad) {
6702         MaskV[i] = idx & 3;
6703         InOrder.set(i);
6704       }
6705     }
6706     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6707                                 &MaskV[0]);
6708
6709     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6710       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6711       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6712                                   NewV.getOperand(0),
6713                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6714     }
6715   }
6716
6717   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6718   // and update MaskVals with the new element order.
6719   if (BestHiQuad >= 0) {
6720     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6721     for (unsigned i = 4; i != 8; ++i) {
6722       int idx = MaskVals[i];
6723       if (idx < 0) {
6724         InOrder.set(i);
6725       } else if ((idx / 4) == BestHiQuad) {
6726         MaskV[i] = (idx & 3) + 4;
6727         InOrder.set(i);
6728       }
6729     }
6730     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6731                                 &MaskV[0]);
6732
6733     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6734       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6735       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6736                                   NewV.getOperand(0),
6737                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6738     }
6739   }
6740
6741   // In case BestHi & BestLo were both -1, which means each quadword has a word
6742   // from each of the four input quadwords, calculate the InOrder bitvector now
6743   // before falling through to the insert/extract cleanup.
6744   if (BestLoQuad == -1 && BestHiQuad == -1) {
6745     NewV = V1;
6746     for (int i = 0; i != 8; ++i)
6747       if (MaskVals[i] < 0 || MaskVals[i] == i)
6748         InOrder.set(i);
6749   }
6750
6751   // The other elements are put in the right place using pextrw and pinsrw.
6752   for (unsigned i = 0; i != 8; ++i) {
6753     if (InOrder[i])
6754       continue;
6755     int EltIdx = MaskVals[i];
6756     if (EltIdx < 0)
6757       continue;
6758     SDValue ExtOp = (EltIdx < 8) ?
6759       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6760                   DAG.getIntPtrConstant(EltIdx)) :
6761       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6762                   DAG.getIntPtrConstant(EltIdx - 8));
6763     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6764                        DAG.getIntPtrConstant(i));
6765   }
6766   return NewV;
6767 }
6768
6769 /// \brief v16i16 shuffles
6770 ///
6771 /// FIXME: We only support generation of a single pshufb currently.  We can
6772 /// generalize the other applicable cases from LowerVECTOR_SHUFFLEv8i16 as
6773 /// well (e.g 2 x pshufb + 1 x por).
6774 static SDValue
6775 LowerVECTOR_SHUFFLEv16i16(SDValue Op, SelectionDAG &DAG) {
6776   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6777   SDValue V1 = SVOp->getOperand(0);
6778   SDValue V2 = SVOp->getOperand(1);
6779   SDLoc dl(SVOp);
6780
6781   if (V2.getOpcode() != ISD::UNDEF)
6782     return SDValue();
6783
6784   SmallVector<int, 16> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6785   return getPSHUFB(MaskVals, V1, dl, DAG);
6786 }
6787
6788 // v16i8 shuffles - Prefer shuffles in the following order:
6789 // 1. [ssse3] 1 x pshufb
6790 // 2. [ssse3] 2 x pshufb + 1 x por
6791 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6792 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6793                                         const X86Subtarget* Subtarget,
6794                                         SelectionDAG &DAG) {
6795   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6796   SDValue V1 = SVOp->getOperand(0);
6797   SDValue V2 = SVOp->getOperand(1);
6798   SDLoc dl(SVOp);
6799   ArrayRef<int> MaskVals = SVOp->getMask();
6800
6801   // Promote splats to a larger type which usually leads to more efficient code.
6802   // FIXME: Is this true if pshufb is available?
6803   if (SVOp->isSplat())
6804     return PromoteSplat(SVOp, DAG);
6805
6806   // If we have SSSE3, case 1 is generated when all result bytes come from
6807   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6808   // present, fall back to case 3.
6809
6810   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6811   if (Subtarget->hasSSSE3()) {
6812     SmallVector<SDValue,16> pshufbMask;
6813
6814     // If all result elements are from one input vector, then only translate
6815     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6816     //
6817     // Otherwise, we have elements from both input vectors, and must zero out
6818     // elements that come from V2 in the first mask, and V1 in the second mask
6819     // so that we can OR them together.
6820     for (unsigned i = 0; i != 16; ++i) {
6821       int EltIdx = MaskVals[i];
6822       if (EltIdx < 0 || EltIdx >= 16)
6823         EltIdx = 0x80;
6824       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6825     }
6826     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6827                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6828                                  MVT::v16i8, pshufbMask));
6829
6830     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6831     // the 2nd operand if it's undefined or zero.
6832     if (V2.getOpcode() == ISD::UNDEF ||
6833         ISD::isBuildVectorAllZeros(V2.getNode()))
6834       return V1;
6835
6836     // Calculate the shuffle mask for the second input, shuffle it, and
6837     // OR it with the first shuffled input.
6838     pshufbMask.clear();
6839     for (unsigned i = 0; i != 16; ++i) {
6840       int EltIdx = MaskVals[i];
6841       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6842       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6843     }
6844     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6845                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6846                                  MVT::v16i8, pshufbMask));
6847     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6848   }
6849
6850   // No SSSE3 - Calculate in place words and then fix all out of place words
6851   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6852   // the 16 different words that comprise the two doublequadword input vectors.
6853   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6854   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6855   SDValue NewV = V1;
6856   for (int i = 0; i != 8; ++i) {
6857     int Elt0 = MaskVals[i*2];
6858     int Elt1 = MaskVals[i*2+1];
6859
6860     // This word of the result is all undef, skip it.
6861     if (Elt0 < 0 && Elt1 < 0)
6862       continue;
6863
6864     // This word of the result is already in the correct place, skip it.
6865     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6866       continue;
6867
6868     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6869     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6870     SDValue InsElt;
6871
6872     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6873     // using a single extract together, load it and store it.
6874     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6875       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6876                            DAG.getIntPtrConstant(Elt1 / 2));
6877       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6878                         DAG.getIntPtrConstant(i));
6879       continue;
6880     }
6881
6882     // If Elt1 is defined, extract it from the appropriate source.  If the
6883     // source byte is not also odd, shift the extracted word left 8 bits
6884     // otherwise clear the bottom 8 bits if we need to do an or.
6885     if (Elt1 >= 0) {
6886       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6887                            DAG.getIntPtrConstant(Elt1 / 2));
6888       if ((Elt1 & 1) == 0)
6889         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6890                              DAG.getConstant(8,
6891                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6892       else if (Elt0 >= 0)
6893         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6894                              DAG.getConstant(0xFF00, MVT::i16));
6895     }
6896     // If Elt0 is defined, extract it from the appropriate source.  If the
6897     // source byte is not also even, shift the extracted word right 8 bits. If
6898     // Elt1 was also defined, OR the extracted values together before
6899     // inserting them in the result.
6900     if (Elt0 >= 0) {
6901       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6902                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6903       if ((Elt0 & 1) != 0)
6904         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6905                               DAG.getConstant(8,
6906                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6907       else if (Elt1 >= 0)
6908         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6909                              DAG.getConstant(0x00FF, MVT::i16));
6910       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6911                          : InsElt0;
6912     }
6913     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6914                        DAG.getIntPtrConstant(i));
6915   }
6916   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6917 }
6918
6919 // v32i8 shuffles - Translate to VPSHUFB if possible.
6920 static
6921 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6922                                  const X86Subtarget *Subtarget,
6923                                  SelectionDAG &DAG) {
6924   MVT VT = SVOp->getSimpleValueType(0);
6925   SDValue V1 = SVOp->getOperand(0);
6926   SDValue V2 = SVOp->getOperand(1);
6927   SDLoc dl(SVOp);
6928   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6929
6930   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6931   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6932   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6933
6934   // VPSHUFB may be generated if
6935   // (1) one of input vector is undefined or zeroinitializer.
6936   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6937   // And (2) the mask indexes don't cross the 128-bit lane.
6938   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6939       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6940     return SDValue();
6941
6942   if (V1IsAllZero && !V2IsAllZero) {
6943     CommuteVectorShuffleMask(MaskVals, 32);
6944     V1 = V2;
6945   }
6946   return getPSHUFB(MaskVals, V1, dl, DAG);
6947 }
6948
6949 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6950 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6951 /// done when every pair / quad of shuffle mask elements point to elements in
6952 /// the right sequence. e.g.
6953 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6954 static
6955 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6956                                  SelectionDAG &DAG) {
6957   MVT VT = SVOp->getSimpleValueType(0);
6958   SDLoc dl(SVOp);
6959   unsigned NumElems = VT.getVectorNumElements();
6960   MVT NewVT;
6961   unsigned Scale;
6962   switch (VT.SimpleTy) {
6963   default: llvm_unreachable("Unexpected!");
6964   case MVT::v2i64:
6965   case MVT::v2f64:
6966            return SDValue(SVOp, 0);
6967   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6968   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6969   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6970   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6971   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6972   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6973   }
6974
6975   SmallVector<int, 8> MaskVec;
6976   for (unsigned i = 0; i != NumElems; i += Scale) {
6977     int StartIdx = -1;
6978     for (unsigned j = 0; j != Scale; ++j) {
6979       int EltIdx = SVOp->getMaskElt(i+j);
6980       if (EltIdx < 0)
6981         continue;
6982       if (StartIdx < 0)
6983         StartIdx = (EltIdx / Scale);
6984       if (EltIdx != (int)(StartIdx*Scale + j))
6985         return SDValue();
6986     }
6987     MaskVec.push_back(StartIdx);
6988   }
6989
6990   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6991   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6992   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6993 }
6994
6995 /// getVZextMovL - Return a zero-extending vector move low node.
6996 ///
6997 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6998                             SDValue SrcOp, SelectionDAG &DAG,
6999                             const X86Subtarget *Subtarget, SDLoc dl) {
7000   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
7001     LoadSDNode *LD = nullptr;
7002     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
7003       LD = dyn_cast<LoadSDNode>(SrcOp);
7004     if (!LD) {
7005       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
7006       // instead.
7007       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
7008       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
7009           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
7010           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
7011           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
7012         // PR2108
7013         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
7014         return DAG.getNode(ISD::BITCAST, dl, VT,
7015                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
7016                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7017                                                    OpVT,
7018                                                    SrcOp.getOperand(0)
7019                                                           .getOperand(0))));
7020       }
7021     }
7022   }
7023
7024   return DAG.getNode(ISD::BITCAST, dl, VT,
7025                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
7026                                  DAG.getNode(ISD::BITCAST, dl,
7027                                              OpVT, SrcOp)));
7028 }
7029
7030 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
7031 /// which could not be matched by any known target speficic shuffle
7032 static SDValue
7033 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
7034
7035   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
7036   if (NewOp.getNode())
7037     return NewOp;
7038
7039   MVT VT = SVOp->getSimpleValueType(0);
7040
7041   unsigned NumElems = VT.getVectorNumElements();
7042   unsigned NumLaneElems = NumElems / 2;
7043
7044   SDLoc dl(SVOp);
7045   MVT EltVT = VT.getVectorElementType();
7046   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
7047   SDValue Output[2];
7048
7049   SmallVector<int, 16> Mask;
7050   for (unsigned l = 0; l < 2; ++l) {
7051     // Build a shuffle mask for the output, discovering on the fly which
7052     // input vectors to use as shuffle operands (recorded in InputUsed).
7053     // If building a suitable shuffle vector proves too hard, then bail
7054     // out with UseBuildVector set.
7055     bool UseBuildVector = false;
7056     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
7057     unsigned LaneStart = l * NumLaneElems;
7058     for (unsigned i = 0; i != NumLaneElems; ++i) {
7059       // The mask element.  This indexes into the input.
7060       int Idx = SVOp->getMaskElt(i+LaneStart);
7061       if (Idx < 0) {
7062         // the mask element does not index into any input vector.
7063         Mask.push_back(-1);
7064         continue;
7065       }
7066
7067       // The input vector this mask element indexes into.
7068       int Input = Idx / NumLaneElems;
7069
7070       // Turn the index into an offset from the start of the input vector.
7071       Idx -= Input * NumLaneElems;
7072
7073       // Find or create a shuffle vector operand to hold this input.
7074       unsigned OpNo;
7075       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
7076         if (InputUsed[OpNo] == Input)
7077           // This input vector is already an operand.
7078           break;
7079         if (InputUsed[OpNo] < 0) {
7080           // Create a new operand for this input vector.
7081           InputUsed[OpNo] = Input;
7082           break;
7083         }
7084       }
7085
7086       if (OpNo >= array_lengthof(InputUsed)) {
7087         // More than two input vectors used!  Give up on trying to create a
7088         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
7089         UseBuildVector = true;
7090         break;
7091       }
7092
7093       // Add the mask index for the new shuffle vector.
7094       Mask.push_back(Idx + OpNo * NumLaneElems);
7095     }
7096
7097     if (UseBuildVector) {
7098       SmallVector<SDValue, 16> SVOps;
7099       for (unsigned i = 0; i != NumLaneElems; ++i) {
7100         // The mask element.  This indexes into the input.
7101         int Idx = SVOp->getMaskElt(i+LaneStart);
7102         if (Idx < 0) {
7103           SVOps.push_back(DAG.getUNDEF(EltVT));
7104           continue;
7105         }
7106
7107         // The input vector this mask element indexes into.
7108         int Input = Idx / NumElems;
7109
7110         // Turn the index into an offset from the start of the input vector.
7111         Idx -= Input * NumElems;
7112
7113         // Extract the vector element by hand.
7114         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
7115                                     SVOp->getOperand(Input),
7116                                     DAG.getIntPtrConstant(Idx)));
7117       }
7118
7119       // Construct the output using a BUILD_VECTOR.
7120       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, SVOps);
7121     } else if (InputUsed[0] < 0) {
7122       // No input vectors were used! The result is undefined.
7123       Output[l] = DAG.getUNDEF(NVT);
7124     } else {
7125       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
7126                                         (InputUsed[0] % 2) * NumLaneElems,
7127                                         DAG, dl);
7128       // If only one input was used, use an undefined vector for the other.
7129       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
7130         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
7131                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
7132       // At least one input vector was used. Create a new shuffle vector.
7133       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
7134     }
7135
7136     Mask.clear();
7137   }
7138
7139   // Concatenate the result back
7140   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
7141 }
7142
7143 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
7144 /// 4 elements, and match them with several different shuffle types.
7145 static SDValue
7146 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
7147   SDValue V1 = SVOp->getOperand(0);
7148   SDValue V2 = SVOp->getOperand(1);
7149   SDLoc dl(SVOp);
7150   MVT VT = SVOp->getSimpleValueType(0);
7151
7152   assert(VT.is128BitVector() && "Unsupported vector size");
7153
7154   std::pair<int, int> Locs[4];
7155   int Mask1[] = { -1, -1, -1, -1 };
7156   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
7157
7158   unsigned NumHi = 0;
7159   unsigned NumLo = 0;
7160   for (unsigned i = 0; i != 4; ++i) {
7161     int Idx = PermMask[i];
7162     if (Idx < 0) {
7163       Locs[i] = std::make_pair(-1, -1);
7164     } else {
7165       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
7166       if (Idx < 4) {
7167         Locs[i] = std::make_pair(0, NumLo);
7168         Mask1[NumLo] = Idx;
7169         NumLo++;
7170       } else {
7171         Locs[i] = std::make_pair(1, NumHi);
7172         if (2+NumHi < 4)
7173           Mask1[2+NumHi] = Idx;
7174         NumHi++;
7175       }
7176     }
7177   }
7178
7179   if (NumLo <= 2 && NumHi <= 2) {
7180     // If no more than two elements come from either vector. This can be
7181     // implemented with two shuffles. First shuffle gather the elements.
7182     // The second shuffle, which takes the first shuffle as both of its
7183     // vector operands, put the elements into the right order.
7184     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7185
7186     int Mask2[] = { -1, -1, -1, -1 };
7187
7188     for (unsigned i = 0; i != 4; ++i)
7189       if (Locs[i].first != -1) {
7190         unsigned Idx = (i < 2) ? 0 : 4;
7191         Idx += Locs[i].first * 2 + Locs[i].second;
7192         Mask2[i] = Idx;
7193       }
7194
7195     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
7196   }
7197
7198   if (NumLo == 3 || NumHi == 3) {
7199     // Otherwise, we must have three elements from one vector, call it X, and
7200     // one element from the other, call it Y.  First, use a shufps to build an
7201     // intermediate vector with the one element from Y and the element from X
7202     // that will be in the same half in the final destination (the indexes don't
7203     // matter). Then, use a shufps to build the final vector, taking the half
7204     // containing the element from Y from the intermediate, and the other half
7205     // from X.
7206     if (NumHi == 3) {
7207       // Normalize it so the 3 elements come from V1.
7208       CommuteVectorShuffleMask(PermMask, 4);
7209       std::swap(V1, V2);
7210     }
7211
7212     // Find the element from V2.
7213     unsigned HiIndex;
7214     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
7215       int Val = PermMask[HiIndex];
7216       if (Val < 0)
7217         continue;
7218       if (Val >= 4)
7219         break;
7220     }
7221
7222     Mask1[0] = PermMask[HiIndex];
7223     Mask1[1] = -1;
7224     Mask1[2] = PermMask[HiIndex^1];
7225     Mask1[3] = -1;
7226     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7227
7228     if (HiIndex >= 2) {
7229       Mask1[0] = PermMask[0];
7230       Mask1[1] = PermMask[1];
7231       Mask1[2] = HiIndex & 1 ? 6 : 4;
7232       Mask1[3] = HiIndex & 1 ? 4 : 6;
7233       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7234     }
7235
7236     Mask1[0] = HiIndex & 1 ? 2 : 0;
7237     Mask1[1] = HiIndex & 1 ? 0 : 2;
7238     Mask1[2] = PermMask[2];
7239     Mask1[3] = PermMask[3];
7240     if (Mask1[2] >= 0)
7241       Mask1[2] += 4;
7242     if (Mask1[3] >= 0)
7243       Mask1[3] += 4;
7244     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
7245   }
7246
7247   // Break it into (shuffle shuffle_hi, shuffle_lo).
7248   int LoMask[] = { -1, -1, -1, -1 };
7249   int HiMask[] = { -1, -1, -1, -1 };
7250
7251   int *MaskPtr = LoMask;
7252   unsigned MaskIdx = 0;
7253   unsigned LoIdx = 0;
7254   unsigned HiIdx = 2;
7255   for (unsigned i = 0; i != 4; ++i) {
7256     if (i == 2) {
7257       MaskPtr = HiMask;
7258       MaskIdx = 1;
7259       LoIdx = 0;
7260       HiIdx = 2;
7261     }
7262     int Idx = PermMask[i];
7263     if (Idx < 0) {
7264       Locs[i] = std::make_pair(-1, -1);
7265     } else if (Idx < 4) {
7266       Locs[i] = std::make_pair(MaskIdx, LoIdx);
7267       MaskPtr[LoIdx] = Idx;
7268       LoIdx++;
7269     } else {
7270       Locs[i] = std::make_pair(MaskIdx, HiIdx);
7271       MaskPtr[HiIdx] = Idx;
7272       HiIdx++;
7273     }
7274   }
7275
7276   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
7277   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
7278   int MaskOps[] = { -1, -1, -1, -1 };
7279   for (unsigned i = 0; i != 4; ++i)
7280     if (Locs[i].first != -1)
7281       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
7282   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
7283 }
7284
7285 static bool MayFoldVectorLoad(SDValue V) {
7286   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
7287     V = V.getOperand(0);
7288
7289   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7290     V = V.getOperand(0);
7291   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7292       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7293     // BUILD_VECTOR (load), undef
7294     V = V.getOperand(0);
7295
7296   return MayFoldLoad(V);
7297 }
7298
7299 static
7300 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
7301   MVT VT = Op.getSimpleValueType();
7302
7303   // Canonizalize to v2f64.
7304   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7305   return DAG.getNode(ISD::BITCAST, dl, VT,
7306                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7307                                           V1, DAG));
7308 }
7309
7310 static
7311 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
7312                         bool HasSSE2) {
7313   SDValue V1 = Op.getOperand(0);
7314   SDValue V2 = Op.getOperand(1);
7315   MVT VT = Op.getSimpleValueType();
7316
7317   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7318
7319   if (HasSSE2 && VT == MVT::v2f64)
7320     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7321
7322   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7323   return DAG.getNode(ISD::BITCAST, dl, VT,
7324                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7325                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7326                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7327 }
7328
7329 static
7330 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7331   SDValue V1 = Op.getOperand(0);
7332   SDValue V2 = Op.getOperand(1);
7333   MVT VT = Op.getSimpleValueType();
7334
7335   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7336          "unsupported shuffle type");
7337
7338   if (V2.getOpcode() == ISD::UNDEF)
7339     V2 = V1;
7340
7341   // v4i32 or v4f32
7342   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7343 }
7344
7345 static
7346 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7347   SDValue V1 = Op.getOperand(0);
7348   SDValue V2 = Op.getOperand(1);
7349   MVT VT = Op.getSimpleValueType();
7350   unsigned NumElems = VT.getVectorNumElements();
7351
7352   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7353   // operand of these instructions is only memory, so check if there's a
7354   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7355   // same masks.
7356   bool CanFoldLoad = false;
7357
7358   // Trivial case, when V2 comes from a load.
7359   if (MayFoldVectorLoad(V2))
7360     CanFoldLoad = true;
7361
7362   // When V1 is a load, it can be folded later into a store in isel, example:
7363   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7364   //    turns into:
7365   //  (MOVLPSmr addr:$src1, VR128:$src2)
7366   // So, recognize this potential and also use MOVLPS or MOVLPD
7367   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7368     CanFoldLoad = true;
7369
7370   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7371   if (CanFoldLoad) {
7372     if (HasSSE2 && NumElems == 2)
7373       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7374
7375     if (NumElems == 4)
7376       // If we don't care about the second element, proceed to use movss.
7377       if (SVOp->getMaskElt(1) != -1)
7378         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7379   }
7380
7381   // movl and movlp will both match v2i64, but v2i64 is never matched by
7382   // movl earlier because we make it strict to avoid messing with the movlp load
7383   // folding logic (see the code above getMOVLP call). Match it here then,
7384   // this is horrible, but will stay like this until we move all shuffle
7385   // matching to x86 specific nodes. Note that for the 1st condition all
7386   // types are matched with movsd.
7387   if (HasSSE2) {
7388     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7389     // as to remove this logic from here, as much as possible
7390     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7391       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7392     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7393   }
7394
7395   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7396
7397   // Invert the operand order and use SHUFPS to match it.
7398   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7399                               getShuffleSHUFImmediate(SVOp), DAG);
7400 }
7401
7402 // It is only safe to call this function if isINSERTPSMask is true for
7403 // this shufflevector mask.
7404 static SDValue getINSERTPS(ShuffleVectorSDNode *SVOp, SDLoc &dl,
7405                            SelectionDAG &DAG) {
7406   // Generate an insertps instruction when inserting an f32 from memory onto a
7407   // v4f32 or when copying a member from one v4f32 to another.
7408   // We also use it for transferring i32 from one register to another,
7409   // since it simply copies the same bits.
7410   // If we're transfering an i32 from memory to a specific element in a
7411   // register, we output a generic DAG that will match the PINSRD
7412   // instruction.
7413   // TODO: Optimize for AVX cases too (VINSERTPS)
7414   MVT VT = SVOp->getSimpleValueType(0);
7415   MVT EVT = VT.getVectorElementType();
7416   SDValue V1 = SVOp->getOperand(0);
7417   SDValue V2 = SVOp->getOperand(1);
7418   auto Mask = SVOp->getMask();
7419   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
7420          "unsupported vector type for insertps/pinsrd");
7421
7422   int FromV1 = std::count_if(Mask.begin(), Mask.end(),
7423                              [](const int &i) { return i < 4; });
7424
7425   SDValue From;
7426   SDValue To;
7427   unsigned DestIndex;
7428   if (FromV1 == 1) {
7429     From = V1;
7430     To = V2;
7431     DestIndex = std::find_if(Mask.begin(), Mask.end(),
7432                              [](const int &i) { return i < 4; }) -
7433                 Mask.begin();
7434   } else {
7435     From = V2;
7436     To = V1;
7437     DestIndex = std::find_if(Mask.begin(), Mask.end(),
7438                              [](const int &i) { return i >= 4; }) -
7439                 Mask.begin();
7440   }
7441
7442   if (MayFoldLoad(From)) {
7443     // Trivial case, when From comes from a load and is only used by the
7444     // shuffle. Make it use insertps from the vector that we need from that
7445     // load.
7446     SDValue Addr = From.getOperand(1);
7447     SDValue NewAddr =
7448         DAG.getNode(ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
7449                     DAG.getConstant(DestIndex * EVT.getStoreSize(),
7450                                     Addr.getSimpleValueType()));
7451
7452     LoadSDNode *Load = cast<LoadSDNode>(From);
7453     SDValue NewLoad =
7454         DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
7455                     DAG.getMachineFunction().getMachineMemOperand(
7456                         Load->getMemOperand(), 0, EVT.getStoreSize()));
7457
7458     if (EVT == MVT::f32) {
7459       // Create this as a scalar to vector to match the instruction pattern.
7460       SDValue LoadScalarToVector =
7461           DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, NewLoad);
7462       SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4);
7463       return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, LoadScalarToVector,
7464                          InsertpsMask);
7465     } else { // EVT == MVT::i32
7466       // If we're getting an i32 from memory, use an INSERT_VECTOR_ELT
7467       // instruction, to match the PINSRD instruction, which loads an i32 to a
7468       // certain vector element.
7469       return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, To, NewLoad,
7470                          DAG.getConstant(DestIndex, MVT::i32));
7471     }
7472   }
7473
7474   // Vector-element-to-vector
7475   unsigned SrcIndex = Mask[DestIndex] % 4;
7476   SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4 | SrcIndex << 6);
7477   return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, From, InsertpsMask);
7478 }
7479
7480 // Reduce a vector shuffle to zext.
7481 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7482                                     SelectionDAG &DAG) {
7483   // PMOVZX is only available from SSE41.
7484   if (!Subtarget->hasSSE41())
7485     return SDValue();
7486
7487   MVT VT = Op.getSimpleValueType();
7488
7489   // Only AVX2 support 256-bit vector integer extending.
7490   if (!Subtarget->hasInt256() && VT.is256BitVector())
7491     return SDValue();
7492
7493   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7494   SDLoc DL(Op);
7495   SDValue V1 = Op.getOperand(0);
7496   SDValue V2 = Op.getOperand(1);
7497   unsigned NumElems = VT.getVectorNumElements();
7498
7499   // Extending is an unary operation and the element type of the source vector
7500   // won't be equal to or larger than i64.
7501   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7502       VT.getVectorElementType() == MVT::i64)
7503     return SDValue();
7504
7505   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7506   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7507   while ((1U << Shift) < NumElems) {
7508     if (SVOp->getMaskElt(1U << Shift) == 1)
7509       break;
7510     Shift += 1;
7511     // The maximal ratio is 8, i.e. from i8 to i64.
7512     if (Shift > 3)
7513       return SDValue();
7514   }
7515
7516   // Check the shuffle mask.
7517   unsigned Mask = (1U << Shift) - 1;
7518   for (unsigned i = 0; i != NumElems; ++i) {
7519     int EltIdx = SVOp->getMaskElt(i);
7520     if ((i & Mask) != 0 && EltIdx != -1)
7521       return SDValue();
7522     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7523       return SDValue();
7524   }
7525
7526   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7527   MVT NeVT = MVT::getIntegerVT(NBits);
7528   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7529
7530   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7531     return SDValue();
7532
7533   // Simplify the operand as it's prepared to be fed into shuffle.
7534   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7535   if (V1.getOpcode() == ISD::BITCAST &&
7536       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7537       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7538       V1.getOperand(0).getOperand(0)
7539         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7540     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7541     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7542     ConstantSDNode *CIdx =
7543       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7544     // If it's foldable, i.e. normal load with single use, we will let code
7545     // selection to fold it. Otherwise, we will short the conversion sequence.
7546     if (CIdx && CIdx->getZExtValue() == 0 &&
7547         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7548       MVT FullVT = V.getSimpleValueType();
7549       MVT V1VT = V1.getSimpleValueType();
7550       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7551         // The "ext_vec_elt" node is wider than the result node.
7552         // In this case we should extract subvector from V.
7553         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7554         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7555         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7556                                         FullVT.getVectorNumElements()/Ratio);
7557         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7558                         DAG.getIntPtrConstant(0));
7559       }
7560       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7561     }
7562   }
7563
7564   return DAG.getNode(ISD::BITCAST, DL, VT,
7565                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7566 }
7567
7568 static SDValue NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7569                                       SelectionDAG &DAG) {
7570   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7571   MVT VT = Op.getSimpleValueType();
7572   SDLoc dl(Op);
7573   SDValue V1 = Op.getOperand(0);
7574   SDValue V2 = Op.getOperand(1);
7575
7576   if (isZeroShuffle(SVOp))
7577     return getZeroVector(VT, Subtarget, DAG, dl);
7578
7579   // Handle splat operations
7580   if (SVOp->isSplat()) {
7581     // Use vbroadcast whenever the splat comes from a foldable load
7582     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7583     if (Broadcast.getNode())
7584       return Broadcast;
7585   }
7586
7587   // Check integer expanding shuffles.
7588   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7589   if (NewOp.getNode())
7590     return NewOp;
7591
7592   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7593   // do it!
7594   if (VT == MVT::v8i16 || VT == MVT::v16i8 || VT == MVT::v16i16 ||
7595       VT == MVT::v32i8) {
7596     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7597     if (NewOp.getNode())
7598       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7599   } else if (VT.is128BitVector() && Subtarget->hasSSE2()) {
7600     // FIXME: Figure out a cleaner way to do this.
7601     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7602       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7603       if (NewOp.getNode()) {
7604         MVT NewVT = NewOp.getSimpleValueType();
7605         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7606                                NewVT, true, false))
7607           return getVZextMovL(VT, NewVT, NewOp.getOperand(0), DAG, Subtarget,
7608                               dl);
7609       }
7610     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7611       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7612       if (NewOp.getNode()) {
7613         MVT NewVT = NewOp.getSimpleValueType();
7614         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7615           return getVZextMovL(VT, NewVT, NewOp.getOperand(1), DAG, Subtarget,
7616                               dl);
7617       }
7618     }
7619   }
7620   return SDValue();
7621 }
7622
7623 SDValue
7624 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7625   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7626   SDValue V1 = Op.getOperand(0);
7627   SDValue V2 = Op.getOperand(1);
7628   MVT VT = Op.getSimpleValueType();
7629   SDLoc dl(Op);
7630   unsigned NumElems = VT.getVectorNumElements();
7631   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7632   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7633   bool V1IsSplat = false;
7634   bool V2IsSplat = false;
7635   bool HasSSE2 = Subtarget->hasSSE2();
7636   bool HasFp256    = Subtarget->hasFp256();
7637   bool HasInt256   = Subtarget->hasInt256();
7638   MachineFunction &MF = DAG.getMachineFunction();
7639   bool OptForSize = MF.getFunction()->getAttributes().
7640     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7641
7642   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7643
7644   if (V1IsUndef && V2IsUndef)
7645     return DAG.getUNDEF(VT);
7646
7647   // When we create a shuffle node we put the UNDEF node to second operand,
7648   // but in some cases the first operand may be transformed to UNDEF.
7649   // In this case we should just commute the node.
7650   if (V1IsUndef)
7651     return CommuteVectorShuffle(SVOp, DAG);
7652
7653   // Vector shuffle lowering takes 3 steps:
7654   //
7655   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7656   //    narrowing and commutation of operands should be handled.
7657   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7658   //    shuffle nodes.
7659   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7660   //    so the shuffle can be broken into other shuffles and the legalizer can
7661   //    try the lowering again.
7662   //
7663   // The general idea is that no vector_shuffle operation should be left to
7664   // be matched during isel, all of them must be converted to a target specific
7665   // node here.
7666
7667   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7668   // narrowing and commutation of operands should be handled. The actual code
7669   // doesn't include all of those, work in progress...
7670   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7671   if (NewOp.getNode())
7672     return NewOp;
7673
7674   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7675
7676   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7677   // unpckh_undef). Only use pshufd if speed is more important than size.
7678   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7679     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7680   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7681     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7682
7683   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7684       V2IsUndef && MayFoldVectorLoad(V1))
7685     return getMOVDDup(Op, dl, V1, DAG);
7686
7687   if (isMOVHLPS_v_undef_Mask(M, VT))
7688     return getMOVHighToLow(Op, dl, DAG);
7689
7690   // Use to match splats
7691   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7692       (VT == MVT::v2f64 || VT == MVT::v2i64))
7693     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7694
7695   if (isPSHUFDMask(M, VT)) {
7696     // The actual implementation will match the mask in the if above and then
7697     // during isel it can match several different instructions, not only pshufd
7698     // as its name says, sad but true, emulate the behavior for now...
7699     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7700       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7701
7702     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7703
7704     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7705       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7706
7707     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7708       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7709                                   DAG);
7710
7711     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7712                                 TargetMask, DAG);
7713   }
7714
7715   if (isPALIGNRMask(M, VT, Subtarget))
7716     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7717                                 getShufflePALIGNRImmediate(SVOp),
7718                                 DAG);
7719
7720   // Check if this can be converted into a logical shift.
7721   bool isLeft = false;
7722   unsigned ShAmt = 0;
7723   SDValue ShVal;
7724   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7725   if (isShift && ShVal.hasOneUse()) {
7726     // If the shifted value has multiple uses, it may be cheaper to use
7727     // v_set0 + movlhps or movhlps, etc.
7728     MVT EltVT = VT.getVectorElementType();
7729     ShAmt *= EltVT.getSizeInBits();
7730     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7731   }
7732
7733   if (isMOVLMask(M, VT)) {
7734     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7735       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7736     if (!isMOVLPMask(M, VT)) {
7737       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7738         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7739
7740       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7741         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7742     }
7743   }
7744
7745   // FIXME: fold these into legal mask.
7746   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7747     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7748
7749   if (isMOVHLPSMask(M, VT))
7750     return getMOVHighToLow(Op, dl, DAG);
7751
7752   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7753     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7754
7755   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7756     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7757
7758   if (isMOVLPMask(M, VT))
7759     return getMOVLP(Op, dl, DAG, HasSSE2);
7760
7761   if (ShouldXformToMOVHLPS(M, VT) ||
7762       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7763     return CommuteVectorShuffle(SVOp, DAG);
7764
7765   if (isShift) {
7766     // No better options. Use a vshldq / vsrldq.
7767     MVT EltVT = VT.getVectorElementType();
7768     ShAmt *= EltVT.getSizeInBits();
7769     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7770   }
7771
7772   bool Commuted = false;
7773   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7774   // 1,1,1,1 -> v8i16 though.
7775   V1IsSplat = isSplatVector(V1.getNode());
7776   V2IsSplat = isSplatVector(V2.getNode());
7777
7778   // Canonicalize the splat or undef, if present, to be on the RHS.
7779   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7780     CommuteVectorShuffleMask(M, NumElems);
7781     std::swap(V1, V2);
7782     std::swap(V1IsSplat, V2IsSplat);
7783     Commuted = true;
7784   }
7785
7786   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7787     // Shuffling low element of v1 into undef, just return v1.
7788     if (V2IsUndef)
7789       return V1;
7790     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7791     // the instruction selector will not match, so get a canonical MOVL with
7792     // swapped operands to undo the commute.
7793     return getMOVL(DAG, dl, VT, V2, V1);
7794   }
7795
7796   if (isUNPCKLMask(M, VT, HasInt256))
7797     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7798
7799   if (isUNPCKHMask(M, VT, HasInt256))
7800     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7801
7802   if (V2IsSplat) {
7803     // Normalize mask so all entries that point to V2 points to its first
7804     // element then try to match unpck{h|l} again. If match, return a
7805     // new vector_shuffle with the corrected mask.p
7806     SmallVector<int, 8> NewMask(M.begin(), M.end());
7807     NormalizeMask(NewMask, NumElems);
7808     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7809       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7810     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7811       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7812   }
7813
7814   if (Commuted) {
7815     // Commute is back and try unpck* again.
7816     // FIXME: this seems wrong.
7817     CommuteVectorShuffleMask(M, NumElems);
7818     std::swap(V1, V2);
7819     std::swap(V1IsSplat, V2IsSplat);
7820
7821     if (isUNPCKLMask(M, VT, HasInt256))
7822       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7823
7824     if (isUNPCKHMask(M, VT, HasInt256))
7825       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7826   }
7827
7828   // Normalize the node to match x86 shuffle ops if needed
7829   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7830     return CommuteVectorShuffle(SVOp, DAG);
7831
7832   // The checks below are all present in isShuffleMaskLegal, but they are
7833   // inlined here right now to enable us to directly emit target specific
7834   // nodes, and remove one by one until they don't return Op anymore.
7835
7836   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7837       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7838     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7839       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7840   }
7841
7842   if (isPSHUFHWMask(M, VT, HasInt256))
7843     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7844                                 getShufflePSHUFHWImmediate(SVOp),
7845                                 DAG);
7846
7847   if (isPSHUFLWMask(M, VT, HasInt256))
7848     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7849                                 getShufflePSHUFLWImmediate(SVOp),
7850                                 DAG);
7851
7852   if (isSHUFPMask(M, VT))
7853     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7854                                 getShuffleSHUFImmediate(SVOp), DAG);
7855
7856   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7857     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7858   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7859     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7860
7861   //===--------------------------------------------------------------------===//
7862   // Generate target specific nodes for 128 or 256-bit shuffles only
7863   // supported in the AVX instruction set.
7864   //
7865
7866   // Handle VMOVDDUPY permutations
7867   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7868     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7869
7870   // Handle VPERMILPS/D* permutations
7871   if (isVPERMILPMask(M, VT)) {
7872     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7873       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7874                                   getShuffleSHUFImmediate(SVOp), DAG);
7875     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7876                                 getShuffleSHUFImmediate(SVOp), DAG);
7877   }
7878
7879   unsigned Idx;
7880   if (VT.is512BitVector() && isINSERT64x4Mask(M, VT, &Idx))
7881     return Insert256BitVector(V1, Extract256BitVector(V2, 0, DAG, dl),
7882                               Idx*(NumElems/2), DAG, dl);
7883
7884   // Handle VPERM2F128/VPERM2I128 permutations
7885   if (isVPERM2X128Mask(M, VT, HasFp256))
7886     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7887                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7888
7889   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7890   if (BlendOp.getNode())
7891     return BlendOp;
7892
7893   if (Subtarget->hasSSE41() && isINSERTPSMask(M, VT))
7894     return getINSERTPS(SVOp, dl, DAG);
7895
7896   unsigned Imm8;
7897   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7898     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7899
7900   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7901       VT.is512BitVector()) {
7902     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7903     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7904     SmallVector<SDValue, 16> permclMask;
7905     for (unsigned i = 0; i != NumElems; ++i) {
7906       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7907     }
7908
7909     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT, permclMask);
7910     if (V2IsUndef)
7911       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7912       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7913                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7914     return DAG.getNode(X86ISD::VPERMV3, dl, VT, V1,
7915                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V2);
7916   }
7917
7918   //===--------------------------------------------------------------------===//
7919   // Since no target specific shuffle was selected for this generic one,
7920   // lower it into other known shuffles. FIXME: this isn't true yet, but
7921   // this is the plan.
7922   //
7923
7924   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7925   if (VT == MVT::v8i16) {
7926     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7927     if (NewOp.getNode())
7928       return NewOp;
7929   }
7930
7931   if (VT == MVT::v16i16 && Subtarget->hasInt256()) {
7932     SDValue NewOp = LowerVECTOR_SHUFFLEv16i16(Op, DAG);
7933     if (NewOp.getNode())
7934       return NewOp;
7935   }
7936
7937   if (VT == MVT::v16i8) {
7938     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7939     if (NewOp.getNode())
7940       return NewOp;
7941   }
7942
7943   if (VT == MVT::v32i8) {
7944     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7945     if (NewOp.getNode())
7946       return NewOp;
7947   }
7948
7949   // Handle all 128-bit wide vectors with 4 elements, and match them with
7950   // several different shuffle types.
7951   if (NumElems == 4 && VT.is128BitVector())
7952     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7953
7954   // Handle general 256-bit shuffles
7955   if (VT.is256BitVector())
7956     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7957
7958   return SDValue();
7959 }
7960
7961 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7962   MVT VT = Op.getSimpleValueType();
7963   SDLoc dl(Op);
7964
7965   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7966     return SDValue();
7967
7968   if (VT.getSizeInBits() == 8) {
7969     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7970                                   Op.getOperand(0), Op.getOperand(1));
7971     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7972                                   DAG.getValueType(VT));
7973     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7974   }
7975
7976   if (VT.getSizeInBits() == 16) {
7977     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7978     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7979     if (Idx == 0)
7980       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7981                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7982                                      DAG.getNode(ISD::BITCAST, dl,
7983                                                  MVT::v4i32,
7984                                                  Op.getOperand(0)),
7985                                      Op.getOperand(1)));
7986     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7987                                   Op.getOperand(0), Op.getOperand(1));
7988     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7989                                   DAG.getValueType(VT));
7990     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7991   }
7992
7993   if (VT == MVT::f32) {
7994     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7995     // the result back to FR32 register. It's only worth matching if the
7996     // result has a single use which is a store or a bitcast to i32.  And in
7997     // the case of a store, it's not worth it if the index is a constant 0,
7998     // because a MOVSSmr can be used instead, which is smaller and faster.
7999     if (!Op.hasOneUse())
8000       return SDValue();
8001     SDNode *User = *Op.getNode()->use_begin();
8002     if ((User->getOpcode() != ISD::STORE ||
8003          (isa<ConstantSDNode>(Op.getOperand(1)) &&
8004           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
8005         (User->getOpcode() != ISD::BITCAST ||
8006          User->getValueType(0) != MVT::i32))
8007       return SDValue();
8008     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
8009                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
8010                                               Op.getOperand(0)),
8011                                               Op.getOperand(1));
8012     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
8013   }
8014
8015   if (VT == MVT::i32 || VT == MVT::i64) {
8016     // ExtractPS/pextrq works with constant index.
8017     if (isa<ConstantSDNode>(Op.getOperand(1)))
8018       return Op;
8019   }
8020   return SDValue();
8021 }
8022
8023 /// Extract one bit from mask vector, like v16i1 or v8i1.
8024 /// AVX-512 feature.
8025 SDValue
8026 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
8027   SDValue Vec = Op.getOperand(0);
8028   SDLoc dl(Vec);
8029   MVT VecVT = Vec.getSimpleValueType();
8030   SDValue Idx = Op.getOperand(1);
8031   MVT EltVT = Op.getSimpleValueType();
8032
8033   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
8034
8035   // variable index can't be handled in mask registers,
8036   // extend vector to VR512
8037   if (!isa<ConstantSDNode>(Idx)) {
8038     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
8039     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
8040     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
8041                               ExtVT.getVectorElementType(), Ext, Idx);
8042     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
8043   }
8044
8045   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8046   const TargetRegisterClass* rc = getRegClassFor(VecVT);
8047   unsigned MaxSift = rc->getSize()*8 - 1;
8048   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
8049                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
8050   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
8051                     DAG.getConstant(MaxSift, MVT::i8));
8052   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
8053                        DAG.getIntPtrConstant(0));
8054 }
8055
8056 SDValue
8057 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
8058                                            SelectionDAG &DAG) const {
8059   SDLoc dl(Op);
8060   SDValue Vec = Op.getOperand(0);
8061   MVT VecVT = Vec.getSimpleValueType();
8062   SDValue Idx = Op.getOperand(1);
8063
8064   if (Op.getSimpleValueType() == MVT::i1)
8065     return ExtractBitFromMaskVector(Op, DAG);
8066
8067   if (!isa<ConstantSDNode>(Idx)) {
8068     if (VecVT.is512BitVector() ||
8069         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
8070          VecVT.getVectorElementType().getSizeInBits() == 32)) {
8071
8072       MVT MaskEltVT =
8073         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
8074       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
8075                                     MaskEltVT.getSizeInBits());
8076
8077       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
8078       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
8079                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
8080                                 Idx, DAG.getConstant(0, getPointerTy()));
8081       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
8082       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
8083                         Perm, DAG.getConstant(0, getPointerTy()));
8084     }
8085     return SDValue();
8086   }
8087
8088   // If this is a 256-bit vector result, first extract the 128-bit vector and
8089   // then extract the element from the 128-bit vector.
8090   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
8091
8092     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8093     // Get the 128-bit vector.
8094     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
8095     MVT EltVT = VecVT.getVectorElementType();
8096
8097     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
8098
8099     //if (IdxVal >= NumElems/2)
8100     //  IdxVal -= NumElems/2;
8101     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
8102     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
8103                        DAG.getConstant(IdxVal, MVT::i32));
8104   }
8105
8106   assert(VecVT.is128BitVector() && "Unexpected vector length");
8107
8108   if (Subtarget->hasSSE41()) {
8109     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
8110     if (Res.getNode())
8111       return Res;
8112   }
8113
8114   MVT VT = Op.getSimpleValueType();
8115   // TODO: handle v16i8.
8116   if (VT.getSizeInBits() == 16) {
8117     SDValue Vec = Op.getOperand(0);
8118     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8119     if (Idx == 0)
8120       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
8121                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
8122                                      DAG.getNode(ISD::BITCAST, dl,
8123                                                  MVT::v4i32, Vec),
8124                                      Op.getOperand(1)));
8125     // Transform it so it match pextrw which produces a 32-bit result.
8126     MVT EltVT = MVT::i32;
8127     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
8128                                   Op.getOperand(0), Op.getOperand(1));
8129     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
8130                                   DAG.getValueType(VT));
8131     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
8132   }
8133
8134   if (VT.getSizeInBits() == 32) {
8135     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8136     if (Idx == 0)
8137       return Op;
8138
8139     // SHUFPS the element to the lowest double word, then movss.
8140     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
8141     MVT VVT = Op.getOperand(0).getSimpleValueType();
8142     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
8143                                        DAG.getUNDEF(VVT), Mask);
8144     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
8145                        DAG.getIntPtrConstant(0));
8146   }
8147
8148   if (VT.getSizeInBits() == 64) {
8149     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
8150     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
8151     //        to match extract_elt for f64.
8152     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8153     if (Idx == 0)
8154       return Op;
8155
8156     // UNPCKHPD the element to the lowest double word, then movsd.
8157     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
8158     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
8159     int Mask[2] = { 1, -1 };
8160     MVT VVT = Op.getOperand(0).getSimpleValueType();
8161     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
8162                                        DAG.getUNDEF(VVT), Mask);
8163     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
8164                        DAG.getIntPtrConstant(0));
8165   }
8166
8167   return SDValue();
8168 }
8169
8170 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
8171   MVT VT = Op.getSimpleValueType();
8172   MVT EltVT = VT.getVectorElementType();
8173   SDLoc dl(Op);
8174
8175   SDValue N0 = Op.getOperand(0);
8176   SDValue N1 = Op.getOperand(1);
8177   SDValue N2 = Op.getOperand(2);
8178
8179   if (!VT.is128BitVector())
8180     return SDValue();
8181
8182   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
8183       isa<ConstantSDNode>(N2)) {
8184     unsigned Opc;
8185     if (VT == MVT::v8i16)
8186       Opc = X86ISD::PINSRW;
8187     else if (VT == MVT::v16i8)
8188       Opc = X86ISD::PINSRB;
8189     else
8190       Opc = X86ISD::PINSRB;
8191
8192     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
8193     // argument.
8194     if (N1.getValueType() != MVT::i32)
8195       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
8196     if (N2.getValueType() != MVT::i32)
8197       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
8198     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
8199   }
8200
8201   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
8202     // Bits [7:6] of the constant are the source select.  This will always be
8203     //  zero here.  The DAG Combiner may combine an extract_elt index into these
8204     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
8205     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
8206     // Bits [5:4] of the constant are the destination select.  This is the
8207     //  value of the incoming immediate.
8208     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
8209     //   combine either bitwise AND or insert of float 0.0 to set these bits.
8210     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
8211     // Create this as a scalar to vector..
8212     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
8213     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
8214   }
8215
8216   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
8217     // PINSR* works with constant index.
8218     return Op;
8219   }
8220   return SDValue();
8221 }
8222
8223 /// Insert one bit to mask vector, like v16i1 or v8i1.
8224 /// AVX-512 feature.
8225 SDValue 
8226 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
8227   SDLoc dl(Op);
8228   SDValue Vec = Op.getOperand(0);
8229   SDValue Elt = Op.getOperand(1);
8230   SDValue Idx = Op.getOperand(2);
8231   MVT VecVT = Vec.getSimpleValueType();
8232
8233   if (!isa<ConstantSDNode>(Idx)) {
8234     // Non constant index. Extend source and destination,
8235     // insert element and then truncate the result.
8236     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
8237     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
8238     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT, 
8239       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
8240       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
8241     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
8242   }
8243
8244   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8245   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
8246   if (Vec.getOpcode() == ISD::UNDEF)
8247     return DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
8248                        DAG.getConstant(IdxVal, MVT::i8));
8249   const TargetRegisterClass* rc = getRegClassFor(VecVT);
8250   unsigned MaxSift = rc->getSize()*8 - 1;
8251   EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
8252                     DAG.getConstant(MaxSift, MVT::i8));
8253   EltInVec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, EltInVec,
8254                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
8255   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
8256 }
8257 SDValue
8258 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
8259   MVT VT = Op.getSimpleValueType();
8260   MVT EltVT = VT.getVectorElementType();
8261   
8262   if (EltVT == MVT::i1)
8263     return InsertBitToMaskVector(Op, DAG);
8264
8265   SDLoc dl(Op);
8266   SDValue N0 = Op.getOperand(0);
8267   SDValue N1 = Op.getOperand(1);
8268   SDValue N2 = Op.getOperand(2);
8269
8270   // If this is a 256-bit vector result, first extract the 128-bit vector,
8271   // insert the element into the extracted half and then place it back.
8272   if (VT.is256BitVector() || VT.is512BitVector()) {
8273     if (!isa<ConstantSDNode>(N2))
8274       return SDValue();
8275
8276     // Get the desired 128-bit vector half.
8277     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
8278     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
8279
8280     // Insert the element into the desired half.
8281     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
8282     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
8283
8284     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
8285                     DAG.getConstant(IdxIn128, MVT::i32));
8286
8287     // Insert the changed part back to the 256-bit vector
8288     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
8289   }
8290
8291   if (Subtarget->hasSSE41())
8292     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
8293
8294   if (EltVT == MVT::i8)
8295     return SDValue();
8296
8297   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
8298     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
8299     // as its second argument.
8300     if (N1.getValueType() != MVT::i32)
8301       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
8302     if (N2.getValueType() != MVT::i32)
8303       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
8304     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
8305   }
8306   return SDValue();
8307 }
8308
8309 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
8310   SDLoc dl(Op);
8311   MVT OpVT = Op.getSimpleValueType();
8312
8313   // If this is a 256-bit vector result, first insert into a 128-bit
8314   // vector and then insert into the 256-bit vector.
8315   if (!OpVT.is128BitVector()) {
8316     // Insert into a 128-bit vector.
8317     unsigned SizeFactor = OpVT.getSizeInBits()/128;
8318     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
8319                                  OpVT.getVectorNumElements() / SizeFactor);
8320
8321     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
8322
8323     // Insert the 128-bit vector.
8324     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
8325   }
8326
8327   if (OpVT == MVT::v1i64 &&
8328       Op.getOperand(0).getValueType() == MVT::i64)
8329     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
8330
8331   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
8332   assert(OpVT.is128BitVector() && "Expected an SSE type!");
8333   return DAG.getNode(ISD::BITCAST, dl, OpVT,
8334                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
8335 }
8336
8337 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
8338 // a simple subregister reference or explicit instructions to grab
8339 // upper bits of a vector.
8340 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8341                                       SelectionDAG &DAG) {
8342   SDLoc dl(Op);
8343   SDValue In =  Op.getOperand(0);
8344   SDValue Idx = Op.getOperand(1);
8345   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8346   MVT ResVT   = Op.getSimpleValueType();
8347   MVT InVT    = In.getSimpleValueType();
8348
8349   if (Subtarget->hasFp256()) {
8350     if (ResVT.is128BitVector() &&
8351         (InVT.is256BitVector() || InVT.is512BitVector()) &&
8352         isa<ConstantSDNode>(Idx)) {
8353       return Extract128BitVector(In, IdxVal, DAG, dl);
8354     }
8355     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
8356         isa<ConstantSDNode>(Idx)) {
8357       return Extract256BitVector(In, IdxVal, DAG, dl);
8358     }
8359   }
8360   return SDValue();
8361 }
8362
8363 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
8364 // simple superregister reference or explicit instructions to insert
8365 // the upper bits of a vector.
8366 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8367                                      SelectionDAG &DAG) {
8368   if (Subtarget->hasFp256()) {
8369     SDLoc dl(Op.getNode());
8370     SDValue Vec = Op.getNode()->getOperand(0);
8371     SDValue SubVec = Op.getNode()->getOperand(1);
8372     SDValue Idx = Op.getNode()->getOperand(2);
8373
8374     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
8375          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
8376         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
8377         isa<ConstantSDNode>(Idx)) {
8378       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8379       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
8380     }
8381
8382     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
8383         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
8384         isa<ConstantSDNode>(Idx)) {
8385       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8386       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
8387     }
8388   }
8389   return SDValue();
8390 }
8391
8392 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
8393 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
8394 // one of the above mentioned nodes. It has to be wrapped because otherwise
8395 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
8396 // be used to form addressing mode. These wrapped nodes will be selected
8397 // into MOV32ri.
8398 SDValue
8399 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
8400   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
8401
8402   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8403   // global base reg.
8404   unsigned char OpFlag = 0;
8405   unsigned WrapperKind = X86ISD::Wrapper;
8406   CodeModel::Model M = getTargetMachine().getCodeModel();
8407
8408   if (Subtarget->isPICStyleRIPRel() &&
8409       (M == CodeModel::Small || M == CodeModel::Kernel))
8410     WrapperKind = X86ISD::WrapperRIP;
8411   else if (Subtarget->isPICStyleGOT())
8412     OpFlag = X86II::MO_GOTOFF;
8413   else if (Subtarget->isPICStyleStubPIC())
8414     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8415
8416   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
8417                                              CP->getAlignment(),
8418                                              CP->getOffset(), OpFlag);
8419   SDLoc DL(CP);
8420   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8421   // With PIC, the address is actually $g + Offset.
8422   if (OpFlag) {
8423     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8424                          DAG.getNode(X86ISD::GlobalBaseReg,
8425                                      SDLoc(), getPointerTy()),
8426                          Result);
8427   }
8428
8429   return Result;
8430 }
8431
8432 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
8433   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
8434
8435   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8436   // global base reg.
8437   unsigned char OpFlag = 0;
8438   unsigned WrapperKind = X86ISD::Wrapper;
8439   CodeModel::Model M = getTargetMachine().getCodeModel();
8440
8441   if (Subtarget->isPICStyleRIPRel() &&
8442       (M == CodeModel::Small || M == CodeModel::Kernel))
8443     WrapperKind = X86ISD::WrapperRIP;
8444   else if (Subtarget->isPICStyleGOT())
8445     OpFlag = X86II::MO_GOTOFF;
8446   else if (Subtarget->isPICStyleStubPIC())
8447     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8448
8449   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
8450                                           OpFlag);
8451   SDLoc DL(JT);
8452   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8453
8454   // With PIC, the address is actually $g + Offset.
8455   if (OpFlag)
8456     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8457                          DAG.getNode(X86ISD::GlobalBaseReg,
8458                                      SDLoc(), getPointerTy()),
8459                          Result);
8460
8461   return Result;
8462 }
8463
8464 SDValue
8465 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
8466   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
8467
8468   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8469   // global base reg.
8470   unsigned char OpFlag = 0;
8471   unsigned WrapperKind = X86ISD::Wrapper;
8472   CodeModel::Model M = getTargetMachine().getCodeModel();
8473
8474   if (Subtarget->isPICStyleRIPRel() &&
8475       (M == CodeModel::Small || M == CodeModel::Kernel)) {
8476     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8477       OpFlag = X86II::MO_GOTPCREL;
8478     WrapperKind = X86ISD::WrapperRIP;
8479   } else if (Subtarget->isPICStyleGOT()) {
8480     OpFlag = X86II::MO_GOT;
8481   } else if (Subtarget->isPICStyleStubPIC()) {
8482     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8483   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8484     OpFlag = X86II::MO_DARWIN_NONLAZY;
8485   }
8486
8487   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8488
8489   SDLoc DL(Op);
8490   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8491
8492   // With PIC, the address is actually $g + Offset.
8493   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8494       !Subtarget->is64Bit()) {
8495     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8496                          DAG.getNode(X86ISD::GlobalBaseReg,
8497                                      SDLoc(), getPointerTy()),
8498                          Result);
8499   }
8500
8501   // For symbols that require a load from a stub to get the address, emit the
8502   // load.
8503   if (isGlobalStubReference(OpFlag))
8504     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8505                          MachinePointerInfo::getGOT(), false, false, false, 0);
8506
8507   return Result;
8508 }
8509
8510 SDValue
8511 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8512   // Create the TargetBlockAddressAddress node.
8513   unsigned char OpFlags =
8514     Subtarget->ClassifyBlockAddressReference();
8515   CodeModel::Model M = getTargetMachine().getCodeModel();
8516   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8517   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8518   SDLoc dl(Op);
8519   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8520                                              OpFlags);
8521
8522   if (Subtarget->isPICStyleRIPRel() &&
8523       (M == CodeModel::Small || M == CodeModel::Kernel))
8524     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8525   else
8526     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8527
8528   // With PIC, the address is actually $g + Offset.
8529   if (isGlobalRelativeToPICBase(OpFlags)) {
8530     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8531                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8532                          Result);
8533   }
8534
8535   return Result;
8536 }
8537
8538 SDValue
8539 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8540                                       int64_t Offset, SelectionDAG &DAG) const {
8541   // Create the TargetGlobalAddress node, folding in the constant
8542   // offset if it is legal.
8543   unsigned char OpFlags =
8544     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8545   CodeModel::Model M = getTargetMachine().getCodeModel();
8546   SDValue Result;
8547   if (OpFlags == X86II::MO_NO_FLAG &&
8548       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8549     // A direct static reference to a global.
8550     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8551     Offset = 0;
8552   } else {
8553     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8554   }
8555
8556   if (Subtarget->isPICStyleRIPRel() &&
8557       (M == CodeModel::Small || M == CodeModel::Kernel))
8558     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8559   else
8560     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8561
8562   // With PIC, the address is actually $g + Offset.
8563   if (isGlobalRelativeToPICBase(OpFlags)) {
8564     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8565                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8566                          Result);
8567   }
8568
8569   // For globals that require a load from a stub to get the address, emit the
8570   // load.
8571   if (isGlobalStubReference(OpFlags))
8572     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8573                          MachinePointerInfo::getGOT(), false, false, false, 0);
8574
8575   // If there was a non-zero offset that we didn't fold, create an explicit
8576   // addition for it.
8577   if (Offset != 0)
8578     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8579                          DAG.getConstant(Offset, getPointerTy()));
8580
8581   return Result;
8582 }
8583
8584 SDValue
8585 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8586   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8587   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8588   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8589 }
8590
8591 static SDValue
8592 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8593            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8594            unsigned char OperandFlags, bool LocalDynamic = false) {
8595   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8596   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8597   SDLoc dl(GA);
8598   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8599                                            GA->getValueType(0),
8600                                            GA->getOffset(),
8601                                            OperandFlags);
8602
8603   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8604                                            : X86ISD::TLSADDR;
8605
8606   if (InFlag) {
8607     SDValue Ops[] = { Chain,  TGA, *InFlag };
8608     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
8609   } else {
8610     SDValue Ops[]  = { Chain, TGA };
8611     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
8612   }
8613
8614   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8615   MFI->setAdjustsStack(true);
8616
8617   SDValue Flag = Chain.getValue(1);
8618   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8619 }
8620
8621 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8622 static SDValue
8623 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8624                                 const EVT PtrVT) {
8625   SDValue InFlag;
8626   SDLoc dl(GA);  // ? function entry point might be better
8627   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8628                                    DAG.getNode(X86ISD::GlobalBaseReg,
8629                                                SDLoc(), PtrVT), InFlag);
8630   InFlag = Chain.getValue(1);
8631
8632   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8633 }
8634
8635 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8636 static SDValue
8637 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8638                                 const EVT PtrVT) {
8639   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
8640                     X86::RAX, X86II::MO_TLSGD);
8641 }
8642
8643 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8644                                            SelectionDAG &DAG,
8645                                            const EVT PtrVT,
8646                                            bool is64Bit) {
8647   SDLoc dl(GA);
8648
8649   // Get the start address of the TLS block for this module.
8650   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8651       .getInfo<X86MachineFunctionInfo>();
8652   MFI->incNumLocalDynamicTLSAccesses();
8653
8654   SDValue Base;
8655   if (is64Bit) {
8656     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
8657                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8658   } else {
8659     SDValue InFlag;
8660     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8661         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8662     InFlag = Chain.getValue(1);
8663     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8664                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8665   }
8666
8667   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8668   // of Base.
8669
8670   // Build x@dtpoff.
8671   unsigned char OperandFlags = X86II::MO_DTPOFF;
8672   unsigned WrapperKind = X86ISD::Wrapper;
8673   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8674                                            GA->getValueType(0),
8675                                            GA->getOffset(), OperandFlags);
8676   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8677
8678   // Add x@dtpoff with the base.
8679   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8680 }
8681
8682 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8683 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8684                                    const EVT PtrVT, TLSModel::Model model,
8685                                    bool is64Bit, bool isPIC) {
8686   SDLoc dl(GA);
8687
8688   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8689   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8690                                                          is64Bit ? 257 : 256));
8691
8692   SDValue ThreadPointer =
8693       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8694                   MachinePointerInfo(Ptr), false, false, false, 0);
8695
8696   unsigned char OperandFlags = 0;
8697   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8698   // initialexec.
8699   unsigned WrapperKind = X86ISD::Wrapper;
8700   if (model == TLSModel::LocalExec) {
8701     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8702   } else if (model == TLSModel::InitialExec) {
8703     if (is64Bit) {
8704       OperandFlags = X86II::MO_GOTTPOFF;
8705       WrapperKind = X86ISD::WrapperRIP;
8706     } else {
8707       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8708     }
8709   } else {
8710     llvm_unreachable("Unexpected model");
8711   }
8712
8713   // emit "addl x@ntpoff,%eax" (local exec)
8714   // or "addl x@indntpoff,%eax" (initial exec)
8715   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8716   SDValue TGA =
8717       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8718                                  GA->getOffset(), OperandFlags);
8719   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8720
8721   if (model == TLSModel::InitialExec) {
8722     if (isPIC && !is64Bit) {
8723       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8724                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8725                            Offset);
8726     }
8727
8728     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8729                          MachinePointerInfo::getGOT(), false, false, false, 0);
8730   }
8731
8732   // The address of the thread local variable is the add of the thread
8733   // pointer with the offset of the variable.
8734   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8735 }
8736
8737 SDValue
8738 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8739
8740   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8741   const GlobalValue *GV = GA->getGlobal();
8742
8743   if (Subtarget->isTargetELF()) {
8744     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8745
8746     switch (model) {
8747       case TLSModel::GeneralDynamic:
8748         if (Subtarget->is64Bit())
8749           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8750         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8751       case TLSModel::LocalDynamic:
8752         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8753                                            Subtarget->is64Bit());
8754       case TLSModel::InitialExec:
8755       case TLSModel::LocalExec:
8756         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8757                                    Subtarget->is64Bit(),
8758                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8759     }
8760     llvm_unreachable("Unknown TLS model.");
8761   }
8762
8763   if (Subtarget->isTargetDarwin()) {
8764     // Darwin only has one model of TLS.  Lower to that.
8765     unsigned char OpFlag = 0;
8766     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8767                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8768
8769     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8770     // global base reg.
8771     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8772                   !Subtarget->is64Bit();
8773     if (PIC32)
8774       OpFlag = X86II::MO_TLVP_PIC_BASE;
8775     else
8776       OpFlag = X86II::MO_TLVP;
8777     SDLoc DL(Op);
8778     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8779                                                 GA->getValueType(0),
8780                                                 GA->getOffset(), OpFlag);
8781     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8782
8783     // With PIC32, the address is actually $g + Offset.
8784     if (PIC32)
8785       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8786                            DAG.getNode(X86ISD::GlobalBaseReg,
8787                                        SDLoc(), getPointerTy()),
8788                            Offset);
8789
8790     // Lowering the machine isd will make sure everything is in the right
8791     // location.
8792     SDValue Chain = DAG.getEntryNode();
8793     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8794     SDValue Args[] = { Chain, Offset };
8795     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
8796
8797     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8798     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8799     MFI->setAdjustsStack(true);
8800
8801     // And our return value (tls address) is in the standard call return value
8802     // location.
8803     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8804     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8805                               Chain.getValue(1));
8806   }
8807
8808   if (Subtarget->isTargetKnownWindowsMSVC() ||
8809       Subtarget->isTargetWindowsGNU()) {
8810     // Just use the implicit TLS architecture
8811     // Need to generate someting similar to:
8812     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8813     //                                  ; from TEB
8814     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8815     //   mov     rcx, qword [rdx+rcx*8]
8816     //   mov     eax, .tls$:tlsvar
8817     //   [rax+rcx] contains the address
8818     // Windows 64bit: gs:0x58
8819     // Windows 32bit: fs:__tls_array
8820
8821     // If GV is an alias then use the aliasee for determining
8822     // thread-localness.
8823     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8824       GV = GA->getAliasedGlobal();
8825     SDLoc dl(GA);
8826     SDValue Chain = DAG.getEntryNode();
8827
8828     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8829     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8830     // use its literal value of 0x2C.
8831     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8832                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8833                                                              256)
8834                                         : Type::getInt32PtrTy(*DAG.getContext(),
8835                                                               257));
8836
8837     SDValue TlsArray =
8838         Subtarget->is64Bit()
8839             ? DAG.getIntPtrConstant(0x58)
8840             : (Subtarget->isTargetWindowsGNU()
8841                    ? DAG.getIntPtrConstant(0x2C)
8842                    : DAG.getExternalSymbol("_tls_array", getPointerTy()));
8843
8844     SDValue ThreadPointer =
8845         DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8846                     MachinePointerInfo(Ptr), false, false, false, 0);
8847
8848     // Load the _tls_index variable
8849     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8850     if (Subtarget->is64Bit())
8851       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8852                            IDX, MachinePointerInfo(), MVT::i32,
8853                            false, false, 0);
8854     else
8855       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8856                         false, false, false, 0);
8857
8858     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8859                                     getPointerTy());
8860     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8861
8862     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8863     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8864                       false, false, false, 0);
8865
8866     // Get the offset of start of .tls section
8867     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8868                                              GA->getValueType(0),
8869                                              GA->getOffset(), X86II::MO_SECREL);
8870     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8871
8872     // The address of the thread local variable is the add of the thread
8873     // pointer with the offset of the variable.
8874     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8875   }
8876
8877   llvm_unreachable("TLS not implemented for this target.");
8878 }
8879
8880 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8881 /// and take a 2 x i32 value to shift plus a shift amount.
8882 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
8883   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8884   MVT VT = Op.getSimpleValueType();
8885   unsigned VTBits = VT.getSizeInBits();
8886   SDLoc dl(Op);
8887   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8888   SDValue ShOpLo = Op.getOperand(0);
8889   SDValue ShOpHi = Op.getOperand(1);
8890   SDValue ShAmt  = Op.getOperand(2);
8891   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
8892   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
8893   // during isel.
8894   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8895                                   DAG.getConstant(VTBits - 1, MVT::i8));
8896   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8897                                      DAG.getConstant(VTBits - 1, MVT::i8))
8898                        : DAG.getConstant(0, VT);
8899
8900   SDValue Tmp2, Tmp3;
8901   if (Op.getOpcode() == ISD::SHL_PARTS) {
8902     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8903     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
8904   } else {
8905     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8906     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
8907   }
8908
8909   // If the shift amount is larger or equal than the width of a part we can't
8910   // rely on the results of shld/shrd. Insert a test and select the appropriate
8911   // values for large shift amounts.
8912   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8913                                 DAG.getConstant(VTBits, MVT::i8));
8914   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8915                              AndNode, DAG.getConstant(0, MVT::i8));
8916
8917   SDValue Hi, Lo;
8918   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8919   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8920   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8921
8922   if (Op.getOpcode() == ISD::SHL_PARTS) {
8923     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
8924     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
8925   } else {
8926     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
8927     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
8928   }
8929
8930   SDValue Ops[2] = { Lo, Hi };
8931   return DAG.getMergeValues(Ops, dl);
8932 }
8933
8934 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8935                                            SelectionDAG &DAG) const {
8936   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
8937
8938   if (SrcVT.isVector())
8939     return SDValue();
8940
8941   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
8942          "Unknown SINT_TO_FP to lower!");
8943
8944   // These are really Legal; return the operand so the caller accepts it as
8945   // Legal.
8946   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8947     return Op;
8948   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8949       Subtarget->is64Bit()) {
8950     return Op;
8951   }
8952
8953   SDLoc dl(Op);
8954   unsigned Size = SrcVT.getSizeInBits()/8;
8955   MachineFunction &MF = DAG.getMachineFunction();
8956   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8957   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8958   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8959                                StackSlot,
8960                                MachinePointerInfo::getFixedStack(SSFI),
8961                                false, false, 0);
8962   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8963 }
8964
8965 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8966                                      SDValue StackSlot,
8967                                      SelectionDAG &DAG) const {
8968   // Build the FILD
8969   SDLoc DL(Op);
8970   SDVTList Tys;
8971   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8972   if (useSSE)
8973     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8974   else
8975     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8976
8977   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8978
8979   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8980   MachineMemOperand *MMO;
8981   if (FI) {
8982     int SSFI = FI->getIndex();
8983     MMO =
8984       DAG.getMachineFunction()
8985       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8986                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8987   } else {
8988     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8989     StackSlot = StackSlot.getOperand(1);
8990   }
8991   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8992   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8993                                            X86ISD::FILD, DL,
8994                                            Tys, Ops, SrcVT, MMO);
8995
8996   if (useSSE) {
8997     Chain = Result.getValue(1);
8998     SDValue InFlag = Result.getValue(2);
8999
9000     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
9001     // shouldn't be necessary except that RFP cannot be live across
9002     // multiple blocks. When stackifier is fixed, they can be uncoupled.
9003     MachineFunction &MF = DAG.getMachineFunction();
9004     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
9005     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
9006     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9007     Tys = DAG.getVTList(MVT::Other);
9008     SDValue Ops[] = {
9009       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
9010     };
9011     MachineMemOperand *MMO =
9012       DAG.getMachineFunction()
9013       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9014                             MachineMemOperand::MOStore, SSFISize, SSFISize);
9015
9016     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
9017                                     Ops, Op.getValueType(), MMO);
9018     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
9019                          MachinePointerInfo::getFixedStack(SSFI),
9020                          false, false, false, 0);
9021   }
9022
9023   return Result;
9024 }
9025
9026 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
9027 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
9028                                                SelectionDAG &DAG) const {
9029   // This algorithm is not obvious. Here it is what we're trying to output:
9030   /*
9031      movq       %rax,  %xmm0
9032      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
9033      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
9034      #ifdef __SSE3__
9035        haddpd   %xmm0, %xmm0
9036      #else
9037        pshufd   $0x4e, %xmm0, %xmm1
9038        addpd    %xmm1, %xmm0
9039      #endif
9040   */
9041
9042   SDLoc dl(Op);
9043   LLVMContext *Context = DAG.getContext();
9044
9045   // Build some magic constants.
9046   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
9047   Constant *C0 = ConstantDataVector::get(*Context, CV0);
9048   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
9049
9050   SmallVector<Constant*,2> CV1;
9051   CV1.push_back(
9052     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9053                                       APInt(64, 0x4330000000000000ULL))));
9054   CV1.push_back(
9055     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9056                                       APInt(64, 0x4530000000000000ULL))));
9057   Constant *C1 = ConstantVector::get(CV1);
9058   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
9059
9060   // Load the 64-bit value into an XMM register.
9061   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
9062                             Op.getOperand(0));
9063   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
9064                               MachinePointerInfo::getConstantPool(),
9065                               false, false, false, 16);
9066   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
9067                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
9068                               CLod0);
9069
9070   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
9071                               MachinePointerInfo::getConstantPool(),
9072                               false, false, false, 16);
9073   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
9074   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
9075   SDValue Result;
9076
9077   if (Subtarget->hasSSE3()) {
9078     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
9079     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
9080   } else {
9081     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
9082     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
9083                                            S2F, 0x4E, DAG);
9084     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
9085                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
9086                          Sub);
9087   }
9088
9089   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
9090                      DAG.getIntPtrConstant(0));
9091 }
9092
9093 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
9094 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
9095                                                SelectionDAG &DAG) const {
9096   SDLoc dl(Op);
9097   // FP constant to bias correct the final result.
9098   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
9099                                    MVT::f64);
9100
9101   // Load the 32-bit value into an XMM register.
9102   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
9103                              Op.getOperand(0));
9104
9105   // Zero out the upper parts of the register.
9106   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
9107
9108   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
9109                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
9110                      DAG.getIntPtrConstant(0));
9111
9112   // Or the load with the bias.
9113   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
9114                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
9115                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
9116                                                    MVT::v2f64, Load)),
9117                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
9118                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
9119                                                    MVT::v2f64, Bias)));
9120   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
9121                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
9122                    DAG.getIntPtrConstant(0));
9123
9124   // Subtract the bias.
9125   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
9126
9127   // Handle final rounding.
9128   EVT DestVT = Op.getValueType();
9129
9130   if (DestVT.bitsLT(MVT::f64))
9131     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
9132                        DAG.getIntPtrConstant(0));
9133   if (DestVT.bitsGT(MVT::f64))
9134     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
9135
9136   // Handle final rounding.
9137   return Sub;
9138 }
9139
9140 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
9141                                                SelectionDAG &DAG) const {
9142   SDValue N0 = Op.getOperand(0);
9143   MVT SVT = N0.getSimpleValueType();
9144   SDLoc dl(Op);
9145
9146   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
9147           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
9148          "Custom UINT_TO_FP is not supported!");
9149
9150   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
9151   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
9152                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
9153 }
9154
9155 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
9156                                            SelectionDAG &DAG) const {
9157   SDValue N0 = Op.getOperand(0);
9158   SDLoc dl(Op);
9159
9160   if (Op.getValueType().isVector())
9161     return lowerUINT_TO_FP_vec(Op, DAG);
9162
9163   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
9164   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
9165   // the optimization here.
9166   if (DAG.SignBitIsZero(N0))
9167     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
9168
9169   MVT SrcVT = N0.getSimpleValueType();
9170   MVT DstVT = Op.getSimpleValueType();
9171   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
9172     return LowerUINT_TO_FP_i64(Op, DAG);
9173   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
9174     return LowerUINT_TO_FP_i32(Op, DAG);
9175   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
9176     return SDValue();
9177
9178   // Make a 64-bit buffer, and use it to build an FILD.
9179   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
9180   if (SrcVT == MVT::i32) {
9181     SDValue WordOff = DAG.getConstant(4, getPointerTy());
9182     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
9183                                      getPointerTy(), StackSlot, WordOff);
9184     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
9185                                   StackSlot, MachinePointerInfo(),
9186                                   false, false, 0);
9187     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
9188                                   OffsetSlot, MachinePointerInfo(),
9189                                   false, false, 0);
9190     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
9191     return Fild;
9192   }
9193
9194   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
9195   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
9196                                StackSlot, MachinePointerInfo(),
9197                                false, false, 0);
9198   // For i64 source, we need to add the appropriate power of 2 if the input
9199   // was negative.  This is the same as the optimization in
9200   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
9201   // we must be careful to do the computation in x87 extended precision, not
9202   // in SSE. (The generic code can't know it's OK to do this, or how to.)
9203   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
9204   MachineMemOperand *MMO =
9205     DAG.getMachineFunction()
9206     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9207                           MachineMemOperand::MOLoad, 8, 8);
9208
9209   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
9210   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
9211   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
9212                                          MVT::i64, MMO);
9213
9214   APInt FF(32, 0x5F800000ULL);
9215
9216   // Check whether the sign bit is set.
9217   SDValue SignSet = DAG.getSetCC(dl,
9218                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
9219                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
9220                                  ISD::SETLT);
9221
9222   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
9223   SDValue FudgePtr = DAG.getConstantPool(
9224                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
9225                                          getPointerTy());
9226
9227   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
9228   SDValue Zero = DAG.getIntPtrConstant(0);
9229   SDValue Four = DAG.getIntPtrConstant(4);
9230   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
9231                                Zero, Four);
9232   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
9233
9234   // Load the value out, extending it from f32 to f80.
9235   // FIXME: Avoid the extend by constructing the right constant pool?
9236   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
9237                                  FudgePtr, MachinePointerInfo::getConstantPool(),
9238                                  MVT::f32, false, false, 4);
9239   // Extend everything to 80 bits to force it to be done on x87.
9240   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
9241   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
9242 }
9243
9244 std::pair<SDValue,SDValue>
9245 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
9246                                     bool IsSigned, bool IsReplace) const {
9247   SDLoc DL(Op);
9248
9249   EVT DstTy = Op.getValueType();
9250
9251   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
9252     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
9253     DstTy = MVT::i64;
9254   }
9255
9256   assert(DstTy.getSimpleVT() <= MVT::i64 &&
9257          DstTy.getSimpleVT() >= MVT::i16 &&
9258          "Unknown FP_TO_INT to lower!");
9259
9260   // These are really Legal.
9261   if (DstTy == MVT::i32 &&
9262       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
9263     return std::make_pair(SDValue(), SDValue());
9264   if (Subtarget->is64Bit() &&
9265       DstTy == MVT::i64 &&
9266       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
9267     return std::make_pair(SDValue(), SDValue());
9268
9269   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
9270   // stack slot, or into the FTOL runtime function.
9271   MachineFunction &MF = DAG.getMachineFunction();
9272   unsigned MemSize = DstTy.getSizeInBits()/8;
9273   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
9274   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9275
9276   unsigned Opc;
9277   if (!IsSigned && isIntegerTypeFTOL(DstTy))
9278     Opc = X86ISD::WIN_FTOL;
9279   else
9280     switch (DstTy.getSimpleVT().SimpleTy) {
9281     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
9282     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
9283     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
9284     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
9285     }
9286
9287   SDValue Chain = DAG.getEntryNode();
9288   SDValue Value = Op.getOperand(0);
9289   EVT TheVT = Op.getOperand(0).getValueType();
9290   // FIXME This causes a redundant load/store if the SSE-class value is already
9291   // in memory, such as if it is on the callstack.
9292   if (isScalarFPTypeInSSEReg(TheVT)) {
9293     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
9294     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
9295                          MachinePointerInfo::getFixedStack(SSFI),
9296                          false, false, 0);
9297     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
9298     SDValue Ops[] = {
9299       Chain, StackSlot, DAG.getValueType(TheVT)
9300     };
9301
9302     MachineMemOperand *MMO =
9303       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9304                               MachineMemOperand::MOLoad, MemSize, MemSize);
9305     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
9306     Chain = Value.getValue(1);
9307     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
9308     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9309   }
9310
9311   MachineMemOperand *MMO =
9312     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9313                             MachineMemOperand::MOStore, MemSize, MemSize);
9314
9315   if (Opc != X86ISD::WIN_FTOL) {
9316     // Build the FP_TO_INT*_IN_MEM
9317     SDValue Ops[] = { Chain, Value, StackSlot };
9318     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
9319                                            Ops, DstTy, MMO);
9320     return std::make_pair(FIST, StackSlot);
9321   } else {
9322     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
9323       DAG.getVTList(MVT::Other, MVT::Glue),
9324       Chain, Value);
9325     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
9326       MVT::i32, ftol.getValue(1));
9327     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
9328       MVT::i32, eax.getValue(2));
9329     SDValue Ops[] = { eax, edx };
9330     SDValue pair = IsReplace
9331       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops)
9332       : DAG.getMergeValues(Ops, DL);
9333     return std::make_pair(pair, SDValue());
9334   }
9335 }
9336
9337 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
9338                               const X86Subtarget *Subtarget) {
9339   MVT VT = Op->getSimpleValueType(0);
9340   SDValue In = Op->getOperand(0);
9341   MVT InVT = In.getSimpleValueType();
9342   SDLoc dl(Op);
9343
9344   // Optimize vectors in AVX mode:
9345   //
9346   //   v8i16 -> v8i32
9347   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
9348   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
9349   //   Concat upper and lower parts.
9350   //
9351   //   v4i32 -> v4i64
9352   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
9353   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
9354   //   Concat upper and lower parts.
9355   //
9356
9357   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
9358       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
9359       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
9360     return SDValue();
9361
9362   if (Subtarget->hasInt256())
9363     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
9364
9365   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
9366   SDValue Undef = DAG.getUNDEF(InVT);
9367   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
9368   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9369   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9370
9371   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
9372                              VT.getVectorNumElements()/2);
9373
9374   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
9375   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
9376
9377   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
9378 }
9379
9380 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
9381                                         SelectionDAG &DAG) {
9382   MVT VT = Op->getSimpleValueType(0);
9383   SDValue In = Op->getOperand(0);
9384   MVT InVT = In.getSimpleValueType();
9385   SDLoc DL(Op);
9386   unsigned int NumElts = VT.getVectorNumElements();
9387   if (NumElts != 8 && NumElts != 16)
9388     return SDValue();
9389
9390   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
9391     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
9392
9393   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
9394   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9395   // Now we have only mask extension
9396   assert(InVT.getVectorElementType() == MVT::i1);
9397   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
9398   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9399   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
9400   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9401   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9402                            MachinePointerInfo::getConstantPool(),
9403                            false, false, false, Alignment);
9404
9405   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
9406   if (VT.is512BitVector())
9407     return Brcst;
9408   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
9409 }
9410
9411 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9412                                SelectionDAG &DAG) {
9413   if (Subtarget->hasFp256()) {
9414     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9415     if (Res.getNode())
9416       return Res;
9417   }
9418
9419   return SDValue();
9420 }
9421
9422 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9423                                 SelectionDAG &DAG) {
9424   SDLoc DL(Op);
9425   MVT VT = Op.getSimpleValueType();
9426   SDValue In = Op.getOperand(0);
9427   MVT SVT = In.getSimpleValueType();
9428
9429   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
9430     return LowerZERO_EXTEND_AVX512(Op, DAG);
9431
9432   if (Subtarget->hasFp256()) {
9433     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9434     if (Res.getNode())
9435       return Res;
9436   }
9437
9438   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
9439          VT.getVectorNumElements() != SVT.getVectorNumElements());
9440   return SDValue();
9441 }
9442
9443 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
9444   SDLoc DL(Op);
9445   MVT VT = Op.getSimpleValueType();
9446   SDValue In = Op.getOperand(0);
9447   MVT InVT = In.getSimpleValueType();
9448
9449   if (VT == MVT::i1) {
9450     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
9451            "Invalid scalar TRUNCATE operation");
9452     if (InVT == MVT::i32)
9453       return SDValue();
9454     if (InVT.getSizeInBits() == 64)
9455       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
9456     else if (InVT.getSizeInBits() < 32)
9457       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
9458     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
9459   }
9460   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
9461          "Invalid TRUNCATE operation");
9462
9463   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9464     if (VT.getVectorElementType().getSizeInBits() >=8)
9465       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9466
9467     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9468     unsigned NumElts = InVT.getVectorNumElements();
9469     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9470     if (InVT.getSizeInBits() < 512) {
9471       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9472       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9473       InVT = ExtVT;
9474     }
9475     
9476     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9477     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9478     SDValue CP = DAG.getConstantPool(C, getPointerTy());
9479     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9480     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9481                            MachinePointerInfo::getConstantPool(),
9482                            false, false, false, Alignment);
9483     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9484     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9485     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9486   }
9487
9488   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9489     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9490     if (Subtarget->hasInt256()) {
9491       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9492       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9493       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9494                                 ShufMask);
9495       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9496                          DAG.getIntPtrConstant(0));
9497     }
9498
9499     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9500                                DAG.getIntPtrConstant(0));
9501     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9502                                DAG.getIntPtrConstant(2));
9503     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9504     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9505     static const int ShufMask[] = {0, 2, 4, 6};
9506     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
9507   }
9508
9509   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9510     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9511     if (Subtarget->hasInt256()) {
9512       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9513
9514       SmallVector<SDValue,32> pshufbMask;
9515       for (unsigned i = 0; i < 2; ++i) {
9516         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9517         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9518         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9519         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9520         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9521         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9522         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9523         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9524         for (unsigned j = 0; j < 8; ++j)
9525           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9526       }
9527       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
9528       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9529       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9530
9531       static const int ShufMask[] = {0,  2,  -1,  -1};
9532       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9533                                 &ShufMask[0]);
9534       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9535                        DAG.getIntPtrConstant(0));
9536       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9537     }
9538
9539     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9540                                DAG.getIntPtrConstant(0));
9541
9542     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9543                                DAG.getIntPtrConstant(4));
9544
9545     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9546     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9547
9548     // The PSHUFB mask:
9549     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9550                                    -1, -1, -1, -1, -1, -1, -1, -1};
9551
9552     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9553     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9554     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9555
9556     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9557     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9558
9559     // The MOVLHPS Mask:
9560     static const int ShufMask2[] = {0, 1, 4, 5};
9561     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9562     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9563   }
9564
9565   // Handle truncation of V256 to V128 using shuffles.
9566   if (!VT.is128BitVector() || !InVT.is256BitVector())
9567     return SDValue();
9568
9569   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9570
9571   unsigned NumElems = VT.getVectorNumElements();
9572   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
9573
9574   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9575   // Prepare truncation shuffle mask
9576   for (unsigned i = 0; i != NumElems; ++i)
9577     MaskVec[i] = i * 2;
9578   SDValue V = DAG.getVectorShuffle(NVT, DL,
9579                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9580                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9581   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9582                      DAG.getIntPtrConstant(0));
9583 }
9584
9585 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9586                                            SelectionDAG &DAG) const {
9587   assert(!Op.getSimpleValueType().isVector());
9588
9589   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9590     /*IsSigned=*/ true, /*IsReplace=*/ false);
9591   SDValue FIST = Vals.first, StackSlot = Vals.second;
9592   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9593   if (!FIST.getNode()) return Op;
9594
9595   if (StackSlot.getNode())
9596     // Load the result.
9597     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9598                        FIST, StackSlot, MachinePointerInfo(),
9599                        false, false, false, 0);
9600
9601   // The node is the result.
9602   return FIST;
9603 }
9604
9605 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9606                                            SelectionDAG &DAG) const {
9607   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9608     /*IsSigned=*/ false, /*IsReplace=*/ false);
9609   SDValue FIST = Vals.first, StackSlot = Vals.second;
9610   assert(FIST.getNode() && "Unexpected failure");
9611
9612   if (StackSlot.getNode())
9613     // Load the result.
9614     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9615                        FIST, StackSlot, MachinePointerInfo(),
9616                        false, false, false, 0);
9617
9618   // The node is the result.
9619   return FIST;
9620 }
9621
9622 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9623   SDLoc DL(Op);
9624   MVT VT = Op.getSimpleValueType();
9625   SDValue In = Op.getOperand(0);
9626   MVT SVT = In.getSimpleValueType();
9627
9628   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9629
9630   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9631                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9632                                  In, DAG.getUNDEF(SVT)));
9633 }
9634
9635 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
9636   LLVMContext *Context = DAG.getContext();
9637   SDLoc dl(Op);
9638   MVT VT = Op.getSimpleValueType();
9639   MVT EltVT = VT;
9640   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9641   if (VT.isVector()) {
9642     EltVT = VT.getVectorElementType();
9643     NumElts = VT.getVectorNumElements();
9644   }
9645   Constant *C;
9646   if (EltVT == MVT::f64)
9647     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9648                                           APInt(64, ~(1ULL << 63))));
9649   else
9650     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9651                                           APInt(32, ~(1U << 31))));
9652   C = ConstantVector::getSplat(NumElts, C);
9653   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9654   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9655   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9656   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9657                              MachinePointerInfo::getConstantPool(),
9658                              false, false, false, Alignment);
9659   if (VT.isVector()) {
9660     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9661     return DAG.getNode(ISD::BITCAST, dl, VT,
9662                        DAG.getNode(ISD::AND, dl, ANDVT,
9663                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9664                                                Op.getOperand(0)),
9665                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9666   }
9667   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9668 }
9669
9670 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
9671   LLVMContext *Context = DAG.getContext();
9672   SDLoc dl(Op);
9673   MVT VT = Op.getSimpleValueType();
9674   MVT EltVT = VT;
9675   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9676   if (VT.isVector()) {
9677     EltVT = VT.getVectorElementType();
9678     NumElts = VT.getVectorNumElements();
9679   }
9680   Constant *C;
9681   if (EltVT == MVT::f64)
9682     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9683                                           APInt(64, 1ULL << 63)));
9684   else
9685     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9686                                           APInt(32, 1U << 31)));
9687   C = ConstantVector::getSplat(NumElts, C);
9688   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9689   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9690   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9691   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9692                              MachinePointerInfo::getConstantPool(),
9693                              false, false, false, Alignment);
9694   if (VT.isVector()) {
9695     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9696     return DAG.getNode(ISD::BITCAST, dl, VT,
9697                        DAG.getNode(ISD::XOR, dl, XORVT,
9698                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9699                                                Op.getOperand(0)),
9700                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9701   }
9702
9703   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9704 }
9705
9706 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
9707   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9708   LLVMContext *Context = DAG.getContext();
9709   SDValue Op0 = Op.getOperand(0);
9710   SDValue Op1 = Op.getOperand(1);
9711   SDLoc dl(Op);
9712   MVT VT = Op.getSimpleValueType();
9713   MVT SrcVT = Op1.getSimpleValueType();
9714
9715   // If second operand is smaller, extend it first.
9716   if (SrcVT.bitsLT(VT)) {
9717     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9718     SrcVT = VT;
9719   }
9720   // And if it is bigger, shrink it first.
9721   if (SrcVT.bitsGT(VT)) {
9722     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9723     SrcVT = VT;
9724   }
9725
9726   // At this point the operands and the result should have the same
9727   // type, and that won't be f80 since that is not custom lowered.
9728
9729   // First get the sign bit of second operand.
9730   SmallVector<Constant*,4> CV;
9731   if (SrcVT == MVT::f64) {
9732     const fltSemantics &Sem = APFloat::IEEEdouble;
9733     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9734     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9735   } else {
9736     const fltSemantics &Sem = APFloat::IEEEsingle;
9737     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9738     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9739     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9740     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9741   }
9742   Constant *C = ConstantVector::get(CV);
9743   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9744   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9745                               MachinePointerInfo::getConstantPool(),
9746                               false, false, false, 16);
9747   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9748
9749   // Shift sign bit right or left if the two operands have different types.
9750   if (SrcVT.bitsGT(VT)) {
9751     // Op0 is MVT::f32, Op1 is MVT::f64.
9752     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9753     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9754                           DAG.getConstant(32, MVT::i32));
9755     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9756     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9757                           DAG.getIntPtrConstant(0));
9758   }
9759
9760   // Clear first operand sign bit.
9761   CV.clear();
9762   if (VT == MVT::f64) {
9763     const fltSemantics &Sem = APFloat::IEEEdouble;
9764     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9765                                                    APInt(64, ~(1ULL << 63)))));
9766     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9767   } else {
9768     const fltSemantics &Sem = APFloat::IEEEsingle;
9769     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9770                                                    APInt(32, ~(1U << 31)))));
9771     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9772     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9773     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9774   }
9775   C = ConstantVector::get(CV);
9776   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9777   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9778                               MachinePointerInfo::getConstantPool(),
9779                               false, false, false, 16);
9780   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9781
9782   // Or the value with the sign bit.
9783   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9784 }
9785
9786 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9787   SDValue N0 = Op.getOperand(0);
9788   SDLoc dl(Op);
9789   MVT VT = Op.getSimpleValueType();
9790
9791   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9792   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9793                                   DAG.getConstant(1, VT));
9794   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9795 }
9796
9797 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9798 //
9799 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9800                                       SelectionDAG &DAG) {
9801   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9802
9803   if (!Subtarget->hasSSE41())
9804     return SDValue();
9805
9806   if (!Op->hasOneUse())
9807     return SDValue();
9808
9809   SDNode *N = Op.getNode();
9810   SDLoc DL(N);
9811
9812   SmallVector<SDValue, 8> Opnds;
9813   DenseMap<SDValue, unsigned> VecInMap;
9814   SmallVector<SDValue, 8> VecIns;
9815   EVT VT = MVT::Other;
9816
9817   // Recognize a special case where a vector is casted into wide integer to
9818   // test all 0s.
9819   Opnds.push_back(N->getOperand(0));
9820   Opnds.push_back(N->getOperand(1));
9821
9822   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9823     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9824     // BFS traverse all OR'd operands.
9825     if (I->getOpcode() == ISD::OR) {
9826       Opnds.push_back(I->getOperand(0));
9827       Opnds.push_back(I->getOperand(1));
9828       // Re-evaluate the number of nodes to be traversed.
9829       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9830       continue;
9831     }
9832
9833     // Quit if a non-EXTRACT_VECTOR_ELT
9834     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9835       return SDValue();
9836
9837     // Quit if without a constant index.
9838     SDValue Idx = I->getOperand(1);
9839     if (!isa<ConstantSDNode>(Idx))
9840       return SDValue();
9841
9842     SDValue ExtractedFromVec = I->getOperand(0);
9843     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9844     if (M == VecInMap.end()) {
9845       VT = ExtractedFromVec.getValueType();
9846       // Quit if not 128/256-bit vector.
9847       if (!VT.is128BitVector() && !VT.is256BitVector())
9848         return SDValue();
9849       // Quit if not the same type.
9850       if (VecInMap.begin() != VecInMap.end() &&
9851           VT != VecInMap.begin()->first.getValueType())
9852         return SDValue();
9853       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9854       VecIns.push_back(ExtractedFromVec);
9855     }
9856     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9857   }
9858
9859   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9860          "Not extracted from 128-/256-bit vector.");
9861
9862   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9863
9864   for (DenseMap<SDValue, unsigned>::const_iterator
9865         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9866     // Quit if not all elements are used.
9867     if (I->second != FullMask)
9868       return SDValue();
9869   }
9870
9871   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9872
9873   // Cast all vectors into TestVT for PTEST.
9874   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9875     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9876
9877   // If more than one full vectors are evaluated, OR them first before PTEST.
9878   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9879     // Each iteration will OR 2 nodes and append the result until there is only
9880     // 1 node left, i.e. the final OR'd value of all vectors.
9881     SDValue LHS = VecIns[Slot];
9882     SDValue RHS = VecIns[Slot + 1];
9883     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9884   }
9885
9886   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9887                      VecIns.back(), VecIns.back());
9888 }
9889
9890 /// \brief return true if \c Op has a use that doesn't just read flags.
9891 static bool hasNonFlagsUse(SDValue Op) {
9892   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
9893        ++UI) {
9894     SDNode *User = *UI;
9895     unsigned UOpNo = UI.getOperandNo();
9896     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9897       // Look pass truncate.
9898       UOpNo = User->use_begin().getOperandNo();
9899       User = *User->use_begin();
9900     }
9901
9902     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
9903         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
9904       return true;
9905   }
9906   return false;
9907 }
9908
9909 /// Emit nodes that will be selected as "test Op0,Op0", or something
9910 /// equivalent.
9911 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
9912                                     SelectionDAG &DAG) const {
9913   if (Op.getValueType() == MVT::i1)
9914     // KORTEST instruction should be selected
9915     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9916                        DAG.getConstant(0, Op.getValueType()));
9917
9918   // CF and OF aren't always set the way we want. Determine which
9919   // of these we need.
9920   bool NeedCF = false;
9921   bool NeedOF = false;
9922   switch (X86CC) {
9923   default: break;
9924   case X86::COND_A: case X86::COND_AE:
9925   case X86::COND_B: case X86::COND_BE:
9926     NeedCF = true;
9927     break;
9928   case X86::COND_G: case X86::COND_GE:
9929   case X86::COND_L: case X86::COND_LE:
9930   case X86::COND_O: case X86::COND_NO:
9931     NeedOF = true;
9932     break;
9933   }
9934   // See if we can use the EFLAGS value from the operand instead of
9935   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9936   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9937   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
9938     // Emit a CMP with 0, which is the TEST pattern.
9939     //if (Op.getValueType() == MVT::i1)
9940     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
9941     //                     DAG.getConstant(0, MVT::i1));
9942     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9943                        DAG.getConstant(0, Op.getValueType()));
9944   }
9945   unsigned Opcode = 0;
9946   unsigned NumOperands = 0;
9947
9948   // Truncate operations may prevent the merge of the SETCC instruction
9949   // and the arithmetic instruction before it. Attempt to truncate the operands
9950   // of the arithmetic instruction and use a reduced bit-width instruction.
9951   bool NeedTruncation = false;
9952   SDValue ArithOp = Op;
9953   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9954     SDValue Arith = Op->getOperand(0);
9955     // Both the trunc and the arithmetic op need to have one user each.
9956     if (Arith->hasOneUse())
9957       switch (Arith.getOpcode()) {
9958         default: break;
9959         case ISD::ADD:
9960         case ISD::SUB:
9961         case ISD::AND:
9962         case ISD::OR:
9963         case ISD::XOR: {
9964           NeedTruncation = true;
9965           ArithOp = Arith;
9966         }
9967       }
9968   }
9969
9970   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9971   // which may be the result of a CAST.  We use the variable 'Op', which is the
9972   // non-casted variable when we check for possible users.
9973   switch (ArithOp.getOpcode()) {
9974   case ISD::ADD:
9975     // Due to an isel shortcoming, be conservative if this add is likely to be
9976     // selected as part of a load-modify-store instruction. When the root node
9977     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9978     // uses of other nodes in the match, such as the ADD in this case. This
9979     // leads to the ADD being left around and reselected, with the result being
9980     // two adds in the output.  Alas, even if none our users are stores, that
9981     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9982     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9983     // climbing the DAG back to the root, and it doesn't seem to be worth the
9984     // effort.
9985     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9986          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9987       if (UI->getOpcode() != ISD::CopyToReg &&
9988           UI->getOpcode() != ISD::SETCC &&
9989           UI->getOpcode() != ISD::STORE)
9990         goto default_case;
9991
9992     if (ConstantSDNode *C =
9993         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9994       // An add of one will be selected as an INC.
9995       if (C->getAPIntValue() == 1) {
9996         Opcode = X86ISD::INC;
9997         NumOperands = 1;
9998         break;
9999       }
10000
10001       // An add of negative one (subtract of one) will be selected as a DEC.
10002       if (C->getAPIntValue().isAllOnesValue()) {
10003         Opcode = X86ISD::DEC;
10004         NumOperands = 1;
10005         break;
10006       }
10007     }
10008
10009     // Otherwise use a regular EFLAGS-setting add.
10010     Opcode = X86ISD::ADD;
10011     NumOperands = 2;
10012     break;
10013   case ISD::SHL:
10014   case ISD::SRL:
10015     // If we have a constant logical shift that's only used in a comparison
10016     // against zero turn it into an equivalent AND. This allows turning it into
10017     // a TEST instruction later.
10018     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) &&
10019         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
10020       EVT VT = Op.getValueType();
10021       unsigned BitWidth = VT.getSizeInBits();
10022       unsigned ShAmt = Op->getConstantOperandVal(1);
10023       if (ShAmt >= BitWidth) // Avoid undefined shifts.
10024         break;
10025       APInt Mask = ArithOp.getOpcode() == ISD::SRL
10026                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
10027                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
10028       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
10029         break;
10030       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
10031                                 DAG.getConstant(Mask, VT));
10032       DAG.ReplaceAllUsesWith(Op, New);
10033       Op = New;
10034     }
10035     break;
10036
10037   case ISD::AND:
10038     // If the primary and result isn't used, don't bother using X86ISD::AND,
10039     // because a TEST instruction will be better.
10040     if (!hasNonFlagsUse(Op))
10041       break;
10042     // FALL THROUGH
10043   case ISD::SUB:
10044   case ISD::OR:
10045   case ISD::XOR:
10046     // Due to the ISEL shortcoming noted above, be conservative if this op is
10047     // likely to be selected as part of a load-modify-store instruction.
10048     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
10049            UE = Op.getNode()->use_end(); UI != UE; ++UI)
10050       if (UI->getOpcode() == ISD::STORE)
10051         goto default_case;
10052
10053     // Otherwise use a regular EFLAGS-setting instruction.
10054     switch (ArithOp.getOpcode()) {
10055     default: llvm_unreachable("unexpected operator!");
10056     case ISD::SUB: Opcode = X86ISD::SUB; break;
10057     case ISD::XOR: Opcode = X86ISD::XOR; break;
10058     case ISD::AND: Opcode = X86ISD::AND; break;
10059     case ISD::OR: {
10060       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
10061         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
10062         if (EFLAGS.getNode())
10063           return EFLAGS;
10064       }
10065       Opcode = X86ISD::OR;
10066       break;
10067     }
10068     }
10069
10070     NumOperands = 2;
10071     break;
10072   case X86ISD::ADD:
10073   case X86ISD::SUB:
10074   case X86ISD::INC:
10075   case X86ISD::DEC:
10076   case X86ISD::OR:
10077   case X86ISD::XOR:
10078   case X86ISD::AND:
10079     return SDValue(Op.getNode(), 1);
10080   default:
10081   default_case:
10082     break;
10083   }
10084
10085   // If we found that truncation is beneficial, perform the truncation and
10086   // update 'Op'.
10087   if (NeedTruncation) {
10088     EVT VT = Op.getValueType();
10089     SDValue WideVal = Op->getOperand(0);
10090     EVT WideVT = WideVal.getValueType();
10091     unsigned ConvertedOp = 0;
10092     // Use a target machine opcode to prevent further DAGCombine
10093     // optimizations that may separate the arithmetic operations
10094     // from the setcc node.
10095     switch (WideVal.getOpcode()) {
10096       default: break;
10097       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
10098       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
10099       case ISD::AND: ConvertedOp = X86ISD::AND; break;
10100       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
10101       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
10102     }
10103
10104     if (ConvertedOp) {
10105       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10106       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
10107         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
10108         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
10109         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
10110       }
10111     }
10112   }
10113
10114   if (Opcode == 0)
10115     // Emit a CMP with 0, which is the TEST pattern.
10116     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
10117                        DAG.getConstant(0, Op.getValueType()));
10118
10119   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10120   SmallVector<SDValue, 4> Ops;
10121   for (unsigned i = 0; i != NumOperands; ++i)
10122     Ops.push_back(Op.getOperand(i));
10123
10124   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
10125   DAG.ReplaceAllUsesWith(Op, New);
10126   return SDValue(New.getNode(), 1);
10127 }
10128
10129 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
10130 /// equivalent.
10131 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
10132                                    SDLoc dl, SelectionDAG &DAG) const {
10133   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
10134     if (C->getAPIntValue() == 0)
10135       return EmitTest(Op0, X86CC, dl, DAG);
10136
10137      if (Op0.getValueType() == MVT::i1)
10138        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
10139   }
10140  
10141   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
10142        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
10143     // Do the comparison at i32 if it's smaller, besides the Atom case. 
10144     // This avoids subregister aliasing issues. Keep the smaller reference 
10145     // if we're optimizing for size, however, as that'll allow better folding 
10146     // of memory operations.
10147     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
10148         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
10149              AttributeSet::FunctionIndex, Attribute::MinSize) &&
10150         !Subtarget->isAtom()) {
10151       unsigned ExtendOp =
10152           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
10153       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
10154       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
10155     }
10156     // Use SUB instead of CMP to enable CSE between SUB and CMP.
10157     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
10158     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
10159                               Op0, Op1);
10160     return SDValue(Sub.getNode(), 1);
10161   }
10162   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
10163 }
10164
10165 /// Convert a comparison if required by the subtarget.
10166 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
10167                                                  SelectionDAG &DAG) const {
10168   // If the subtarget does not support the FUCOMI instruction, floating-point
10169   // comparisons have to be converted.
10170   if (Subtarget->hasCMov() ||
10171       Cmp.getOpcode() != X86ISD::CMP ||
10172       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
10173       !Cmp.getOperand(1).getValueType().isFloatingPoint())
10174     return Cmp;
10175
10176   // The instruction selector will select an FUCOM instruction instead of
10177   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
10178   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
10179   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
10180   SDLoc dl(Cmp);
10181   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
10182   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
10183   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
10184                             DAG.getConstant(8, MVT::i8));
10185   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
10186   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
10187 }
10188
10189 static bool isAllOnes(SDValue V) {
10190   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10191   return C && C->isAllOnesValue();
10192 }
10193
10194 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
10195 /// if it's possible.
10196 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
10197                                      SDLoc dl, SelectionDAG &DAG) const {
10198   SDValue Op0 = And.getOperand(0);
10199   SDValue Op1 = And.getOperand(1);
10200   if (Op0.getOpcode() == ISD::TRUNCATE)
10201     Op0 = Op0.getOperand(0);
10202   if (Op1.getOpcode() == ISD::TRUNCATE)
10203     Op1 = Op1.getOperand(0);
10204
10205   SDValue LHS, RHS;
10206   if (Op1.getOpcode() == ISD::SHL)
10207     std::swap(Op0, Op1);
10208   if (Op0.getOpcode() == ISD::SHL) {
10209     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
10210       if (And00C->getZExtValue() == 1) {
10211         // If we looked past a truncate, check that it's only truncating away
10212         // known zeros.
10213         unsigned BitWidth = Op0.getValueSizeInBits();
10214         unsigned AndBitWidth = And.getValueSizeInBits();
10215         if (BitWidth > AndBitWidth) {
10216           APInt Zeros, Ones;
10217           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
10218           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
10219             return SDValue();
10220         }
10221         LHS = Op1;
10222         RHS = Op0.getOperand(1);
10223       }
10224   } else if (Op1.getOpcode() == ISD::Constant) {
10225     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
10226     uint64_t AndRHSVal = AndRHS->getZExtValue();
10227     SDValue AndLHS = Op0;
10228
10229     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
10230       LHS = AndLHS.getOperand(0);
10231       RHS = AndLHS.getOperand(1);
10232     }
10233
10234     // Use BT if the immediate can't be encoded in a TEST instruction.
10235     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
10236       LHS = AndLHS;
10237       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
10238     }
10239   }
10240
10241   if (LHS.getNode()) {
10242     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
10243     // instruction.  Since the shift amount is in-range-or-undefined, we know
10244     // that doing a bittest on the i32 value is ok.  We extend to i32 because
10245     // the encoding for the i16 version is larger than the i32 version.
10246     // Also promote i16 to i32 for performance / code size reason.
10247     if (LHS.getValueType() == MVT::i8 ||
10248         LHS.getValueType() == MVT::i16)
10249       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
10250
10251     // If the operand types disagree, extend the shift amount to match.  Since
10252     // BT ignores high bits (like shifts) we can use anyextend.
10253     if (LHS.getValueType() != RHS.getValueType())
10254       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
10255
10256     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
10257     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
10258     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10259                        DAG.getConstant(Cond, MVT::i8), BT);
10260   }
10261
10262   return SDValue();
10263 }
10264
10265 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
10266 /// mask CMPs.
10267 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
10268                               SDValue &Op1) {
10269   unsigned SSECC;
10270   bool Swap = false;
10271
10272   // SSE Condition code mapping:
10273   //  0 - EQ
10274   //  1 - LT
10275   //  2 - LE
10276   //  3 - UNORD
10277   //  4 - NEQ
10278   //  5 - NLT
10279   //  6 - NLE
10280   //  7 - ORD
10281   switch (SetCCOpcode) {
10282   default: llvm_unreachable("Unexpected SETCC condition");
10283   case ISD::SETOEQ:
10284   case ISD::SETEQ:  SSECC = 0; break;
10285   case ISD::SETOGT:
10286   case ISD::SETGT:  Swap = true; // Fallthrough
10287   case ISD::SETLT:
10288   case ISD::SETOLT: SSECC = 1; break;
10289   case ISD::SETOGE:
10290   case ISD::SETGE:  Swap = true; // Fallthrough
10291   case ISD::SETLE:
10292   case ISD::SETOLE: SSECC = 2; break;
10293   case ISD::SETUO:  SSECC = 3; break;
10294   case ISD::SETUNE:
10295   case ISD::SETNE:  SSECC = 4; break;
10296   case ISD::SETULE: Swap = true; // Fallthrough
10297   case ISD::SETUGE: SSECC = 5; break;
10298   case ISD::SETULT: Swap = true; // Fallthrough
10299   case ISD::SETUGT: SSECC = 6; break;
10300   case ISD::SETO:   SSECC = 7; break;
10301   case ISD::SETUEQ:
10302   case ISD::SETONE: SSECC = 8; break;
10303   }
10304   if (Swap)
10305     std::swap(Op0, Op1);
10306
10307   return SSECC;
10308 }
10309
10310 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
10311 // ones, and then concatenate the result back.
10312 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
10313   MVT VT = Op.getSimpleValueType();
10314
10315   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
10316          "Unsupported value type for operation");
10317
10318   unsigned NumElems = VT.getVectorNumElements();
10319   SDLoc dl(Op);
10320   SDValue CC = Op.getOperand(2);
10321
10322   // Extract the LHS vectors
10323   SDValue LHS = Op.getOperand(0);
10324   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
10325   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
10326
10327   // Extract the RHS vectors
10328   SDValue RHS = Op.getOperand(1);
10329   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
10330   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
10331
10332   // Issue the operation on the smaller types and concatenate the result back
10333   MVT EltVT = VT.getVectorElementType();
10334   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10335   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
10336                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
10337                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
10338 }
10339
10340 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
10341                                      const X86Subtarget *Subtarget) {
10342   SDValue Op0 = Op.getOperand(0);
10343   SDValue Op1 = Op.getOperand(1);
10344   SDValue CC = Op.getOperand(2);
10345   MVT VT = Op.getSimpleValueType();
10346   SDLoc dl(Op);
10347
10348   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
10349          Op.getValueType().getScalarType() == MVT::i1 &&
10350          "Cannot set masked compare for this operation");
10351
10352   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10353   unsigned  Opc = 0;
10354   bool Unsigned = false;
10355   bool Swap = false;
10356   unsigned SSECC;
10357   switch (SetCCOpcode) {
10358   default: llvm_unreachable("Unexpected SETCC condition");
10359   case ISD::SETNE:  SSECC = 4; break;
10360   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
10361   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
10362   case ISD::SETLT:  Swap = true; //fall-through
10363   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
10364   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
10365   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
10366   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
10367   case ISD::SETULE: Unsigned = true; //fall-through
10368   case ISD::SETLE:  SSECC = 2; break;
10369   }
10370
10371   if (Swap)
10372     std::swap(Op0, Op1);
10373   if (Opc)
10374     return DAG.getNode(Opc, dl, VT, Op0, Op1);
10375   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
10376   return DAG.getNode(Opc, dl, VT, Op0, Op1,
10377                      DAG.getConstant(SSECC, MVT::i8));
10378 }
10379
10380 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
10381 /// operand \p Op1.  If non-trivial (for example because it's not constant)
10382 /// return an empty value.
10383 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
10384 {
10385   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
10386   if (!BV)
10387     return SDValue();
10388
10389   MVT VT = Op1.getSimpleValueType();
10390   MVT EVT = VT.getVectorElementType();
10391   unsigned n = VT.getVectorNumElements();
10392   SmallVector<SDValue, 8> ULTOp1;
10393
10394   for (unsigned i = 0; i < n; ++i) {
10395     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
10396     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
10397       return SDValue();
10398
10399     // Avoid underflow.
10400     APInt Val = Elt->getAPIntValue();
10401     if (Val == 0)
10402       return SDValue();
10403
10404     ULTOp1.push_back(DAG.getConstant(Val - 1, EVT));
10405   }
10406
10407   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
10408 }
10409
10410 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
10411                            SelectionDAG &DAG) {
10412   SDValue Op0 = Op.getOperand(0);
10413   SDValue Op1 = Op.getOperand(1);
10414   SDValue CC = Op.getOperand(2);
10415   MVT VT = Op.getSimpleValueType();
10416   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10417   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10418   SDLoc dl(Op);
10419
10420   if (isFP) {
10421 #ifndef NDEBUG
10422     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10423     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10424 #endif
10425
10426     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10427     unsigned Opc = X86ISD::CMPP;
10428     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10429       assert(VT.getVectorNumElements() <= 16);
10430       Opc = X86ISD::CMPM;
10431     }
10432     // In the two special cases we can't handle, emit two comparisons.
10433     if (SSECC == 8) {
10434       unsigned CC0, CC1;
10435       unsigned CombineOpc;
10436       if (SetCCOpcode == ISD::SETUEQ) {
10437         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10438       } else {
10439         assert(SetCCOpcode == ISD::SETONE);
10440         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10441       }
10442
10443       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10444                                  DAG.getConstant(CC0, MVT::i8));
10445       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10446                                  DAG.getConstant(CC1, MVT::i8));
10447       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10448     }
10449     // Handle all other FP comparisons here.
10450     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10451                        DAG.getConstant(SSECC, MVT::i8));
10452   }
10453
10454   // Break 256-bit integer vector compare into smaller ones.
10455   if (VT.is256BitVector() && !Subtarget->hasInt256())
10456     return Lower256IntVSETCC(Op, DAG);
10457
10458   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10459   EVT OpVT = Op1.getValueType();
10460   if (Subtarget->hasAVX512()) {
10461     if (Op1.getValueType().is512BitVector() ||
10462         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10463       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
10464
10465     // In AVX-512 architecture setcc returns mask with i1 elements,
10466     // But there is no compare instruction for i8 and i16 elements.
10467     // We are not talking about 512-bit operands in this case, these
10468     // types are illegal.
10469     if (MaskResult &&
10470         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10471          OpVT.getVectorElementType().getSizeInBits() >= 8))
10472       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10473                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10474   }
10475
10476   // We are handling one of the integer comparisons here.  Since SSE only has
10477   // GT and EQ comparisons for integer, swapping operands and multiple
10478   // operations may be required for some comparisons.
10479   unsigned Opc;
10480   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10481   bool Subus = false;
10482
10483   switch (SetCCOpcode) {
10484   default: llvm_unreachable("Unexpected SETCC condition");
10485   case ISD::SETNE:  Invert = true;
10486   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
10487   case ISD::SETLT:  Swap = true;
10488   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
10489   case ISD::SETGE:  Swap = true;
10490   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
10491                     Invert = true; break;
10492   case ISD::SETULT: Swap = true;
10493   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
10494                     FlipSigns = true; break;
10495   case ISD::SETUGE: Swap = true;
10496   case ISD::SETULE: Opc = X86ISD::PCMPGT;
10497                     FlipSigns = true; Invert = true; break;
10498   }
10499
10500   // Special case: Use min/max operations for SETULE/SETUGE
10501   MVT VET = VT.getVectorElementType();
10502   bool hasMinMax =
10503        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10504     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10505
10506   if (hasMinMax) {
10507     switch (SetCCOpcode) {
10508     default: break;
10509     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10510     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10511     }
10512
10513     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10514   }
10515
10516   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
10517   if (!MinMax && hasSubus) {
10518     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
10519     // Op0 u<= Op1:
10520     //   t = psubus Op0, Op1
10521     //   pcmpeq t, <0..0>
10522     switch (SetCCOpcode) {
10523     default: break;
10524     case ISD::SETULT: {
10525       // If the comparison is against a constant we can turn this into a
10526       // setule.  With psubus, setule does not require a swap.  This is
10527       // beneficial because the constant in the register is no longer
10528       // destructed as the destination so it can be hoisted out of a loop.
10529       // Only do this pre-AVX since vpcmp* is no longer destructive.
10530       if (Subtarget->hasAVX())
10531         break;
10532       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
10533       if (ULEOp1.getNode()) {
10534         Op1 = ULEOp1;
10535         Subus = true; Invert = false; Swap = false;
10536       }
10537       break;
10538     }
10539     // Psubus is better than flip-sign because it requires no inversion.
10540     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
10541     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
10542     }
10543
10544     if (Subus) {
10545       Opc = X86ISD::SUBUS;
10546       FlipSigns = false;
10547     }
10548   }
10549
10550   if (Swap)
10551     std::swap(Op0, Op1);
10552
10553   // Check that the operation in question is available (most are plain SSE2,
10554   // but PCMPGTQ and PCMPEQQ have different requirements).
10555   if (VT == MVT::v2i64) {
10556     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10557       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10558
10559       // First cast everything to the right type.
10560       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10561       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10562
10563       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10564       // bits of the inputs before performing those operations. The lower
10565       // compare is always unsigned.
10566       SDValue SB;
10567       if (FlipSigns) {
10568         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10569       } else {
10570         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10571         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10572         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10573                          Sign, Zero, Sign, Zero);
10574       }
10575       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10576       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10577
10578       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10579       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10580       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10581
10582       // Create masks for only the low parts/high parts of the 64 bit integers.
10583       static const int MaskHi[] = { 1, 1, 3, 3 };
10584       static const int MaskLo[] = { 0, 0, 2, 2 };
10585       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10586       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10587       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10588
10589       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10590       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10591
10592       if (Invert)
10593         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10594
10595       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10596     }
10597
10598     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10599       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10600       // pcmpeqd + pshufd + pand.
10601       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10602
10603       // First cast everything to the right type.
10604       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10605       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10606
10607       // Do the compare.
10608       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10609
10610       // Make sure the lower and upper halves are both all-ones.
10611       static const int Mask[] = { 1, 0, 3, 2 };
10612       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10613       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10614
10615       if (Invert)
10616         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10617
10618       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10619     }
10620   }
10621
10622   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10623   // bits of the inputs before performing those operations.
10624   if (FlipSigns) {
10625     EVT EltVT = VT.getVectorElementType();
10626     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10627     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10628     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10629   }
10630
10631   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10632
10633   // If the logical-not of the result is required, perform that now.
10634   if (Invert)
10635     Result = DAG.getNOT(dl, Result, VT);
10636
10637   if (MinMax)
10638     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10639
10640   if (Subus)
10641     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
10642                          getZeroVector(VT, Subtarget, DAG, dl));
10643
10644   return Result;
10645 }
10646
10647 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10648
10649   MVT VT = Op.getSimpleValueType();
10650
10651   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10652
10653   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10654          && "SetCC type must be 8-bit or 1-bit integer");
10655   SDValue Op0 = Op.getOperand(0);
10656   SDValue Op1 = Op.getOperand(1);
10657   SDLoc dl(Op);
10658   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10659
10660   // Optimize to BT if possible.
10661   // Lower (X & (1 << N)) == 0 to BT(X, N).
10662   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10663   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10664   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10665       Op1.getOpcode() == ISD::Constant &&
10666       cast<ConstantSDNode>(Op1)->isNullValue() &&
10667       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10668     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10669     if (NewSetCC.getNode())
10670       return NewSetCC;
10671   }
10672
10673   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10674   // these.
10675   if (Op1.getOpcode() == ISD::Constant &&
10676       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10677        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10678       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10679
10680     // If the input is a setcc, then reuse the input setcc or use a new one with
10681     // the inverted condition.
10682     if (Op0.getOpcode() == X86ISD::SETCC) {
10683       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10684       bool Invert = (CC == ISD::SETNE) ^
10685         cast<ConstantSDNode>(Op1)->isNullValue();
10686       if (!Invert)
10687         return Op0;
10688
10689       CCode = X86::GetOppositeBranchCondition(CCode);
10690       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10691                                   DAG.getConstant(CCode, MVT::i8),
10692                                   Op0.getOperand(1));
10693       if (VT == MVT::i1)
10694         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10695       return SetCC;
10696     }
10697   }
10698   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
10699       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
10700       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10701
10702     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
10703     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, MVT::i1), NewCC);
10704   }
10705
10706   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10707   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10708   if (X86CC == X86::COND_INVALID)
10709     return SDValue();
10710
10711   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
10712   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10713   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10714                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10715   if (VT == MVT::i1)
10716     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10717   return SetCC;
10718 }
10719
10720 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10721 static bool isX86LogicalCmp(SDValue Op) {
10722   unsigned Opc = Op.getNode()->getOpcode();
10723   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10724       Opc == X86ISD::SAHF)
10725     return true;
10726   if (Op.getResNo() == 1 &&
10727       (Opc == X86ISD::ADD ||
10728        Opc == X86ISD::SUB ||
10729        Opc == X86ISD::ADC ||
10730        Opc == X86ISD::SBB ||
10731        Opc == X86ISD::SMUL ||
10732        Opc == X86ISD::UMUL ||
10733        Opc == X86ISD::INC ||
10734        Opc == X86ISD::DEC ||
10735        Opc == X86ISD::OR ||
10736        Opc == X86ISD::XOR ||
10737        Opc == X86ISD::AND))
10738     return true;
10739
10740   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10741     return true;
10742
10743   return false;
10744 }
10745
10746 static bool isZero(SDValue V) {
10747   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10748   return C && C->isNullValue();
10749 }
10750
10751 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10752   if (V.getOpcode() != ISD::TRUNCATE)
10753     return false;
10754
10755   SDValue VOp0 = V.getOperand(0);
10756   unsigned InBits = VOp0.getValueSizeInBits();
10757   unsigned Bits = V.getValueSizeInBits();
10758   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10759 }
10760
10761 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10762   bool addTest = true;
10763   SDValue Cond  = Op.getOperand(0);
10764   SDValue Op1 = Op.getOperand(1);
10765   SDValue Op2 = Op.getOperand(2);
10766   SDLoc DL(Op);
10767   EVT VT = Op1.getValueType();
10768   SDValue CC;
10769
10770   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10771   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10772   // sequence later on.
10773   if (Cond.getOpcode() == ISD::SETCC &&
10774       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10775        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10776       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10777     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10778     int SSECC = translateX86FSETCC(
10779         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10780
10781     if (SSECC != 8) {
10782       if (Subtarget->hasAVX512()) {
10783         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10784                                   DAG.getConstant(SSECC, MVT::i8));
10785         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10786       }
10787       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10788                                 DAG.getConstant(SSECC, MVT::i8));
10789       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10790       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10791       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10792     }
10793   }
10794
10795   if (Cond.getOpcode() == ISD::SETCC) {
10796     SDValue NewCond = LowerSETCC(Cond, DAG);
10797     if (NewCond.getNode())
10798       Cond = NewCond;
10799   }
10800
10801   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10802   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10803   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10804   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10805   if (Cond.getOpcode() == X86ISD::SETCC &&
10806       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10807       isZero(Cond.getOperand(1).getOperand(1))) {
10808     SDValue Cmp = Cond.getOperand(1);
10809
10810     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10811
10812     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10813         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10814       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10815
10816       SDValue CmpOp0 = Cmp.getOperand(0);
10817       // Apply further optimizations for special cases
10818       // (select (x != 0), -1, 0) -> neg & sbb
10819       // (select (x == 0), 0, -1) -> neg & sbb
10820       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10821         if (YC->isNullValue() &&
10822             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10823           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10824           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10825                                     DAG.getConstant(0, CmpOp0.getValueType()),
10826                                     CmpOp0);
10827           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10828                                     DAG.getConstant(X86::COND_B, MVT::i8),
10829                                     SDValue(Neg.getNode(), 1));
10830           return Res;
10831         }
10832
10833       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10834                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10835       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10836
10837       SDValue Res =   // Res = 0 or -1.
10838         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10839                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10840
10841       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10842         Res = DAG.getNOT(DL, Res, Res.getValueType());
10843
10844       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10845       if (!N2C || !N2C->isNullValue())
10846         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10847       return Res;
10848     }
10849   }
10850
10851   // Look past (and (setcc_carry (cmp ...)), 1).
10852   if (Cond.getOpcode() == ISD::AND &&
10853       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10854     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10855     if (C && C->getAPIntValue() == 1)
10856       Cond = Cond.getOperand(0);
10857   }
10858
10859   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10860   // setting operand in place of the X86ISD::SETCC.
10861   unsigned CondOpcode = Cond.getOpcode();
10862   if (CondOpcode == X86ISD::SETCC ||
10863       CondOpcode == X86ISD::SETCC_CARRY) {
10864     CC = Cond.getOperand(0);
10865
10866     SDValue Cmp = Cond.getOperand(1);
10867     unsigned Opc = Cmp.getOpcode();
10868     MVT VT = Op.getSimpleValueType();
10869
10870     bool IllegalFPCMov = false;
10871     if (VT.isFloatingPoint() && !VT.isVector() &&
10872         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10873       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10874
10875     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10876         Opc == X86ISD::BT) { // FIXME
10877       Cond = Cmp;
10878       addTest = false;
10879     }
10880   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10881              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10882              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10883               Cond.getOperand(0).getValueType() != MVT::i8)) {
10884     SDValue LHS = Cond.getOperand(0);
10885     SDValue RHS = Cond.getOperand(1);
10886     unsigned X86Opcode;
10887     unsigned X86Cond;
10888     SDVTList VTs;
10889     switch (CondOpcode) {
10890     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10891     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10892     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10893     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10894     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10895     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10896     default: llvm_unreachable("unexpected overflowing operator");
10897     }
10898     if (CondOpcode == ISD::UMULO)
10899       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10900                           MVT::i32);
10901     else
10902       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10903
10904     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10905
10906     if (CondOpcode == ISD::UMULO)
10907       Cond = X86Op.getValue(2);
10908     else
10909       Cond = X86Op.getValue(1);
10910
10911     CC = DAG.getConstant(X86Cond, MVT::i8);
10912     addTest = false;
10913   }
10914
10915   if (addTest) {
10916     // Look pass the truncate if the high bits are known zero.
10917     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10918         Cond = Cond.getOperand(0);
10919
10920     // We know the result of AND is compared against zero. Try to match
10921     // it to BT.
10922     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10923       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10924       if (NewSetCC.getNode()) {
10925         CC = NewSetCC.getOperand(0);
10926         Cond = NewSetCC.getOperand(1);
10927         addTest = false;
10928       }
10929     }
10930   }
10931
10932   if (addTest) {
10933     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10934     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
10935   }
10936
10937   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10938   // a <  b ?  0 : -1 -> RES = setcc_carry
10939   // a >= b ? -1 :  0 -> RES = setcc_carry
10940   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10941   if (Cond.getOpcode() == X86ISD::SUB) {
10942     Cond = ConvertCmpIfNecessary(Cond, DAG);
10943     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10944
10945     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10946         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10947       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10948                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10949       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10950         return DAG.getNOT(DL, Res, Res.getValueType());
10951       return Res;
10952     }
10953   }
10954
10955   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10956   // widen the cmov and push the truncate through. This avoids introducing a new
10957   // branch during isel and doesn't add any extensions.
10958   if (Op.getValueType() == MVT::i8 &&
10959       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10960     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10961     if (T1.getValueType() == T2.getValueType() &&
10962         // Blacklist CopyFromReg to avoid partial register stalls.
10963         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10964       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10965       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10966       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10967     }
10968   }
10969
10970   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10971   // condition is true.
10972   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10973   SDValue Ops[] = { Op2, Op1, CC, Cond };
10974   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
10975 }
10976
10977 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10978   MVT VT = Op->getSimpleValueType(0);
10979   SDValue In = Op->getOperand(0);
10980   MVT InVT = In.getSimpleValueType();
10981   SDLoc dl(Op);
10982
10983   unsigned int NumElts = VT.getVectorNumElements();
10984   if (NumElts != 8 && NumElts != 16)
10985     return SDValue();
10986
10987   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10988     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10989
10990   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10991   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10992
10993   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10994   Constant *C = ConstantInt::get(*DAG.getContext(),
10995     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10996
10997   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10998   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10999   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
11000                           MachinePointerInfo::getConstantPool(),
11001                           false, false, false, Alignment);
11002   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
11003   if (VT.is512BitVector())
11004     return Brcst;
11005   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
11006 }
11007
11008 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
11009                                 SelectionDAG &DAG) {
11010   MVT VT = Op->getSimpleValueType(0);
11011   SDValue In = Op->getOperand(0);
11012   MVT InVT = In.getSimpleValueType();
11013   SDLoc dl(Op);
11014
11015   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
11016     return LowerSIGN_EXTEND_AVX512(Op, DAG);
11017
11018   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
11019       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
11020       (VT != MVT::v16i16 || InVT != MVT::v16i8))
11021     return SDValue();
11022
11023   if (Subtarget->hasInt256())
11024     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
11025
11026   // Optimize vectors in AVX mode
11027   // Sign extend  v8i16 to v8i32 and
11028   //              v4i32 to v4i64
11029   //
11030   // Divide input vector into two parts
11031   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
11032   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
11033   // concat the vectors to original VT
11034
11035   unsigned NumElems = InVT.getVectorNumElements();
11036   SDValue Undef = DAG.getUNDEF(InVT);
11037
11038   SmallVector<int,8> ShufMask1(NumElems, -1);
11039   for (unsigned i = 0; i != NumElems/2; ++i)
11040     ShufMask1[i] = i;
11041
11042   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
11043
11044   SmallVector<int,8> ShufMask2(NumElems, -1);
11045   for (unsigned i = 0; i != NumElems/2; ++i)
11046     ShufMask2[i] = i + NumElems/2;
11047
11048   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
11049
11050   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
11051                                 VT.getVectorNumElements()/2);
11052
11053   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
11054   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
11055
11056   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
11057 }
11058
11059 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
11060 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
11061 // from the AND / OR.
11062 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
11063   Opc = Op.getOpcode();
11064   if (Opc != ISD::OR && Opc != ISD::AND)
11065     return false;
11066   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
11067           Op.getOperand(0).hasOneUse() &&
11068           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
11069           Op.getOperand(1).hasOneUse());
11070 }
11071
11072 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
11073 // 1 and that the SETCC node has a single use.
11074 static bool isXor1OfSetCC(SDValue Op) {
11075   if (Op.getOpcode() != ISD::XOR)
11076     return false;
11077   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
11078   if (N1C && N1C->getAPIntValue() == 1) {
11079     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
11080       Op.getOperand(0).hasOneUse();
11081   }
11082   return false;
11083 }
11084
11085 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
11086   bool addTest = true;
11087   SDValue Chain = Op.getOperand(0);
11088   SDValue Cond  = Op.getOperand(1);
11089   SDValue Dest  = Op.getOperand(2);
11090   SDLoc dl(Op);
11091   SDValue CC;
11092   bool Inverted = false;
11093
11094   if (Cond.getOpcode() == ISD::SETCC) {
11095     // Check for setcc([su]{add,sub,mul}o == 0).
11096     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
11097         isa<ConstantSDNode>(Cond.getOperand(1)) &&
11098         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
11099         Cond.getOperand(0).getResNo() == 1 &&
11100         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
11101          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
11102          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
11103          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
11104          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
11105          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
11106       Inverted = true;
11107       Cond = Cond.getOperand(0);
11108     } else {
11109       SDValue NewCond = LowerSETCC(Cond, DAG);
11110       if (NewCond.getNode())
11111         Cond = NewCond;
11112     }
11113   }
11114 #if 0
11115   // FIXME: LowerXALUO doesn't handle these!!
11116   else if (Cond.getOpcode() == X86ISD::ADD  ||
11117            Cond.getOpcode() == X86ISD::SUB  ||
11118            Cond.getOpcode() == X86ISD::SMUL ||
11119            Cond.getOpcode() == X86ISD::UMUL)
11120     Cond = LowerXALUO(Cond, DAG);
11121 #endif
11122
11123   // Look pass (and (setcc_carry (cmp ...)), 1).
11124   if (Cond.getOpcode() == ISD::AND &&
11125       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
11126     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
11127     if (C && C->getAPIntValue() == 1)
11128       Cond = Cond.getOperand(0);
11129   }
11130
11131   // If condition flag is set by a X86ISD::CMP, then use it as the condition
11132   // setting operand in place of the X86ISD::SETCC.
11133   unsigned CondOpcode = Cond.getOpcode();
11134   if (CondOpcode == X86ISD::SETCC ||
11135       CondOpcode == X86ISD::SETCC_CARRY) {
11136     CC = Cond.getOperand(0);
11137
11138     SDValue Cmp = Cond.getOperand(1);
11139     unsigned Opc = Cmp.getOpcode();
11140     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
11141     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
11142       Cond = Cmp;
11143       addTest = false;
11144     } else {
11145       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
11146       default: break;
11147       case X86::COND_O:
11148       case X86::COND_B:
11149         // These can only come from an arithmetic instruction with overflow,
11150         // e.g. SADDO, UADDO.
11151         Cond = Cond.getNode()->getOperand(1);
11152         addTest = false;
11153         break;
11154       }
11155     }
11156   }
11157   CondOpcode = Cond.getOpcode();
11158   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
11159       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
11160       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
11161        Cond.getOperand(0).getValueType() != MVT::i8)) {
11162     SDValue LHS = Cond.getOperand(0);
11163     SDValue RHS = Cond.getOperand(1);
11164     unsigned X86Opcode;
11165     unsigned X86Cond;
11166     SDVTList VTs;
11167     // Keep this in sync with LowerXALUO, otherwise we might create redundant
11168     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
11169     // X86ISD::INC).
11170     switch (CondOpcode) {
11171     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
11172     case ISD::SADDO:
11173       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11174         if (C->isOne()) {
11175           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
11176           break;
11177         }
11178       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
11179     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
11180     case ISD::SSUBO:
11181       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11182         if (C->isOne()) {
11183           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
11184           break;
11185         }
11186       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
11187     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
11188     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
11189     default: llvm_unreachable("unexpected overflowing operator");
11190     }
11191     if (Inverted)
11192       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
11193     if (CondOpcode == ISD::UMULO)
11194       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
11195                           MVT::i32);
11196     else
11197       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
11198
11199     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
11200
11201     if (CondOpcode == ISD::UMULO)
11202       Cond = X86Op.getValue(2);
11203     else
11204       Cond = X86Op.getValue(1);
11205
11206     CC = DAG.getConstant(X86Cond, MVT::i8);
11207     addTest = false;
11208   } else {
11209     unsigned CondOpc;
11210     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
11211       SDValue Cmp = Cond.getOperand(0).getOperand(1);
11212       if (CondOpc == ISD::OR) {
11213         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
11214         // two branches instead of an explicit OR instruction with a
11215         // separate test.
11216         if (Cmp == Cond.getOperand(1).getOperand(1) &&
11217             isX86LogicalCmp(Cmp)) {
11218           CC = Cond.getOperand(0).getOperand(0);
11219           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11220                               Chain, Dest, CC, Cmp);
11221           CC = Cond.getOperand(1).getOperand(0);
11222           Cond = Cmp;
11223           addTest = false;
11224         }
11225       } else { // ISD::AND
11226         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
11227         // two branches instead of an explicit AND instruction with a
11228         // separate test. However, we only do this if this block doesn't
11229         // have a fall-through edge, because this requires an explicit
11230         // jmp when the condition is false.
11231         if (Cmp == Cond.getOperand(1).getOperand(1) &&
11232             isX86LogicalCmp(Cmp) &&
11233             Op.getNode()->hasOneUse()) {
11234           X86::CondCode CCode =
11235             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
11236           CCode = X86::GetOppositeBranchCondition(CCode);
11237           CC = DAG.getConstant(CCode, MVT::i8);
11238           SDNode *User = *Op.getNode()->use_begin();
11239           // Look for an unconditional branch following this conditional branch.
11240           // We need this because we need to reverse the successors in order
11241           // to implement FCMP_OEQ.
11242           if (User->getOpcode() == ISD::BR) {
11243             SDValue FalseBB = User->getOperand(1);
11244             SDNode *NewBR =
11245               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
11246             assert(NewBR == User);
11247             (void)NewBR;
11248             Dest = FalseBB;
11249
11250             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11251                                 Chain, Dest, CC, Cmp);
11252             X86::CondCode CCode =
11253               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
11254             CCode = X86::GetOppositeBranchCondition(CCode);
11255             CC = DAG.getConstant(CCode, MVT::i8);
11256             Cond = Cmp;
11257             addTest = false;
11258           }
11259         }
11260       }
11261     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
11262       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
11263       // It should be transformed during dag combiner except when the condition
11264       // is set by a arithmetics with overflow node.
11265       X86::CondCode CCode =
11266         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
11267       CCode = X86::GetOppositeBranchCondition(CCode);
11268       CC = DAG.getConstant(CCode, MVT::i8);
11269       Cond = Cond.getOperand(0).getOperand(1);
11270       addTest = false;
11271     } else if (Cond.getOpcode() == ISD::SETCC &&
11272                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
11273       // For FCMP_OEQ, we can emit
11274       // two branches instead of an explicit AND instruction with a
11275       // separate test. However, we only do this if this block doesn't
11276       // have a fall-through edge, because this requires an explicit
11277       // jmp when the condition is false.
11278       if (Op.getNode()->hasOneUse()) {
11279         SDNode *User = *Op.getNode()->use_begin();
11280         // Look for an unconditional branch following this conditional branch.
11281         // We need this because we need to reverse the successors in order
11282         // to implement FCMP_OEQ.
11283         if (User->getOpcode() == ISD::BR) {
11284           SDValue FalseBB = User->getOperand(1);
11285           SDNode *NewBR =
11286             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
11287           assert(NewBR == User);
11288           (void)NewBR;
11289           Dest = FalseBB;
11290
11291           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
11292                                     Cond.getOperand(0), Cond.getOperand(1));
11293           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
11294           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11295           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11296                               Chain, Dest, CC, Cmp);
11297           CC = DAG.getConstant(X86::COND_P, MVT::i8);
11298           Cond = Cmp;
11299           addTest = false;
11300         }
11301       }
11302     } else if (Cond.getOpcode() == ISD::SETCC &&
11303                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
11304       // For FCMP_UNE, we can emit
11305       // two branches instead of an explicit AND instruction with a
11306       // separate test. However, we only do this if this block doesn't
11307       // have a fall-through edge, because this requires an explicit
11308       // jmp when the condition is false.
11309       if (Op.getNode()->hasOneUse()) {
11310         SDNode *User = *Op.getNode()->use_begin();
11311         // Look for an unconditional branch following this conditional branch.
11312         // We need this because we need to reverse the successors in order
11313         // to implement FCMP_UNE.
11314         if (User->getOpcode() == ISD::BR) {
11315           SDValue FalseBB = User->getOperand(1);
11316           SDNode *NewBR =
11317             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
11318           assert(NewBR == User);
11319           (void)NewBR;
11320
11321           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
11322                                     Cond.getOperand(0), Cond.getOperand(1));
11323           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
11324           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11325           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11326                               Chain, Dest, CC, Cmp);
11327           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
11328           Cond = Cmp;
11329           addTest = false;
11330           Dest = FalseBB;
11331         }
11332       }
11333     }
11334   }
11335
11336   if (addTest) {
11337     // Look pass the truncate if the high bits are known zero.
11338     if (isTruncWithZeroHighBitsInput(Cond, DAG))
11339         Cond = Cond.getOperand(0);
11340
11341     // We know the result of AND is compared against zero. Try to match
11342     // it to BT.
11343     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
11344       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
11345       if (NewSetCC.getNode()) {
11346         CC = NewSetCC.getOperand(0);
11347         Cond = NewSetCC.getOperand(1);
11348         addTest = false;
11349       }
11350     }
11351   }
11352
11353   if (addTest) {
11354     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11355     Cond = EmitTest(Cond, X86::COND_NE, dl, DAG);
11356   }
11357   Cond = ConvertCmpIfNecessary(Cond, DAG);
11358   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11359                      Chain, Dest, CC, Cond);
11360 }
11361
11362 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
11363 // Calls to _alloca is needed to probe the stack when allocating more than 4k
11364 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
11365 // that the guard pages used by the OS virtual memory manager are allocated in
11366 // correct sequence.
11367 SDValue
11368 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
11369                                            SelectionDAG &DAG) const {
11370   MachineFunction &MF = DAG.getMachineFunction();
11371   bool SplitStack = MF.shouldSplitStack();
11372   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMacho()) ||
11373                SplitStack;
11374   SDLoc dl(Op);
11375
11376   if (!Lower) {
11377     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11378     SDNode* Node = Op.getNode();
11379
11380     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
11381     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
11382         " not tell us which reg is the stack pointer!");
11383     EVT VT = Node->getValueType(0);
11384     SDValue Tmp1 = SDValue(Node, 0);
11385     SDValue Tmp2 = SDValue(Node, 1);
11386     SDValue Tmp3 = Node->getOperand(2);
11387     SDValue Chain = Tmp1.getOperand(0);
11388
11389     // Chain the dynamic stack allocation so that it doesn't modify the stack
11390     // pointer when other instructions are using the stack.
11391     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
11392         SDLoc(Node));
11393
11394     SDValue Size = Tmp2.getOperand(1);
11395     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
11396     Chain = SP.getValue(1);
11397     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
11398     const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
11399     unsigned StackAlign = TFI.getStackAlignment();
11400     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
11401     if (Align > StackAlign)
11402       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
11403           DAG.getConstant(-(uint64_t)Align, VT));
11404     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
11405
11406     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
11407         DAG.getIntPtrConstant(0, true), SDValue(),
11408         SDLoc(Node));
11409
11410     SDValue Ops[2] = { Tmp1, Tmp2 };
11411     return DAG.getMergeValues(Ops, dl);
11412   }
11413
11414   // Get the inputs.
11415   SDValue Chain = Op.getOperand(0);
11416   SDValue Size  = Op.getOperand(1);
11417   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
11418   EVT VT = Op.getNode()->getValueType(0);
11419
11420   bool Is64Bit = Subtarget->is64Bit();
11421   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
11422
11423   if (SplitStack) {
11424     MachineRegisterInfo &MRI = MF.getRegInfo();
11425
11426     if (Is64Bit) {
11427       // The 64 bit implementation of segmented stacks needs to clobber both r10
11428       // r11. This makes it impossible to use it along with nested parameters.
11429       const Function *F = MF.getFunction();
11430
11431       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
11432            I != E; ++I)
11433         if (I->hasNestAttr())
11434           report_fatal_error("Cannot use segmented stacks with functions that "
11435                              "have nested arguments.");
11436     }
11437
11438     const TargetRegisterClass *AddrRegClass =
11439       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
11440     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
11441     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
11442     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
11443                                 DAG.getRegister(Vreg, SPTy));
11444     SDValue Ops1[2] = { Value, Chain };
11445     return DAG.getMergeValues(Ops1, dl);
11446   } else {
11447     SDValue Flag;
11448     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
11449
11450     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
11451     Flag = Chain.getValue(1);
11452     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11453
11454     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
11455
11456     const X86RegisterInfo *RegInfo =
11457       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11458     unsigned SPReg = RegInfo->getStackRegister();
11459     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
11460     Chain = SP.getValue(1);
11461
11462     if (Align) {
11463       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
11464                        DAG.getConstant(-(uint64_t)Align, VT));
11465       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
11466     }
11467
11468     SDValue Ops1[2] = { SP, Chain };
11469     return DAG.getMergeValues(Ops1, dl);
11470   }
11471 }
11472
11473 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
11474   MachineFunction &MF = DAG.getMachineFunction();
11475   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
11476
11477   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11478   SDLoc DL(Op);
11479
11480   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
11481     // vastart just stores the address of the VarArgsFrameIndex slot into the
11482     // memory location argument.
11483     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11484                                    getPointerTy());
11485     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
11486                         MachinePointerInfo(SV), false, false, 0);
11487   }
11488
11489   // __va_list_tag:
11490   //   gp_offset         (0 - 6 * 8)
11491   //   fp_offset         (48 - 48 + 8 * 16)
11492   //   overflow_arg_area (point to parameters coming in memory).
11493   //   reg_save_area
11494   SmallVector<SDValue, 8> MemOps;
11495   SDValue FIN = Op.getOperand(1);
11496   // Store gp_offset
11497   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
11498                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
11499                                                MVT::i32),
11500                                FIN, MachinePointerInfo(SV), false, false, 0);
11501   MemOps.push_back(Store);
11502
11503   // Store fp_offset
11504   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11505                     FIN, DAG.getIntPtrConstant(4));
11506   Store = DAG.getStore(Op.getOperand(0), DL,
11507                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
11508                                        MVT::i32),
11509                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
11510   MemOps.push_back(Store);
11511
11512   // Store ptr to overflow_arg_area
11513   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11514                     FIN, DAG.getIntPtrConstant(4));
11515   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11516                                     getPointerTy());
11517   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
11518                        MachinePointerInfo(SV, 8),
11519                        false, false, 0);
11520   MemOps.push_back(Store);
11521
11522   // Store ptr to reg_save_area.
11523   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11524                     FIN, DAG.getIntPtrConstant(8));
11525   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11526                                     getPointerTy());
11527   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11528                        MachinePointerInfo(SV, 16), false, false, 0);
11529   MemOps.push_back(Store);
11530   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
11531 }
11532
11533 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11534   assert(Subtarget->is64Bit() &&
11535          "LowerVAARG only handles 64-bit va_arg!");
11536   assert((Subtarget->isTargetLinux() ||
11537           Subtarget->isTargetDarwin()) &&
11538           "Unhandled target in LowerVAARG");
11539   assert(Op.getNode()->getNumOperands() == 4);
11540   SDValue Chain = Op.getOperand(0);
11541   SDValue SrcPtr = Op.getOperand(1);
11542   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11543   unsigned Align = Op.getConstantOperandVal(3);
11544   SDLoc dl(Op);
11545
11546   EVT ArgVT = Op.getNode()->getValueType(0);
11547   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11548   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11549   uint8_t ArgMode;
11550
11551   // Decide which area this value should be read from.
11552   // TODO: Implement the AMD64 ABI in its entirety. This simple
11553   // selection mechanism works only for the basic types.
11554   if (ArgVT == MVT::f80) {
11555     llvm_unreachable("va_arg for f80 not yet implemented");
11556   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11557     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11558   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11559     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11560   } else {
11561     llvm_unreachable("Unhandled argument type in LowerVAARG");
11562   }
11563
11564   if (ArgMode == 2) {
11565     // Sanity Check: Make sure using fp_offset makes sense.
11566     assert(!getTargetMachine().Options.UseSoftFloat &&
11567            !(DAG.getMachineFunction()
11568                 .getFunction()->getAttributes()
11569                 .hasAttribute(AttributeSet::FunctionIndex,
11570                               Attribute::NoImplicitFloat)) &&
11571            Subtarget->hasSSE1());
11572   }
11573
11574   // Insert VAARG_64 node into the DAG
11575   // VAARG_64 returns two values: Variable Argument Address, Chain
11576   SmallVector<SDValue, 11> InstOps;
11577   InstOps.push_back(Chain);
11578   InstOps.push_back(SrcPtr);
11579   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11580   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11581   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11582   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11583   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11584                                           VTs, InstOps, MVT::i64,
11585                                           MachinePointerInfo(SV),
11586                                           /*Align=*/0,
11587                                           /*Volatile=*/false,
11588                                           /*ReadMem=*/true,
11589                                           /*WriteMem=*/true);
11590   Chain = VAARG.getValue(1);
11591
11592   // Load the next argument and return it
11593   return DAG.getLoad(ArgVT, dl,
11594                      Chain,
11595                      VAARG,
11596                      MachinePointerInfo(),
11597                      false, false, false, 0);
11598 }
11599
11600 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11601                            SelectionDAG &DAG) {
11602   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11603   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11604   SDValue Chain = Op.getOperand(0);
11605   SDValue DstPtr = Op.getOperand(1);
11606   SDValue SrcPtr = Op.getOperand(2);
11607   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11608   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11609   SDLoc DL(Op);
11610
11611   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11612                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11613                        false,
11614                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11615 }
11616
11617 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11618 // amount is a constant. Takes immediate version of shift as input.
11619 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11620                                           SDValue SrcOp, uint64_t ShiftAmt,
11621                                           SelectionDAG &DAG) {
11622   MVT ElementType = VT.getVectorElementType();
11623
11624   // Fold this packed shift into its first operand if ShiftAmt is 0.
11625   if (ShiftAmt == 0)
11626     return SrcOp;
11627
11628   // Check for ShiftAmt >= element width
11629   if (ShiftAmt >= ElementType.getSizeInBits()) {
11630     if (Opc == X86ISD::VSRAI)
11631       ShiftAmt = ElementType.getSizeInBits() - 1;
11632     else
11633       return DAG.getConstant(0, VT);
11634   }
11635
11636   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11637          && "Unknown target vector shift-by-constant node");
11638
11639   // Fold this packed vector shift into a build vector if SrcOp is a
11640   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
11641   if (VT == SrcOp.getSimpleValueType() &&
11642       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11643     SmallVector<SDValue, 8> Elts;
11644     unsigned NumElts = SrcOp->getNumOperands();
11645     ConstantSDNode *ND;
11646
11647     switch(Opc) {
11648     default: llvm_unreachable(nullptr);
11649     case X86ISD::VSHLI:
11650       for (unsigned i=0; i!=NumElts; ++i) {
11651         SDValue CurrentOp = SrcOp->getOperand(i);
11652         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11653           Elts.push_back(CurrentOp);
11654           continue;
11655         }
11656         ND = cast<ConstantSDNode>(CurrentOp);
11657         const APInt &C = ND->getAPIntValue();
11658         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11659       }
11660       break;
11661     case X86ISD::VSRLI:
11662       for (unsigned i=0; i!=NumElts; ++i) {
11663         SDValue CurrentOp = SrcOp->getOperand(i);
11664         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11665           Elts.push_back(CurrentOp);
11666           continue;
11667         }
11668         ND = cast<ConstantSDNode>(CurrentOp);
11669         const APInt &C = ND->getAPIntValue();
11670         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11671       }
11672       break;
11673     case X86ISD::VSRAI:
11674       for (unsigned i=0; i!=NumElts; ++i) {
11675         SDValue CurrentOp = SrcOp->getOperand(i);
11676         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11677           Elts.push_back(CurrentOp);
11678           continue;
11679         }
11680         ND = cast<ConstantSDNode>(CurrentOp);
11681         const APInt &C = ND->getAPIntValue();
11682         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11683       }
11684       break;
11685     }
11686
11687     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
11688   }
11689
11690   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11691 }
11692
11693 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11694 // may or may not be a constant. Takes immediate version of shift as input.
11695 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11696                                    SDValue SrcOp, SDValue ShAmt,
11697                                    SelectionDAG &DAG) {
11698   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11699
11700   // Catch shift-by-constant.
11701   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11702     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11703                                       CShAmt->getZExtValue(), DAG);
11704
11705   // Change opcode to non-immediate version
11706   switch (Opc) {
11707     default: llvm_unreachable("Unknown target vector shift node");
11708     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11709     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11710     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11711   }
11712
11713   // Need to build a vector containing shift amount
11714   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11715   SDValue ShOps[4];
11716   ShOps[0] = ShAmt;
11717   ShOps[1] = DAG.getConstant(0, MVT::i32);
11718   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11719   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, ShOps);
11720
11721   // The return type has to be a 128-bit type with the same element
11722   // type as the input type.
11723   MVT EltVT = VT.getVectorElementType();
11724   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11725
11726   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11727   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11728 }
11729
11730 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11731   SDLoc dl(Op);
11732   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11733   switch (IntNo) {
11734   default: return SDValue();    // Don't custom lower most intrinsics.
11735   // Comparison intrinsics.
11736   case Intrinsic::x86_sse_comieq_ss:
11737   case Intrinsic::x86_sse_comilt_ss:
11738   case Intrinsic::x86_sse_comile_ss:
11739   case Intrinsic::x86_sse_comigt_ss:
11740   case Intrinsic::x86_sse_comige_ss:
11741   case Intrinsic::x86_sse_comineq_ss:
11742   case Intrinsic::x86_sse_ucomieq_ss:
11743   case Intrinsic::x86_sse_ucomilt_ss:
11744   case Intrinsic::x86_sse_ucomile_ss:
11745   case Intrinsic::x86_sse_ucomigt_ss:
11746   case Intrinsic::x86_sse_ucomige_ss:
11747   case Intrinsic::x86_sse_ucomineq_ss:
11748   case Intrinsic::x86_sse2_comieq_sd:
11749   case Intrinsic::x86_sse2_comilt_sd:
11750   case Intrinsic::x86_sse2_comile_sd:
11751   case Intrinsic::x86_sse2_comigt_sd:
11752   case Intrinsic::x86_sse2_comige_sd:
11753   case Intrinsic::x86_sse2_comineq_sd:
11754   case Intrinsic::x86_sse2_ucomieq_sd:
11755   case Intrinsic::x86_sse2_ucomilt_sd:
11756   case Intrinsic::x86_sse2_ucomile_sd:
11757   case Intrinsic::x86_sse2_ucomigt_sd:
11758   case Intrinsic::x86_sse2_ucomige_sd:
11759   case Intrinsic::x86_sse2_ucomineq_sd: {
11760     unsigned Opc;
11761     ISD::CondCode CC;
11762     switch (IntNo) {
11763     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11764     case Intrinsic::x86_sse_comieq_ss:
11765     case Intrinsic::x86_sse2_comieq_sd:
11766       Opc = X86ISD::COMI;
11767       CC = ISD::SETEQ;
11768       break;
11769     case Intrinsic::x86_sse_comilt_ss:
11770     case Intrinsic::x86_sse2_comilt_sd:
11771       Opc = X86ISD::COMI;
11772       CC = ISD::SETLT;
11773       break;
11774     case Intrinsic::x86_sse_comile_ss:
11775     case Intrinsic::x86_sse2_comile_sd:
11776       Opc = X86ISD::COMI;
11777       CC = ISD::SETLE;
11778       break;
11779     case Intrinsic::x86_sse_comigt_ss:
11780     case Intrinsic::x86_sse2_comigt_sd:
11781       Opc = X86ISD::COMI;
11782       CC = ISD::SETGT;
11783       break;
11784     case Intrinsic::x86_sse_comige_ss:
11785     case Intrinsic::x86_sse2_comige_sd:
11786       Opc = X86ISD::COMI;
11787       CC = ISD::SETGE;
11788       break;
11789     case Intrinsic::x86_sse_comineq_ss:
11790     case Intrinsic::x86_sse2_comineq_sd:
11791       Opc = X86ISD::COMI;
11792       CC = ISD::SETNE;
11793       break;
11794     case Intrinsic::x86_sse_ucomieq_ss:
11795     case Intrinsic::x86_sse2_ucomieq_sd:
11796       Opc = X86ISD::UCOMI;
11797       CC = ISD::SETEQ;
11798       break;
11799     case Intrinsic::x86_sse_ucomilt_ss:
11800     case Intrinsic::x86_sse2_ucomilt_sd:
11801       Opc = X86ISD::UCOMI;
11802       CC = ISD::SETLT;
11803       break;
11804     case Intrinsic::x86_sse_ucomile_ss:
11805     case Intrinsic::x86_sse2_ucomile_sd:
11806       Opc = X86ISD::UCOMI;
11807       CC = ISD::SETLE;
11808       break;
11809     case Intrinsic::x86_sse_ucomigt_ss:
11810     case Intrinsic::x86_sse2_ucomigt_sd:
11811       Opc = X86ISD::UCOMI;
11812       CC = ISD::SETGT;
11813       break;
11814     case Intrinsic::x86_sse_ucomige_ss:
11815     case Intrinsic::x86_sse2_ucomige_sd:
11816       Opc = X86ISD::UCOMI;
11817       CC = ISD::SETGE;
11818       break;
11819     case Intrinsic::x86_sse_ucomineq_ss:
11820     case Intrinsic::x86_sse2_ucomineq_sd:
11821       Opc = X86ISD::UCOMI;
11822       CC = ISD::SETNE;
11823       break;
11824     }
11825
11826     SDValue LHS = Op.getOperand(1);
11827     SDValue RHS = Op.getOperand(2);
11828     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11829     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11830     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11831     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11832                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11833     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11834   }
11835
11836   // Arithmetic intrinsics.
11837   case Intrinsic::x86_sse2_pmulu_dq:
11838   case Intrinsic::x86_avx2_pmulu_dq:
11839     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11840                        Op.getOperand(1), Op.getOperand(2));
11841
11842   case Intrinsic::x86_sse41_pmuldq:
11843   case Intrinsic::x86_avx2_pmul_dq:
11844     return DAG.getNode(X86ISD::PMULDQ, dl, Op.getValueType(),
11845                        Op.getOperand(1), Op.getOperand(2));
11846
11847   case Intrinsic::x86_sse2_pmulhu_w:
11848   case Intrinsic::x86_avx2_pmulhu_w:
11849     return DAG.getNode(ISD::MULHU, dl, Op.getValueType(),
11850                        Op.getOperand(1), Op.getOperand(2));
11851
11852   case Intrinsic::x86_sse2_pmulh_w:
11853   case Intrinsic::x86_avx2_pmulh_w:
11854     return DAG.getNode(ISD::MULHS, dl, Op.getValueType(),
11855                        Op.getOperand(1), Op.getOperand(2));
11856
11857   // SSE2/AVX2 sub with unsigned saturation intrinsics
11858   case Intrinsic::x86_sse2_psubus_b:
11859   case Intrinsic::x86_sse2_psubus_w:
11860   case Intrinsic::x86_avx2_psubus_b:
11861   case Intrinsic::x86_avx2_psubus_w:
11862     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11863                        Op.getOperand(1), Op.getOperand(2));
11864
11865   // SSE3/AVX horizontal add/sub intrinsics
11866   case Intrinsic::x86_sse3_hadd_ps:
11867   case Intrinsic::x86_sse3_hadd_pd:
11868   case Intrinsic::x86_avx_hadd_ps_256:
11869   case Intrinsic::x86_avx_hadd_pd_256:
11870   case Intrinsic::x86_sse3_hsub_ps:
11871   case Intrinsic::x86_sse3_hsub_pd:
11872   case Intrinsic::x86_avx_hsub_ps_256:
11873   case Intrinsic::x86_avx_hsub_pd_256:
11874   case Intrinsic::x86_ssse3_phadd_w_128:
11875   case Intrinsic::x86_ssse3_phadd_d_128:
11876   case Intrinsic::x86_avx2_phadd_w:
11877   case Intrinsic::x86_avx2_phadd_d:
11878   case Intrinsic::x86_ssse3_phsub_w_128:
11879   case Intrinsic::x86_ssse3_phsub_d_128:
11880   case Intrinsic::x86_avx2_phsub_w:
11881   case Intrinsic::x86_avx2_phsub_d: {
11882     unsigned Opcode;
11883     switch (IntNo) {
11884     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11885     case Intrinsic::x86_sse3_hadd_ps:
11886     case Intrinsic::x86_sse3_hadd_pd:
11887     case Intrinsic::x86_avx_hadd_ps_256:
11888     case Intrinsic::x86_avx_hadd_pd_256:
11889       Opcode = X86ISD::FHADD;
11890       break;
11891     case Intrinsic::x86_sse3_hsub_ps:
11892     case Intrinsic::x86_sse3_hsub_pd:
11893     case Intrinsic::x86_avx_hsub_ps_256:
11894     case Intrinsic::x86_avx_hsub_pd_256:
11895       Opcode = X86ISD::FHSUB;
11896       break;
11897     case Intrinsic::x86_ssse3_phadd_w_128:
11898     case Intrinsic::x86_ssse3_phadd_d_128:
11899     case Intrinsic::x86_avx2_phadd_w:
11900     case Intrinsic::x86_avx2_phadd_d:
11901       Opcode = X86ISD::HADD;
11902       break;
11903     case Intrinsic::x86_ssse3_phsub_w_128:
11904     case Intrinsic::x86_ssse3_phsub_d_128:
11905     case Intrinsic::x86_avx2_phsub_w:
11906     case Intrinsic::x86_avx2_phsub_d:
11907       Opcode = X86ISD::HSUB;
11908       break;
11909     }
11910     return DAG.getNode(Opcode, dl, Op.getValueType(),
11911                        Op.getOperand(1), Op.getOperand(2));
11912   }
11913
11914   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11915   case Intrinsic::x86_sse2_pmaxu_b:
11916   case Intrinsic::x86_sse41_pmaxuw:
11917   case Intrinsic::x86_sse41_pmaxud:
11918   case Intrinsic::x86_avx2_pmaxu_b:
11919   case Intrinsic::x86_avx2_pmaxu_w:
11920   case Intrinsic::x86_avx2_pmaxu_d:
11921   case Intrinsic::x86_sse2_pminu_b:
11922   case Intrinsic::x86_sse41_pminuw:
11923   case Intrinsic::x86_sse41_pminud:
11924   case Intrinsic::x86_avx2_pminu_b:
11925   case Intrinsic::x86_avx2_pminu_w:
11926   case Intrinsic::x86_avx2_pminu_d:
11927   case Intrinsic::x86_sse41_pmaxsb:
11928   case Intrinsic::x86_sse2_pmaxs_w:
11929   case Intrinsic::x86_sse41_pmaxsd:
11930   case Intrinsic::x86_avx2_pmaxs_b:
11931   case Intrinsic::x86_avx2_pmaxs_w:
11932   case Intrinsic::x86_avx2_pmaxs_d:
11933   case Intrinsic::x86_sse41_pminsb:
11934   case Intrinsic::x86_sse2_pmins_w:
11935   case Intrinsic::x86_sse41_pminsd:
11936   case Intrinsic::x86_avx2_pmins_b:
11937   case Intrinsic::x86_avx2_pmins_w:
11938   case Intrinsic::x86_avx2_pmins_d: {
11939     unsigned Opcode;
11940     switch (IntNo) {
11941     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11942     case Intrinsic::x86_sse2_pmaxu_b:
11943     case Intrinsic::x86_sse41_pmaxuw:
11944     case Intrinsic::x86_sse41_pmaxud:
11945     case Intrinsic::x86_avx2_pmaxu_b:
11946     case Intrinsic::x86_avx2_pmaxu_w:
11947     case Intrinsic::x86_avx2_pmaxu_d:
11948       Opcode = X86ISD::UMAX;
11949       break;
11950     case Intrinsic::x86_sse2_pminu_b:
11951     case Intrinsic::x86_sse41_pminuw:
11952     case Intrinsic::x86_sse41_pminud:
11953     case Intrinsic::x86_avx2_pminu_b:
11954     case Intrinsic::x86_avx2_pminu_w:
11955     case Intrinsic::x86_avx2_pminu_d:
11956       Opcode = X86ISD::UMIN;
11957       break;
11958     case Intrinsic::x86_sse41_pmaxsb:
11959     case Intrinsic::x86_sse2_pmaxs_w:
11960     case Intrinsic::x86_sse41_pmaxsd:
11961     case Intrinsic::x86_avx2_pmaxs_b:
11962     case Intrinsic::x86_avx2_pmaxs_w:
11963     case Intrinsic::x86_avx2_pmaxs_d:
11964       Opcode = X86ISD::SMAX;
11965       break;
11966     case Intrinsic::x86_sse41_pminsb:
11967     case Intrinsic::x86_sse2_pmins_w:
11968     case Intrinsic::x86_sse41_pminsd:
11969     case Intrinsic::x86_avx2_pmins_b:
11970     case Intrinsic::x86_avx2_pmins_w:
11971     case Intrinsic::x86_avx2_pmins_d:
11972       Opcode = X86ISD::SMIN;
11973       break;
11974     }
11975     return DAG.getNode(Opcode, dl, Op.getValueType(),
11976                        Op.getOperand(1), Op.getOperand(2));
11977   }
11978
11979   // SSE/SSE2/AVX floating point max/min intrinsics.
11980   case Intrinsic::x86_sse_max_ps:
11981   case Intrinsic::x86_sse2_max_pd:
11982   case Intrinsic::x86_avx_max_ps_256:
11983   case Intrinsic::x86_avx_max_pd_256:
11984   case Intrinsic::x86_sse_min_ps:
11985   case Intrinsic::x86_sse2_min_pd:
11986   case Intrinsic::x86_avx_min_ps_256:
11987   case Intrinsic::x86_avx_min_pd_256: {
11988     unsigned Opcode;
11989     switch (IntNo) {
11990     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11991     case Intrinsic::x86_sse_max_ps:
11992     case Intrinsic::x86_sse2_max_pd:
11993     case Intrinsic::x86_avx_max_ps_256:
11994     case Intrinsic::x86_avx_max_pd_256:
11995       Opcode = X86ISD::FMAX;
11996       break;
11997     case Intrinsic::x86_sse_min_ps:
11998     case Intrinsic::x86_sse2_min_pd:
11999     case Intrinsic::x86_avx_min_ps_256:
12000     case Intrinsic::x86_avx_min_pd_256:
12001       Opcode = X86ISD::FMIN;
12002       break;
12003     }
12004     return DAG.getNode(Opcode, dl, Op.getValueType(),
12005                        Op.getOperand(1), Op.getOperand(2));
12006   }
12007
12008   // AVX2 variable shift intrinsics
12009   case Intrinsic::x86_avx2_psllv_d:
12010   case Intrinsic::x86_avx2_psllv_q:
12011   case Intrinsic::x86_avx2_psllv_d_256:
12012   case Intrinsic::x86_avx2_psllv_q_256:
12013   case Intrinsic::x86_avx2_psrlv_d:
12014   case Intrinsic::x86_avx2_psrlv_q:
12015   case Intrinsic::x86_avx2_psrlv_d_256:
12016   case Intrinsic::x86_avx2_psrlv_q_256:
12017   case Intrinsic::x86_avx2_psrav_d:
12018   case Intrinsic::x86_avx2_psrav_d_256: {
12019     unsigned Opcode;
12020     switch (IntNo) {
12021     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12022     case Intrinsic::x86_avx2_psllv_d:
12023     case Intrinsic::x86_avx2_psllv_q:
12024     case Intrinsic::x86_avx2_psllv_d_256:
12025     case Intrinsic::x86_avx2_psllv_q_256:
12026       Opcode = ISD::SHL;
12027       break;
12028     case Intrinsic::x86_avx2_psrlv_d:
12029     case Intrinsic::x86_avx2_psrlv_q:
12030     case Intrinsic::x86_avx2_psrlv_d_256:
12031     case Intrinsic::x86_avx2_psrlv_q_256:
12032       Opcode = ISD::SRL;
12033       break;
12034     case Intrinsic::x86_avx2_psrav_d:
12035     case Intrinsic::x86_avx2_psrav_d_256:
12036       Opcode = ISD::SRA;
12037       break;
12038     }
12039     return DAG.getNode(Opcode, dl, Op.getValueType(),
12040                        Op.getOperand(1), Op.getOperand(2));
12041   }
12042
12043   case Intrinsic::x86_ssse3_pshuf_b_128:
12044   case Intrinsic::x86_avx2_pshuf_b:
12045     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
12046                        Op.getOperand(1), Op.getOperand(2));
12047
12048   case Intrinsic::x86_ssse3_psign_b_128:
12049   case Intrinsic::x86_ssse3_psign_w_128:
12050   case Intrinsic::x86_ssse3_psign_d_128:
12051   case Intrinsic::x86_avx2_psign_b:
12052   case Intrinsic::x86_avx2_psign_w:
12053   case Intrinsic::x86_avx2_psign_d:
12054     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
12055                        Op.getOperand(1), Op.getOperand(2));
12056
12057   case Intrinsic::x86_sse41_insertps:
12058     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
12059                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
12060
12061   case Intrinsic::x86_avx_vperm2f128_ps_256:
12062   case Intrinsic::x86_avx_vperm2f128_pd_256:
12063   case Intrinsic::x86_avx_vperm2f128_si_256:
12064   case Intrinsic::x86_avx2_vperm2i128:
12065     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
12066                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
12067
12068   case Intrinsic::x86_avx2_permd:
12069   case Intrinsic::x86_avx2_permps:
12070     // Operands intentionally swapped. Mask is last operand to intrinsic,
12071     // but second operand for node/instruction.
12072     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
12073                        Op.getOperand(2), Op.getOperand(1));
12074
12075   case Intrinsic::x86_sse_sqrt_ps:
12076   case Intrinsic::x86_sse2_sqrt_pd:
12077   case Intrinsic::x86_avx_sqrt_ps_256:
12078   case Intrinsic::x86_avx_sqrt_pd_256:
12079     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
12080
12081   // ptest and testp intrinsics. The intrinsic these come from are designed to
12082   // return an integer value, not just an instruction so lower it to the ptest
12083   // or testp pattern and a setcc for the result.
12084   case Intrinsic::x86_sse41_ptestz:
12085   case Intrinsic::x86_sse41_ptestc:
12086   case Intrinsic::x86_sse41_ptestnzc:
12087   case Intrinsic::x86_avx_ptestz_256:
12088   case Intrinsic::x86_avx_ptestc_256:
12089   case Intrinsic::x86_avx_ptestnzc_256:
12090   case Intrinsic::x86_avx_vtestz_ps:
12091   case Intrinsic::x86_avx_vtestc_ps:
12092   case Intrinsic::x86_avx_vtestnzc_ps:
12093   case Intrinsic::x86_avx_vtestz_pd:
12094   case Intrinsic::x86_avx_vtestc_pd:
12095   case Intrinsic::x86_avx_vtestnzc_pd:
12096   case Intrinsic::x86_avx_vtestz_ps_256:
12097   case Intrinsic::x86_avx_vtestc_ps_256:
12098   case Intrinsic::x86_avx_vtestnzc_ps_256:
12099   case Intrinsic::x86_avx_vtestz_pd_256:
12100   case Intrinsic::x86_avx_vtestc_pd_256:
12101   case Intrinsic::x86_avx_vtestnzc_pd_256: {
12102     bool IsTestPacked = false;
12103     unsigned X86CC;
12104     switch (IntNo) {
12105     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
12106     case Intrinsic::x86_avx_vtestz_ps:
12107     case Intrinsic::x86_avx_vtestz_pd:
12108     case Intrinsic::x86_avx_vtestz_ps_256:
12109     case Intrinsic::x86_avx_vtestz_pd_256:
12110       IsTestPacked = true; // Fallthrough
12111     case Intrinsic::x86_sse41_ptestz:
12112     case Intrinsic::x86_avx_ptestz_256:
12113       // ZF = 1
12114       X86CC = X86::COND_E;
12115       break;
12116     case Intrinsic::x86_avx_vtestc_ps:
12117     case Intrinsic::x86_avx_vtestc_pd:
12118     case Intrinsic::x86_avx_vtestc_ps_256:
12119     case Intrinsic::x86_avx_vtestc_pd_256:
12120       IsTestPacked = true; // Fallthrough
12121     case Intrinsic::x86_sse41_ptestc:
12122     case Intrinsic::x86_avx_ptestc_256:
12123       // CF = 1
12124       X86CC = X86::COND_B;
12125       break;
12126     case Intrinsic::x86_avx_vtestnzc_ps:
12127     case Intrinsic::x86_avx_vtestnzc_pd:
12128     case Intrinsic::x86_avx_vtestnzc_ps_256:
12129     case Intrinsic::x86_avx_vtestnzc_pd_256:
12130       IsTestPacked = true; // Fallthrough
12131     case Intrinsic::x86_sse41_ptestnzc:
12132     case Intrinsic::x86_avx_ptestnzc_256:
12133       // ZF and CF = 0
12134       X86CC = X86::COND_A;
12135       break;
12136     }
12137
12138     SDValue LHS = Op.getOperand(1);
12139     SDValue RHS = Op.getOperand(2);
12140     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
12141     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
12142     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
12143     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
12144     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
12145   }
12146   case Intrinsic::x86_avx512_kortestz_w:
12147   case Intrinsic::x86_avx512_kortestc_w: {
12148     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
12149     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
12150     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
12151     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
12152     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
12153     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
12154     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
12155   }
12156
12157   // SSE/AVX shift intrinsics
12158   case Intrinsic::x86_sse2_psll_w:
12159   case Intrinsic::x86_sse2_psll_d:
12160   case Intrinsic::x86_sse2_psll_q:
12161   case Intrinsic::x86_avx2_psll_w:
12162   case Intrinsic::x86_avx2_psll_d:
12163   case Intrinsic::x86_avx2_psll_q:
12164   case Intrinsic::x86_sse2_psrl_w:
12165   case Intrinsic::x86_sse2_psrl_d:
12166   case Intrinsic::x86_sse2_psrl_q:
12167   case Intrinsic::x86_avx2_psrl_w:
12168   case Intrinsic::x86_avx2_psrl_d:
12169   case Intrinsic::x86_avx2_psrl_q:
12170   case Intrinsic::x86_sse2_psra_w:
12171   case Intrinsic::x86_sse2_psra_d:
12172   case Intrinsic::x86_avx2_psra_w:
12173   case Intrinsic::x86_avx2_psra_d: {
12174     unsigned Opcode;
12175     switch (IntNo) {
12176     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12177     case Intrinsic::x86_sse2_psll_w:
12178     case Intrinsic::x86_sse2_psll_d:
12179     case Intrinsic::x86_sse2_psll_q:
12180     case Intrinsic::x86_avx2_psll_w:
12181     case Intrinsic::x86_avx2_psll_d:
12182     case Intrinsic::x86_avx2_psll_q:
12183       Opcode = X86ISD::VSHL;
12184       break;
12185     case Intrinsic::x86_sse2_psrl_w:
12186     case Intrinsic::x86_sse2_psrl_d:
12187     case Intrinsic::x86_sse2_psrl_q:
12188     case Intrinsic::x86_avx2_psrl_w:
12189     case Intrinsic::x86_avx2_psrl_d:
12190     case Intrinsic::x86_avx2_psrl_q:
12191       Opcode = X86ISD::VSRL;
12192       break;
12193     case Intrinsic::x86_sse2_psra_w:
12194     case Intrinsic::x86_sse2_psra_d:
12195     case Intrinsic::x86_avx2_psra_w:
12196     case Intrinsic::x86_avx2_psra_d:
12197       Opcode = X86ISD::VSRA;
12198       break;
12199     }
12200     return DAG.getNode(Opcode, dl, Op.getValueType(),
12201                        Op.getOperand(1), Op.getOperand(2));
12202   }
12203
12204   // SSE/AVX immediate shift intrinsics
12205   case Intrinsic::x86_sse2_pslli_w:
12206   case Intrinsic::x86_sse2_pslli_d:
12207   case Intrinsic::x86_sse2_pslli_q:
12208   case Intrinsic::x86_avx2_pslli_w:
12209   case Intrinsic::x86_avx2_pslli_d:
12210   case Intrinsic::x86_avx2_pslli_q:
12211   case Intrinsic::x86_sse2_psrli_w:
12212   case Intrinsic::x86_sse2_psrli_d:
12213   case Intrinsic::x86_sse2_psrli_q:
12214   case Intrinsic::x86_avx2_psrli_w:
12215   case Intrinsic::x86_avx2_psrli_d:
12216   case Intrinsic::x86_avx2_psrli_q:
12217   case Intrinsic::x86_sse2_psrai_w:
12218   case Intrinsic::x86_sse2_psrai_d:
12219   case Intrinsic::x86_avx2_psrai_w:
12220   case Intrinsic::x86_avx2_psrai_d: {
12221     unsigned Opcode;
12222     switch (IntNo) {
12223     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12224     case Intrinsic::x86_sse2_pslli_w:
12225     case Intrinsic::x86_sse2_pslli_d:
12226     case Intrinsic::x86_sse2_pslli_q:
12227     case Intrinsic::x86_avx2_pslli_w:
12228     case Intrinsic::x86_avx2_pslli_d:
12229     case Intrinsic::x86_avx2_pslli_q:
12230       Opcode = X86ISD::VSHLI;
12231       break;
12232     case Intrinsic::x86_sse2_psrli_w:
12233     case Intrinsic::x86_sse2_psrli_d:
12234     case Intrinsic::x86_sse2_psrli_q:
12235     case Intrinsic::x86_avx2_psrli_w:
12236     case Intrinsic::x86_avx2_psrli_d:
12237     case Intrinsic::x86_avx2_psrli_q:
12238       Opcode = X86ISD::VSRLI;
12239       break;
12240     case Intrinsic::x86_sse2_psrai_w:
12241     case Intrinsic::x86_sse2_psrai_d:
12242     case Intrinsic::x86_avx2_psrai_w:
12243     case Intrinsic::x86_avx2_psrai_d:
12244       Opcode = X86ISD::VSRAI;
12245       break;
12246     }
12247     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
12248                                Op.getOperand(1), Op.getOperand(2), DAG);
12249   }
12250
12251   case Intrinsic::x86_sse42_pcmpistria128:
12252   case Intrinsic::x86_sse42_pcmpestria128:
12253   case Intrinsic::x86_sse42_pcmpistric128:
12254   case Intrinsic::x86_sse42_pcmpestric128:
12255   case Intrinsic::x86_sse42_pcmpistrio128:
12256   case Intrinsic::x86_sse42_pcmpestrio128:
12257   case Intrinsic::x86_sse42_pcmpistris128:
12258   case Intrinsic::x86_sse42_pcmpestris128:
12259   case Intrinsic::x86_sse42_pcmpistriz128:
12260   case Intrinsic::x86_sse42_pcmpestriz128: {
12261     unsigned Opcode;
12262     unsigned X86CC;
12263     switch (IntNo) {
12264     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12265     case Intrinsic::x86_sse42_pcmpistria128:
12266       Opcode = X86ISD::PCMPISTRI;
12267       X86CC = X86::COND_A;
12268       break;
12269     case Intrinsic::x86_sse42_pcmpestria128:
12270       Opcode = X86ISD::PCMPESTRI;
12271       X86CC = X86::COND_A;
12272       break;
12273     case Intrinsic::x86_sse42_pcmpistric128:
12274       Opcode = X86ISD::PCMPISTRI;
12275       X86CC = X86::COND_B;
12276       break;
12277     case Intrinsic::x86_sse42_pcmpestric128:
12278       Opcode = X86ISD::PCMPESTRI;
12279       X86CC = X86::COND_B;
12280       break;
12281     case Intrinsic::x86_sse42_pcmpistrio128:
12282       Opcode = X86ISD::PCMPISTRI;
12283       X86CC = X86::COND_O;
12284       break;
12285     case Intrinsic::x86_sse42_pcmpestrio128:
12286       Opcode = X86ISD::PCMPESTRI;
12287       X86CC = X86::COND_O;
12288       break;
12289     case Intrinsic::x86_sse42_pcmpistris128:
12290       Opcode = X86ISD::PCMPISTRI;
12291       X86CC = X86::COND_S;
12292       break;
12293     case Intrinsic::x86_sse42_pcmpestris128:
12294       Opcode = X86ISD::PCMPESTRI;
12295       X86CC = X86::COND_S;
12296       break;
12297     case Intrinsic::x86_sse42_pcmpistriz128:
12298       Opcode = X86ISD::PCMPISTRI;
12299       X86CC = X86::COND_E;
12300       break;
12301     case Intrinsic::x86_sse42_pcmpestriz128:
12302       Opcode = X86ISD::PCMPESTRI;
12303       X86CC = X86::COND_E;
12304       break;
12305     }
12306     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
12307     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
12308     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
12309     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12310                                 DAG.getConstant(X86CC, MVT::i8),
12311                                 SDValue(PCMP.getNode(), 1));
12312     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
12313   }
12314
12315   case Intrinsic::x86_sse42_pcmpistri128:
12316   case Intrinsic::x86_sse42_pcmpestri128: {
12317     unsigned Opcode;
12318     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
12319       Opcode = X86ISD::PCMPISTRI;
12320     else
12321       Opcode = X86ISD::PCMPESTRI;
12322
12323     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
12324     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
12325     return DAG.getNode(Opcode, dl, VTs, NewOps);
12326   }
12327   case Intrinsic::x86_fma_vfmadd_ps:
12328   case Intrinsic::x86_fma_vfmadd_pd:
12329   case Intrinsic::x86_fma_vfmsub_ps:
12330   case Intrinsic::x86_fma_vfmsub_pd:
12331   case Intrinsic::x86_fma_vfnmadd_ps:
12332   case Intrinsic::x86_fma_vfnmadd_pd:
12333   case Intrinsic::x86_fma_vfnmsub_ps:
12334   case Intrinsic::x86_fma_vfnmsub_pd:
12335   case Intrinsic::x86_fma_vfmaddsub_ps:
12336   case Intrinsic::x86_fma_vfmaddsub_pd:
12337   case Intrinsic::x86_fma_vfmsubadd_ps:
12338   case Intrinsic::x86_fma_vfmsubadd_pd:
12339   case Intrinsic::x86_fma_vfmadd_ps_256:
12340   case Intrinsic::x86_fma_vfmadd_pd_256:
12341   case Intrinsic::x86_fma_vfmsub_ps_256:
12342   case Intrinsic::x86_fma_vfmsub_pd_256:
12343   case Intrinsic::x86_fma_vfnmadd_ps_256:
12344   case Intrinsic::x86_fma_vfnmadd_pd_256:
12345   case Intrinsic::x86_fma_vfnmsub_ps_256:
12346   case Intrinsic::x86_fma_vfnmsub_pd_256:
12347   case Intrinsic::x86_fma_vfmaddsub_ps_256:
12348   case Intrinsic::x86_fma_vfmaddsub_pd_256:
12349   case Intrinsic::x86_fma_vfmsubadd_ps_256:
12350   case Intrinsic::x86_fma_vfmsubadd_pd_256:
12351   case Intrinsic::x86_fma_vfmadd_ps_512:
12352   case Intrinsic::x86_fma_vfmadd_pd_512:
12353   case Intrinsic::x86_fma_vfmsub_ps_512:
12354   case Intrinsic::x86_fma_vfmsub_pd_512:
12355   case Intrinsic::x86_fma_vfnmadd_ps_512:
12356   case Intrinsic::x86_fma_vfnmadd_pd_512:
12357   case Intrinsic::x86_fma_vfnmsub_ps_512:
12358   case Intrinsic::x86_fma_vfnmsub_pd_512:
12359   case Intrinsic::x86_fma_vfmaddsub_ps_512:
12360   case Intrinsic::x86_fma_vfmaddsub_pd_512:
12361   case Intrinsic::x86_fma_vfmsubadd_ps_512:
12362   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
12363     unsigned Opc;
12364     switch (IntNo) {
12365     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12366     case Intrinsic::x86_fma_vfmadd_ps:
12367     case Intrinsic::x86_fma_vfmadd_pd:
12368     case Intrinsic::x86_fma_vfmadd_ps_256:
12369     case Intrinsic::x86_fma_vfmadd_pd_256:
12370     case Intrinsic::x86_fma_vfmadd_ps_512:
12371     case Intrinsic::x86_fma_vfmadd_pd_512:
12372       Opc = X86ISD::FMADD;
12373       break;
12374     case Intrinsic::x86_fma_vfmsub_ps:
12375     case Intrinsic::x86_fma_vfmsub_pd:
12376     case Intrinsic::x86_fma_vfmsub_ps_256:
12377     case Intrinsic::x86_fma_vfmsub_pd_256:
12378     case Intrinsic::x86_fma_vfmsub_ps_512:
12379     case Intrinsic::x86_fma_vfmsub_pd_512:
12380       Opc = X86ISD::FMSUB;
12381       break;
12382     case Intrinsic::x86_fma_vfnmadd_ps:
12383     case Intrinsic::x86_fma_vfnmadd_pd:
12384     case Intrinsic::x86_fma_vfnmadd_ps_256:
12385     case Intrinsic::x86_fma_vfnmadd_pd_256:
12386     case Intrinsic::x86_fma_vfnmadd_ps_512:
12387     case Intrinsic::x86_fma_vfnmadd_pd_512:
12388       Opc = X86ISD::FNMADD;
12389       break;
12390     case Intrinsic::x86_fma_vfnmsub_ps:
12391     case Intrinsic::x86_fma_vfnmsub_pd:
12392     case Intrinsic::x86_fma_vfnmsub_ps_256:
12393     case Intrinsic::x86_fma_vfnmsub_pd_256:
12394     case Intrinsic::x86_fma_vfnmsub_ps_512:
12395     case Intrinsic::x86_fma_vfnmsub_pd_512:
12396       Opc = X86ISD::FNMSUB;
12397       break;
12398     case Intrinsic::x86_fma_vfmaddsub_ps:
12399     case Intrinsic::x86_fma_vfmaddsub_pd:
12400     case Intrinsic::x86_fma_vfmaddsub_ps_256:
12401     case Intrinsic::x86_fma_vfmaddsub_pd_256:
12402     case Intrinsic::x86_fma_vfmaddsub_ps_512:
12403     case Intrinsic::x86_fma_vfmaddsub_pd_512:
12404       Opc = X86ISD::FMADDSUB;
12405       break;
12406     case Intrinsic::x86_fma_vfmsubadd_ps:
12407     case Intrinsic::x86_fma_vfmsubadd_pd:
12408     case Intrinsic::x86_fma_vfmsubadd_ps_256:
12409     case Intrinsic::x86_fma_vfmsubadd_pd_256:
12410     case Intrinsic::x86_fma_vfmsubadd_ps_512:
12411     case Intrinsic::x86_fma_vfmsubadd_pd_512:
12412       Opc = X86ISD::FMSUBADD;
12413       break;
12414     }
12415
12416     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
12417                        Op.getOperand(2), Op.getOperand(3));
12418   }
12419   }
12420 }
12421
12422 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12423                              SDValue Base, SDValue Index,
12424                              SDValue ScaleOp, SDValue Chain,
12425                              const X86Subtarget * Subtarget) {
12426   SDLoc dl(Op);
12427   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12428   assert(C && "Invalid scale type");
12429   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12430   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
12431   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12432                              Index.getSimpleValueType().getVectorNumElements());
12433   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
12434   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
12435   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12436   SDValue Segment = DAG.getRegister(0, MVT::i32);
12437   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12438   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12439   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
12440   return DAG.getMergeValues(RetOps, dl);
12441 }
12442
12443 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12444                               SDValue Src, SDValue Mask, SDValue Base,
12445                               SDValue Index, SDValue ScaleOp, SDValue Chain,
12446                               const X86Subtarget * Subtarget) {
12447   SDLoc dl(Op);
12448   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12449   assert(C && "Invalid scale type");
12450   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12451   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12452                              Index.getSimpleValueType().getVectorNumElements());
12453   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12454   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
12455   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12456   SDValue Segment = DAG.getRegister(0, MVT::i32);
12457   if (Src.getOpcode() == ISD::UNDEF)
12458     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
12459   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12460   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12461   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
12462   return DAG.getMergeValues(RetOps, dl);
12463 }
12464
12465 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12466                               SDValue Src, SDValue Base, SDValue Index,
12467                               SDValue ScaleOp, SDValue Chain) {
12468   SDLoc dl(Op);
12469   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12470   assert(C && "Invalid scale type");
12471   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12472   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12473   SDValue Segment = DAG.getRegister(0, MVT::i32);
12474   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12475                              Index.getSimpleValueType().getVectorNumElements());
12476   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
12477   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12478   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12479   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12480   return SDValue(Res, 1);
12481 }
12482
12483 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12484                                SDValue Src, SDValue Mask, SDValue Base,
12485                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
12486   SDLoc dl(Op);
12487   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12488   assert(C && "Invalid scale type");
12489   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12490   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12491   SDValue Segment = DAG.getRegister(0, MVT::i32);
12492   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12493                              Index.getSimpleValueType().getVectorNumElements());
12494   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12495   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12496   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12497   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12498   return SDValue(Res, 1);
12499 }
12500
12501 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
12502 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
12503 // also used to custom lower READCYCLECOUNTER nodes.
12504 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
12505                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
12506                               SmallVectorImpl<SDValue> &Results) {
12507   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
12508   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
12509   SDValue LO, HI;
12510
12511   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
12512   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
12513   // and the EAX register is loaded with the low-order 32 bits.
12514   if (Subtarget->is64Bit()) {
12515     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
12516     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
12517                             LO.getValue(2));
12518   } else {
12519     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
12520     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
12521                             LO.getValue(2));
12522   }
12523   SDValue Chain = HI.getValue(1);
12524
12525   if (Opcode == X86ISD::RDTSCP_DAG) {
12526     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
12527
12528     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
12529     // the ECX register. Add 'ecx' explicitly to the chain.
12530     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
12531                                      HI.getValue(2));
12532     // Explicitly store the content of ECX at the location passed in input
12533     // to the 'rdtscp' intrinsic.
12534     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
12535                          MachinePointerInfo(), false, false, 0);
12536   }
12537
12538   if (Subtarget->is64Bit()) {
12539     // The EDX register is loaded with the high-order 32 bits of the MSR, and
12540     // the EAX register is loaded with the low-order 32 bits.
12541     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
12542                               DAG.getConstant(32, MVT::i8));
12543     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
12544     Results.push_back(Chain);
12545     return;
12546   }
12547
12548   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
12549   SDValue Ops[] = { LO, HI };
12550   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
12551   Results.push_back(Pair);
12552   Results.push_back(Chain);
12553 }
12554
12555 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
12556                                      SelectionDAG &DAG) {
12557   SmallVector<SDValue, 2> Results;
12558   SDLoc DL(Op);
12559   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
12560                           Results);
12561   return DAG.getMergeValues(Results, DL);
12562 }
12563
12564 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
12565                                       SelectionDAG &DAG) {
12566   SDLoc dl(Op);
12567   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
12568   switch (IntNo) {
12569   default: return SDValue();    // Don't custom lower most intrinsics.
12570
12571   // RDRAND/RDSEED intrinsics.
12572   case Intrinsic::x86_rdrand_16:
12573   case Intrinsic::x86_rdrand_32:
12574   case Intrinsic::x86_rdrand_64:
12575   case Intrinsic::x86_rdseed_16:
12576   case Intrinsic::x86_rdseed_32:
12577   case Intrinsic::x86_rdseed_64: {
12578     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
12579                        IntNo == Intrinsic::x86_rdseed_32 ||
12580                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
12581                                                             X86ISD::RDRAND;
12582     // Emit the node with the right value type.
12583     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12584     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
12585
12586     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12587     // Otherwise return the value from Rand, which is always 0, casted to i32.
12588     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12589                       DAG.getConstant(1, Op->getValueType(1)),
12590                       DAG.getConstant(X86::COND_B, MVT::i32),
12591                       SDValue(Result.getNode(), 1) };
12592     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12593                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12594                                   Ops);
12595
12596     // Return { result, isValid, chain }.
12597     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12598                        SDValue(Result.getNode(), 2));
12599   }
12600   //int_gather(index, base, scale);
12601   case Intrinsic::x86_avx512_gather_qpd_512:
12602   case Intrinsic::x86_avx512_gather_qps_512:
12603   case Intrinsic::x86_avx512_gather_dpd_512:
12604   case Intrinsic::x86_avx512_gather_qpi_512:
12605   case Intrinsic::x86_avx512_gather_qpq_512:
12606   case Intrinsic::x86_avx512_gather_dpq_512:
12607   case Intrinsic::x86_avx512_gather_dps_512:
12608   case Intrinsic::x86_avx512_gather_dpi_512: {
12609     unsigned Opc;
12610     switch (IntNo) {
12611     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12612     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12613     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12614     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12615     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12616     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12617     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12618     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12619     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12620     }
12621     SDValue Chain = Op.getOperand(0);
12622     SDValue Index = Op.getOperand(2);
12623     SDValue Base  = Op.getOperand(3);
12624     SDValue Scale = Op.getOperand(4);
12625     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12626   }
12627   //int_gather_mask(v1, mask, index, base, scale);
12628   case Intrinsic::x86_avx512_gather_qps_mask_512:
12629   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12630   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12631   case Intrinsic::x86_avx512_gather_dps_mask_512:
12632   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12633   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12634   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12635   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12636     unsigned Opc;
12637     switch (IntNo) {
12638     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12639     case Intrinsic::x86_avx512_gather_qps_mask_512:
12640       Opc = X86::VGATHERQPSZrm; break;
12641     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12642       Opc = X86::VGATHERQPDZrm; break;
12643     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12644       Opc = X86::VGATHERDPDZrm; break;
12645     case Intrinsic::x86_avx512_gather_dps_mask_512:
12646       Opc = X86::VGATHERDPSZrm; break;
12647     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12648       Opc = X86::VPGATHERQDZrm; break;
12649     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12650       Opc = X86::VPGATHERQQZrm; break;
12651     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12652       Opc = X86::VPGATHERDDZrm; break;
12653     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12654       Opc = X86::VPGATHERDQZrm; break;
12655     }
12656     SDValue Chain = Op.getOperand(0);
12657     SDValue Src   = Op.getOperand(2);
12658     SDValue Mask  = Op.getOperand(3);
12659     SDValue Index = Op.getOperand(4);
12660     SDValue Base  = Op.getOperand(5);
12661     SDValue Scale = Op.getOperand(6);
12662     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12663                           Subtarget);
12664   }
12665   //int_scatter(base, index, v1, scale);
12666   case Intrinsic::x86_avx512_scatter_qpd_512:
12667   case Intrinsic::x86_avx512_scatter_qps_512:
12668   case Intrinsic::x86_avx512_scatter_dpd_512:
12669   case Intrinsic::x86_avx512_scatter_qpi_512:
12670   case Intrinsic::x86_avx512_scatter_qpq_512:
12671   case Intrinsic::x86_avx512_scatter_dpq_512:
12672   case Intrinsic::x86_avx512_scatter_dps_512:
12673   case Intrinsic::x86_avx512_scatter_dpi_512: {
12674     unsigned Opc;
12675     switch (IntNo) {
12676     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12677     case Intrinsic::x86_avx512_scatter_qpd_512:
12678       Opc = X86::VSCATTERQPDZmr; break;
12679     case Intrinsic::x86_avx512_scatter_qps_512:
12680       Opc = X86::VSCATTERQPSZmr; break;
12681     case Intrinsic::x86_avx512_scatter_dpd_512:
12682       Opc = X86::VSCATTERDPDZmr; break;
12683     case Intrinsic::x86_avx512_scatter_dps_512:
12684       Opc = X86::VSCATTERDPSZmr; break;
12685     case Intrinsic::x86_avx512_scatter_qpi_512:
12686       Opc = X86::VPSCATTERQDZmr; break;
12687     case Intrinsic::x86_avx512_scatter_qpq_512:
12688       Opc = X86::VPSCATTERQQZmr; break;
12689     case Intrinsic::x86_avx512_scatter_dpq_512:
12690       Opc = X86::VPSCATTERDQZmr; break;
12691     case Intrinsic::x86_avx512_scatter_dpi_512:
12692       Opc = X86::VPSCATTERDDZmr; break;
12693     }
12694     SDValue Chain = Op.getOperand(0);
12695     SDValue Base  = Op.getOperand(2);
12696     SDValue Index = Op.getOperand(3);
12697     SDValue Src   = Op.getOperand(4);
12698     SDValue Scale = Op.getOperand(5);
12699     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12700   }
12701   //int_scatter_mask(base, mask, index, v1, scale);
12702   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12703   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12704   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12705   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12706   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12707   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12708   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12709   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12710     unsigned Opc;
12711     switch (IntNo) {
12712     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12713     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12714       Opc = X86::VSCATTERQPDZmr; break;
12715     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12716       Opc = X86::VSCATTERQPSZmr; break;
12717     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12718       Opc = X86::VSCATTERDPDZmr; break;
12719     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12720       Opc = X86::VSCATTERDPSZmr; break;
12721     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12722       Opc = X86::VPSCATTERQDZmr; break;
12723     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12724       Opc = X86::VPSCATTERQQZmr; break;
12725     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12726       Opc = X86::VPSCATTERDQZmr; break;
12727     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12728       Opc = X86::VPSCATTERDDZmr; break;
12729     }
12730     SDValue Chain = Op.getOperand(0);
12731     SDValue Base  = Op.getOperand(2);
12732     SDValue Mask  = Op.getOperand(3);
12733     SDValue Index = Op.getOperand(4);
12734     SDValue Src   = Op.getOperand(5);
12735     SDValue Scale = Op.getOperand(6);
12736     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12737   }
12738   // Read Time Stamp Counter (RDTSC).
12739   case Intrinsic::x86_rdtsc:
12740   // Read Time Stamp Counter and Processor ID (RDTSCP).
12741   case Intrinsic::x86_rdtscp: {
12742     unsigned Opc;
12743     switch (IntNo) {
12744     default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
12745     case Intrinsic::x86_rdtsc:
12746       Opc = X86ISD::RDTSC_DAG; break;
12747     case Intrinsic::x86_rdtscp:
12748       Opc = X86ISD::RDTSCP_DAG; break;
12749     }
12750     SmallVector<SDValue, 2> Results;
12751     getReadTimeStampCounter(Op.getNode(), dl, Opc, DAG, Subtarget, Results);
12752     return DAG.getMergeValues(Results, dl);
12753   }
12754   // XTEST intrinsics.
12755   case Intrinsic::x86_xtest: {
12756     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12757     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12758     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12759                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12760                                 InTrans);
12761     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12762     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12763                        Ret, SDValue(InTrans.getNode(), 1));
12764   }
12765   }
12766 }
12767
12768 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12769                                            SelectionDAG &DAG) const {
12770   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12771   MFI->setReturnAddressIsTaken(true);
12772
12773   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
12774     return SDValue();
12775
12776   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12777   SDLoc dl(Op);
12778   EVT PtrVT = getPointerTy();
12779
12780   if (Depth > 0) {
12781     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12782     const X86RegisterInfo *RegInfo =
12783       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12784     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12785     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12786                        DAG.getNode(ISD::ADD, dl, PtrVT,
12787                                    FrameAddr, Offset),
12788                        MachinePointerInfo(), false, false, false, 0);
12789   }
12790
12791   // Just load the return address.
12792   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12793   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12794                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12795 }
12796
12797 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12798   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12799   MFI->setFrameAddressIsTaken(true);
12800
12801   EVT VT = Op.getValueType();
12802   SDLoc dl(Op);  // FIXME probably not meaningful
12803   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12804   const X86RegisterInfo *RegInfo =
12805     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12806   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12807   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12808           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12809          "Invalid Frame Register!");
12810   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12811   while (Depth--)
12812     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12813                             MachinePointerInfo(),
12814                             false, false, false, 0);
12815   return FrameAddr;
12816 }
12817
12818 // FIXME? Maybe this could be a TableGen attribute on some registers and
12819 // this table could be generated automatically from RegInfo.
12820 unsigned X86TargetLowering::getRegisterByName(const char* RegName) const {
12821   unsigned Reg = StringSwitch<unsigned>(RegName)
12822                        .Case("esp", X86::ESP)
12823                        .Case("rsp", X86::RSP)
12824                        .Default(0);
12825   if (Reg)
12826     return Reg;
12827   report_fatal_error("Invalid register name global variable");
12828 }
12829
12830 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12831                                                      SelectionDAG &DAG) const {
12832   const X86RegisterInfo *RegInfo =
12833     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12834   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12835 }
12836
12837 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12838   SDValue Chain     = Op.getOperand(0);
12839   SDValue Offset    = Op.getOperand(1);
12840   SDValue Handler   = Op.getOperand(2);
12841   SDLoc dl      (Op);
12842
12843   EVT PtrVT = getPointerTy();
12844   const X86RegisterInfo *RegInfo =
12845     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12846   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12847   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12848           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12849          "Invalid Frame Register!");
12850   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12851   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12852
12853   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12854                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12855   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12856   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12857                        false, false, 0);
12858   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12859
12860   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12861                      DAG.getRegister(StoreAddrReg, PtrVT));
12862 }
12863
12864 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12865                                                SelectionDAG &DAG) const {
12866   SDLoc DL(Op);
12867   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12868                      DAG.getVTList(MVT::i32, MVT::Other),
12869                      Op.getOperand(0), Op.getOperand(1));
12870 }
12871
12872 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12873                                                 SelectionDAG &DAG) const {
12874   SDLoc DL(Op);
12875   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12876                      Op.getOperand(0), Op.getOperand(1));
12877 }
12878
12879 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12880   return Op.getOperand(0);
12881 }
12882
12883 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12884                                                 SelectionDAG &DAG) const {
12885   SDValue Root = Op.getOperand(0);
12886   SDValue Trmp = Op.getOperand(1); // trampoline
12887   SDValue FPtr = Op.getOperand(2); // nested function
12888   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12889   SDLoc dl (Op);
12890
12891   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12892   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12893
12894   if (Subtarget->is64Bit()) {
12895     SDValue OutChains[6];
12896
12897     // Large code-model.
12898     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12899     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12900
12901     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12902     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12903
12904     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12905
12906     // Load the pointer to the nested function into R11.
12907     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12908     SDValue Addr = Trmp;
12909     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12910                                 Addr, MachinePointerInfo(TrmpAddr),
12911                                 false, false, 0);
12912
12913     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12914                        DAG.getConstant(2, MVT::i64));
12915     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12916                                 MachinePointerInfo(TrmpAddr, 2),
12917                                 false, false, 2);
12918
12919     // Load the 'nest' parameter value into R10.
12920     // R10 is specified in X86CallingConv.td
12921     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12922     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12923                        DAG.getConstant(10, MVT::i64));
12924     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12925                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12926                                 false, false, 0);
12927
12928     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12929                        DAG.getConstant(12, MVT::i64));
12930     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12931                                 MachinePointerInfo(TrmpAddr, 12),
12932                                 false, false, 2);
12933
12934     // Jump to the nested function.
12935     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12936     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12937                        DAG.getConstant(20, MVT::i64));
12938     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12939                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12940                                 false, false, 0);
12941
12942     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12943     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12944                        DAG.getConstant(22, MVT::i64));
12945     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12946                                 MachinePointerInfo(TrmpAddr, 22),
12947                                 false, false, 0);
12948
12949     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
12950   } else {
12951     const Function *Func =
12952       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12953     CallingConv::ID CC = Func->getCallingConv();
12954     unsigned NestReg;
12955
12956     switch (CC) {
12957     default:
12958       llvm_unreachable("Unsupported calling convention");
12959     case CallingConv::C:
12960     case CallingConv::X86_StdCall: {
12961       // Pass 'nest' parameter in ECX.
12962       // Must be kept in sync with X86CallingConv.td
12963       NestReg = X86::ECX;
12964
12965       // Check that ECX wasn't needed by an 'inreg' parameter.
12966       FunctionType *FTy = Func->getFunctionType();
12967       const AttributeSet &Attrs = Func->getAttributes();
12968
12969       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12970         unsigned InRegCount = 0;
12971         unsigned Idx = 1;
12972
12973         for (FunctionType::param_iterator I = FTy->param_begin(),
12974              E = FTy->param_end(); I != E; ++I, ++Idx)
12975           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12976             // FIXME: should only count parameters that are lowered to integers.
12977             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12978
12979         if (InRegCount > 2) {
12980           report_fatal_error("Nest register in use - reduce number of inreg"
12981                              " parameters!");
12982         }
12983       }
12984       break;
12985     }
12986     case CallingConv::X86_FastCall:
12987     case CallingConv::X86_ThisCall:
12988     case CallingConv::Fast:
12989       // Pass 'nest' parameter in EAX.
12990       // Must be kept in sync with X86CallingConv.td
12991       NestReg = X86::EAX;
12992       break;
12993     }
12994
12995     SDValue OutChains[4];
12996     SDValue Addr, Disp;
12997
12998     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12999                        DAG.getConstant(10, MVT::i32));
13000     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
13001
13002     // This is storing the opcode for MOV32ri.
13003     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
13004     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
13005     OutChains[0] = DAG.getStore(Root, dl,
13006                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
13007                                 Trmp, MachinePointerInfo(TrmpAddr),
13008                                 false, false, 0);
13009
13010     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13011                        DAG.getConstant(1, MVT::i32));
13012     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
13013                                 MachinePointerInfo(TrmpAddr, 1),
13014                                 false, false, 1);
13015
13016     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
13017     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13018                        DAG.getConstant(5, MVT::i32));
13019     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
13020                                 MachinePointerInfo(TrmpAddr, 5),
13021                                 false, false, 1);
13022
13023     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13024                        DAG.getConstant(6, MVT::i32));
13025     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
13026                                 MachinePointerInfo(TrmpAddr, 6),
13027                                 false, false, 1);
13028
13029     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
13030   }
13031 }
13032
13033 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
13034                                             SelectionDAG &DAG) const {
13035   /*
13036    The rounding mode is in bits 11:10 of FPSR, and has the following
13037    settings:
13038      00 Round to nearest
13039      01 Round to -inf
13040      10 Round to +inf
13041      11 Round to 0
13042
13043   FLT_ROUNDS, on the other hand, expects the following:
13044     -1 Undefined
13045      0 Round to 0
13046      1 Round to nearest
13047      2 Round to +inf
13048      3 Round to -inf
13049
13050   To perform the conversion, we do:
13051     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
13052   */
13053
13054   MachineFunction &MF = DAG.getMachineFunction();
13055   const TargetMachine &TM = MF.getTarget();
13056   const TargetFrameLowering &TFI = *TM.getFrameLowering();
13057   unsigned StackAlignment = TFI.getStackAlignment();
13058   MVT VT = Op.getSimpleValueType();
13059   SDLoc DL(Op);
13060
13061   // Save FP Control Word to stack slot
13062   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
13063   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
13064
13065   MachineMemOperand *MMO =
13066    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
13067                            MachineMemOperand::MOStore, 2, 2);
13068
13069   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
13070   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
13071                                           DAG.getVTList(MVT::Other),
13072                                           Ops, MVT::i16, MMO);
13073
13074   // Load FP Control Word from stack slot
13075   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
13076                             MachinePointerInfo(), false, false, false, 0);
13077
13078   // Transform as necessary
13079   SDValue CWD1 =
13080     DAG.getNode(ISD::SRL, DL, MVT::i16,
13081                 DAG.getNode(ISD::AND, DL, MVT::i16,
13082                             CWD, DAG.getConstant(0x800, MVT::i16)),
13083                 DAG.getConstant(11, MVT::i8));
13084   SDValue CWD2 =
13085     DAG.getNode(ISD::SRL, DL, MVT::i16,
13086                 DAG.getNode(ISD::AND, DL, MVT::i16,
13087                             CWD, DAG.getConstant(0x400, MVT::i16)),
13088                 DAG.getConstant(9, MVT::i8));
13089
13090   SDValue RetVal =
13091     DAG.getNode(ISD::AND, DL, MVT::i16,
13092                 DAG.getNode(ISD::ADD, DL, MVT::i16,
13093                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
13094                             DAG.getConstant(1, MVT::i16)),
13095                 DAG.getConstant(3, MVT::i16));
13096
13097   return DAG.getNode((VT.getSizeInBits() < 16 ?
13098                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
13099 }
13100
13101 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
13102   MVT VT = Op.getSimpleValueType();
13103   EVT OpVT = VT;
13104   unsigned NumBits = VT.getSizeInBits();
13105   SDLoc dl(Op);
13106
13107   Op = Op.getOperand(0);
13108   if (VT == MVT::i8) {
13109     // Zero extend to i32 since there is not an i8 bsr.
13110     OpVT = MVT::i32;
13111     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
13112   }
13113
13114   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
13115   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
13116   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
13117
13118   // If src is zero (i.e. bsr sets ZF), returns NumBits.
13119   SDValue Ops[] = {
13120     Op,
13121     DAG.getConstant(NumBits+NumBits-1, OpVT),
13122     DAG.getConstant(X86::COND_E, MVT::i8),
13123     Op.getValue(1)
13124   };
13125   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
13126
13127   // Finally xor with NumBits-1.
13128   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
13129
13130   if (VT == MVT::i8)
13131     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
13132   return Op;
13133 }
13134
13135 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
13136   MVT VT = Op.getSimpleValueType();
13137   EVT OpVT = VT;
13138   unsigned NumBits = VT.getSizeInBits();
13139   SDLoc dl(Op);
13140
13141   Op = Op.getOperand(0);
13142   if (VT == MVT::i8) {
13143     // Zero extend to i32 since there is not an i8 bsr.
13144     OpVT = MVT::i32;
13145     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
13146   }
13147
13148   // Issue a bsr (scan bits in reverse).
13149   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
13150   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
13151
13152   // And xor with NumBits-1.
13153   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
13154
13155   if (VT == MVT::i8)
13156     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
13157   return Op;
13158 }
13159
13160 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
13161   MVT VT = Op.getSimpleValueType();
13162   unsigned NumBits = VT.getSizeInBits();
13163   SDLoc dl(Op);
13164   Op = Op.getOperand(0);
13165
13166   // Issue a bsf (scan bits forward) which also sets EFLAGS.
13167   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13168   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
13169
13170   // If src is zero (i.e. bsf sets ZF), returns NumBits.
13171   SDValue Ops[] = {
13172     Op,
13173     DAG.getConstant(NumBits, VT),
13174     DAG.getConstant(X86::COND_E, MVT::i8),
13175     Op.getValue(1)
13176   };
13177   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
13178 }
13179
13180 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
13181 // ones, and then concatenate the result back.
13182 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
13183   MVT VT = Op.getSimpleValueType();
13184
13185   assert(VT.is256BitVector() && VT.isInteger() &&
13186          "Unsupported value type for operation");
13187
13188   unsigned NumElems = VT.getVectorNumElements();
13189   SDLoc dl(Op);
13190
13191   // Extract the LHS vectors
13192   SDValue LHS = Op.getOperand(0);
13193   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13194   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13195
13196   // Extract the RHS vectors
13197   SDValue RHS = Op.getOperand(1);
13198   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
13199   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
13200
13201   MVT EltVT = VT.getVectorElementType();
13202   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13203
13204   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
13205                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
13206                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
13207 }
13208
13209 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
13210   assert(Op.getSimpleValueType().is256BitVector() &&
13211          Op.getSimpleValueType().isInteger() &&
13212          "Only handle AVX 256-bit vector integer operation");
13213   return Lower256IntArith(Op, DAG);
13214 }
13215
13216 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
13217   assert(Op.getSimpleValueType().is256BitVector() &&
13218          Op.getSimpleValueType().isInteger() &&
13219          "Only handle AVX 256-bit vector integer operation");
13220   return Lower256IntArith(Op, DAG);
13221 }
13222
13223 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
13224                         SelectionDAG &DAG) {
13225   SDLoc dl(Op);
13226   MVT VT = Op.getSimpleValueType();
13227
13228   // Decompose 256-bit ops into smaller 128-bit ops.
13229   if (VT.is256BitVector() && !Subtarget->hasInt256())
13230     return Lower256IntArith(Op, DAG);
13231
13232   SDValue A = Op.getOperand(0);
13233   SDValue B = Op.getOperand(1);
13234
13235   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
13236   if (VT == MVT::v4i32) {
13237     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
13238            "Should not custom lower when pmuldq is available!");
13239
13240     // Extract the odd parts.
13241     static const int UnpackMask[] = { 1, -1, 3, -1 };
13242     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
13243     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
13244
13245     // Multiply the even parts.
13246     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
13247     // Now multiply odd parts.
13248     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
13249
13250     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
13251     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
13252
13253     // Merge the two vectors back together with a shuffle. This expands into 2
13254     // shuffles.
13255     static const int ShufMask[] = { 0, 4, 2, 6 };
13256     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
13257   }
13258
13259   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
13260          "Only know how to lower V2I64/V4I64/V8I64 multiply");
13261
13262   //  Ahi = psrlqi(a, 32);
13263   //  Bhi = psrlqi(b, 32);
13264   //
13265   //  AloBlo = pmuludq(a, b);
13266   //  AloBhi = pmuludq(a, Bhi);
13267   //  AhiBlo = pmuludq(Ahi, b);
13268
13269   //  AloBhi = psllqi(AloBhi, 32);
13270   //  AhiBlo = psllqi(AhiBlo, 32);
13271   //  return AloBlo + AloBhi + AhiBlo;
13272
13273   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
13274   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
13275
13276   // Bit cast to 32-bit vectors for MULUDQ
13277   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
13278                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
13279   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
13280   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
13281   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
13282   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
13283
13284   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
13285   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
13286   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
13287
13288   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
13289   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
13290
13291   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
13292   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
13293 }
13294
13295 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
13296   assert(Subtarget->isTargetWin64() && "Unexpected target");
13297   EVT VT = Op.getValueType();
13298   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
13299          "Unexpected return type for lowering");
13300
13301   RTLIB::Libcall LC;
13302   bool isSigned;
13303   switch (Op->getOpcode()) {
13304   default: llvm_unreachable("Unexpected request for libcall!");
13305   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
13306   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
13307   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
13308   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
13309   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
13310   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
13311   }
13312
13313   SDLoc dl(Op);
13314   SDValue InChain = DAG.getEntryNode();
13315
13316   TargetLowering::ArgListTy Args;
13317   TargetLowering::ArgListEntry Entry;
13318   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
13319     EVT ArgVT = Op->getOperand(i).getValueType();
13320     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
13321            "Unexpected argument type for lowering");
13322     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
13323     Entry.Node = StackPtr;
13324     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
13325                            false, false, 16);
13326     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13327     Entry.Ty = PointerType::get(ArgTy,0);
13328     Entry.isSExt = false;
13329     Entry.isZExt = false;
13330     Args.push_back(Entry);
13331   }
13332
13333   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
13334                                          getPointerTy());
13335
13336   TargetLowering::CallLoweringInfo CLI(
13337       InChain, static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
13338       isSigned, !isSigned, false, true, 0, getLibcallCallingConv(LC),
13339       /*isTailCall=*/false,
13340       /*doesNotReturn=*/false, /*isReturnValueUsed=*/true, Callee, Args, DAG,
13341       dl);
13342   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
13343
13344   return DAG.getNode(ISD::BITCAST, dl, VT, CallInfo.first);
13345 }
13346
13347 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
13348                              SelectionDAG &DAG) {
13349   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
13350   EVT VT = Op0.getValueType();
13351   SDLoc dl(Op);
13352
13353   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
13354          (VT == MVT::v8i32 && Subtarget->hasInt256()));
13355
13356   // Get the high parts.
13357   const int Mask[] = {1, 2, 3, 4, 5, 6, 7, 8};
13358   SDValue Hi0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
13359   SDValue Hi1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
13360
13361   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
13362   // ints.
13363   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
13364   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
13365   unsigned Opcode =
13366       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
13367   SDValue Mul1 = DAG.getNode(ISD::BITCAST, dl, VT,
13368                              DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
13369   SDValue Mul2 = DAG.getNode(ISD::BITCAST, dl, VT,
13370                              DAG.getNode(Opcode, dl, MulVT, Hi0, Hi1));
13371
13372   // Shuffle it back into the right order.
13373   const int HighMask[] = {1, 5, 3, 7, 9, 13, 11, 15};
13374   SDValue Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
13375   const int LowMask[] = {0, 4, 2, 6, 8, 12, 10, 14};
13376   SDValue Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
13377
13378   // If we have a signed multiply but no PMULDQ fix up the high parts of a
13379   // unsigned multiply.
13380   if (IsSigned && !Subtarget->hasSSE41()) {
13381     SDValue ShAmt =
13382         DAG.getConstant(31, DAG.getTargetLoweringInfo().getShiftAmountTy(VT));
13383     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
13384                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
13385     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
13386                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
13387
13388     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
13389     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
13390   }
13391
13392   return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getValueType(), Highs, Lows);
13393 }
13394
13395 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
13396                                          const X86Subtarget *Subtarget) {
13397   MVT VT = Op.getSimpleValueType();
13398   SDLoc dl(Op);
13399   SDValue R = Op.getOperand(0);
13400   SDValue Amt = Op.getOperand(1);
13401
13402   // Optimize shl/srl/sra with constant shift amount.
13403   if (isSplatVector(Amt.getNode())) {
13404     SDValue SclrAmt = Amt->getOperand(0);
13405     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
13406       uint64_t ShiftAmt = C->getZExtValue();
13407
13408       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
13409           (Subtarget->hasInt256() &&
13410            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
13411           (Subtarget->hasAVX512() &&
13412            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
13413         if (Op.getOpcode() == ISD::SHL)
13414           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
13415                                             DAG);
13416         if (Op.getOpcode() == ISD::SRL)
13417           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
13418                                             DAG);
13419         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
13420           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
13421                                             DAG);
13422       }
13423
13424       if (VT == MVT::v16i8) {
13425         if (Op.getOpcode() == ISD::SHL) {
13426           // Make a large shift.
13427           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
13428                                                    MVT::v8i16, R, ShiftAmt,
13429                                                    DAG);
13430           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
13431           // Zero out the rightmost bits.
13432           SmallVector<SDValue, 16> V(16,
13433                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
13434                                                      MVT::i8));
13435           return DAG.getNode(ISD::AND, dl, VT, SHL,
13436                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13437         }
13438         if (Op.getOpcode() == ISD::SRL) {
13439           // Make a large shift.
13440           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
13441                                                    MVT::v8i16, R, ShiftAmt,
13442                                                    DAG);
13443           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
13444           // Zero out the leftmost bits.
13445           SmallVector<SDValue, 16> V(16,
13446                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
13447                                                      MVT::i8));
13448           return DAG.getNode(ISD::AND, dl, VT, SRL,
13449                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13450         }
13451         if (Op.getOpcode() == ISD::SRA) {
13452           if (ShiftAmt == 7) {
13453             // R s>> 7  ===  R s< 0
13454             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
13455             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
13456           }
13457
13458           // R s>> a === ((R u>> a) ^ m) - m
13459           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
13460           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
13461                                                          MVT::i8));
13462           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
13463           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
13464           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
13465           return Res;
13466         }
13467         llvm_unreachable("Unknown shift opcode.");
13468       }
13469
13470       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
13471         if (Op.getOpcode() == ISD::SHL) {
13472           // Make a large shift.
13473           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
13474                                                    MVT::v16i16, R, ShiftAmt,
13475                                                    DAG);
13476           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
13477           // Zero out the rightmost bits.
13478           SmallVector<SDValue, 32> V(32,
13479                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
13480                                                      MVT::i8));
13481           return DAG.getNode(ISD::AND, dl, VT, SHL,
13482                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13483         }
13484         if (Op.getOpcode() == ISD::SRL) {
13485           // Make a large shift.
13486           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
13487                                                    MVT::v16i16, R, ShiftAmt,
13488                                                    DAG);
13489           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
13490           // Zero out the leftmost bits.
13491           SmallVector<SDValue, 32> V(32,
13492                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
13493                                                      MVT::i8));
13494           return DAG.getNode(ISD::AND, dl, VT, SRL,
13495                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13496         }
13497         if (Op.getOpcode() == ISD::SRA) {
13498           if (ShiftAmt == 7) {
13499             // R s>> 7  ===  R s< 0
13500             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
13501             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
13502           }
13503
13504           // R s>> a === ((R u>> a) ^ m) - m
13505           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
13506           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
13507                                                          MVT::i8));
13508           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
13509           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
13510           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
13511           return Res;
13512         }
13513         llvm_unreachable("Unknown shift opcode.");
13514       }
13515     }
13516   }
13517
13518   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13519   if (!Subtarget->is64Bit() &&
13520       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
13521       Amt.getOpcode() == ISD::BITCAST &&
13522       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13523     Amt = Amt.getOperand(0);
13524     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13525                      VT.getVectorNumElements();
13526     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
13527     uint64_t ShiftAmt = 0;
13528     for (unsigned i = 0; i != Ratio; ++i) {
13529       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
13530       if (!C)
13531         return SDValue();
13532       // 6 == Log2(64)
13533       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
13534     }
13535     // Check remaining shift amounts.
13536     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13537       uint64_t ShAmt = 0;
13538       for (unsigned j = 0; j != Ratio; ++j) {
13539         ConstantSDNode *C =
13540           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
13541         if (!C)
13542           return SDValue();
13543         // 6 == Log2(64)
13544         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
13545       }
13546       if (ShAmt != ShiftAmt)
13547         return SDValue();
13548     }
13549     switch (Op.getOpcode()) {
13550     default:
13551       llvm_unreachable("Unknown shift opcode!");
13552     case ISD::SHL:
13553       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
13554                                         DAG);
13555     case ISD::SRL:
13556       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
13557                                         DAG);
13558     case ISD::SRA:
13559       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
13560                                         DAG);
13561     }
13562   }
13563
13564   return SDValue();
13565 }
13566
13567 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
13568                                         const X86Subtarget* Subtarget) {
13569   MVT VT = Op.getSimpleValueType();
13570   SDLoc dl(Op);
13571   SDValue R = Op.getOperand(0);
13572   SDValue Amt = Op.getOperand(1);
13573
13574   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
13575       VT == MVT::v4i32 || VT == MVT::v8i16 ||
13576       (Subtarget->hasInt256() &&
13577        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
13578         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
13579        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
13580     SDValue BaseShAmt;
13581     EVT EltVT = VT.getVectorElementType();
13582
13583     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13584       unsigned NumElts = VT.getVectorNumElements();
13585       unsigned i, j;
13586       for (i = 0; i != NumElts; ++i) {
13587         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
13588           continue;
13589         break;
13590       }
13591       for (j = i; j != NumElts; ++j) {
13592         SDValue Arg = Amt.getOperand(j);
13593         if (Arg.getOpcode() == ISD::UNDEF) continue;
13594         if (Arg != Amt.getOperand(i))
13595           break;
13596       }
13597       if (i != NumElts && j == NumElts)
13598         BaseShAmt = Amt.getOperand(i);
13599     } else {
13600       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
13601         Amt = Amt.getOperand(0);
13602       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
13603                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
13604         SDValue InVec = Amt.getOperand(0);
13605         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13606           unsigned NumElts = InVec.getValueType().getVectorNumElements();
13607           unsigned i = 0;
13608           for (; i != NumElts; ++i) {
13609             SDValue Arg = InVec.getOperand(i);
13610             if (Arg.getOpcode() == ISD::UNDEF) continue;
13611             BaseShAmt = Arg;
13612             break;
13613           }
13614         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13615            if (ConstantSDNode *C =
13616                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
13617              unsigned SplatIdx =
13618                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
13619              if (C->getZExtValue() == SplatIdx)
13620                BaseShAmt = InVec.getOperand(1);
13621            }
13622         }
13623         if (!BaseShAmt.getNode())
13624           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
13625                                   DAG.getIntPtrConstant(0));
13626       }
13627     }
13628
13629     if (BaseShAmt.getNode()) {
13630       if (EltVT.bitsGT(MVT::i32))
13631         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
13632       else if (EltVT.bitsLT(MVT::i32))
13633         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
13634
13635       switch (Op.getOpcode()) {
13636       default:
13637         llvm_unreachable("Unknown shift opcode!");
13638       case ISD::SHL:
13639         switch (VT.SimpleTy) {
13640         default: return SDValue();
13641         case MVT::v2i64:
13642         case MVT::v4i32:
13643         case MVT::v8i16:
13644         case MVT::v4i64:
13645         case MVT::v8i32:
13646         case MVT::v16i16:
13647         case MVT::v16i32:
13648         case MVT::v8i64:
13649           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
13650         }
13651       case ISD::SRA:
13652         switch (VT.SimpleTy) {
13653         default: return SDValue();
13654         case MVT::v4i32:
13655         case MVT::v8i16:
13656         case MVT::v8i32:
13657         case MVT::v16i16:
13658         case MVT::v16i32:
13659         case MVT::v8i64:
13660           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13661         }
13662       case ISD::SRL:
13663         switch (VT.SimpleTy) {
13664         default: return SDValue();
13665         case MVT::v2i64:
13666         case MVT::v4i32:
13667         case MVT::v8i16:
13668         case MVT::v4i64:
13669         case MVT::v8i32:
13670         case MVT::v16i16:
13671         case MVT::v16i32:
13672         case MVT::v8i64:
13673           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13674         }
13675       }
13676     }
13677   }
13678
13679   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13680   if (!Subtarget->is64Bit() &&
13681       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13682       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13683       Amt.getOpcode() == ISD::BITCAST &&
13684       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13685     Amt = Amt.getOperand(0);
13686     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13687                      VT.getVectorNumElements();
13688     std::vector<SDValue> Vals(Ratio);
13689     for (unsigned i = 0; i != Ratio; ++i)
13690       Vals[i] = Amt.getOperand(i);
13691     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13692       for (unsigned j = 0; j != Ratio; ++j)
13693         if (Vals[j] != Amt.getOperand(i + j))
13694           return SDValue();
13695     }
13696     switch (Op.getOpcode()) {
13697     default:
13698       llvm_unreachable("Unknown shift opcode!");
13699     case ISD::SHL:
13700       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13701     case ISD::SRL:
13702       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13703     case ISD::SRA:
13704       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13705     }
13706   }
13707
13708   return SDValue();
13709 }
13710
13711 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13712                           SelectionDAG &DAG) {
13713
13714   MVT VT = Op.getSimpleValueType();
13715   SDLoc dl(Op);
13716   SDValue R = Op.getOperand(0);
13717   SDValue Amt = Op.getOperand(1);
13718   SDValue V;
13719
13720   if (!Subtarget->hasSSE2())
13721     return SDValue();
13722
13723   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13724   if (V.getNode())
13725     return V;
13726
13727   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13728   if (V.getNode())
13729       return V;
13730
13731   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13732     return Op;
13733   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13734   if (Subtarget->hasInt256()) {
13735     if (Op.getOpcode() == ISD::SRL &&
13736         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13737          VT == MVT::v4i64 || VT == MVT::v8i32))
13738       return Op;
13739     if (Op.getOpcode() == ISD::SHL &&
13740         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13741          VT == MVT::v4i64 || VT == MVT::v8i32))
13742       return Op;
13743     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13744       return Op;
13745   }
13746
13747   // If possible, lower this packed shift into a vector multiply instead of
13748   // expanding it into a sequence of scalar shifts.
13749   // Do this only if the vector shift count is a constant build_vector.
13750   if (Op.getOpcode() == ISD::SHL && 
13751       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
13752        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
13753       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
13754     SmallVector<SDValue, 8> Elts;
13755     EVT SVT = VT.getScalarType();
13756     unsigned SVTBits = SVT.getSizeInBits();
13757     const APInt &One = APInt(SVTBits, 1);
13758     unsigned NumElems = VT.getVectorNumElements();
13759
13760     for (unsigned i=0; i !=NumElems; ++i) {
13761       SDValue Op = Amt->getOperand(i);
13762       if (Op->getOpcode() == ISD::UNDEF) {
13763         Elts.push_back(Op);
13764         continue;
13765       }
13766
13767       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
13768       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
13769       uint64_t ShAmt = C.getZExtValue();
13770       if (ShAmt >= SVTBits) {
13771         Elts.push_back(DAG.getUNDEF(SVT));
13772         continue;
13773       }
13774       Elts.push_back(DAG.getConstant(One.shl(ShAmt), SVT));
13775     }
13776     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
13777     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
13778   }
13779
13780   // Lower SHL with variable shift amount.
13781   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13782     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13783
13784     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13785     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13786     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13787     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13788   }
13789
13790   // If possible, lower this shift as a sequence of two shifts by
13791   // constant plus a MOVSS/MOVSD instead of scalarizing it.
13792   // Example:
13793   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
13794   //
13795   // Could be rewritten as:
13796   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
13797   //
13798   // The advantage is that the two shifts from the example would be
13799   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
13800   // the vector shift into four scalar shifts plus four pairs of vector
13801   // insert/extract.
13802   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
13803       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
13804     unsigned TargetOpcode = X86ISD::MOVSS;
13805     bool CanBeSimplified;
13806     // The splat value for the first packed shift (the 'X' from the example).
13807     SDValue Amt1 = Amt->getOperand(0);
13808     // The splat value for the second packed shift (the 'Y' from the example).
13809     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
13810                                         Amt->getOperand(2);
13811
13812     // See if it is possible to replace this node with a sequence of
13813     // two shifts followed by a MOVSS/MOVSD
13814     if (VT == MVT::v4i32) {
13815       // Check if it is legal to use a MOVSS.
13816       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
13817                         Amt2 == Amt->getOperand(3);
13818       if (!CanBeSimplified) {
13819         // Otherwise, check if we can still simplify this node using a MOVSD.
13820         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
13821                           Amt->getOperand(2) == Amt->getOperand(3);
13822         TargetOpcode = X86ISD::MOVSD;
13823         Amt2 = Amt->getOperand(2);
13824       }
13825     } else {
13826       // Do similar checks for the case where the machine value type
13827       // is MVT::v8i16.
13828       CanBeSimplified = Amt1 == Amt->getOperand(1);
13829       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
13830         CanBeSimplified = Amt2 == Amt->getOperand(i);
13831
13832       if (!CanBeSimplified) {
13833         TargetOpcode = X86ISD::MOVSD;
13834         CanBeSimplified = true;
13835         Amt2 = Amt->getOperand(4);
13836         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
13837           CanBeSimplified = Amt1 == Amt->getOperand(i);
13838         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
13839           CanBeSimplified = Amt2 == Amt->getOperand(j);
13840       }
13841     }
13842     
13843     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
13844         isa<ConstantSDNode>(Amt2)) {
13845       // Replace this node with two shifts followed by a MOVSS/MOVSD.
13846       EVT CastVT = MVT::v4i32;
13847       SDValue Splat1 = 
13848         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), VT);
13849       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
13850       SDValue Splat2 = 
13851         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), VT);
13852       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
13853       if (TargetOpcode == X86ISD::MOVSD)
13854         CastVT = MVT::v2i64;
13855       SDValue BitCast1 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift1);
13856       SDValue BitCast2 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift2);
13857       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
13858                                             BitCast1, DAG);
13859       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
13860     }
13861   }
13862
13863   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13864     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13865
13866     // a = a << 5;
13867     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13868     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13869
13870     // Turn 'a' into a mask suitable for VSELECT
13871     SDValue VSelM = DAG.getConstant(0x80, VT);
13872     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13873     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13874
13875     SDValue CM1 = DAG.getConstant(0x0f, VT);
13876     SDValue CM2 = DAG.getConstant(0x3f, VT);
13877
13878     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13879     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13880     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13881     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13882     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13883
13884     // a += a
13885     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13886     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13887     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13888
13889     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13890     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13891     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13892     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13893     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13894
13895     // a += a
13896     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13897     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13898     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13899
13900     // return VSELECT(r, r+r, a);
13901     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13902                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13903     return R;
13904   }
13905
13906   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
13907   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
13908   // solution better.
13909   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
13910     MVT NewVT = VT == MVT::v8i16 ? MVT::v8i32 : MVT::v16i16;
13911     unsigned ExtOpc =
13912         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
13913     R = DAG.getNode(ExtOpc, dl, NewVT, R);
13914     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, NewVT, Amt);
13915     return DAG.getNode(ISD::TRUNCATE, dl, VT,
13916                        DAG.getNode(Op.getOpcode(), dl, NewVT, R, Amt));
13917     }
13918
13919   // Decompose 256-bit shifts into smaller 128-bit shifts.
13920   if (VT.is256BitVector()) {
13921     unsigned NumElems = VT.getVectorNumElements();
13922     MVT EltVT = VT.getVectorElementType();
13923     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13924
13925     // Extract the two vectors
13926     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13927     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13928
13929     // Recreate the shift amount vectors
13930     SDValue Amt1, Amt2;
13931     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13932       // Constant shift amount
13933       SmallVector<SDValue, 4> Amt1Csts;
13934       SmallVector<SDValue, 4> Amt2Csts;
13935       for (unsigned i = 0; i != NumElems/2; ++i)
13936         Amt1Csts.push_back(Amt->getOperand(i));
13937       for (unsigned i = NumElems/2; i != NumElems; ++i)
13938         Amt2Csts.push_back(Amt->getOperand(i));
13939
13940       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
13941       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
13942     } else {
13943       // Variable shift amount
13944       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13945       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13946     }
13947
13948     // Issue new vector shifts for the smaller types
13949     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13950     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13951
13952     // Concatenate the result back
13953     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13954   }
13955
13956   return SDValue();
13957 }
13958
13959 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13960   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13961   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13962   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13963   // has only one use.
13964   SDNode *N = Op.getNode();
13965   SDValue LHS = N->getOperand(0);
13966   SDValue RHS = N->getOperand(1);
13967   unsigned BaseOp = 0;
13968   unsigned Cond = 0;
13969   SDLoc DL(Op);
13970   switch (Op.getOpcode()) {
13971   default: llvm_unreachable("Unknown ovf instruction!");
13972   case ISD::SADDO:
13973     // A subtract of one will be selected as a INC. Note that INC doesn't
13974     // set CF, so we can't do this for UADDO.
13975     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13976       if (C->isOne()) {
13977         BaseOp = X86ISD::INC;
13978         Cond = X86::COND_O;
13979         break;
13980       }
13981     BaseOp = X86ISD::ADD;
13982     Cond = X86::COND_O;
13983     break;
13984   case ISD::UADDO:
13985     BaseOp = X86ISD::ADD;
13986     Cond = X86::COND_B;
13987     break;
13988   case ISD::SSUBO:
13989     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13990     // set CF, so we can't do this for USUBO.
13991     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13992       if (C->isOne()) {
13993         BaseOp = X86ISD::DEC;
13994         Cond = X86::COND_O;
13995         break;
13996       }
13997     BaseOp = X86ISD::SUB;
13998     Cond = X86::COND_O;
13999     break;
14000   case ISD::USUBO:
14001     BaseOp = X86ISD::SUB;
14002     Cond = X86::COND_B;
14003     break;
14004   case ISD::SMULO:
14005     BaseOp = X86ISD::SMUL;
14006     Cond = X86::COND_O;
14007     break;
14008   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
14009     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
14010                                  MVT::i32);
14011     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
14012
14013     SDValue SetCC =
14014       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
14015                   DAG.getConstant(X86::COND_O, MVT::i32),
14016                   SDValue(Sum.getNode(), 2));
14017
14018     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
14019   }
14020   }
14021
14022   // Also sets EFLAGS.
14023   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
14024   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
14025
14026   SDValue SetCC =
14027     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
14028                 DAG.getConstant(Cond, MVT::i32),
14029                 SDValue(Sum.getNode(), 1));
14030
14031   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
14032 }
14033
14034 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
14035                                                   SelectionDAG &DAG) const {
14036   SDLoc dl(Op);
14037   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
14038   MVT VT = Op.getSimpleValueType();
14039
14040   if (!Subtarget->hasSSE2() || !VT.isVector())
14041     return SDValue();
14042
14043   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
14044                       ExtraVT.getScalarType().getSizeInBits();
14045
14046   switch (VT.SimpleTy) {
14047     default: return SDValue();
14048     case MVT::v8i32:
14049     case MVT::v16i16:
14050       if (!Subtarget->hasFp256())
14051         return SDValue();
14052       if (!Subtarget->hasInt256()) {
14053         // needs to be split
14054         unsigned NumElems = VT.getVectorNumElements();
14055
14056         // Extract the LHS vectors
14057         SDValue LHS = Op.getOperand(0);
14058         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
14059         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
14060
14061         MVT EltVT = VT.getVectorElementType();
14062         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
14063
14064         EVT ExtraEltVT = ExtraVT.getVectorElementType();
14065         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
14066         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
14067                                    ExtraNumElems/2);
14068         SDValue Extra = DAG.getValueType(ExtraVT);
14069
14070         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
14071         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
14072
14073         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
14074       }
14075       // fall through
14076     case MVT::v4i32:
14077     case MVT::v8i16: {
14078       SDValue Op0 = Op.getOperand(0);
14079       SDValue Op00 = Op0.getOperand(0);
14080       SDValue Tmp1;
14081       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
14082       if (Op0.getOpcode() == ISD::BITCAST &&
14083           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
14084         // (sext (vzext x)) -> (vsext x)
14085         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
14086         if (Tmp1.getNode()) {
14087           EVT ExtraEltVT = ExtraVT.getVectorElementType();
14088           // This folding is only valid when the in-reg type is a vector of i8,
14089           // i16, or i32.
14090           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
14091               ExtraEltVT == MVT::i32) {
14092             SDValue Tmp1Op0 = Tmp1.getOperand(0);
14093             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
14094                    "This optimization is invalid without a VZEXT.");
14095             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
14096           }
14097           Op0 = Tmp1;
14098         }
14099       }
14100
14101       // If the above didn't work, then just use Shift-Left + Shift-Right.
14102       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
14103                                         DAG);
14104       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
14105                                         DAG);
14106     }
14107   }
14108 }
14109
14110 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
14111                                  SelectionDAG &DAG) {
14112   SDLoc dl(Op);
14113   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
14114     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
14115   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
14116     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
14117
14118   // The only fence that needs an instruction is a sequentially-consistent
14119   // cross-thread fence.
14120   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
14121     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
14122     // no-sse2). There isn't any reason to disable it if the target processor
14123     // supports it.
14124     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
14125       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
14126
14127     SDValue Chain = Op.getOperand(0);
14128     SDValue Zero = DAG.getConstant(0, MVT::i32);
14129     SDValue Ops[] = {
14130       DAG.getRegister(X86::ESP, MVT::i32), // Base
14131       DAG.getTargetConstant(1, MVT::i8),   // Scale
14132       DAG.getRegister(0, MVT::i32),        // Index
14133       DAG.getTargetConstant(0, MVT::i32),  // Disp
14134       DAG.getRegister(0, MVT::i32),        // Segment.
14135       Zero,
14136       Chain
14137     };
14138     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
14139     return SDValue(Res, 0);
14140   }
14141
14142   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
14143   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
14144 }
14145
14146 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
14147                              SelectionDAG &DAG) {
14148   MVT T = Op.getSimpleValueType();
14149   SDLoc DL(Op);
14150   unsigned Reg = 0;
14151   unsigned size = 0;
14152   switch(T.SimpleTy) {
14153   default: llvm_unreachable("Invalid value type!");
14154   case MVT::i8:  Reg = X86::AL;  size = 1; break;
14155   case MVT::i16: Reg = X86::AX;  size = 2; break;
14156   case MVT::i32: Reg = X86::EAX; size = 4; break;
14157   case MVT::i64:
14158     assert(Subtarget->is64Bit() && "Node not type legal!");
14159     Reg = X86::RAX; size = 8;
14160     break;
14161   }
14162   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
14163                                     Op.getOperand(2), SDValue());
14164   SDValue Ops[] = { cpIn.getValue(0),
14165                     Op.getOperand(1),
14166                     Op.getOperand(3),
14167                     DAG.getTargetConstant(size, MVT::i8),
14168                     cpIn.getValue(1) };
14169   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14170   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
14171   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
14172                                            Ops, T, MMO);
14173   SDValue cpOut =
14174     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
14175   return cpOut;
14176 }
14177
14178 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
14179                             SelectionDAG &DAG) {
14180   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
14181   MVT DstVT = Op.getSimpleValueType();
14182
14183   if (SrcVT == MVT::v2i32) {
14184     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
14185     if (DstVT != MVT::f64)
14186       // This conversion needs to be expanded.
14187       return SDValue();
14188
14189     SDLoc dl(Op);
14190     SDValue Elt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
14191                                Op->getOperand(0), DAG.getIntPtrConstant(0));
14192     SDValue Elt1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
14193                                Op->getOperand(0), DAG.getIntPtrConstant(1));
14194     SDValue Elts[] = {Elt0, Elt1, Elt0, Elt0};
14195     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Elts);
14196     SDValue ToV2F64 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, BV);
14197     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
14198                        DAG.getIntPtrConstant(0));
14199   }
14200
14201   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
14202          Subtarget->hasMMX() && "Unexpected custom BITCAST");
14203   assert((DstVT == MVT::i64 ||
14204           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
14205          "Unexpected custom BITCAST");
14206   // i64 <=> MMX conversions are Legal.
14207   if (SrcVT==MVT::i64 && DstVT.isVector())
14208     return Op;
14209   if (DstVT==MVT::i64 && SrcVT.isVector())
14210     return Op;
14211   // MMX <=> MMX conversions are Legal.
14212   if (SrcVT.isVector() && DstVT.isVector())
14213     return Op;
14214   // All other conversions need to be expanded.
14215   return SDValue();
14216 }
14217
14218 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
14219   SDNode *Node = Op.getNode();
14220   SDLoc dl(Node);
14221   EVT T = Node->getValueType(0);
14222   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
14223                               DAG.getConstant(0, T), Node->getOperand(2));
14224   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
14225                        cast<AtomicSDNode>(Node)->getMemoryVT(),
14226                        Node->getOperand(0),
14227                        Node->getOperand(1), negOp,
14228                        cast<AtomicSDNode>(Node)->getMemOperand(),
14229                        cast<AtomicSDNode>(Node)->getOrdering(),
14230                        cast<AtomicSDNode>(Node)->getSynchScope());
14231 }
14232
14233 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
14234   SDNode *Node = Op.getNode();
14235   SDLoc dl(Node);
14236   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
14237
14238   // Convert seq_cst store -> xchg
14239   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
14240   // FIXME: On 32-bit, store -> fist or movq would be more efficient
14241   //        (The only way to get a 16-byte store is cmpxchg16b)
14242   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
14243   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
14244       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
14245     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
14246                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
14247                                  Node->getOperand(0),
14248                                  Node->getOperand(1), Node->getOperand(2),
14249                                  cast<AtomicSDNode>(Node)->getMemOperand(),
14250                                  cast<AtomicSDNode>(Node)->getOrdering(),
14251                                  cast<AtomicSDNode>(Node)->getSynchScope());
14252     return Swap.getValue(1);
14253   }
14254   // Other atomic stores have a simple pattern.
14255   return Op;
14256 }
14257
14258 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
14259   EVT VT = Op.getNode()->getSimpleValueType(0);
14260
14261   // Let legalize expand this if it isn't a legal type yet.
14262   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
14263     return SDValue();
14264
14265   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
14266
14267   unsigned Opc;
14268   bool ExtraOp = false;
14269   switch (Op.getOpcode()) {
14270   default: llvm_unreachable("Invalid code");
14271   case ISD::ADDC: Opc = X86ISD::ADD; break;
14272   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
14273   case ISD::SUBC: Opc = X86ISD::SUB; break;
14274   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
14275   }
14276
14277   if (!ExtraOp)
14278     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
14279                        Op.getOperand(1));
14280   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
14281                      Op.getOperand(1), Op.getOperand(2));
14282 }
14283
14284 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
14285                             SelectionDAG &DAG) {
14286   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
14287
14288   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
14289   // which returns the values as { float, float } (in XMM0) or
14290   // { double, double } (which is returned in XMM0, XMM1).
14291   SDLoc dl(Op);
14292   SDValue Arg = Op.getOperand(0);
14293   EVT ArgVT = Arg.getValueType();
14294   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
14295
14296   TargetLowering::ArgListTy Args;
14297   TargetLowering::ArgListEntry Entry;
14298
14299   Entry.Node = Arg;
14300   Entry.Ty = ArgTy;
14301   Entry.isSExt = false;
14302   Entry.isZExt = false;
14303   Args.push_back(Entry);
14304
14305   bool isF64 = ArgVT == MVT::f64;
14306   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
14307   // the small struct {f32, f32} is returned in (eax, edx). For f64,
14308   // the results are returned via SRet in memory.
14309   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
14310   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14311   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
14312
14313   Type *RetTy = isF64
14314     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
14315     : (Type*)VectorType::get(ArgTy, 4);
14316   TargetLowering::
14317     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
14318                          false, false, false, false, 0,
14319                          CallingConv::C, /*isTaillCall=*/false,
14320                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
14321                          Callee, Args, DAG, dl);
14322   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
14323
14324   if (isF64)
14325     // Returned in xmm0 and xmm1.
14326     return CallResult.first;
14327
14328   // Returned in bits 0:31 and 32:64 xmm0.
14329   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
14330                                CallResult.first, DAG.getIntPtrConstant(0));
14331   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
14332                                CallResult.first, DAG.getIntPtrConstant(1));
14333   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
14334   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
14335 }
14336
14337 /// LowerOperation - Provide custom lowering hooks for some operations.
14338 ///
14339 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
14340   switch (Op.getOpcode()) {
14341   default: llvm_unreachable("Should not custom lower this!");
14342   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
14343   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
14344   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
14345   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
14346   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
14347   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
14348   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
14349   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
14350   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
14351   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
14352   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
14353   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
14354   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
14355   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
14356   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
14357   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
14358   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
14359   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
14360   case ISD::SHL_PARTS:
14361   case ISD::SRA_PARTS:
14362   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
14363   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
14364   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
14365   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
14366   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
14367   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
14368   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
14369   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
14370   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
14371   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
14372   case ISD::FABS:               return LowerFABS(Op, DAG);
14373   case ISD::FNEG:               return LowerFNEG(Op, DAG);
14374   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
14375   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
14376   case ISD::SETCC:              return LowerSETCC(Op, DAG);
14377   case ISD::SELECT:             return LowerSELECT(Op, DAG);
14378   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
14379   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
14380   case ISD::VASTART:            return LowerVASTART(Op, DAG);
14381   case ISD::VAARG:              return LowerVAARG(Op, DAG);
14382   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
14383   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
14384   case ISD::INTRINSIC_VOID:
14385   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
14386   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
14387   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
14388   case ISD::FRAME_TO_ARGS_OFFSET:
14389                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
14390   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
14391   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
14392   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
14393   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
14394   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
14395   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
14396   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
14397   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
14398   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
14399   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
14400   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
14401   case ISD::UMUL_LOHI:
14402   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
14403   case ISD::SRA:
14404   case ISD::SRL:
14405   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
14406   case ISD::SADDO:
14407   case ISD::UADDO:
14408   case ISD::SSUBO:
14409   case ISD::USUBO:
14410   case ISD::SMULO:
14411   case ISD::UMULO:              return LowerXALUO(Op, DAG);
14412   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
14413   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
14414   case ISD::ADDC:
14415   case ISD::ADDE:
14416   case ISD::SUBC:
14417   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
14418   case ISD::ADD:                return LowerADD(Op, DAG);
14419   case ISD::SUB:                return LowerSUB(Op, DAG);
14420   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
14421   }
14422 }
14423
14424 static void ReplaceATOMIC_LOAD(SDNode *Node,
14425                                   SmallVectorImpl<SDValue> &Results,
14426                                   SelectionDAG &DAG) {
14427   SDLoc dl(Node);
14428   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
14429
14430   // Convert wide load -> cmpxchg8b/cmpxchg16b
14431   // FIXME: On 32-bit, load -> fild or movq would be more efficient
14432   //        (The only way to get a 16-byte load is cmpxchg16b)
14433   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
14434   SDValue Zero = DAG.getConstant(0, VT);
14435   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
14436                                Node->getOperand(0),
14437                                Node->getOperand(1), Zero, Zero,
14438                                cast<AtomicSDNode>(Node)->getMemOperand(),
14439                                cast<AtomicSDNode>(Node)->getOrdering(),
14440                                cast<AtomicSDNode>(Node)->getOrdering(),
14441                                cast<AtomicSDNode>(Node)->getSynchScope());
14442   Results.push_back(Swap.getValue(0));
14443   Results.push_back(Swap.getValue(1));
14444 }
14445
14446 static void
14447 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
14448                         SelectionDAG &DAG, unsigned NewOp) {
14449   SDLoc dl(Node);
14450   assert (Node->getValueType(0) == MVT::i64 &&
14451           "Only know how to expand i64 atomics");
14452
14453   SDValue Chain = Node->getOperand(0);
14454   SDValue In1 = Node->getOperand(1);
14455   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
14456                              Node->getOperand(2), DAG.getIntPtrConstant(0));
14457   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
14458                              Node->getOperand(2), DAG.getIntPtrConstant(1));
14459   SDValue Ops[] = { Chain, In1, In2L, In2H };
14460   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
14461   SDValue Result =
14462     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, MVT::i64,
14463                             cast<MemSDNode>(Node)->getMemOperand());
14464   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
14465   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF));
14466   Results.push_back(Result.getValue(2));
14467 }
14468
14469 /// ReplaceNodeResults - Replace a node with an illegal result type
14470 /// with a new node built out of custom code.
14471 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
14472                                            SmallVectorImpl<SDValue>&Results,
14473                                            SelectionDAG &DAG) const {
14474   SDLoc dl(N);
14475   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14476   switch (N->getOpcode()) {
14477   default:
14478     llvm_unreachable("Do not know how to custom type legalize this operation!");
14479   case ISD::SIGN_EXTEND_INREG:
14480   case ISD::ADDC:
14481   case ISD::ADDE:
14482   case ISD::SUBC:
14483   case ISD::SUBE:
14484     // We don't want to expand or promote these.
14485     return;
14486   case ISD::SDIV:
14487   case ISD::UDIV:
14488   case ISD::SREM:
14489   case ISD::UREM:
14490   case ISD::SDIVREM:
14491   case ISD::UDIVREM: {
14492     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
14493     Results.push_back(V);
14494     return;
14495   }
14496   case ISD::FP_TO_SINT:
14497   case ISD::FP_TO_UINT: {
14498     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
14499
14500     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
14501       return;
14502
14503     std::pair<SDValue,SDValue> Vals =
14504         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
14505     SDValue FIST = Vals.first, StackSlot = Vals.second;
14506     if (FIST.getNode()) {
14507       EVT VT = N->getValueType(0);
14508       // Return a load from the stack slot.
14509       if (StackSlot.getNode())
14510         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
14511                                       MachinePointerInfo(),
14512                                       false, false, false, 0));
14513       else
14514         Results.push_back(FIST);
14515     }
14516     return;
14517   }
14518   case ISD::UINT_TO_FP: {
14519     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
14520     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
14521         N->getValueType(0) != MVT::v2f32)
14522       return;
14523     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
14524                                  N->getOperand(0));
14525     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
14526                                      MVT::f64);
14527     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
14528     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
14529                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
14530     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
14531     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
14532     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
14533     return;
14534   }
14535   case ISD::FP_ROUND: {
14536     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
14537         return;
14538     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
14539     Results.push_back(V);
14540     return;
14541   }
14542   case ISD::INTRINSIC_W_CHAIN: {
14543     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
14544     switch (IntNo) {
14545     default : llvm_unreachable("Do not know how to custom type "
14546                                "legalize this intrinsic operation!");
14547     case Intrinsic::x86_rdtsc:
14548       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
14549                                      Results);
14550     case Intrinsic::x86_rdtscp:
14551       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
14552                                      Results);
14553     }
14554   }
14555   case ISD::READCYCLECOUNTER: {
14556     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
14557                                    Results);
14558   }
14559   case ISD::ATOMIC_CMP_SWAP: {
14560     EVT T = N->getValueType(0);
14561     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
14562     bool Regs64bit = T == MVT::i128;
14563     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
14564     SDValue cpInL, cpInH;
14565     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
14566                         DAG.getConstant(0, HalfT));
14567     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
14568                         DAG.getConstant(1, HalfT));
14569     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
14570                              Regs64bit ? X86::RAX : X86::EAX,
14571                              cpInL, SDValue());
14572     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
14573                              Regs64bit ? X86::RDX : X86::EDX,
14574                              cpInH, cpInL.getValue(1));
14575     SDValue swapInL, swapInH;
14576     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
14577                           DAG.getConstant(0, HalfT));
14578     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
14579                           DAG.getConstant(1, HalfT));
14580     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
14581                                Regs64bit ? X86::RBX : X86::EBX,
14582                                swapInL, cpInH.getValue(1));
14583     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
14584                                Regs64bit ? X86::RCX : X86::ECX,
14585                                swapInH, swapInL.getValue(1));
14586     SDValue Ops[] = { swapInH.getValue(0),
14587                       N->getOperand(1),
14588                       swapInH.getValue(1) };
14589     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14590     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
14591     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
14592                                   X86ISD::LCMPXCHG8_DAG;
14593     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
14594     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
14595                                         Regs64bit ? X86::RAX : X86::EAX,
14596                                         HalfT, Result.getValue(1));
14597     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
14598                                         Regs64bit ? X86::RDX : X86::EDX,
14599                                         HalfT, cpOutL.getValue(2));
14600     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
14601     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
14602     Results.push_back(cpOutH.getValue(1));
14603     return;
14604   }
14605   case ISD::ATOMIC_LOAD_ADD:
14606   case ISD::ATOMIC_LOAD_AND:
14607   case ISD::ATOMIC_LOAD_NAND:
14608   case ISD::ATOMIC_LOAD_OR:
14609   case ISD::ATOMIC_LOAD_SUB:
14610   case ISD::ATOMIC_LOAD_XOR:
14611   case ISD::ATOMIC_LOAD_MAX:
14612   case ISD::ATOMIC_LOAD_MIN:
14613   case ISD::ATOMIC_LOAD_UMAX:
14614   case ISD::ATOMIC_LOAD_UMIN:
14615   case ISD::ATOMIC_SWAP: {
14616     unsigned Opc;
14617     switch (N->getOpcode()) {
14618     default: llvm_unreachable("Unexpected opcode");
14619     case ISD::ATOMIC_LOAD_ADD:
14620       Opc = X86ISD::ATOMADD64_DAG;
14621       break;
14622     case ISD::ATOMIC_LOAD_AND:
14623       Opc = X86ISD::ATOMAND64_DAG;
14624       break;
14625     case ISD::ATOMIC_LOAD_NAND:
14626       Opc = X86ISD::ATOMNAND64_DAG;
14627       break;
14628     case ISD::ATOMIC_LOAD_OR:
14629       Opc = X86ISD::ATOMOR64_DAG;
14630       break;
14631     case ISD::ATOMIC_LOAD_SUB:
14632       Opc = X86ISD::ATOMSUB64_DAG;
14633       break;
14634     case ISD::ATOMIC_LOAD_XOR:
14635       Opc = X86ISD::ATOMXOR64_DAG;
14636       break;
14637     case ISD::ATOMIC_LOAD_MAX:
14638       Opc = X86ISD::ATOMMAX64_DAG;
14639       break;
14640     case ISD::ATOMIC_LOAD_MIN:
14641       Opc = X86ISD::ATOMMIN64_DAG;
14642       break;
14643     case ISD::ATOMIC_LOAD_UMAX:
14644       Opc = X86ISD::ATOMUMAX64_DAG;
14645       break;
14646     case ISD::ATOMIC_LOAD_UMIN:
14647       Opc = X86ISD::ATOMUMIN64_DAG;
14648       break;
14649     case ISD::ATOMIC_SWAP:
14650       Opc = X86ISD::ATOMSWAP64_DAG;
14651       break;
14652     }
14653     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
14654     return;
14655   }
14656   case ISD::ATOMIC_LOAD: {
14657     ReplaceATOMIC_LOAD(N, Results, DAG);
14658     return;
14659   }
14660   case ISD::BITCAST: {
14661     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
14662     EVT DstVT = N->getValueType(0);
14663     EVT SrcVT = N->getOperand(0)->getValueType(0);
14664
14665     if (SrcVT == MVT::f64 && DstVT == MVT::v2i32) {
14666       SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
14667                                      MVT::v2f64, N->getOperand(0));
14668       SDValue ToV4I32 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Expanded);
14669       SDValue Elt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
14670                                  ToV4I32, DAG.getIntPtrConstant(0));
14671       SDValue Elt1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
14672                                  ToV4I32, DAG.getIntPtrConstant(1));
14673       SDValue Elts[] = {Elt0, Elt1};
14674       Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Elts));
14675     }
14676   }
14677   }
14678 }
14679
14680 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
14681   switch (Opcode) {
14682   default: return nullptr;
14683   case X86ISD::BSF:                return "X86ISD::BSF";
14684   case X86ISD::BSR:                return "X86ISD::BSR";
14685   case X86ISD::SHLD:               return "X86ISD::SHLD";
14686   case X86ISD::SHRD:               return "X86ISD::SHRD";
14687   case X86ISD::FAND:               return "X86ISD::FAND";
14688   case X86ISD::FANDN:              return "X86ISD::FANDN";
14689   case X86ISD::FOR:                return "X86ISD::FOR";
14690   case X86ISD::FXOR:               return "X86ISD::FXOR";
14691   case X86ISD::FSRL:               return "X86ISD::FSRL";
14692   case X86ISD::FILD:               return "X86ISD::FILD";
14693   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
14694   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
14695   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
14696   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
14697   case X86ISD::FLD:                return "X86ISD::FLD";
14698   case X86ISD::FST:                return "X86ISD::FST";
14699   case X86ISD::CALL:               return "X86ISD::CALL";
14700   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
14701   case X86ISD::BT:                 return "X86ISD::BT";
14702   case X86ISD::CMP:                return "X86ISD::CMP";
14703   case X86ISD::COMI:               return "X86ISD::COMI";
14704   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
14705   case X86ISD::CMPM:               return "X86ISD::CMPM";
14706   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
14707   case X86ISD::SETCC:              return "X86ISD::SETCC";
14708   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
14709   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
14710   case X86ISD::CMOV:               return "X86ISD::CMOV";
14711   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
14712   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
14713   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
14714   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
14715   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
14716   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
14717   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
14718   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
14719   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
14720   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
14721   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
14722   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
14723   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
14724   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
14725   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
14726   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
14727   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
14728   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
14729   case X86ISD::HADD:               return "X86ISD::HADD";
14730   case X86ISD::HSUB:               return "X86ISD::HSUB";
14731   case X86ISD::FHADD:              return "X86ISD::FHADD";
14732   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
14733   case X86ISD::UMAX:               return "X86ISD::UMAX";
14734   case X86ISD::UMIN:               return "X86ISD::UMIN";
14735   case X86ISD::SMAX:               return "X86ISD::SMAX";
14736   case X86ISD::SMIN:               return "X86ISD::SMIN";
14737   case X86ISD::FMAX:               return "X86ISD::FMAX";
14738   case X86ISD::FMIN:               return "X86ISD::FMIN";
14739   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
14740   case X86ISD::FMINC:              return "X86ISD::FMINC";
14741   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
14742   case X86ISD::FRCP:               return "X86ISD::FRCP";
14743   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
14744   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
14745   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
14746   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
14747   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
14748   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
14749   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
14750   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
14751   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
14752   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
14753   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
14754   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
14755   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
14756   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
14757   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
14758   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
14759   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
14760   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
14761   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
14762   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
14763   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
14764   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
14765   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
14766   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
14767   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
14768   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
14769   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
14770   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
14771   case X86ISD::VSHL:               return "X86ISD::VSHL";
14772   case X86ISD::VSRL:               return "X86ISD::VSRL";
14773   case X86ISD::VSRA:               return "X86ISD::VSRA";
14774   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
14775   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
14776   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
14777   case X86ISD::CMPP:               return "X86ISD::CMPP";
14778   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
14779   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
14780   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
14781   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
14782   case X86ISD::ADD:                return "X86ISD::ADD";
14783   case X86ISD::SUB:                return "X86ISD::SUB";
14784   case X86ISD::ADC:                return "X86ISD::ADC";
14785   case X86ISD::SBB:                return "X86ISD::SBB";
14786   case X86ISD::SMUL:               return "X86ISD::SMUL";
14787   case X86ISD::UMUL:               return "X86ISD::UMUL";
14788   case X86ISD::INC:                return "X86ISD::INC";
14789   case X86ISD::DEC:                return "X86ISD::DEC";
14790   case X86ISD::OR:                 return "X86ISD::OR";
14791   case X86ISD::XOR:                return "X86ISD::XOR";
14792   case X86ISD::AND:                return "X86ISD::AND";
14793   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
14794   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
14795   case X86ISD::PTEST:              return "X86ISD::PTEST";
14796   case X86ISD::TESTP:              return "X86ISD::TESTP";
14797   case X86ISD::TESTM:              return "X86ISD::TESTM";
14798   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
14799   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
14800   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14801   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14802   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14803   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14804   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14805   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14806   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14807   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14808   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14809   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14810   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14811   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14812   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14813   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14814   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14815   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14816   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14817   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14818   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14819   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
14820   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14821   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14822   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14823   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14824   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
14825   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14826   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14827   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
14828   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14829   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14830   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14831   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14832   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14833   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14834   case X86ISD::SAHF:               return "X86ISD::SAHF";
14835   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14836   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14837   case X86ISD::FMADD:              return "X86ISD::FMADD";
14838   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14839   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14840   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14841   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14842   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14843   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14844   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14845   case X86ISD::XTEST:              return "X86ISD::XTEST";
14846   }
14847 }
14848
14849 // isLegalAddressingMode - Return true if the addressing mode represented
14850 // by AM is legal for this target, for a load/store of the specified type.
14851 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14852                                               Type *Ty) const {
14853   // X86 supports extremely general addressing modes.
14854   CodeModel::Model M = getTargetMachine().getCodeModel();
14855   Reloc::Model R = getTargetMachine().getRelocationModel();
14856
14857   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14858   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
14859     return false;
14860
14861   if (AM.BaseGV) {
14862     unsigned GVFlags =
14863       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14864
14865     // If a reference to this global requires an extra load, we can't fold it.
14866     if (isGlobalStubReference(GVFlags))
14867       return false;
14868
14869     // If BaseGV requires a register for the PIC base, we cannot also have a
14870     // BaseReg specified.
14871     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14872       return false;
14873
14874     // If lower 4G is not available, then we must use rip-relative addressing.
14875     if ((M != CodeModel::Small || R != Reloc::Static) &&
14876         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14877       return false;
14878   }
14879
14880   switch (AM.Scale) {
14881   case 0:
14882   case 1:
14883   case 2:
14884   case 4:
14885   case 8:
14886     // These scales always work.
14887     break;
14888   case 3:
14889   case 5:
14890   case 9:
14891     // These scales are formed with basereg+scalereg.  Only accept if there is
14892     // no basereg yet.
14893     if (AM.HasBaseReg)
14894       return false;
14895     break;
14896   default:  // Other stuff never works.
14897     return false;
14898   }
14899
14900   return true;
14901 }
14902
14903 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
14904   unsigned Bits = Ty->getScalarSizeInBits();
14905
14906   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
14907   // particularly cheaper than those without.
14908   if (Bits == 8)
14909     return false;
14910
14911   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
14912   // variable shifts just as cheap as scalar ones.
14913   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
14914     return false;
14915
14916   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
14917   // fully general vector.
14918   return true;
14919 }
14920
14921 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14922   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14923     return false;
14924   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14925   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14926   return NumBits1 > NumBits2;
14927 }
14928
14929 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14930   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14931     return false;
14932
14933   if (!isTypeLegal(EVT::getEVT(Ty1)))
14934     return false;
14935
14936   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14937
14938   // Assuming the caller doesn't have a zeroext or signext return parameter,
14939   // truncation all the way down to i1 is valid.
14940   return true;
14941 }
14942
14943 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14944   return isInt<32>(Imm);
14945 }
14946
14947 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14948   // Can also use sub to handle negated immediates.
14949   return isInt<32>(Imm);
14950 }
14951
14952 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14953   if (!VT1.isInteger() || !VT2.isInteger())
14954     return false;
14955   unsigned NumBits1 = VT1.getSizeInBits();
14956   unsigned NumBits2 = VT2.getSizeInBits();
14957   return NumBits1 > NumBits2;
14958 }
14959
14960 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14961   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14962   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14963 }
14964
14965 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14966   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14967   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14968 }
14969
14970 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14971   EVT VT1 = Val.getValueType();
14972   if (isZExtFree(VT1, VT2))
14973     return true;
14974
14975   if (Val.getOpcode() != ISD::LOAD)
14976     return false;
14977
14978   if (!VT1.isSimple() || !VT1.isInteger() ||
14979       !VT2.isSimple() || !VT2.isInteger())
14980     return false;
14981
14982   switch (VT1.getSimpleVT().SimpleTy) {
14983   default: break;
14984   case MVT::i8:
14985   case MVT::i16:
14986   case MVT::i32:
14987     // X86 has 8, 16, and 32-bit zero-extending loads.
14988     return true;
14989   }
14990
14991   return false;
14992 }
14993
14994 bool
14995 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14996   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14997     return false;
14998
14999   VT = VT.getScalarType();
15000
15001   if (!VT.isSimple())
15002     return false;
15003
15004   switch (VT.getSimpleVT().SimpleTy) {
15005   case MVT::f32:
15006   case MVT::f64:
15007     return true;
15008   default:
15009     break;
15010   }
15011
15012   return false;
15013 }
15014
15015 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
15016   // i16 instructions are longer (0x66 prefix) and potentially slower.
15017   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
15018 }
15019
15020 /// isShuffleMaskLegal - Targets can use this to indicate that they only
15021 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
15022 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
15023 /// are assumed to be legal.
15024 bool
15025 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
15026                                       EVT VT) const {
15027   if (!VT.isSimple())
15028     return false;
15029
15030   MVT SVT = VT.getSimpleVT();
15031
15032   // Very little shuffling can be done for 64-bit vectors right now.
15033   if (VT.getSizeInBits() == 64)
15034     return false;
15035
15036   // FIXME: pshufb, blends, shifts.
15037   return (SVT.getVectorNumElements() == 2 ||
15038           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
15039           isMOVLMask(M, SVT) ||
15040           isSHUFPMask(M, SVT) ||
15041           isPSHUFDMask(M, SVT) ||
15042           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
15043           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
15044           isPALIGNRMask(M, SVT, Subtarget) ||
15045           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
15046           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
15047           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
15048           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
15049 }
15050
15051 bool
15052 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
15053                                           EVT VT) const {
15054   if (!VT.isSimple())
15055     return false;
15056
15057   MVT SVT = VT.getSimpleVT();
15058   unsigned NumElts = SVT.getVectorNumElements();
15059   // FIXME: This collection of masks seems suspect.
15060   if (NumElts == 2)
15061     return true;
15062   if (NumElts == 4 && SVT.is128BitVector()) {
15063     return (isMOVLMask(Mask, SVT)  ||
15064             isCommutedMOVLMask(Mask, SVT, true) ||
15065             isSHUFPMask(Mask, SVT) ||
15066             isSHUFPMask(Mask, SVT, /* Commuted */ true));
15067   }
15068   return false;
15069 }
15070
15071 //===----------------------------------------------------------------------===//
15072 //                           X86 Scheduler Hooks
15073 //===----------------------------------------------------------------------===//
15074
15075 /// Utility function to emit xbegin specifying the start of an RTM region.
15076 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
15077                                      const TargetInstrInfo *TII) {
15078   DebugLoc DL = MI->getDebugLoc();
15079
15080   const BasicBlock *BB = MBB->getBasicBlock();
15081   MachineFunction::iterator I = MBB;
15082   ++I;
15083
15084   // For the v = xbegin(), we generate
15085   //
15086   // thisMBB:
15087   //  xbegin sinkMBB
15088   //
15089   // mainMBB:
15090   //  eax = -1
15091   //
15092   // sinkMBB:
15093   //  v = eax
15094
15095   MachineBasicBlock *thisMBB = MBB;
15096   MachineFunction *MF = MBB->getParent();
15097   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15098   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15099   MF->insert(I, mainMBB);
15100   MF->insert(I, sinkMBB);
15101
15102   // Transfer the remainder of BB and its successor edges to sinkMBB.
15103   sinkMBB->splice(sinkMBB->begin(), MBB,
15104                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
15105   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15106
15107   // thisMBB:
15108   //  xbegin sinkMBB
15109   //  # fallthrough to mainMBB
15110   //  # abortion to sinkMBB
15111   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
15112   thisMBB->addSuccessor(mainMBB);
15113   thisMBB->addSuccessor(sinkMBB);
15114
15115   // mainMBB:
15116   //  EAX = -1
15117   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
15118   mainMBB->addSuccessor(sinkMBB);
15119
15120   // sinkMBB:
15121   // EAX is live into the sinkMBB
15122   sinkMBB->addLiveIn(X86::EAX);
15123   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15124           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15125     .addReg(X86::EAX);
15126
15127   MI->eraseFromParent();
15128   return sinkMBB;
15129 }
15130
15131 // Get CMPXCHG opcode for the specified data type.
15132 static unsigned getCmpXChgOpcode(EVT VT) {
15133   switch (VT.getSimpleVT().SimpleTy) {
15134   case MVT::i8:  return X86::LCMPXCHG8;
15135   case MVT::i16: return X86::LCMPXCHG16;
15136   case MVT::i32: return X86::LCMPXCHG32;
15137   case MVT::i64: return X86::LCMPXCHG64;
15138   default:
15139     break;
15140   }
15141   llvm_unreachable("Invalid operand size!");
15142 }
15143
15144 // Get LOAD opcode for the specified data type.
15145 static unsigned getLoadOpcode(EVT VT) {
15146   switch (VT.getSimpleVT().SimpleTy) {
15147   case MVT::i8:  return X86::MOV8rm;
15148   case MVT::i16: return X86::MOV16rm;
15149   case MVT::i32: return X86::MOV32rm;
15150   case MVT::i64: return X86::MOV64rm;
15151   default:
15152     break;
15153   }
15154   llvm_unreachable("Invalid operand size!");
15155 }
15156
15157 // Get opcode of the non-atomic one from the specified atomic instruction.
15158 static unsigned getNonAtomicOpcode(unsigned Opc) {
15159   switch (Opc) {
15160   case X86::ATOMAND8:  return X86::AND8rr;
15161   case X86::ATOMAND16: return X86::AND16rr;
15162   case X86::ATOMAND32: return X86::AND32rr;
15163   case X86::ATOMAND64: return X86::AND64rr;
15164   case X86::ATOMOR8:   return X86::OR8rr;
15165   case X86::ATOMOR16:  return X86::OR16rr;
15166   case X86::ATOMOR32:  return X86::OR32rr;
15167   case X86::ATOMOR64:  return X86::OR64rr;
15168   case X86::ATOMXOR8:  return X86::XOR8rr;
15169   case X86::ATOMXOR16: return X86::XOR16rr;
15170   case X86::ATOMXOR32: return X86::XOR32rr;
15171   case X86::ATOMXOR64: return X86::XOR64rr;
15172   }
15173   llvm_unreachable("Unhandled atomic-load-op opcode!");
15174 }
15175
15176 // Get opcode of the non-atomic one from the specified atomic instruction with
15177 // extra opcode.
15178 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
15179                                                unsigned &ExtraOpc) {
15180   switch (Opc) {
15181   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
15182   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
15183   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
15184   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
15185   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
15186   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
15187   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
15188   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
15189   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
15190   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
15191   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
15192   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
15193   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
15194   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
15195   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
15196   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
15197   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
15198   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
15199   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
15200   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
15201   }
15202   llvm_unreachable("Unhandled atomic-load-op opcode!");
15203 }
15204
15205 // Get opcode of the non-atomic one from the specified atomic instruction for
15206 // 64-bit data type on 32-bit target.
15207 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
15208   switch (Opc) {
15209   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
15210   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
15211   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
15212   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
15213   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
15214   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
15215   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
15216   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
15217   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
15218   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
15219   }
15220   llvm_unreachable("Unhandled atomic-load-op opcode!");
15221 }
15222
15223 // Get opcode of the non-atomic one from the specified atomic instruction for
15224 // 64-bit data type on 32-bit target with extra opcode.
15225 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
15226                                                    unsigned &HiOpc,
15227                                                    unsigned &ExtraOpc) {
15228   switch (Opc) {
15229   case X86::ATOMNAND6432:
15230     ExtraOpc = X86::NOT32r;
15231     HiOpc = X86::AND32rr;
15232     return X86::AND32rr;
15233   }
15234   llvm_unreachable("Unhandled atomic-load-op opcode!");
15235 }
15236
15237 // Get pseudo CMOV opcode from the specified data type.
15238 static unsigned getPseudoCMOVOpc(EVT VT) {
15239   switch (VT.getSimpleVT().SimpleTy) {
15240   case MVT::i8:  return X86::CMOV_GR8;
15241   case MVT::i16: return X86::CMOV_GR16;
15242   case MVT::i32: return X86::CMOV_GR32;
15243   default:
15244     break;
15245   }
15246   llvm_unreachable("Unknown CMOV opcode!");
15247 }
15248
15249 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
15250 // They will be translated into a spin-loop or compare-exchange loop from
15251 //
15252 //    ...
15253 //    dst = atomic-fetch-op MI.addr, MI.val
15254 //    ...
15255 //
15256 // to
15257 //
15258 //    ...
15259 //    t1 = LOAD MI.addr
15260 // loop:
15261 //    t4 = phi(t1, t3 / loop)
15262 //    t2 = OP MI.val, t4
15263 //    EAX = t4
15264 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
15265 //    t3 = EAX
15266 //    JNE loop
15267 // sink:
15268 //    dst = t3
15269 //    ...
15270 MachineBasicBlock *
15271 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
15272                                        MachineBasicBlock *MBB) const {
15273   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15274   DebugLoc DL = MI->getDebugLoc();
15275
15276   MachineFunction *MF = MBB->getParent();
15277   MachineRegisterInfo &MRI = MF->getRegInfo();
15278
15279   const BasicBlock *BB = MBB->getBasicBlock();
15280   MachineFunction::iterator I = MBB;
15281   ++I;
15282
15283   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
15284          "Unexpected number of operands");
15285
15286   assert(MI->hasOneMemOperand() &&
15287          "Expected atomic-load-op to have one memoperand");
15288
15289   // Memory Reference
15290   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15291   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15292
15293   unsigned DstReg, SrcReg;
15294   unsigned MemOpndSlot;
15295
15296   unsigned CurOp = 0;
15297
15298   DstReg = MI->getOperand(CurOp++).getReg();
15299   MemOpndSlot = CurOp;
15300   CurOp += X86::AddrNumOperands;
15301   SrcReg = MI->getOperand(CurOp++).getReg();
15302
15303   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15304   MVT::SimpleValueType VT = *RC->vt_begin();
15305   unsigned t1 = MRI.createVirtualRegister(RC);
15306   unsigned t2 = MRI.createVirtualRegister(RC);
15307   unsigned t3 = MRI.createVirtualRegister(RC);
15308   unsigned t4 = MRI.createVirtualRegister(RC);
15309   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
15310
15311   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
15312   unsigned LOADOpc = getLoadOpcode(VT);
15313
15314   // For the atomic load-arith operator, we generate
15315   //
15316   //  thisMBB:
15317   //    t1 = LOAD [MI.addr]
15318   //  mainMBB:
15319   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
15320   //    t1 = OP MI.val, EAX
15321   //    EAX = t4
15322   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
15323   //    t3 = EAX
15324   //    JNE mainMBB
15325   //  sinkMBB:
15326   //    dst = t3
15327
15328   MachineBasicBlock *thisMBB = MBB;
15329   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15330   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15331   MF->insert(I, mainMBB);
15332   MF->insert(I, sinkMBB);
15333
15334   MachineInstrBuilder MIB;
15335
15336   // Transfer the remainder of BB and its successor edges to sinkMBB.
15337   sinkMBB->splice(sinkMBB->begin(), MBB,
15338                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
15339   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15340
15341   // thisMBB:
15342   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
15343   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15344     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15345     if (NewMO.isReg())
15346       NewMO.setIsKill(false);
15347     MIB.addOperand(NewMO);
15348   }
15349   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
15350     unsigned flags = (*MMOI)->getFlags();
15351     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
15352     MachineMemOperand *MMO =
15353       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
15354                                (*MMOI)->getSize(),
15355                                (*MMOI)->getBaseAlignment(),
15356                                (*MMOI)->getTBAAInfo(),
15357                                (*MMOI)->getRanges());
15358     MIB.addMemOperand(MMO);
15359   }
15360
15361   thisMBB->addSuccessor(mainMBB);
15362
15363   // mainMBB:
15364   MachineBasicBlock *origMainMBB = mainMBB;
15365
15366   // Add a PHI.
15367   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
15368                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
15369
15370   unsigned Opc = MI->getOpcode();
15371   switch (Opc) {
15372   default:
15373     llvm_unreachable("Unhandled atomic-load-op opcode!");
15374   case X86::ATOMAND8:
15375   case X86::ATOMAND16:
15376   case X86::ATOMAND32:
15377   case X86::ATOMAND64:
15378   case X86::ATOMOR8:
15379   case X86::ATOMOR16:
15380   case X86::ATOMOR32:
15381   case X86::ATOMOR64:
15382   case X86::ATOMXOR8:
15383   case X86::ATOMXOR16:
15384   case X86::ATOMXOR32:
15385   case X86::ATOMXOR64: {
15386     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
15387     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
15388       .addReg(t4);
15389     break;
15390   }
15391   case X86::ATOMNAND8:
15392   case X86::ATOMNAND16:
15393   case X86::ATOMNAND32:
15394   case X86::ATOMNAND64: {
15395     unsigned Tmp = MRI.createVirtualRegister(RC);
15396     unsigned NOTOpc;
15397     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
15398     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
15399       .addReg(t4);
15400     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
15401     break;
15402   }
15403   case X86::ATOMMAX8:
15404   case X86::ATOMMAX16:
15405   case X86::ATOMMAX32:
15406   case X86::ATOMMAX64:
15407   case X86::ATOMMIN8:
15408   case X86::ATOMMIN16:
15409   case X86::ATOMMIN32:
15410   case X86::ATOMMIN64:
15411   case X86::ATOMUMAX8:
15412   case X86::ATOMUMAX16:
15413   case X86::ATOMUMAX32:
15414   case X86::ATOMUMAX64:
15415   case X86::ATOMUMIN8:
15416   case X86::ATOMUMIN16:
15417   case X86::ATOMUMIN32:
15418   case X86::ATOMUMIN64: {
15419     unsigned CMPOpc;
15420     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
15421
15422     BuildMI(mainMBB, DL, TII->get(CMPOpc))
15423       .addReg(SrcReg)
15424       .addReg(t4);
15425
15426     if (Subtarget->hasCMov()) {
15427       if (VT != MVT::i8) {
15428         // Native support
15429         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
15430           .addReg(SrcReg)
15431           .addReg(t4);
15432       } else {
15433         // Promote i8 to i32 to use CMOV32
15434         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15435         const TargetRegisterClass *RC32 =
15436           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
15437         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
15438         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
15439         unsigned Tmp = MRI.createVirtualRegister(RC32);
15440
15441         unsigned Undef = MRI.createVirtualRegister(RC32);
15442         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
15443
15444         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
15445           .addReg(Undef)
15446           .addReg(SrcReg)
15447           .addImm(X86::sub_8bit);
15448         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
15449           .addReg(Undef)
15450           .addReg(t4)
15451           .addImm(X86::sub_8bit);
15452
15453         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
15454           .addReg(SrcReg32)
15455           .addReg(AccReg32);
15456
15457         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
15458           .addReg(Tmp, 0, X86::sub_8bit);
15459       }
15460     } else {
15461       // Use pseudo select and lower them.
15462       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
15463              "Invalid atomic-load-op transformation!");
15464       unsigned SelOpc = getPseudoCMOVOpc(VT);
15465       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
15466       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
15467       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
15468               .addReg(SrcReg).addReg(t4)
15469               .addImm(CC);
15470       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15471       // Replace the original PHI node as mainMBB is changed after CMOV
15472       // lowering.
15473       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
15474         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
15475       Phi->eraseFromParent();
15476     }
15477     break;
15478   }
15479   }
15480
15481   // Copy PhyReg back from virtual register.
15482   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
15483     .addReg(t4);
15484
15485   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
15486   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15487     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15488     if (NewMO.isReg())
15489       NewMO.setIsKill(false);
15490     MIB.addOperand(NewMO);
15491   }
15492   MIB.addReg(t2);
15493   MIB.setMemRefs(MMOBegin, MMOEnd);
15494
15495   // Copy PhyReg back to virtual register.
15496   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
15497     .addReg(PhyReg);
15498
15499   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
15500
15501   mainMBB->addSuccessor(origMainMBB);
15502   mainMBB->addSuccessor(sinkMBB);
15503
15504   // sinkMBB:
15505   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15506           TII->get(TargetOpcode::COPY), DstReg)
15507     .addReg(t3);
15508
15509   MI->eraseFromParent();
15510   return sinkMBB;
15511 }
15512
15513 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
15514 // instructions. They will be translated into a spin-loop or compare-exchange
15515 // loop from
15516 //
15517 //    ...
15518 //    dst = atomic-fetch-op MI.addr, MI.val
15519 //    ...
15520 //
15521 // to
15522 //
15523 //    ...
15524 //    t1L = LOAD [MI.addr + 0]
15525 //    t1H = LOAD [MI.addr + 4]
15526 // loop:
15527 //    t4L = phi(t1L, t3L / loop)
15528 //    t4H = phi(t1H, t3H / loop)
15529 //    t2L = OP MI.val.lo, t4L
15530 //    t2H = OP MI.val.hi, t4H
15531 //    EAX = t4L
15532 //    EDX = t4H
15533 //    EBX = t2L
15534 //    ECX = t2H
15535 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
15536 //    t3L = EAX
15537 //    t3H = EDX
15538 //    JNE loop
15539 // sink:
15540 //    dstL = t3L
15541 //    dstH = t3H
15542 //    ...
15543 MachineBasicBlock *
15544 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
15545                                            MachineBasicBlock *MBB) const {
15546   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15547   DebugLoc DL = MI->getDebugLoc();
15548
15549   MachineFunction *MF = MBB->getParent();
15550   MachineRegisterInfo &MRI = MF->getRegInfo();
15551
15552   const BasicBlock *BB = MBB->getBasicBlock();
15553   MachineFunction::iterator I = MBB;
15554   ++I;
15555
15556   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
15557          "Unexpected number of operands");
15558
15559   assert(MI->hasOneMemOperand() &&
15560          "Expected atomic-load-op32 to have one memoperand");
15561
15562   // Memory Reference
15563   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15564   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15565
15566   unsigned DstLoReg, DstHiReg;
15567   unsigned SrcLoReg, SrcHiReg;
15568   unsigned MemOpndSlot;
15569
15570   unsigned CurOp = 0;
15571
15572   DstLoReg = MI->getOperand(CurOp++).getReg();
15573   DstHiReg = MI->getOperand(CurOp++).getReg();
15574   MemOpndSlot = CurOp;
15575   CurOp += X86::AddrNumOperands;
15576   SrcLoReg = MI->getOperand(CurOp++).getReg();
15577   SrcHiReg = MI->getOperand(CurOp++).getReg();
15578
15579   const TargetRegisterClass *RC = &X86::GR32RegClass;
15580   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
15581
15582   unsigned t1L = MRI.createVirtualRegister(RC);
15583   unsigned t1H = MRI.createVirtualRegister(RC);
15584   unsigned t2L = MRI.createVirtualRegister(RC);
15585   unsigned t2H = MRI.createVirtualRegister(RC);
15586   unsigned t3L = MRI.createVirtualRegister(RC);
15587   unsigned t3H = MRI.createVirtualRegister(RC);
15588   unsigned t4L = MRI.createVirtualRegister(RC);
15589   unsigned t4H = MRI.createVirtualRegister(RC);
15590
15591   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
15592   unsigned LOADOpc = X86::MOV32rm;
15593
15594   // For the atomic load-arith operator, we generate
15595   //
15596   //  thisMBB:
15597   //    t1L = LOAD [MI.addr + 0]
15598   //    t1H = LOAD [MI.addr + 4]
15599   //  mainMBB:
15600   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
15601   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
15602   //    t2L = OP MI.val.lo, t4L
15603   //    t2H = OP MI.val.hi, t4H
15604   //    EBX = t2L
15605   //    ECX = t2H
15606   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
15607   //    t3L = EAX
15608   //    t3H = EDX
15609   //    JNE loop
15610   //  sinkMBB:
15611   //    dstL = t3L
15612   //    dstH = t3H
15613
15614   MachineBasicBlock *thisMBB = MBB;
15615   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15616   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15617   MF->insert(I, mainMBB);
15618   MF->insert(I, sinkMBB);
15619
15620   MachineInstrBuilder MIB;
15621
15622   // Transfer the remainder of BB and its successor edges to sinkMBB.
15623   sinkMBB->splice(sinkMBB->begin(), MBB,
15624                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
15625   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15626
15627   // thisMBB:
15628   // Lo
15629   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
15630   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15631     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15632     if (NewMO.isReg())
15633       NewMO.setIsKill(false);
15634     MIB.addOperand(NewMO);
15635   }
15636   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
15637     unsigned flags = (*MMOI)->getFlags();
15638     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
15639     MachineMemOperand *MMO =
15640       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
15641                                (*MMOI)->getSize(),
15642                                (*MMOI)->getBaseAlignment(),
15643                                (*MMOI)->getTBAAInfo(),
15644                                (*MMOI)->getRanges());
15645     MIB.addMemOperand(MMO);
15646   };
15647   MachineInstr *LowMI = MIB;
15648
15649   // Hi
15650   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
15651   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15652     if (i == X86::AddrDisp) {
15653       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
15654     } else {
15655       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15656       if (NewMO.isReg())
15657         NewMO.setIsKill(false);
15658       MIB.addOperand(NewMO);
15659     }
15660   }
15661   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
15662
15663   thisMBB->addSuccessor(mainMBB);
15664
15665   // mainMBB:
15666   MachineBasicBlock *origMainMBB = mainMBB;
15667
15668   // Add PHIs.
15669   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
15670                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
15671   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
15672                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15673
15674   unsigned Opc = MI->getOpcode();
15675   switch (Opc) {
15676   default:
15677     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
15678   case X86::ATOMAND6432:
15679   case X86::ATOMOR6432:
15680   case X86::ATOMXOR6432:
15681   case X86::ATOMADD6432:
15682   case X86::ATOMSUB6432: {
15683     unsigned HiOpc;
15684     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15685     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
15686       .addReg(SrcLoReg);
15687     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
15688       .addReg(SrcHiReg);
15689     break;
15690   }
15691   case X86::ATOMNAND6432: {
15692     unsigned HiOpc, NOTOpc;
15693     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
15694     unsigned TmpL = MRI.createVirtualRegister(RC);
15695     unsigned TmpH = MRI.createVirtualRegister(RC);
15696     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
15697       .addReg(t4L);
15698     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
15699       .addReg(t4H);
15700     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
15701     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
15702     break;
15703   }
15704   case X86::ATOMMAX6432:
15705   case X86::ATOMMIN6432:
15706   case X86::ATOMUMAX6432:
15707   case X86::ATOMUMIN6432: {
15708     unsigned HiOpc;
15709     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15710     unsigned cL = MRI.createVirtualRegister(RC8);
15711     unsigned cH = MRI.createVirtualRegister(RC8);
15712     unsigned cL32 = MRI.createVirtualRegister(RC);
15713     unsigned cH32 = MRI.createVirtualRegister(RC);
15714     unsigned cc = MRI.createVirtualRegister(RC);
15715     // cl := cmp src_lo, lo
15716     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
15717       .addReg(SrcLoReg).addReg(t4L);
15718     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
15719     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
15720     // ch := cmp src_hi, hi
15721     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
15722       .addReg(SrcHiReg).addReg(t4H);
15723     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
15724     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
15725     // cc := if (src_hi == hi) ? cl : ch;
15726     if (Subtarget->hasCMov()) {
15727       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
15728         .addReg(cH32).addReg(cL32);
15729     } else {
15730       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
15731               .addReg(cH32).addReg(cL32)
15732               .addImm(X86::COND_E);
15733       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15734     }
15735     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
15736     if (Subtarget->hasCMov()) {
15737       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
15738         .addReg(SrcLoReg).addReg(t4L);
15739       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
15740         .addReg(SrcHiReg).addReg(t4H);
15741     } else {
15742       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
15743               .addReg(SrcLoReg).addReg(t4L)
15744               .addImm(X86::COND_NE);
15745       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15746       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
15747       // 2nd CMOV lowering.
15748       mainMBB->addLiveIn(X86::EFLAGS);
15749       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
15750               .addReg(SrcHiReg).addReg(t4H)
15751               .addImm(X86::COND_NE);
15752       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15753       // Replace the original PHI node as mainMBB is changed after CMOV
15754       // lowering.
15755       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
15756         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
15757       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
15758         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15759       PhiL->eraseFromParent();
15760       PhiH->eraseFromParent();
15761     }
15762     break;
15763   }
15764   case X86::ATOMSWAP6432: {
15765     unsigned HiOpc;
15766     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15767     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
15768     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
15769     break;
15770   }
15771   }
15772
15773   // Copy EDX:EAX back from HiReg:LoReg
15774   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
15775   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
15776   // Copy ECX:EBX from t1H:t1L
15777   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
15778   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
15779
15780   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
15781   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15782     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15783     if (NewMO.isReg())
15784       NewMO.setIsKill(false);
15785     MIB.addOperand(NewMO);
15786   }
15787   MIB.setMemRefs(MMOBegin, MMOEnd);
15788
15789   // Copy EDX:EAX back to t3H:t3L
15790   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
15791   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
15792
15793   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
15794
15795   mainMBB->addSuccessor(origMainMBB);
15796   mainMBB->addSuccessor(sinkMBB);
15797
15798   // sinkMBB:
15799   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15800           TII->get(TargetOpcode::COPY), DstLoReg)
15801     .addReg(t3L);
15802   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15803           TII->get(TargetOpcode::COPY), DstHiReg)
15804     .addReg(t3H);
15805
15806   MI->eraseFromParent();
15807   return sinkMBB;
15808 }
15809
15810 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
15811 // or XMM0_V32I8 in AVX all of this code can be replaced with that
15812 // in the .td file.
15813 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
15814                                        const TargetInstrInfo *TII) {
15815   unsigned Opc;
15816   switch (MI->getOpcode()) {
15817   default: llvm_unreachable("illegal opcode!");
15818   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
15819   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
15820   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
15821   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15822   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15823   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15824   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15825   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15826   }
15827
15828   DebugLoc dl = MI->getDebugLoc();
15829   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15830
15831   unsigned NumArgs = MI->getNumOperands();
15832   for (unsigned i = 1; i < NumArgs; ++i) {
15833     MachineOperand &Op = MI->getOperand(i);
15834     if (!(Op.isReg() && Op.isImplicit()))
15835       MIB.addOperand(Op);
15836   }
15837   if (MI->hasOneMemOperand())
15838     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15839
15840   BuildMI(*BB, MI, dl,
15841     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15842     .addReg(X86::XMM0);
15843
15844   MI->eraseFromParent();
15845   return BB;
15846 }
15847
15848 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15849 // defs in an instruction pattern
15850 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15851                                        const TargetInstrInfo *TII) {
15852   unsigned Opc;
15853   switch (MI->getOpcode()) {
15854   default: llvm_unreachable("illegal opcode!");
15855   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15856   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15857   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15858   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15859   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15860   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15861   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15862   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15863   }
15864
15865   DebugLoc dl = MI->getDebugLoc();
15866   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15867
15868   unsigned NumArgs = MI->getNumOperands(); // remove the results
15869   for (unsigned i = 1; i < NumArgs; ++i) {
15870     MachineOperand &Op = MI->getOperand(i);
15871     if (!(Op.isReg() && Op.isImplicit()))
15872       MIB.addOperand(Op);
15873   }
15874   if (MI->hasOneMemOperand())
15875     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15876
15877   BuildMI(*BB, MI, dl,
15878     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15879     .addReg(X86::ECX);
15880
15881   MI->eraseFromParent();
15882   return BB;
15883 }
15884
15885 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15886                                        const TargetInstrInfo *TII,
15887                                        const X86Subtarget* Subtarget) {
15888   DebugLoc dl = MI->getDebugLoc();
15889
15890   // Address into RAX/EAX, other two args into ECX, EDX.
15891   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15892   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15893   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15894   for (int i = 0; i < X86::AddrNumOperands; ++i)
15895     MIB.addOperand(MI->getOperand(i));
15896
15897   unsigned ValOps = X86::AddrNumOperands;
15898   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15899     .addReg(MI->getOperand(ValOps).getReg());
15900   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15901     .addReg(MI->getOperand(ValOps+1).getReg());
15902
15903   // The instruction doesn't actually take any operands though.
15904   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15905
15906   MI->eraseFromParent(); // The pseudo is gone now.
15907   return BB;
15908 }
15909
15910 MachineBasicBlock *
15911 X86TargetLowering::EmitVAARG64WithCustomInserter(
15912                    MachineInstr *MI,
15913                    MachineBasicBlock *MBB) const {
15914   // Emit va_arg instruction on X86-64.
15915
15916   // Operands to this pseudo-instruction:
15917   // 0  ) Output        : destination address (reg)
15918   // 1-5) Input         : va_list address (addr, i64mem)
15919   // 6  ) ArgSize       : Size (in bytes) of vararg type
15920   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15921   // 8  ) Align         : Alignment of type
15922   // 9  ) EFLAGS (implicit-def)
15923
15924   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15925   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15926
15927   unsigned DestReg = MI->getOperand(0).getReg();
15928   MachineOperand &Base = MI->getOperand(1);
15929   MachineOperand &Scale = MI->getOperand(2);
15930   MachineOperand &Index = MI->getOperand(3);
15931   MachineOperand &Disp = MI->getOperand(4);
15932   MachineOperand &Segment = MI->getOperand(5);
15933   unsigned ArgSize = MI->getOperand(6).getImm();
15934   unsigned ArgMode = MI->getOperand(7).getImm();
15935   unsigned Align = MI->getOperand(8).getImm();
15936
15937   // Memory Reference
15938   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15939   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15940   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15941
15942   // Machine Information
15943   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15944   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15945   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15946   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15947   DebugLoc DL = MI->getDebugLoc();
15948
15949   // struct va_list {
15950   //   i32   gp_offset
15951   //   i32   fp_offset
15952   //   i64   overflow_area (address)
15953   //   i64   reg_save_area (address)
15954   // }
15955   // sizeof(va_list) = 24
15956   // alignment(va_list) = 8
15957
15958   unsigned TotalNumIntRegs = 6;
15959   unsigned TotalNumXMMRegs = 8;
15960   bool UseGPOffset = (ArgMode == 1);
15961   bool UseFPOffset = (ArgMode == 2);
15962   unsigned MaxOffset = TotalNumIntRegs * 8 +
15963                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15964
15965   /* Align ArgSize to a multiple of 8 */
15966   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15967   bool NeedsAlign = (Align > 8);
15968
15969   MachineBasicBlock *thisMBB = MBB;
15970   MachineBasicBlock *overflowMBB;
15971   MachineBasicBlock *offsetMBB;
15972   MachineBasicBlock *endMBB;
15973
15974   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15975   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15976   unsigned OffsetReg = 0;
15977
15978   if (!UseGPOffset && !UseFPOffset) {
15979     // If we only pull from the overflow region, we don't create a branch.
15980     // We don't need to alter control flow.
15981     OffsetDestReg = 0; // unused
15982     OverflowDestReg = DestReg;
15983
15984     offsetMBB = nullptr;
15985     overflowMBB = thisMBB;
15986     endMBB = thisMBB;
15987   } else {
15988     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15989     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15990     // If not, pull from overflow_area. (branch to overflowMBB)
15991     //
15992     //       thisMBB
15993     //         |     .
15994     //         |        .
15995     //     offsetMBB   overflowMBB
15996     //         |        .
15997     //         |     .
15998     //        endMBB
15999
16000     // Registers for the PHI in endMBB
16001     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
16002     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
16003
16004     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
16005     MachineFunction *MF = MBB->getParent();
16006     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16007     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16008     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16009
16010     MachineFunction::iterator MBBIter = MBB;
16011     ++MBBIter;
16012
16013     // Insert the new basic blocks
16014     MF->insert(MBBIter, offsetMBB);
16015     MF->insert(MBBIter, overflowMBB);
16016     MF->insert(MBBIter, endMBB);
16017
16018     // Transfer the remainder of MBB and its successor edges to endMBB.
16019     endMBB->splice(endMBB->begin(), thisMBB,
16020                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
16021     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
16022
16023     // Make offsetMBB and overflowMBB successors of thisMBB
16024     thisMBB->addSuccessor(offsetMBB);
16025     thisMBB->addSuccessor(overflowMBB);
16026
16027     // endMBB is a successor of both offsetMBB and overflowMBB
16028     offsetMBB->addSuccessor(endMBB);
16029     overflowMBB->addSuccessor(endMBB);
16030
16031     // Load the offset value into a register
16032     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
16033     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
16034       .addOperand(Base)
16035       .addOperand(Scale)
16036       .addOperand(Index)
16037       .addDisp(Disp, UseFPOffset ? 4 : 0)
16038       .addOperand(Segment)
16039       .setMemRefs(MMOBegin, MMOEnd);
16040
16041     // Check if there is enough room left to pull this argument.
16042     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
16043       .addReg(OffsetReg)
16044       .addImm(MaxOffset + 8 - ArgSizeA8);
16045
16046     // Branch to "overflowMBB" if offset >= max
16047     // Fall through to "offsetMBB" otherwise
16048     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
16049       .addMBB(overflowMBB);
16050   }
16051
16052   // In offsetMBB, emit code to use the reg_save_area.
16053   if (offsetMBB) {
16054     assert(OffsetReg != 0);
16055
16056     // Read the reg_save_area address.
16057     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
16058     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
16059       .addOperand(Base)
16060       .addOperand(Scale)
16061       .addOperand(Index)
16062       .addDisp(Disp, 16)
16063       .addOperand(Segment)
16064       .setMemRefs(MMOBegin, MMOEnd);
16065
16066     // Zero-extend the offset
16067     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
16068       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
16069         .addImm(0)
16070         .addReg(OffsetReg)
16071         .addImm(X86::sub_32bit);
16072
16073     // Add the offset to the reg_save_area to get the final address.
16074     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
16075       .addReg(OffsetReg64)
16076       .addReg(RegSaveReg);
16077
16078     // Compute the offset for the next argument
16079     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
16080     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
16081       .addReg(OffsetReg)
16082       .addImm(UseFPOffset ? 16 : 8);
16083
16084     // Store it back into the va_list.
16085     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
16086       .addOperand(Base)
16087       .addOperand(Scale)
16088       .addOperand(Index)
16089       .addDisp(Disp, UseFPOffset ? 4 : 0)
16090       .addOperand(Segment)
16091       .addReg(NextOffsetReg)
16092       .setMemRefs(MMOBegin, MMOEnd);
16093
16094     // Jump to endMBB
16095     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
16096       .addMBB(endMBB);
16097   }
16098
16099   //
16100   // Emit code to use overflow area
16101   //
16102
16103   // Load the overflow_area address into a register.
16104   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
16105   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
16106     .addOperand(Base)
16107     .addOperand(Scale)
16108     .addOperand(Index)
16109     .addDisp(Disp, 8)
16110     .addOperand(Segment)
16111     .setMemRefs(MMOBegin, MMOEnd);
16112
16113   // If we need to align it, do so. Otherwise, just copy the address
16114   // to OverflowDestReg.
16115   if (NeedsAlign) {
16116     // Align the overflow address
16117     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
16118     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
16119
16120     // aligned_addr = (addr + (align-1)) & ~(align-1)
16121     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
16122       .addReg(OverflowAddrReg)
16123       .addImm(Align-1);
16124
16125     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
16126       .addReg(TmpReg)
16127       .addImm(~(uint64_t)(Align-1));
16128   } else {
16129     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
16130       .addReg(OverflowAddrReg);
16131   }
16132
16133   // Compute the next overflow address after this argument.
16134   // (the overflow address should be kept 8-byte aligned)
16135   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
16136   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
16137     .addReg(OverflowDestReg)
16138     .addImm(ArgSizeA8);
16139
16140   // Store the new overflow address.
16141   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
16142     .addOperand(Base)
16143     .addOperand(Scale)
16144     .addOperand(Index)
16145     .addDisp(Disp, 8)
16146     .addOperand(Segment)
16147     .addReg(NextAddrReg)
16148     .setMemRefs(MMOBegin, MMOEnd);
16149
16150   // If we branched, emit the PHI to the front of endMBB.
16151   if (offsetMBB) {
16152     BuildMI(*endMBB, endMBB->begin(), DL,
16153             TII->get(X86::PHI), DestReg)
16154       .addReg(OffsetDestReg).addMBB(offsetMBB)
16155       .addReg(OverflowDestReg).addMBB(overflowMBB);
16156   }
16157
16158   // Erase the pseudo instruction
16159   MI->eraseFromParent();
16160
16161   return endMBB;
16162 }
16163
16164 MachineBasicBlock *
16165 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
16166                                                  MachineInstr *MI,
16167                                                  MachineBasicBlock *MBB) const {
16168   // Emit code to save XMM registers to the stack. The ABI says that the
16169   // number of registers to save is given in %al, so it's theoretically
16170   // possible to do an indirect jump trick to avoid saving all of them,
16171   // however this code takes a simpler approach and just executes all
16172   // of the stores if %al is non-zero. It's less code, and it's probably
16173   // easier on the hardware branch predictor, and stores aren't all that
16174   // expensive anyway.
16175
16176   // Create the new basic blocks. One block contains all the XMM stores,
16177   // and one block is the final destination regardless of whether any
16178   // stores were performed.
16179   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
16180   MachineFunction *F = MBB->getParent();
16181   MachineFunction::iterator MBBIter = MBB;
16182   ++MBBIter;
16183   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
16184   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
16185   F->insert(MBBIter, XMMSaveMBB);
16186   F->insert(MBBIter, EndMBB);
16187
16188   // Transfer the remainder of MBB and its successor edges to EndMBB.
16189   EndMBB->splice(EndMBB->begin(), MBB,
16190                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
16191   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
16192
16193   // The original block will now fall through to the XMM save block.
16194   MBB->addSuccessor(XMMSaveMBB);
16195   // The XMMSaveMBB will fall through to the end block.
16196   XMMSaveMBB->addSuccessor(EndMBB);
16197
16198   // Now add the instructions.
16199   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16200   DebugLoc DL = MI->getDebugLoc();
16201
16202   unsigned CountReg = MI->getOperand(0).getReg();
16203   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
16204   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
16205
16206   if (!Subtarget->isTargetWin64()) {
16207     // If %al is 0, branch around the XMM save block.
16208     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
16209     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
16210     MBB->addSuccessor(EndMBB);
16211   }
16212
16213   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
16214   // that was just emitted, but clearly shouldn't be "saved".
16215   assert((MI->getNumOperands() <= 3 ||
16216           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
16217           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
16218          && "Expected last argument to be EFLAGS");
16219   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
16220   // In the XMM save block, save all the XMM argument registers.
16221   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
16222     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
16223     MachineMemOperand *MMO =
16224       F->getMachineMemOperand(
16225           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
16226         MachineMemOperand::MOStore,
16227         /*Size=*/16, /*Align=*/16);
16228     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
16229       .addFrameIndex(RegSaveFrameIndex)
16230       .addImm(/*Scale=*/1)
16231       .addReg(/*IndexReg=*/0)
16232       .addImm(/*Disp=*/Offset)
16233       .addReg(/*Segment=*/0)
16234       .addReg(MI->getOperand(i).getReg())
16235       .addMemOperand(MMO);
16236   }
16237
16238   MI->eraseFromParent();   // The pseudo instruction is gone now.
16239
16240   return EndMBB;
16241 }
16242
16243 // The EFLAGS operand of SelectItr might be missing a kill marker
16244 // because there were multiple uses of EFLAGS, and ISel didn't know
16245 // which to mark. Figure out whether SelectItr should have had a
16246 // kill marker, and set it if it should. Returns the correct kill
16247 // marker value.
16248 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
16249                                      MachineBasicBlock* BB,
16250                                      const TargetRegisterInfo* TRI) {
16251   // Scan forward through BB for a use/def of EFLAGS.
16252   MachineBasicBlock::iterator miI(std::next(SelectItr));
16253   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
16254     const MachineInstr& mi = *miI;
16255     if (mi.readsRegister(X86::EFLAGS))
16256       return false;
16257     if (mi.definesRegister(X86::EFLAGS))
16258       break; // Should have kill-flag - update below.
16259   }
16260
16261   // If we hit the end of the block, check whether EFLAGS is live into a
16262   // successor.
16263   if (miI == BB->end()) {
16264     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
16265                                           sEnd = BB->succ_end();
16266          sItr != sEnd; ++sItr) {
16267       MachineBasicBlock* succ = *sItr;
16268       if (succ->isLiveIn(X86::EFLAGS))
16269         return false;
16270     }
16271   }
16272
16273   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
16274   // out. SelectMI should have a kill flag on EFLAGS.
16275   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
16276   return true;
16277 }
16278
16279 MachineBasicBlock *
16280 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
16281                                      MachineBasicBlock *BB) const {
16282   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16283   DebugLoc DL = MI->getDebugLoc();
16284
16285   // To "insert" a SELECT_CC instruction, we actually have to insert the
16286   // diamond control-flow pattern.  The incoming instruction knows the
16287   // destination vreg to set, the condition code register to branch on, the
16288   // true/false values to select between, and a branch opcode to use.
16289   const BasicBlock *LLVM_BB = BB->getBasicBlock();
16290   MachineFunction::iterator It = BB;
16291   ++It;
16292
16293   //  thisMBB:
16294   //  ...
16295   //   TrueVal = ...
16296   //   cmpTY ccX, r1, r2
16297   //   bCC copy1MBB
16298   //   fallthrough --> copy0MBB
16299   MachineBasicBlock *thisMBB = BB;
16300   MachineFunction *F = BB->getParent();
16301   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
16302   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
16303   F->insert(It, copy0MBB);
16304   F->insert(It, sinkMBB);
16305
16306   // If the EFLAGS register isn't dead in the terminator, then claim that it's
16307   // live into the sink and copy blocks.
16308   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
16309   if (!MI->killsRegister(X86::EFLAGS) &&
16310       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
16311     copy0MBB->addLiveIn(X86::EFLAGS);
16312     sinkMBB->addLiveIn(X86::EFLAGS);
16313   }
16314
16315   // Transfer the remainder of BB and its successor edges to sinkMBB.
16316   sinkMBB->splice(sinkMBB->begin(), BB,
16317                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
16318   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
16319
16320   // Add the true and fallthrough blocks as its successors.
16321   BB->addSuccessor(copy0MBB);
16322   BB->addSuccessor(sinkMBB);
16323
16324   // Create the conditional branch instruction.
16325   unsigned Opc =
16326     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
16327   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
16328
16329   //  copy0MBB:
16330   //   %FalseValue = ...
16331   //   # fallthrough to sinkMBB
16332   copy0MBB->addSuccessor(sinkMBB);
16333
16334   //  sinkMBB:
16335   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
16336   //  ...
16337   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
16338           TII->get(X86::PHI), MI->getOperand(0).getReg())
16339     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
16340     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
16341
16342   MI->eraseFromParent();   // The pseudo instruction is gone now.
16343   return sinkMBB;
16344 }
16345
16346 MachineBasicBlock *
16347 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
16348                                         bool Is64Bit) const {
16349   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16350   DebugLoc DL = MI->getDebugLoc();
16351   MachineFunction *MF = BB->getParent();
16352   const BasicBlock *LLVM_BB = BB->getBasicBlock();
16353
16354   assert(MF->shouldSplitStack());
16355
16356   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
16357   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
16358
16359   // BB:
16360   //  ... [Till the alloca]
16361   // If stacklet is not large enough, jump to mallocMBB
16362   //
16363   // bumpMBB:
16364   //  Allocate by subtracting from RSP
16365   //  Jump to continueMBB
16366   //
16367   // mallocMBB:
16368   //  Allocate by call to runtime
16369   //
16370   // continueMBB:
16371   //  ...
16372   //  [rest of original BB]
16373   //
16374
16375   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16376   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16377   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16378
16379   MachineRegisterInfo &MRI = MF->getRegInfo();
16380   const TargetRegisterClass *AddrRegClass =
16381     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
16382
16383   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
16384     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
16385     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
16386     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
16387     sizeVReg = MI->getOperand(1).getReg(),
16388     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
16389
16390   MachineFunction::iterator MBBIter = BB;
16391   ++MBBIter;
16392
16393   MF->insert(MBBIter, bumpMBB);
16394   MF->insert(MBBIter, mallocMBB);
16395   MF->insert(MBBIter, continueMBB);
16396
16397   continueMBB->splice(continueMBB->begin(), BB,
16398                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
16399   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
16400
16401   // Add code to the main basic block to check if the stack limit has been hit,
16402   // and if so, jump to mallocMBB otherwise to bumpMBB.
16403   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
16404   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
16405     .addReg(tmpSPVReg).addReg(sizeVReg);
16406   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
16407     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
16408     .addReg(SPLimitVReg);
16409   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
16410
16411   // bumpMBB simply decreases the stack pointer, since we know the current
16412   // stacklet has enough space.
16413   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
16414     .addReg(SPLimitVReg);
16415   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
16416     .addReg(SPLimitVReg);
16417   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
16418
16419   // Calls into a routine in libgcc to allocate more space from the heap.
16420   const uint32_t *RegMask =
16421     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
16422   if (Is64Bit) {
16423     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
16424       .addReg(sizeVReg);
16425     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
16426       .addExternalSymbol("__morestack_allocate_stack_space")
16427       .addRegMask(RegMask)
16428       .addReg(X86::RDI, RegState::Implicit)
16429       .addReg(X86::RAX, RegState::ImplicitDefine);
16430   } else {
16431     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
16432       .addImm(12);
16433     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
16434     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
16435       .addExternalSymbol("__morestack_allocate_stack_space")
16436       .addRegMask(RegMask)
16437       .addReg(X86::EAX, RegState::ImplicitDefine);
16438   }
16439
16440   if (!Is64Bit)
16441     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
16442       .addImm(16);
16443
16444   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
16445     .addReg(Is64Bit ? X86::RAX : X86::EAX);
16446   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
16447
16448   // Set up the CFG correctly.
16449   BB->addSuccessor(bumpMBB);
16450   BB->addSuccessor(mallocMBB);
16451   mallocMBB->addSuccessor(continueMBB);
16452   bumpMBB->addSuccessor(continueMBB);
16453
16454   // Take care of the PHI nodes.
16455   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
16456           MI->getOperand(0).getReg())
16457     .addReg(mallocPtrVReg).addMBB(mallocMBB)
16458     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
16459
16460   // Delete the original pseudo instruction.
16461   MI->eraseFromParent();
16462
16463   // And we're done.
16464   return continueMBB;
16465 }
16466
16467 MachineBasicBlock *
16468 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
16469                                           MachineBasicBlock *BB) const {
16470   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16471   DebugLoc DL = MI->getDebugLoc();
16472
16473   assert(!Subtarget->isTargetMacho());
16474
16475   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
16476   // non-trivial part is impdef of ESP.
16477
16478   if (Subtarget->isTargetWin64()) {
16479     if (Subtarget->isTargetCygMing()) {
16480       // ___chkstk(Mingw64):
16481       // Clobbers R10, R11, RAX and EFLAGS.
16482       // Updates RSP.
16483       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
16484         .addExternalSymbol("___chkstk")
16485         .addReg(X86::RAX, RegState::Implicit)
16486         .addReg(X86::RSP, RegState::Implicit)
16487         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
16488         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
16489         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
16490     } else {
16491       // __chkstk(MSVCRT): does not update stack pointer.
16492       // Clobbers R10, R11 and EFLAGS.
16493       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
16494         .addExternalSymbol("__chkstk")
16495         .addReg(X86::RAX, RegState::Implicit)
16496         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
16497       // RAX has the offset to be subtracted from RSP.
16498       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
16499         .addReg(X86::RSP)
16500         .addReg(X86::RAX);
16501     }
16502   } else {
16503     const char *StackProbeSymbol =
16504       Subtarget->isTargetKnownWindowsMSVC() ? "_chkstk" : "_alloca";
16505
16506     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
16507       .addExternalSymbol(StackProbeSymbol)
16508       .addReg(X86::EAX, RegState::Implicit)
16509       .addReg(X86::ESP, RegState::Implicit)
16510       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
16511       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
16512       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
16513   }
16514
16515   MI->eraseFromParent();   // The pseudo instruction is gone now.
16516   return BB;
16517 }
16518
16519 MachineBasicBlock *
16520 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
16521                                       MachineBasicBlock *BB) const {
16522   // This is pretty easy.  We're taking the value that we received from
16523   // our load from the relocation, sticking it in either RDI (x86-64)
16524   // or EAX and doing an indirect call.  The return value will then
16525   // be in the normal return register.
16526   const X86InstrInfo *TII
16527     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
16528   DebugLoc DL = MI->getDebugLoc();
16529   MachineFunction *F = BB->getParent();
16530
16531   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
16532   assert(MI->getOperand(3).isGlobal() && "This should be a global");
16533
16534   // Get a register mask for the lowered call.
16535   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
16536   // proper register mask.
16537   const uint32_t *RegMask =
16538     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
16539   if (Subtarget->is64Bit()) {
16540     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
16541                                       TII->get(X86::MOV64rm), X86::RDI)
16542     .addReg(X86::RIP)
16543     .addImm(0).addReg(0)
16544     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
16545                       MI->getOperand(3).getTargetFlags())
16546     .addReg(0);
16547     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
16548     addDirectMem(MIB, X86::RDI);
16549     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
16550   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
16551     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
16552                                       TII->get(X86::MOV32rm), X86::EAX)
16553     .addReg(0)
16554     .addImm(0).addReg(0)
16555     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
16556                       MI->getOperand(3).getTargetFlags())
16557     .addReg(0);
16558     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
16559     addDirectMem(MIB, X86::EAX);
16560     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
16561   } else {
16562     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
16563                                       TII->get(X86::MOV32rm), X86::EAX)
16564     .addReg(TII->getGlobalBaseReg(F))
16565     .addImm(0).addReg(0)
16566     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
16567                       MI->getOperand(3).getTargetFlags())
16568     .addReg(0);
16569     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
16570     addDirectMem(MIB, X86::EAX);
16571     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
16572   }
16573
16574   MI->eraseFromParent(); // The pseudo instruction is gone now.
16575   return BB;
16576 }
16577
16578 MachineBasicBlock *
16579 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
16580                                     MachineBasicBlock *MBB) const {
16581   DebugLoc DL = MI->getDebugLoc();
16582   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16583
16584   MachineFunction *MF = MBB->getParent();
16585   MachineRegisterInfo &MRI = MF->getRegInfo();
16586
16587   const BasicBlock *BB = MBB->getBasicBlock();
16588   MachineFunction::iterator I = MBB;
16589   ++I;
16590
16591   // Memory Reference
16592   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
16593   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
16594
16595   unsigned DstReg;
16596   unsigned MemOpndSlot = 0;
16597
16598   unsigned CurOp = 0;
16599
16600   DstReg = MI->getOperand(CurOp++).getReg();
16601   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
16602   assert(RC->hasType(MVT::i32) && "Invalid destination!");
16603   unsigned mainDstReg = MRI.createVirtualRegister(RC);
16604   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
16605
16606   MemOpndSlot = CurOp;
16607
16608   MVT PVT = getPointerTy();
16609   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
16610          "Invalid Pointer Size!");
16611
16612   // For v = setjmp(buf), we generate
16613   //
16614   // thisMBB:
16615   //  buf[LabelOffset] = restoreMBB
16616   //  SjLjSetup restoreMBB
16617   //
16618   // mainMBB:
16619   //  v_main = 0
16620   //
16621   // sinkMBB:
16622   //  v = phi(main, restore)
16623   //
16624   // restoreMBB:
16625   //  v_restore = 1
16626
16627   MachineBasicBlock *thisMBB = MBB;
16628   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
16629   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
16630   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
16631   MF->insert(I, mainMBB);
16632   MF->insert(I, sinkMBB);
16633   MF->push_back(restoreMBB);
16634
16635   MachineInstrBuilder MIB;
16636
16637   // Transfer the remainder of BB and its successor edges to sinkMBB.
16638   sinkMBB->splice(sinkMBB->begin(), MBB,
16639                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
16640   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
16641
16642   // thisMBB:
16643   unsigned PtrStoreOpc = 0;
16644   unsigned LabelReg = 0;
16645   const int64_t LabelOffset = 1 * PVT.getStoreSize();
16646   Reloc::Model RM = getTargetMachine().getRelocationModel();
16647   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
16648                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
16649
16650   // Prepare IP either in reg or imm.
16651   if (!UseImmLabel) {
16652     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
16653     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
16654     LabelReg = MRI.createVirtualRegister(PtrRC);
16655     if (Subtarget->is64Bit()) {
16656       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
16657               .addReg(X86::RIP)
16658               .addImm(0)
16659               .addReg(0)
16660               .addMBB(restoreMBB)
16661               .addReg(0);
16662     } else {
16663       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
16664       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
16665               .addReg(XII->getGlobalBaseReg(MF))
16666               .addImm(0)
16667               .addReg(0)
16668               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
16669               .addReg(0);
16670     }
16671   } else
16672     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
16673   // Store IP
16674   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
16675   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16676     if (i == X86::AddrDisp)
16677       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
16678     else
16679       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
16680   }
16681   if (!UseImmLabel)
16682     MIB.addReg(LabelReg);
16683   else
16684     MIB.addMBB(restoreMBB);
16685   MIB.setMemRefs(MMOBegin, MMOEnd);
16686   // Setup
16687   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
16688           .addMBB(restoreMBB);
16689
16690   const X86RegisterInfo *RegInfo =
16691     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
16692   MIB.addRegMask(RegInfo->getNoPreservedMask());
16693   thisMBB->addSuccessor(mainMBB);
16694   thisMBB->addSuccessor(restoreMBB);
16695
16696   // mainMBB:
16697   //  EAX = 0
16698   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
16699   mainMBB->addSuccessor(sinkMBB);
16700
16701   // sinkMBB:
16702   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
16703           TII->get(X86::PHI), DstReg)
16704     .addReg(mainDstReg).addMBB(mainMBB)
16705     .addReg(restoreDstReg).addMBB(restoreMBB);
16706
16707   // restoreMBB:
16708   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
16709   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
16710   restoreMBB->addSuccessor(sinkMBB);
16711
16712   MI->eraseFromParent();
16713   return sinkMBB;
16714 }
16715
16716 MachineBasicBlock *
16717 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
16718                                      MachineBasicBlock *MBB) const {
16719   DebugLoc DL = MI->getDebugLoc();
16720   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16721
16722   MachineFunction *MF = MBB->getParent();
16723   MachineRegisterInfo &MRI = MF->getRegInfo();
16724
16725   // Memory Reference
16726   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
16727   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
16728
16729   MVT PVT = getPointerTy();
16730   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
16731          "Invalid Pointer Size!");
16732
16733   const TargetRegisterClass *RC =
16734     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
16735   unsigned Tmp = MRI.createVirtualRegister(RC);
16736   // Since FP is only updated here but NOT referenced, it's treated as GPR.
16737   const X86RegisterInfo *RegInfo =
16738     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
16739   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
16740   unsigned SP = RegInfo->getStackRegister();
16741
16742   MachineInstrBuilder MIB;
16743
16744   const int64_t LabelOffset = 1 * PVT.getStoreSize();
16745   const int64_t SPOffset = 2 * PVT.getStoreSize();
16746
16747   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
16748   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
16749
16750   // Reload FP
16751   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
16752   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
16753     MIB.addOperand(MI->getOperand(i));
16754   MIB.setMemRefs(MMOBegin, MMOEnd);
16755   // Reload IP
16756   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
16757   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16758     if (i == X86::AddrDisp)
16759       MIB.addDisp(MI->getOperand(i), LabelOffset);
16760     else
16761       MIB.addOperand(MI->getOperand(i));
16762   }
16763   MIB.setMemRefs(MMOBegin, MMOEnd);
16764   // Reload SP
16765   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
16766   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16767     if (i == X86::AddrDisp)
16768       MIB.addDisp(MI->getOperand(i), SPOffset);
16769     else
16770       MIB.addOperand(MI->getOperand(i));
16771   }
16772   MIB.setMemRefs(MMOBegin, MMOEnd);
16773   // Jump
16774   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
16775
16776   MI->eraseFromParent();
16777   return MBB;
16778 }
16779
16780 // Replace 213-type (isel default) FMA3 instructions with 231-type for
16781 // accumulator loops. Writing back to the accumulator allows the coalescer
16782 // to remove extra copies in the loop.   
16783 MachineBasicBlock *
16784 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
16785                                  MachineBasicBlock *MBB) const {
16786   MachineOperand &AddendOp = MI->getOperand(3);
16787
16788   // Bail out early if the addend isn't a register - we can't switch these.
16789   if (!AddendOp.isReg())
16790     return MBB;
16791
16792   MachineFunction &MF = *MBB->getParent();
16793   MachineRegisterInfo &MRI = MF.getRegInfo();
16794
16795   // Check whether the addend is defined by a PHI:
16796   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
16797   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
16798   if (!AddendDef.isPHI())
16799     return MBB;
16800
16801   // Look for the following pattern:
16802   // loop:
16803   //   %addend = phi [%entry, 0], [%loop, %result]
16804   //   ...
16805   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
16806
16807   // Replace with:
16808   //   loop:
16809   //   %addend = phi [%entry, 0], [%loop, %result]
16810   //   ...
16811   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
16812
16813   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
16814     assert(AddendDef.getOperand(i).isReg());
16815     MachineOperand PHISrcOp = AddendDef.getOperand(i);
16816     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
16817     if (&PHISrcInst == MI) {
16818       // Found a matching instruction.
16819       unsigned NewFMAOpc = 0;
16820       switch (MI->getOpcode()) {
16821         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
16822         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
16823         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
16824         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
16825         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
16826         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
16827         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
16828         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
16829         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
16830         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
16831         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
16832         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
16833         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
16834         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
16835         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
16836         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
16837         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
16838         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
16839         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
16840         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
16841         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
16842         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
16843         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
16844         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
16845         default: llvm_unreachable("Unrecognized FMA variant.");
16846       }
16847
16848       const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
16849       MachineInstrBuilder MIB =
16850         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
16851         .addOperand(MI->getOperand(0))
16852         .addOperand(MI->getOperand(3))
16853         .addOperand(MI->getOperand(2))
16854         .addOperand(MI->getOperand(1));
16855       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
16856       MI->eraseFromParent();
16857     }
16858   }
16859
16860   return MBB;
16861 }
16862
16863 MachineBasicBlock *
16864 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
16865                                                MachineBasicBlock *BB) const {
16866   switch (MI->getOpcode()) {
16867   default: llvm_unreachable("Unexpected instr type to insert");
16868   case X86::TAILJMPd64:
16869   case X86::TAILJMPr64:
16870   case X86::TAILJMPm64:
16871     llvm_unreachable("TAILJMP64 would not be touched here.");
16872   case X86::TCRETURNdi64:
16873   case X86::TCRETURNri64:
16874   case X86::TCRETURNmi64:
16875     return BB;
16876   case X86::WIN_ALLOCA:
16877     return EmitLoweredWinAlloca(MI, BB);
16878   case X86::SEG_ALLOCA_32:
16879     return EmitLoweredSegAlloca(MI, BB, false);
16880   case X86::SEG_ALLOCA_64:
16881     return EmitLoweredSegAlloca(MI, BB, true);
16882   case X86::TLSCall_32:
16883   case X86::TLSCall_64:
16884     return EmitLoweredTLSCall(MI, BB);
16885   case X86::CMOV_GR8:
16886   case X86::CMOV_FR32:
16887   case X86::CMOV_FR64:
16888   case X86::CMOV_V4F32:
16889   case X86::CMOV_V2F64:
16890   case X86::CMOV_V2I64:
16891   case X86::CMOV_V8F32:
16892   case X86::CMOV_V4F64:
16893   case X86::CMOV_V4I64:
16894   case X86::CMOV_V16F32:
16895   case X86::CMOV_V8F64:
16896   case X86::CMOV_V8I64:
16897   case X86::CMOV_GR16:
16898   case X86::CMOV_GR32:
16899   case X86::CMOV_RFP32:
16900   case X86::CMOV_RFP64:
16901   case X86::CMOV_RFP80:
16902     return EmitLoweredSelect(MI, BB);
16903
16904   case X86::FP32_TO_INT16_IN_MEM:
16905   case X86::FP32_TO_INT32_IN_MEM:
16906   case X86::FP32_TO_INT64_IN_MEM:
16907   case X86::FP64_TO_INT16_IN_MEM:
16908   case X86::FP64_TO_INT32_IN_MEM:
16909   case X86::FP64_TO_INT64_IN_MEM:
16910   case X86::FP80_TO_INT16_IN_MEM:
16911   case X86::FP80_TO_INT32_IN_MEM:
16912   case X86::FP80_TO_INT64_IN_MEM: {
16913     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16914     DebugLoc DL = MI->getDebugLoc();
16915
16916     // Change the floating point control register to use "round towards zero"
16917     // mode when truncating to an integer value.
16918     MachineFunction *F = BB->getParent();
16919     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16920     addFrameReference(BuildMI(*BB, MI, DL,
16921                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16922
16923     // Load the old value of the high byte of the control word...
16924     unsigned OldCW =
16925       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16926     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16927                       CWFrameIdx);
16928
16929     // Set the high part to be round to zero...
16930     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16931       .addImm(0xC7F);
16932
16933     // Reload the modified control word now...
16934     addFrameReference(BuildMI(*BB, MI, DL,
16935                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16936
16937     // Restore the memory image of control word to original value
16938     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16939       .addReg(OldCW);
16940
16941     // Get the X86 opcode to use.
16942     unsigned Opc;
16943     switch (MI->getOpcode()) {
16944     default: llvm_unreachable("illegal opcode!");
16945     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16946     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16947     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16948     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16949     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16950     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16951     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16952     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16953     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16954     }
16955
16956     X86AddressMode AM;
16957     MachineOperand &Op = MI->getOperand(0);
16958     if (Op.isReg()) {
16959       AM.BaseType = X86AddressMode::RegBase;
16960       AM.Base.Reg = Op.getReg();
16961     } else {
16962       AM.BaseType = X86AddressMode::FrameIndexBase;
16963       AM.Base.FrameIndex = Op.getIndex();
16964     }
16965     Op = MI->getOperand(1);
16966     if (Op.isImm())
16967       AM.Scale = Op.getImm();
16968     Op = MI->getOperand(2);
16969     if (Op.isImm())
16970       AM.IndexReg = Op.getImm();
16971     Op = MI->getOperand(3);
16972     if (Op.isGlobal()) {
16973       AM.GV = Op.getGlobal();
16974     } else {
16975       AM.Disp = Op.getImm();
16976     }
16977     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16978                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16979
16980     // Reload the original control word now.
16981     addFrameReference(BuildMI(*BB, MI, DL,
16982                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16983
16984     MI->eraseFromParent();   // The pseudo instruction is gone now.
16985     return BB;
16986   }
16987     // String/text processing lowering.
16988   case X86::PCMPISTRM128REG:
16989   case X86::VPCMPISTRM128REG:
16990   case X86::PCMPISTRM128MEM:
16991   case X86::VPCMPISTRM128MEM:
16992   case X86::PCMPESTRM128REG:
16993   case X86::VPCMPESTRM128REG:
16994   case X86::PCMPESTRM128MEM:
16995   case X86::VPCMPESTRM128MEM:
16996     assert(Subtarget->hasSSE42() &&
16997            "Target must have SSE4.2 or AVX features enabled");
16998     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16999
17000   // String/text processing lowering.
17001   case X86::PCMPISTRIREG:
17002   case X86::VPCMPISTRIREG:
17003   case X86::PCMPISTRIMEM:
17004   case X86::VPCMPISTRIMEM:
17005   case X86::PCMPESTRIREG:
17006   case X86::VPCMPESTRIREG:
17007   case X86::PCMPESTRIMEM:
17008   case X86::VPCMPESTRIMEM:
17009     assert(Subtarget->hasSSE42() &&
17010            "Target must have SSE4.2 or AVX features enabled");
17011     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
17012
17013   // Thread synchronization.
17014   case X86::MONITOR:
17015     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
17016
17017   // xbegin
17018   case X86::XBEGIN:
17019     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
17020
17021   // Atomic Lowering.
17022   case X86::ATOMAND8:
17023   case X86::ATOMAND16:
17024   case X86::ATOMAND32:
17025   case X86::ATOMAND64:
17026     // Fall through
17027   case X86::ATOMOR8:
17028   case X86::ATOMOR16:
17029   case X86::ATOMOR32:
17030   case X86::ATOMOR64:
17031     // Fall through
17032   case X86::ATOMXOR16:
17033   case X86::ATOMXOR8:
17034   case X86::ATOMXOR32:
17035   case X86::ATOMXOR64:
17036     // Fall through
17037   case X86::ATOMNAND8:
17038   case X86::ATOMNAND16:
17039   case X86::ATOMNAND32:
17040   case X86::ATOMNAND64:
17041     // Fall through
17042   case X86::ATOMMAX8:
17043   case X86::ATOMMAX16:
17044   case X86::ATOMMAX32:
17045   case X86::ATOMMAX64:
17046     // Fall through
17047   case X86::ATOMMIN8:
17048   case X86::ATOMMIN16:
17049   case X86::ATOMMIN32:
17050   case X86::ATOMMIN64:
17051     // Fall through
17052   case X86::ATOMUMAX8:
17053   case X86::ATOMUMAX16:
17054   case X86::ATOMUMAX32:
17055   case X86::ATOMUMAX64:
17056     // Fall through
17057   case X86::ATOMUMIN8:
17058   case X86::ATOMUMIN16:
17059   case X86::ATOMUMIN32:
17060   case X86::ATOMUMIN64:
17061     return EmitAtomicLoadArith(MI, BB);
17062
17063   // This group does 64-bit operations on a 32-bit host.
17064   case X86::ATOMAND6432:
17065   case X86::ATOMOR6432:
17066   case X86::ATOMXOR6432:
17067   case X86::ATOMNAND6432:
17068   case X86::ATOMADD6432:
17069   case X86::ATOMSUB6432:
17070   case X86::ATOMMAX6432:
17071   case X86::ATOMMIN6432:
17072   case X86::ATOMUMAX6432:
17073   case X86::ATOMUMIN6432:
17074   case X86::ATOMSWAP6432:
17075     return EmitAtomicLoadArith6432(MI, BB);
17076
17077   case X86::VASTART_SAVE_XMM_REGS:
17078     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
17079
17080   case X86::VAARG_64:
17081     return EmitVAARG64WithCustomInserter(MI, BB);
17082
17083   case X86::EH_SjLj_SetJmp32:
17084   case X86::EH_SjLj_SetJmp64:
17085     return emitEHSjLjSetJmp(MI, BB);
17086
17087   case X86::EH_SjLj_LongJmp32:
17088   case X86::EH_SjLj_LongJmp64:
17089     return emitEHSjLjLongJmp(MI, BB);
17090
17091   case TargetOpcode::STACKMAP:
17092   case TargetOpcode::PATCHPOINT:
17093     return emitPatchPoint(MI, BB);
17094
17095   case X86::VFMADDPDr213r:
17096   case X86::VFMADDPSr213r:
17097   case X86::VFMADDSDr213r:
17098   case X86::VFMADDSSr213r:
17099   case X86::VFMSUBPDr213r:
17100   case X86::VFMSUBPSr213r:
17101   case X86::VFMSUBSDr213r:
17102   case X86::VFMSUBSSr213r:
17103   case X86::VFNMADDPDr213r:
17104   case X86::VFNMADDPSr213r:
17105   case X86::VFNMADDSDr213r:
17106   case X86::VFNMADDSSr213r:
17107   case X86::VFNMSUBPDr213r:
17108   case X86::VFNMSUBPSr213r:
17109   case X86::VFNMSUBSDr213r:
17110   case X86::VFNMSUBSSr213r:
17111   case X86::VFMADDPDr213rY:
17112   case X86::VFMADDPSr213rY:
17113   case X86::VFMSUBPDr213rY:
17114   case X86::VFMSUBPSr213rY:
17115   case X86::VFNMADDPDr213rY:
17116   case X86::VFNMADDPSr213rY:
17117   case X86::VFNMSUBPDr213rY:
17118   case X86::VFNMSUBPSr213rY:
17119     return emitFMA3Instr(MI, BB);
17120   }
17121 }
17122
17123 //===----------------------------------------------------------------------===//
17124 //                           X86 Optimization Hooks
17125 //===----------------------------------------------------------------------===//
17126
17127 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
17128                                                        APInt &KnownZero,
17129                                                        APInt &KnownOne,
17130                                                        const SelectionDAG &DAG,
17131                                                        unsigned Depth) const {
17132   unsigned BitWidth = KnownZero.getBitWidth();
17133   unsigned Opc = Op.getOpcode();
17134   assert((Opc >= ISD::BUILTIN_OP_END ||
17135           Opc == ISD::INTRINSIC_WO_CHAIN ||
17136           Opc == ISD::INTRINSIC_W_CHAIN ||
17137           Opc == ISD::INTRINSIC_VOID) &&
17138          "Should use MaskedValueIsZero if you don't know whether Op"
17139          " is a target node!");
17140
17141   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
17142   switch (Opc) {
17143   default: break;
17144   case X86ISD::ADD:
17145   case X86ISD::SUB:
17146   case X86ISD::ADC:
17147   case X86ISD::SBB:
17148   case X86ISD::SMUL:
17149   case X86ISD::UMUL:
17150   case X86ISD::INC:
17151   case X86ISD::DEC:
17152   case X86ISD::OR:
17153   case X86ISD::XOR:
17154   case X86ISD::AND:
17155     // These nodes' second result is a boolean.
17156     if (Op.getResNo() == 0)
17157       break;
17158     // Fallthrough
17159   case X86ISD::SETCC:
17160     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
17161     break;
17162   case ISD::INTRINSIC_WO_CHAIN: {
17163     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
17164     unsigned NumLoBits = 0;
17165     switch (IntId) {
17166     default: break;
17167     case Intrinsic::x86_sse_movmsk_ps:
17168     case Intrinsic::x86_avx_movmsk_ps_256:
17169     case Intrinsic::x86_sse2_movmsk_pd:
17170     case Intrinsic::x86_avx_movmsk_pd_256:
17171     case Intrinsic::x86_mmx_pmovmskb:
17172     case Intrinsic::x86_sse2_pmovmskb_128:
17173     case Intrinsic::x86_avx2_pmovmskb: {
17174       // High bits of movmskp{s|d}, pmovmskb are known zero.
17175       switch (IntId) {
17176         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
17177         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
17178         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
17179         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
17180         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
17181         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
17182         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
17183         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
17184       }
17185       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
17186       break;
17187     }
17188     }
17189     break;
17190   }
17191   }
17192 }
17193
17194 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
17195   SDValue Op,
17196   const SelectionDAG &,
17197   unsigned Depth) const {
17198   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
17199   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
17200     return Op.getValueType().getScalarType().getSizeInBits();
17201
17202   // Fallback case.
17203   return 1;
17204 }
17205
17206 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
17207 /// node is a GlobalAddress + offset.
17208 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
17209                                        const GlobalValue* &GA,
17210                                        int64_t &Offset) const {
17211   if (N->getOpcode() == X86ISD::Wrapper) {
17212     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
17213       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
17214       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
17215       return true;
17216     }
17217   }
17218   return TargetLowering::isGAPlusOffset(N, GA, Offset);
17219 }
17220
17221 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
17222 /// same as extracting the high 128-bit part of 256-bit vector and then
17223 /// inserting the result into the low part of a new 256-bit vector
17224 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
17225   EVT VT = SVOp->getValueType(0);
17226   unsigned NumElems = VT.getVectorNumElements();
17227
17228   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
17229   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
17230     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
17231         SVOp->getMaskElt(j) >= 0)
17232       return false;
17233
17234   return true;
17235 }
17236
17237 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
17238 /// same as extracting the low 128-bit part of 256-bit vector and then
17239 /// inserting the result into the high part of a new 256-bit vector
17240 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
17241   EVT VT = SVOp->getValueType(0);
17242   unsigned NumElems = VT.getVectorNumElements();
17243
17244   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
17245   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
17246     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
17247         SVOp->getMaskElt(j) >= 0)
17248       return false;
17249
17250   return true;
17251 }
17252
17253 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
17254 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
17255                                         TargetLowering::DAGCombinerInfo &DCI,
17256                                         const X86Subtarget* Subtarget) {
17257   SDLoc dl(N);
17258   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
17259   SDValue V1 = SVOp->getOperand(0);
17260   SDValue V2 = SVOp->getOperand(1);
17261   EVT VT = SVOp->getValueType(0);
17262   unsigned NumElems = VT.getVectorNumElements();
17263
17264   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
17265       V2.getOpcode() == ISD::CONCAT_VECTORS) {
17266     //
17267     //                   0,0,0,...
17268     //                      |
17269     //    V      UNDEF    BUILD_VECTOR    UNDEF
17270     //     \      /           \           /
17271     //  CONCAT_VECTOR         CONCAT_VECTOR
17272     //         \                  /
17273     //          \                /
17274     //          RESULT: V + zero extended
17275     //
17276     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
17277         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
17278         V1.getOperand(1).getOpcode() != ISD::UNDEF)
17279       return SDValue();
17280
17281     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
17282       return SDValue();
17283
17284     // To match the shuffle mask, the first half of the mask should
17285     // be exactly the first vector, and all the rest a splat with the
17286     // first element of the second one.
17287     for (unsigned i = 0; i != NumElems/2; ++i)
17288       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
17289           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
17290         return SDValue();
17291
17292     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
17293     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
17294       if (Ld->hasNUsesOfValue(1, 0)) {
17295         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
17296         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
17297         SDValue ResNode =
17298           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
17299                                   Ld->getMemoryVT(),
17300                                   Ld->getPointerInfo(),
17301                                   Ld->getAlignment(),
17302                                   false/*isVolatile*/, true/*ReadMem*/,
17303                                   false/*WriteMem*/);
17304
17305         // Make sure the newly-created LOAD is in the same position as Ld in
17306         // terms of dependency. We create a TokenFactor for Ld and ResNode,
17307         // and update uses of Ld's output chain to use the TokenFactor.
17308         if (Ld->hasAnyUseOfValue(1)) {
17309           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17310                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
17311           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
17312           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
17313                                  SDValue(ResNode.getNode(), 1));
17314         }
17315
17316         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
17317       }
17318     }
17319
17320     // Emit a zeroed vector and insert the desired subvector on its
17321     // first half.
17322     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
17323     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
17324     return DCI.CombineTo(N, InsV);
17325   }
17326
17327   //===--------------------------------------------------------------------===//
17328   // Combine some shuffles into subvector extracts and inserts:
17329   //
17330
17331   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
17332   if (isShuffleHigh128VectorInsertLow(SVOp)) {
17333     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
17334     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
17335     return DCI.CombineTo(N, InsV);
17336   }
17337
17338   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
17339   if (isShuffleLow128VectorInsertHigh(SVOp)) {
17340     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
17341     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
17342     return DCI.CombineTo(N, InsV);
17343   }
17344
17345   return SDValue();
17346 }
17347
17348 /// PerformShuffleCombine - Performs several different shuffle combines.
17349 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
17350                                      TargetLowering::DAGCombinerInfo &DCI,
17351                                      const X86Subtarget *Subtarget) {
17352   SDLoc dl(N);
17353   EVT VT = N->getValueType(0);
17354
17355   // Don't create instructions with illegal types after legalize types has run.
17356   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17357   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
17358     return SDValue();
17359
17360   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
17361   if (Subtarget->hasFp256() && VT.is256BitVector() &&
17362       N->getOpcode() == ISD::VECTOR_SHUFFLE)
17363     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
17364
17365   // Only handle 128 wide vector from here on.
17366   if (!VT.is128BitVector())
17367     return SDValue();
17368
17369   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
17370   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
17371   // consecutive, non-overlapping, and in the right order.
17372   SmallVector<SDValue, 16> Elts;
17373   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
17374     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
17375
17376   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
17377 }
17378
17379 /// PerformTruncateCombine - Converts truncate operation to
17380 /// a sequence of vector shuffle operations.
17381 /// It is possible when we truncate 256-bit vector to 128-bit vector
17382 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
17383                                       TargetLowering::DAGCombinerInfo &DCI,
17384                                       const X86Subtarget *Subtarget)  {
17385   return SDValue();
17386 }
17387
17388 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
17389 /// specific shuffle of a load can be folded into a single element load.
17390 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
17391 /// shuffles have been customed lowered so we need to handle those here.
17392 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
17393                                          TargetLowering::DAGCombinerInfo &DCI) {
17394   if (DCI.isBeforeLegalizeOps())
17395     return SDValue();
17396
17397   SDValue InVec = N->getOperand(0);
17398   SDValue EltNo = N->getOperand(1);
17399
17400   if (!isa<ConstantSDNode>(EltNo))
17401     return SDValue();
17402
17403   EVT VT = InVec.getValueType();
17404
17405   bool HasShuffleIntoBitcast = false;
17406   if (InVec.getOpcode() == ISD::BITCAST) {
17407     // Don't duplicate a load with other uses.
17408     if (!InVec.hasOneUse())
17409       return SDValue();
17410     EVT BCVT = InVec.getOperand(0).getValueType();
17411     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
17412       return SDValue();
17413     InVec = InVec.getOperand(0);
17414     HasShuffleIntoBitcast = true;
17415   }
17416
17417   if (!isTargetShuffle(InVec.getOpcode()))
17418     return SDValue();
17419
17420   // Don't duplicate a load with other uses.
17421   if (!InVec.hasOneUse())
17422     return SDValue();
17423
17424   SmallVector<int, 16> ShuffleMask;
17425   bool UnaryShuffle;
17426   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
17427                             UnaryShuffle))
17428     return SDValue();
17429
17430   // Select the input vector, guarding against out of range extract vector.
17431   unsigned NumElems = VT.getVectorNumElements();
17432   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
17433   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
17434   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
17435                                          : InVec.getOperand(1);
17436
17437   // If inputs to shuffle are the same for both ops, then allow 2 uses
17438   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
17439
17440   if (LdNode.getOpcode() == ISD::BITCAST) {
17441     // Don't duplicate a load with other uses.
17442     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
17443       return SDValue();
17444
17445     AllowedUses = 1; // only allow 1 load use if we have a bitcast
17446     LdNode = LdNode.getOperand(0);
17447   }
17448
17449   if (!ISD::isNormalLoad(LdNode.getNode()))
17450     return SDValue();
17451
17452   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
17453
17454   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
17455     return SDValue();
17456
17457   if (HasShuffleIntoBitcast) {
17458     // If there's a bitcast before the shuffle, check if the load type and
17459     // alignment is valid.
17460     unsigned Align = LN0->getAlignment();
17461     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17462     unsigned NewAlign = TLI.getDataLayout()->
17463       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
17464
17465     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
17466       return SDValue();
17467   }
17468
17469   // All checks match so transform back to vector_shuffle so that DAG combiner
17470   // can finish the job
17471   SDLoc dl(N);
17472
17473   // Create shuffle node taking into account the case that its a unary shuffle
17474   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
17475   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
17476                                  InVec.getOperand(0), Shuffle,
17477                                  &ShuffleMask[0]);
17478   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
17479   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
17480                      EltNo);
17481 }
17482
17483 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
17484 /// generation and convert it from being a bunch of shuffles and extracts
17485 /// to a simple store and scalar loads to extract the elements.
17486 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
17487                                          TargetLowering::DAGCombinerInfo &DCI) {
17488   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
17489   if (NewOp.getNode())
17490     return NewOp;
17491
17492   SDValue InputVector = N->getOperand(0);
17493
17494   // Detect whether we are trying to convert from mmx to i32 and the bitcast
17495   // from mmx to v2i32 has a single usage.
17496   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
17497       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
17498       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
17499     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
17500                        N->getValueType(0),
17501                        InputVector.getNode()->getOperand(0));
17502
17503   // Only operate on vectors of 4 elements, where the alternative shuffling
17504   // gets to be more expensive.
17505   if (InputVector.getValueType() != MVT::v4i32)
17506     return SDValue();
17507
17508   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
17509   // single use which is a sign-extend or zero-extend, and all elements are
17510   // used.
17511   SmallVector<SDNode *, 4> Uses;
17512   unsigned ExtractedElements = 0;
17513   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
17514        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
17515     if (UI.getUse().getResNo() != InputVector.getResNo())
17516       return SDValue();
17517
17518     SDNode *Extract = *UI;
17519     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
17520       return SDValue();
17521
17522     if (Extract->getValueType(0) != MVT::i32)
17523       return SDValue();
17524     if (!Extract->hasOneUse())
17525       return SDValue();
17526     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
17527         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
17528       return SDValue();
17529     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
17530       return SDValue();
17531
17532     // Record which element was extracted.
17533     ExtractedElements |=
17534       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
17535
17536     Uses.push_back(Extract);
17537   }
17538
17539   // If not all the elements were used, this may not be worthwhile.
17540   if (ExtractedElements != 15)
17541     return SDValue();
17542
17543   // Ok, we've now decided to do the transformation.
17544   SDLoc dl(InputVector);
17545
17546   // Store the value to a temporary stack slot.
17547   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
17548   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
17549                             MachinePointerInfo(), false, false, 0);
17550
17551   // Replace each use (extract) with a load of the appropriate element.
17552   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
17553        UE = Uses.end(); UI != UE; ++UI) {
17554     SDNode *Extract = *UI;
17555
17556     // cOMpute the element's address.
17557     SDValue Idx = Extract->getOperand(1);
17558     unsigned EltSize =
17559         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
17560     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
17561     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17562     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
17563
17564     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
17565                                      StackPtr, OffsetVal);
17566
17567     // Load the scalar.
17568     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
17569                                      ScalarAddr, MachinePointerInfo(),
17570                                      false, false, false, 0);
17571
17572     // Replace the exact with the load.
17573     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
17574   }
17575
17576   // The replacement was made in place; don't return anything.
17577   return SDValue();
17578 }
17579
17580 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
17581 static std::pair<unsigned, bool>
17582 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
17583                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
17584   if (!VT.isVector())
17585     return std::make_pair(0, false);
17586
17587   bool NeedSplit = false;
17588   switch (VT.getSimpleVT().SimpleTy) {
17589   default: return std::make_pair(0, false);
17590   case MVT::v32i8:
17591   case MVT::v16i16:
17592   case MVT::v8i32:
17593     if (!Subtarget->hasAVX2())
17594       NeedSplit = true;
17595     if (!Subtarget->hasAVX())
17596       return std::make_pair(0, false);
17597     break;
17598   case MVT::v16i8:
17599   case MVT::v8i16:
17600   case MVT::v4i32:
17601     if (!Subtarget->hasSSE2())
17602       return std::make_pair(0, false);
17603   }
17604
17605   // SSE2 has only a small subset of the operations.
17606   bool hasUnsigned = Subtarget->hasSSE41() ||
17607                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
17608   bool hasSigned = Subtarget->hasSSE41() ||
17609                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
17610
17611   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17612
17613   unsigned Opc = 0;
17614   // Check for x CC y ? x : y.
17615   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17616       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17617     switch (CC) {
17618     default: break;
17619     case ISD::SETULT:
17620     case ISD::SETULE:
17621       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
17622     case ISD::SETUGT:
17623     case ISD::SETUGE:
17624       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
17625     case ISD::SETLT:
17626     case ISD::SETLE:
17627       Opc = hasSigned ? X86ISD::SMIN : 0; break;
17628     case ISD::SETGT:
17629     case ISD::SETGE:
17630       Opc = hasSigned ? X86ISD::SMAX : 0; break;
17631     }
17632   // Check for x CC y ? y : x -- a min/max with reversed arms.
17633   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
17634              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
17635     switch (CC) {
17636     default: break;
17637     case ISD::SETULT:
17638     case ISD::SETULE:
17639       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
17640     case ISD::SETUGT:
17641     case ISD::SETUGE:
17642       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
17643     case ISD::SETLT:
17644     case ISD::SETLE:
17645       Opc = hasSigned ? X86ISD::SMAX : 0; break;
17646     case ISD::SETGT:
17647     case ISD::SETGE:
17648       Opc = hasSigned ? X86ISD::SMIN : 0; break;
17649     }
17650   }
17651
17652   return std::make_pair(Opc, NeedSplit);
17653 }
17654
17655 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
17656 /// nodes.
17657 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
17658                                     TargetLowering::DAGCombinerInfo &DCI,
17659                                     const X86Subtarget *Subtarget) {
17660   SDLoc DL(N);
17661   SDValue Cond = N->getOperand(0);
17662   // Get the LHS/RHS of the select.
17663   SDValue LHS = N->getOperand(1);
17664   SDValue RHS = N->getOperand(2);
17665   EVT VT = LHS.getValueType();
17666   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17667
17668   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
17669   // instructions match the semantics of the common C idiom x<y?x:y but not
17670   // x<=y?x:y, because of how they handle negative zero (which can be
17671   // ignored in unsafe-math mode).
17672   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
17673       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
17674       (Subtarget->hasSSE2() ||
17675        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
17676     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17677
17678     unsigned Opcode = 0;
17679     // Check for x CC y ? x : y.
17680     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17681         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17682       switch (CC) {
17683       default: break;
17684       case ISD::SETULT:
17685         // Converting this to a min would handle NaNs incorrectly, and swapping
17686         // the operands would cause it to handle comparisons between positive
17687         // and negative zero incorrectly.
17688         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
17689           if (!DAG.getTarget().Options.UnsafeFPMath &&
17690               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
17691             break;
17692           std::swap(LHS, RHS);
17693         }
17694         Opcode = X86ISD::FMIN;
17695         break;
17696       case ISD::SETOLE:
17697         // Converting this to a min would handle comparisons between positive
17698         // and negative zero incorrectly.
17699         if (!DAG.getTarget().Options.UnsafeFPMath &&
17700             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
17701           break;
17702         Opcode = X86ISD::FMIN;
17703         break;
17704       case ISD::SETULE:
17705         // Converting this to a min would handle both negative zeros and NaNs
17706         // incorrectly, but we can swap the operands to fix both.
17707         std::swap(LHS, RHS);
17708       case ISD::SETOLT:
17709       case ISD::SETLT:
17710       case ISD::SETLE:
17711         Opcode = X86ISD::FMIN;
17712         break;
17713
17714       case ISD::SETOGE:
17715         // Converting this to a max would handle comparisons between positive
17716         // and negative zero incorrectly.
17717         if (!DAG.getTarget().Options.UnsafeFPMath &&
17718             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
17719           break;
17720         Opcode = X86ISD::FMAX;
17721         break;
17722       case ISD::SETUGT:
17723         // Converting this to a max would handle NaNs incorrectly, and swapping
17724         // the operands would cause it to handle comparisons between positive
17725         // and negative zero incorrectly.
17726         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
17727           if (!DAG.getTarget().Options.UnsafeFPMath &&
17728               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
17729             break;
17730           std::swap(LHS, RHS);
17731         }
17732         Opcode = X86ISD::FMAX;
17733         break;
17734       case ISD::SETUGE:
17735         // Converting this to a max would handle both negative zeros and NaNs
17736         // incorrectly, but we can swap the operands to fix both.
17737         std::swap(LHS, RHS);
17738       case ISD::SETOGT:
17739       case ISD::SETGT:
17740       case ISD::SETGE:
17741         Opcode = X86ISD::FMAX;
17742         break;
17743       }
17744     // Check for x CC y ? y : x -- a min/max with reversed arms.
17745     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
17746                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
17747       switch (CC) {
17748       default: break;
17749       case ISD::SETOGE:
17750         // Converting this to a min would handle comparisons between positive
17751         // and negative zero incorrectly, and swapping the operands would
17752         // cause it to handle NaNs incorrectly.
17753         if (!DAG.getTarget().Options.UnsafeFPMath &&
17754             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
17755           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17756             break;
17757           std::swap(LHS, RHS);
17758         }
17759         Opcode = X86ISD::FMIN;
17760         break;
17761       case ISD::SETUGT:
17762         // Converting this to a min would handle NaNs incorrectly.
17763         if (!DAG.getTarget().Options.UnsafeFPMath &&
17764             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
17765           break;
17766         Opcode = X86ISD::FMIN;
17767         break;
17768       case ISD::SETUGE:
17769         // Converting this to a min would handle both negative zeros and NaNs
17770         // incorrectly, but we can swap the operands to fix both.
17771         std::swap(LHS, RHS);
17772       case ISD::SETOGT:
17773       case ISD::SETGT:
17774       case ISD::SETGE:
17775         Opcode = X86ISD::FMIN;
17776         break;
17777
17778       case ISD::SETULT:
17779         // Converting this to a max would handle NaNs incorrectly.
17780         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17781           break;
17782         Opcode = X86ISD::FMAX;
17783         break;
17784       case ISD::SETOLE:
17785         // Converting this to a max would handle comparisons between positive
17786         // and negative zero incorrectly, and swapping the operands would
17787         // cause it to handle NaNs incorrectly.
17788         if (!DAG.getTarget().Options.UnsafeFPMath &&
17789             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
17790           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17791             break;
17792           std::swap(LHS, RHS);
17793         }
17794         Opcode = X86ISD::FMAX;
17795         break;
17796       case ISD::SETULE:
17797         // Converting this to a max would handle both negative zeros and NaNs
17798         // incorrectly, but we can swap the operands to fix both.
17799         std::swap(LHS, RHS);
17800       case ISD::SETOLT:
17801       case ISD::SETLT:
17802       case ISD::SETLE:
17803         Opcode = X86ISD::FMAX;
17804         break;
17805       }
17806     }
17807
17808     if (Opcode)
17809       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
17810   }
17811
17812   EVT CondVT = Cond.getValueType();
17813   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
17814       CondVT.getVectorElementType() == MVT::i1) {
17815     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
17816     // lowering on AVX-512. In this case we convert it to
17817     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
17818     // The same situation for all 128 and 256-bit vectors of i8 and i16
17819     EVT OpVT = LHS.getValueType();
17820     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
17821         (OpVT.getVectorElementType() == MVT::i8 ||
17822          OpVT.getVectorElementType() == MVT::i16)) {
17823       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
17824       DCI.AddToWorklist(Cond.getNode());
17825       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
17826     }
17827   }
17828   // If this is a select between two integer constants, try to do some
17829   // optimizations.
17830   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
17831     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
17832       // Don't do this for crazy integer types.
17833       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
17834         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
17835         // so that TrueC (the true value) is larger than FalseC.
17836         bool NeedsCondInvert = false;
17837
17838         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
17839             // Efficiently invertible.
17840             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
17841              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
17842               isa<ConstantSDNode>(Cond.getOperand(1))))) {
17843           NeedsCondInvert = true;
17844           std::swap(TrueC, FalseC);
17845         }
17846
17847         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
17848         if (FalseC->getAPIntValue() == 0 &&
17849             TrueC->getAPIntValue().isPowerOf2()) {
17850           if (NeedsCondInvert) // Invert the condition if needed.
17851             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17852                                DAG.getConstant(1, Cond.getValueType()));
17853
17854           // Zero extend the condition if needed.
17855           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
17856
17857           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17858           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
17859                              DAG.getConstant(ShAmt, MVT::i8));
17860         }
17861
17862         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
17863         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17864           if (NeedsCondInvert) // Invert the condition if needed.
17865             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17866                                DAG.getConstant(1, Cond.getValueType()));
17867
17868           // Zero extend the condition if needed.
17869           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17870                              FalseC->getValueType(0), Cond);
17871           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17872                              SDValue(FalseC, 0));
17873         }
17874
17875         // Optimize cases that will turn into an LEA instruction.  This requires
17876         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17877         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17878           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17879           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17880
17881           bool isFastMultiplier = false;
17882           if (Diff < 10) {
17883             switch ((unsigned char)Diff) {
17884               default: break;
17885               case 1:  // result = add base, cond
17886               case 2:  // result = lea base(    , cond*2)
17887               case 3:  // result = lea base(cond, cond*2)
17888               case 4:  // result = lea base(    , cond*4)
17889               case 5:  // result = lea base(cond, cond*4)
17890               case 8:  // result = lea base(    , cond*8)
17891               case 9:  // result = lea base(cond, cond*8)
17892                 isFastMultiplier = true;
17893                 break;
17894             }
17895           }
17896
17897           if (isFastMultiplier) {
17898             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17899             if (NeedsCondInvert) // Invert the condition if needed.
17900               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17901                                  DAG.getConstant(1, Cond.getValueType()));
17902
17903             // Zero extend the condition if needed.
17904             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17905                                Cond);
17906             // Scale the condition by the difference.
17907             if (Diff != 1)
17908               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17909                                  DAG.getConstant(Diff, Cond.getValueType()));
17910
17911             // Add the base if non-zero.
17912             if (FalseC->getAPIntValue() != 0)
17913               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17914                                  SDValue(FalseC, 0));
17915             return Cond;
17916           }
17917         }
17918       }
17919   }
17920
17921   // Canonicalize max and min:
17922   // (x > y) ? x : y -> (x >= y) ? x : y
17923   // (x < y) ? x : y -> (x <= y) ? x : y
17924   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
17925   // the need for an extra compare
17926   // against zero. e.g.
17927   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
17928   // subl   %esi, %edi
17929   // testl  %edi, %edi
17930   // movl   $0, %eax
17931   // cmovgl %edi, %eax
17932   // =>
17933   // xorl   %eax, %eax
17934   // subl   %esi, $edi
17935   // cmovsl %eax, %edi
17936   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
17937       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17938       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17939     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17940     switch (CC) {
17941     default: break;
17942     case ISD::SETLT:
17943     case ISD::SETGT: {
17944       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17945       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17946                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17947       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17948     }
17949     }
17950   }
17951
17952   // Early exit check
17953   if (!TLI.isTypeLegal(VT))
17954     return SDValue();
17955
17956   // Match VSELECTs into subs with unsigned saturation.
17957   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17958       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17959       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17960        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17961     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17962
17963     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17964     // left side invert the predicate to simplify logic below.
17965     SDValue Other;
17966     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17967       Other = RHS;
17968       CC = ISD::getSetCCInverse(CC, true);
17969     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17970       Other = LHS;
17971     }
17972
17973     if (Other.getNode() && Other->getNumOperands() == 2 &&
17974         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17975       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17976       SDValue CondRHS = Cond->getOperand(1);
17977
17978       // Look for a general sub with unsigned saturation first.
17979       // x >= y ? x-y : 0 --> subus x, y
17980       // x >  y ? x-y : 0 --> subus x, y
17981       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17982           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17983         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17984
17985       // If the RHS is a constant we have to reverse the const canonicalization.
17986       // x > C-1 ? x+-C : 0 --> subus x, C
17987       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17988           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17989         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17990         if (CondRHS.getConstantOperandVal(0) == -A-1)
17991           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17992                              DAG.getConstant(-A, VT));
17993       }
17994
17995       // Another special case: If C was a sign bit, the sub has been
17996       // canonicalized into a xor.
17997       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17998       //        it's safe to decanonicalize the xor?
17999       // x s< 0 ? x^C : 0 --> subus x, C
18000       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
18001           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
18002           isSplatVector(OpRHS.getNode())) {
18003         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
18004         if (A.isSignBit())
18005           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
18006       }
18007     }
18008   }
18009
18010   // Try to match a min/max vector operation.
18011   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
18012     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
18013     unsigned Opc = ret.first;
18014     bool NeedSplit = ret.second;
18015
18016     if (Opc && NeedSplit) {
18017       unsigned NumElems = VT.getVectorNumElements();
18018       // Extract the LHS vectors
18019       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
18020       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
18021
18022       // Extract the RHS vectors
18023       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
18024       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
18025
18026       // Create min/max for each subvector
18027       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
18028       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
18029
18030       // Merge the result
18031       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
18032     } else if (Opc)
18033       return DAG.getNode(Opc, DL, VT, LHS, RHS);
18034   }
18035
18036   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
18037   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
18038       // Check if SETCC has already been promoted
18039       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
18040       // Check that condition value type matches vselect operand type
18041       CondVT == VT) { 
18042
18043     assert(Cond.getValueType().isVector() &&
18044            "vector select expects a vector selector!");
18045
18046     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
18047     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
18048
18049     if (!TValIsAllOnes && !FValIsAllZeros) {
18050       // Try invert the condition if true value is not all 1s and false value
18051       // is not all 0s.
18052       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
18053       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
18054
18055       if (TValIsAllZeros || FValIsAllOnes) {
18056         SDValue CC = Cond.getOperand(2);
18057         ISD::CondCode NewCC =
18058           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
18059                                Cond.getOperand(0).getValueType().isInteger());
18060         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
18061         std::swap(LHS, RHS);
18062         TValIsAllOnes = FValIsAllOnes;
18063         FValIsAllZeros = TValIsAllZeros;
18064       }
18065     }
18066
18067     if (TValIsAllOnes || FValIsAllZeros) {
18068       SDValue Ret;
18069
18070       if (TValIsAllOnes && FValIsAllZeros)
18071         Ret = Cond;
18072       else if (TValIsAllOnes)
18073         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
18074                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
18075       else if (FValIsAllZeros)
18076         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
18077                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
18078
18079       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
18080     }
18081   }
18082
18083   // Try to fold this VSELECT into a MOVSS/MOVSD
18084   if (N->getOpcode() == ISD::VSELECT &&
18085       Cond.getOpcode() == ISD::BUILD_VECTOR && !DCI.isBeforeLegalize()) {
18086     if (VT == MVT::v4i32 || VT == MVT::v4f32 ||
18087         (Subtarget->hasSSE2() && (VT == MVT::v2i64 || VT == MVT::v2f64))) {
18088       bool CanFold = false;
18089       unsigned NumElems = Cond.getNumOperands();
18090       SDValue A = LHS;
18091       SDValue B = RHS;
18092       
18093       if (isZero(Cond.getOperand(0))) {
18094         CanFold = true;
18095
18096         // fold (vselect <0,-1,-1,-1>, A, B) -> (movss A, B)
18097         // fold (vselect <0,-1> -> (movsd A, B)
18098         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
18099           CanFold = isAllOnes(Cond.getOperand(i));
18100       } else if (isAllOnes(Cond.getOperand(0))) {
18101         CanFold = true;
18102         std::swap(A, B);
18103
18104         // fold (vselect <-1,0,0,0>, A, B) -> (movss B, A)
18105         // fold (vselect <-1,0> -> (movsd B, A)
18106         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
18107           CanFold = isZero(Cond.getOperand(i));
18108       }
18109
18110       if (CanFold) {
18111         if (VT == MVT::v4i32 || VT == MVT::v4f32)
18112           return getTargetShuffleNode(X86ISD::MOVSS, DL, VT, A, B, DAG);
18113         return getTargetShuffleNode(X86ISD::MOVSD, DL, VT, A, B, DAG);
18114       }
18115
18116       if (Subtarget->hasSSE2() && (VT == MVT::v4i32 || VT == MVT::v4f32)) {
18117         // fold (v4i32: vselect <0,0,-1,-1>, A, B) ->
18118         //      (v4i32 (bitcast (movsd (v2i64 (bitcast A)),
18119         //                             (v2i64 (bitcast B)))))
18120         //
18121         // fold (v4f32: vselect <0,0,-1,-1>, A, B) ->
18122         //      (v4f32 (bitcast (movsd (v2f64 (bitcast A)),
18123         //                             (v2f64 (bitcast B)))))
18124         //
18125         // fold (v4i32: vselect <-1,-1,0,0>, A, B) ->
18126         //      (v4i32 (bitcast (movsd (v2i64 (bitcast B)),
18127         //                             (v2i64 (bitcast A)))))
18128         //
18129         // fold (v4f32: vselect <-1,-1,0,0>, A, B) ->
18130         //      (v4f32 (bitcast (movsd (v2f64 (bitcast B)),
18131         //                             (v2f64 (bitcast A)))))
18132
18133         CanFold = (isZero(Cond.getOperand(0)) &&
18134                    isZero(Cond.getOperand(1)) &&
18135                    isAllOnes(Cond.getOperand(2)) &&
18136                    isAllOnes(Cond.getOperand(3)));
18137
18138         if (!CanFold && isAllOnes(Cond.getOperand(0)) &&
18139             isAllOnes(Cond.getOperand(1)) &&
18140             isZero(Cond.getOperand(2)) &&
18141             isZero(Cond.getOperand(3))) {
18142           CanFold = true;
18143           std::swap(LHS, RHS);
18144         }
18145
18146         if (CanFold) {
18147           EVT NVT = (VT == MVT::v4i32) ? MVT::v2i64 : MVT::v2f64;
18148           SDValue NewA = DAG.getNode(ISD::BITCAST, DL, NVT, LHS);
18149           SDValue NewB = DAG.getNode(ISD::BITCAST, DL, NVT, RHS);
18150           SDValue Select = getTargetShuffleNode(X86ISD::MOVSD, DL, NVT, NewA,
18151                                                 NewB, DAG);
18152           return DAG.getNode(ISD::BITCAST, DL, VT, Select);
18153         }
18154       }
18155     }
18156   }
18157
18158   // If we know that this node is legal then we know that it is going to be
18159   // matched by one of the SSE/AVX BLEND instructions. These instructions only
18160   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
18161   // to simplify previous instructions.
18162   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
18163       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
18164     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
18165
18166     // Don't optimize vector selects that map to mask-registers.
18167     if (BitWidth == 1)
18168       return SDValue();
18169
18170     // Check all uses of that condition operand to check whether it will be
18171     // consumed by non-BLEND instructions, which may depend on all bits are set
18172     // properly.
18173     for (SDNode::use_iterator I = Cond->use_begin(),
18174                               E = Cond->use_end(); I != E; ++I)
18175       if (I->getOpcode() != ISD::VSELECT)
18176         // TODO: Add other opcodes eventually lowered into BLEND.
18177         return SDValue();
18178
18179     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
18180     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
18181
18182     APInt KnownZero, KnownOne;
18183     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
18184                                           DCI.isBeforeLegalizeOps());
18185     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
18186         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
18187       DCI.CommitTargetLoweringOpt(TLO);
18188   }
18189
18190   return SDValue();
18191 }
18192
18193 // Check whether a boolean test is testing a boolean value generated by
18194 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
18195 // code.
18196 //
18197 // Simplify the following patterns:
18198 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
18199 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
18200 // to (Op EFLAGS Cond)
18201 //
18202 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
18203 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
18204 // to (Op EFLAGS !Cond)
18205 //
18206 // where Op could be BRCOND or CMOV.
18207 //
18208 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
18209   // Quit if not CMP and SUB with its value result used.
18210   if (Cmp.getOpcode() != X86ISD::CMP &&
18211       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
18212       return SDValue();
18213
18214   // Quit if not used as a boolean value.
18215   if (CC != X86::COND_E && CC != X86::COND_NE)
18216     return SDValue();
18217
18218   // Check CMP operands. One of them should be 0 or 1 and the other should be
18219   // an SetCC or extended from it.
18220   SDValue Op1 = Cmp.getOperand(0);
18221   SDValue Op2 = Cmp.getOperand(1);
18222
18223   SDValue SetCC;
18224   const ConstantSDNode* C = nullptr;
18225   bool needOppositeCond = (CC == X86::COND_E);
18226   bool checkAgainstTrue = false; // Is it a comparison against 1?
18227
18228   if ((C = dyn_cast<ConstantSDNode>(Op1)))
18229     SetCC = Op2;
18230   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
18231     SetCC = Op1;
18232   else // Quit if all operands are not constants.
18233     return SDValue();
18234
18235   if (C->getZExtValue() == 1) {
18236     needOppositeCond = !needOppositeCond;
18237     checkAgainstTrue = true;
18238   } else if (C->getZExtValue() != 0)
18239     // Quit if the constant is neither 0 or 1.
18240     return SDValue();
18241
18242   bool truncatedToBoolWithAnd = false;
18243   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
18244   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
18245          SetCC.getOpcode() == ISD::TRUNCATE ||
18246          SetCC.getOpcode() == ISD::AND) {
18247     if (SetCC.getOpcode() == ISD::AND) {
18248       int OpIdx = -1;
18249       ConstantSDNode *CS;
18250       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
18251           CS->getZExtValue() == 1)
18252         OpIdx = 1;
18253       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
18254           CS->getZExtValue() == 1)
18255         OpIdx = 0;
18256       if (OpIdx == -1)
18257         break;
18258       SetCC = SetCC.getOperand(OpIdx);
18259       truncatedToBoolWithAnd = true;
18260     } else
18261       SetCC = SetCC.getOperand(0);
18262   }
18263
18264   switch (SetCC.getOpcode()) {
18265   case X86ISD::SETCC_CARRY:
18266     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
18267     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
18268     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
18269     // truncated to i1 using 'and'.
18270     if (checkAgainstTrue && !truncatedToBoolWithAnd)
18271       break;
18272     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
18273            "Invalid use of SETCC_CARRY!");
18274     // FALL THROUGH
18275   case X86ISD::SETCC:
18276     // Set the condition code or opposite one if necessary.
18277     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
18278     if (needOppositeCond)
18279       CC = X86::GetOppositeBranchCondition(CC);
18280     return SetCC.getOperand(1);
18281   case X86ISD::CMOV: {
18282     // Check whether false/true value has canonical one, i.e. 0 or 1.
18283     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
18284     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
18285     // Quit if true value is not a constant.
18286     if (!TVal)
18287       return SDValue();
18288     // Quit if false value is not a constant.
18289     if (!FVal) {
18290       SDValue Op = SetCC.getOperand(0);
18291       // Skip 'zext' or 'trunc' node.
18292       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
18293           Op.getOpcode() == ISD::TRUNCATE)
18294         Op = Op.getOperand(0);
18295       // A special case for rdrand/rdseed, where 0 is set if false cond is
18296       // found.
18297       if ((Op.getOpcode() != X86ISD::RDRAND &&
18298            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
18299         return SDValue();
18300     }
18301     // Quit if false value is not the constant 0 or 1.
18302     bool FValIsFalse = true;
18303     if (FVal && FVal->getZExtValue() != 0) {
18304       if (FVal->getZExtValue() != 1)
18305         return SDValue();
18306       // If FVal is 1, opposite cond is needed.
18307       needOppositeCond = !needOppositeCond;
18308       FValIsFalse = false;
18309     }
18310     // Quit if TVal is not the constant opposite of FVal.
18311     if (FValIsFalse && TVal->getZExtValue() != 1)
18312       return SDValue();
18313     if (!FValIsFalse && TVal->getZExtValue() != 0)
18314       return SDValue();
18315     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
18316     if (needOppositeCond)
18317       CC = X86::GetOppositeBranchCondition(CC);
18318     return SetCC.getOperand(3);
18319   }
18320   }
18321
18322   return SDValue();
18323 }
18324
18325 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
18326 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
18327                                   TargetLowering::DAGCombinerInfo &DCI,
18328                                   const X86Subtarget *Subtarget) {
18329   SDLoc DL(N);
18330
18331   // If the flag operand isn't dead, don't touch this CMOV.
18332   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
18333     return SDValue();
18334
18335   SDValue FalseOp = N->getOperand(0);
18336   SDValue TrueOp = N->getOperand(1);
18337   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
18338   SDValue Cond = N->getOperand(3);
18339
18340   if (CC == X86::COND_E || CC == X86::COND_NE) {
18341     switch (Cond.getOpcode()) {
18342     default: break;
18343     case X86ISD::BSR:
18344     case X86ISD::BSF:
18345       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
18346       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
18347         return (CC == X86::COND_E) ? FalseOp : TrueOp;
18348     }
18349   }
18350
18351   SDValue Flags;
18352
18353   Flags = checkBoolTestSetCCCombine(Cond, CC);
18354   if (Flags.getNode() &&
18355       // Extra check as FCMOV only supports a subset of X86 cond.
18356       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
18357     SDValue Ops[] = { FalseOp, TrueOp,
18358                       DAG.getConstant(CC, MVT::i8), Flags };
18359     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
18360   }
18361
18362   // If this is a select between two integer constants, try to do some
18363   // optimizations.  Note that the operands are ordered the opposite of SELECT
18364   // operands.
18365   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
18366     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
18367       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
18368       // larger than FalseC (the false value).
18369       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
18370         CC = X86::GetOppositeBranchCondition(CC);
18371         std::swap(TrueC, FalseC);
18372         std::swap(TrueOp, FalseOp);
18373       }
18374
18375       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
18376       // This is efficient for any integer data type (including i8/i16) and
18377       // shift amount.
18378       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
18379         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18380                            DAG.getConstant(CC, MVT::i8), Cond);
18381
18382         // Zero extend the condition if needed.
18383         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
18384
18385         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
18386         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
18387                            DAG.getConstant(ShAmt, MVT::i8));
18388         if (N->getNumValues() == 2)  // Dead flag value?
18389           return DCI.CombineTo(N, Cond, SDValue());
18390         return Cond;
18391       }
18392
18393       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
18394       // for any integer data type, including i8/i16.
18395       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
18396         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18397                            DAG.getConstant(CC, MVT::i8), Cond);
18398
18399         // Zero extend the condition if needed.
18400         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
18401                            FalseC->getValueType(0), Cond);
18402         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
18403                            SDValue(FalseC, 0));
18404
18405         if (N->getNumValues() == 2)  // Dead flag value?
18406           return DCI.CombineTo(N, Cond, SDValue());
18407         return Cond;
18408       }
18409
18410       // Optimize cases that will turn into an LEA instruction.  This requires
18411       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
18412       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
18413         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
18414         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
18415
18416         bool isFastMultiplier = false;
18417         if (Diff < 10) {
18418           switch ((unsigned char)Diff) {
18419           default: break;
18420           case 1:  // result = add base, cond
18421           case 2:  // result = lea base(    , cond*2)
18422           case 3:  // result = lea base(cond, cond*2)
18423           case 4:  // result = lea base(    , cond*4)
18424           case 5:  // result = lea base(cond, cond*4)
18425           case 8:  // result = lea base(    , cond*8)
18426           case 9:  // result = lea base(cond, cond*8)
18427             isFastMultiplier = true;
18428             break;
18429           }
18430         }
18431
18432         if (isFastMultiplier) {
18433           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
18434           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18435                              DAG.getConstant(CC, MVT::i8), Cond);
18436           // Zero extend the condition if needed.
18437           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
18438                              Cond);
18439           // Scale the condition by the difference.
18440           if (Diff != 1)
18441             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
18442                                DAG.getConstant(Diff, Cond.getValueType()));
18443
18444           // Add the base if non-zero.
18445           if (FalseC->getAPIntValue() != 0)
18446             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
18447                                SDValue(FalseC, 0));
18448           if (N->getNumValues() == 2)  // Dead flag value?
18449             return DCI.CombineTo(N, Cond, SDValue());
18450           return Cond;
18451         }
18452       }
18453     }
18454   }
18455
18456   // Handle these cases:
18457   //   (select (x != c), e, c) -> select (x != c), e, x),
18458   //   (select (x == c), c, e) -> select (x == c), x, e)
18459   // where the c is an integer constant, and the "select" is the combination
18460   // of CMOV and CMP.
18461   //
18462   // The rationale for this change is that the conditional-move from a constant
18463   // needs two instructions, however, conditional-move from a register needs
18464   // only one instruction.
18465   //
18466   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
18467   //  some instruction-combining opportunities. This opt needs to be
18468   //  postponed as late as possible.
18469   //
18470   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
18471     // the DCI.xxxx conditions are provided to postpone the optimization as
18472     // late as possible.
18473
18474     ConstantSDNode *CmpAgainst = nullptr;
18475     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
18476         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
18477         !isa<ConstantSDNode>(Cond.getOperand(0))) {
18478
18479       if (CC == X86::COND_NE &&
18480           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
18481         CC = X86::GetOppositeBranchCondition(CC);
18482         std::swap(TrueOp, FalseOp);
18483       }
18484
18485       if (CC == X86::COND_E &&
18486           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
18487         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
18488                           DAG.getConstant(CC, MVT::i8), Cond };
18489         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
18490       }
18491     }
18492   }
18493
18494   return SDValue();
18495 }
18496
18497 static SDValue PerformINTRINSIC_WO_CHAINCombine(SDNode *N, SelectionDAG &DAG) {
18498   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
18499   switch (IntNo) {
18500   default: return SDValue();
18501   // Packed SSE2/AVX2 arithmetic shift immediate intrinsics.
18502   case Intrinsic::x86_sse2_psrai_w:
18503   case Intrinsic::x86_sse2_psrai_d:
18504   case Intrinsic::x86_avx2_psrai_w:
18505   case Intrinsic::x86_avx2_psrai_d:
18506   case Intrinsic::x86_sse2_psra_w:
18507   case Intrinsic::x86_sse2_psra_d:
18508   case Intrinsic::x86_avx2_psra_w:
18509   case Intrinsic::x86_avx2_psra_d: {
18510     SDValue Op0 = N->getOperand(1);
18511     SDValue Op1 = N->getOperand(2);
18512     EVT VT = Op0.getValueType();
18513     assert(VT.isVector() && "Expected a vector type!");
18514
18515     if (isa<BuildVectorSDNode>(Op1))
18516       Op1 = Op1.getOperand(0);
18517
18518     if (!isa<ConstantSDNode>(Op1))
18519       return SDValue();
18520
18521     EVT SVT = VT.getVectorElementType();
18522     unsigned SVTBits = SVT.getSizeInBits();
18523
18524     ConstantSDNode *CND = cast<ConstantSDNode>(Op1);
18525     const APInt &C = APInt(SVTBits, CND->getAPIntValue().getZExtValue());
18526     uint64_t ShAmt = C.getZExtValue();
18527
18528     // Don't try to convert this shift into a ISD::SRA if the shift
18529     // count is bigger than or equal to the element size.
18530     if (ShAmt >= SVTBits)
18531       return SDValue();
18532
18533     // Trivial case: if the shift count is zero, then fold this
18534     // into the first operand.
18535     if (ShAmt == 0)
18536       return Op0;
18537
18538     // Replace this packed shift intrinsic with a target independent
18539     // shift dag node.
18540     SDValue Splat = DAG.getConstant(C, VT);
18541     return DAG.getNode(ISD::SRA, SDLoc(N), VT, Op0, Splat);
18542   }
18543   }
18544 }
18545
18546 /// PerformMulCombine - Optimize a single multiply with constant into two
18547 /// in order to implement it with two cheaper instructions, e.g.
18548 /// LEA + SHL, LEA + LEA.
18549 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
18550                                  TargetLowering::DAGCombinerInfo &DCI) {
18551   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
18552     return SDValue();
18553
18554   EVT VT = N->getValueType(0);
18555   if (VT != MVT::i64)
18556     return SDValue();
18557
18558   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
18559   if (!C)
18560     return SDValue();
18561   uint64_t MulAmt = C->getZExtValue();
18562   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
18563     return SDValue();
18564
18565   uint64_t MulAmt1 = 0;
18566   uint64_t MulAmt2 = 0;
18567   if ((MulAmt % 9) == 0) {
18568     MulAmt1 = 9;
18569     MulAmt2 = MulAmt / 9;
18570   } else if ((MulAmt % 5) == 0) {
18571     MulAmt1 = 5;
18572     MulAmt2 = MulAmt / 5;
18573   } else if ((MulAmt % 3) == 0) {
18574     MulAmt1 = 3;
18575     MulAmt2 = MulAmt / 3;
18576   }
18577   if (MulAmt2 &&
18578       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
18579     SDLoc DL(N);
18580
18581     if (isPowerOf2_64(MulAmt2) &&
18582         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
18583       // If second multiplifer is pow2, issue it first. We want the multiply by
18584       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
18585       // is an add.
18586       std::swap(MulAmt1, MulAmt2);
18587
18588     SDValue NewMul;
18589     if (isPowerOf2_64(MulAmt1))
18590       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
18591                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
18592     else
18593       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
18594                            DAG.getConstant(MulAmt1, VT));
18595
18596     if (isPowerOf2_64(MulAmt2))
18597       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
18598                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
18599     else
18600       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
18601                            DAG.getConstant(MulAmt2, VT));
18602
18603     // Do not add new nodes to DAG combiner worklist.
18604     DCI.CombineTo(N, NewMul, false);
18605   }
18606   return SDValue();
18607 }
18608
18609 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
18610   SDValue N0 = N->getOperand(0);
18611   SDValue N1 = N->getOperand(1);
18612   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
18613   EVT VT = N0.getValueType();
18614
18615   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
18616   // since the result of setcc_c is all zero's or all ones.
18617   if (VT.isInteger() && !VT.isVector() &&
18618       N1C && N0.getOpcode() == ISD::AND &&
18619       N0.getOperand(1).getOpcode() == ISD::Constant) {
18620     SDValue N00 = N0.getOperand(0);
18621     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
18622         ((N00.getOpcode() == ISD::ANY_EXTEND ||
18623           N00.getOpcode() == ISD::ZERO_EXTEND) &&
18624          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
18625       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
18626       APInt ShAmt = N1C->getAPIntValue();
18627       Mask = Mask.shl(ShAmt);
18628       if (Mask != 0)
18629         return DAG.getNode(ISD::AND, SDLoc(N), VT,
18630                            N00, DAG.getConstant(Mask, VT));
18631     }
18632   }
18633
18634   // Hardware support for vector shifts is sparse which makes us scalarize the
18635   // vector operations in many cases. Also, on sandybridge ADD is faster than
18636   // shl.
18637   // (shl V, 1) -> add V,V
18638   if (isSplatVector(N1.getNode())) {
18639     assert(N0.getValueType().isVector() && "Invalid vector shift type");
18640     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
18641     // We shift all of the values by one. In many cases we do not have
18642     // hardware support for this operation. This is better expressed as an ADD
18643     // of two values.
18644     if (N1C && (1 == N1C->getZExtValue())) {
18645       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
18646     }
18647   }
18648
18649   return SDValue();
18650 }
18651
18652 /// \brief Returns a vector of 0s if the node in input is a vector logical
18653 /// shift by a constant amount which is known to be bigger than or equal
18654 /// to the vector element size in bits.
18655 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
18656                                       const X86Subtarget *Subtarget) {
18657   EVT VT = N->getValueType(0);
18658
18659   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
18660       (!Subtarget->hasInt256() ||
18661        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
18662     return SDValue();
18663
18664   SDValue Amt = N->getOperand(1);
18665   SDLoc DL(N);
18666   if (isSplatVector(Amt.getNode())) {
18667     SDValue SclrAmt = Amt->getOperand(0);
18668     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
18669       APInt ShiftAmt = C->getAPIntValue();
18670       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
18671
18672       // SSE2/AVX2 logical shifts always return a vector of 0s
18673       // if the shift amount is bigger than or equal to
18674       // the element size. The constant shift amount will be
18675       // encoded as a 8-bit immediate.
18676       if (ShiftAmt.trunc(8).uge(MaxAmount))
18677         return getZeroVector(VT, Subtarget, DAG, DL);
18678     }
18679   }
18680
18681   return SDValue();
18682 }
18683
18684 /// PerformShiftCombine - Combine shifts.
18685 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
18686                                    TargetLowering::DAGCombinerInfo &DCI,
18687                                    const X86Subtarget *Subtarget) {
18688   if (N->getOpcode() == ISD::SHL) {
18689     SDValue V = PerformSHLCombine(N, DAG);
18690     if (V.getNode()) return V;
18691   }
18692
18693   if (N->getOpcode() != ISD::SRA) {
18694     // Try to fold this logical shift into a zero vector.
18695     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
18696     if (V.getNode()) return V;
18697   }
18698
18699   return SDValue();
18700 }
18701
18702 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
18703 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
18704 // and friends.  Likewise for OR -> CMPNEQSS.
18705 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
18706                             TargetLowering::DAGCombinerInfo &DCI,
18707                             const X86Subtarget *Subtarget) {
18708   unsigned opcode;
18709
18710   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
18711   // we're requiring SSE2 for both.
18712   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
18713     SDValue N0 = N->getOperand(0);
18714     SDValue N1 = N->getOperand(1);
18715     SDValue CMP0 = N0->getOperand(1);
18716     SDValue CMP1 = N1->getOperand(1);
18717     SDLoc DL(N);
18718
18719     // The SETCCs should both refer to the same CMP.
18720     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
18721       return SDValue();
18722
18723     SDValue CMP00 = CMP0->getOperand(0);
18724     SDValue CMP01 = CMP0->getOperand(1);
18725     EVT     VT    = CMP00.getValueType();
18726
18727     if (VT == MVT::f32 || VT == MVT::f64) {
18728       bool ExpectingFlags = false;
18729       // Check for any users that want flags:
18730       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
18731            !ExpectingFlags && UI != UE; ++UI)
18732         switch (UI->getOpcode()) {
18733         default:
18734         case ISD::BR_CC:
18735         case ISD::BRCOND:
18736         case ISD::SELECT:
18737           ExpectingFlags = true;
18738           break;
18739         case ISD::CopyToReg:
18740         case ISD::SIGN_EXTEND:
18741         case ISD::ZERO_EXTEND:
18742         case ISD::ANY_EXTEND:
18743           break;
18744         }
18745
18746       if (!ExpectingFlags) {
18747         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
18748         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
18749
18750         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
18751           X86::CondCode tmp = cc0;
18752           cc0 = cc1;
18753           cc1 = tmp;
18754         }
18755
18756         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
18757             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
18758           // FIXME: need symbolic constants for these magic numbers.
18759           // See X86ATTInstPrinter.cpp:printSSECC().
18760           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
18761           if (Subtarget->hasAVX512()) {
18762             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
18763                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
18764             if (N->getValueType(0) != MVT::i1)
18765               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
18766                                  FSetCC);
18767             return FSetCC;
18768           }
18769           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
18770                                               CMP00.getValueType(), CMP00, CMP01,
18771                                               DAG.getConstant(x86cc, MVT::i8));
18772
18773           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
18774           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
18775
18776           if (is64BitFP && !Subtarget->is64Bit()) {
18777             // On a 32-bit target, we cannot bitcast the 64-bit float to a
18778             // 64-bit integer, since that's not a legal type. Since
18779             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
18780             // bits, but can do this little dance to extract the lowest 32 bits
18781             // and work with those going forward.
18782             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
18783                                            OnesOrZeroesF);
18784             SDValue Vector32 = DAG.getNode(ISD::BITCAST, DL, MVT::v4f32,
18785                                            Vector64);
18786             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
18787                                         Vector32, DAG.getIntPtrConstant(0));
18788             IntVT = MVT::i32;
18789           }
18790
18791           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT, OnesOrZeroesF);
18792           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
18793                                       DAG.getConstant(1, IntVT));
18794           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
18795           return OneBitOfTruth;
18796         }
18797       }
18798     }
18799   }
18800   return SDValue();
18801 }
18802
18803 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
18804 /// so it can be folded inside ANDNP.
18805 static bool CanFoldXORWithAllOnes(const SDNode *N) {
18806   EVT VT = N->getValueType(0);
18807
18808   // Match direct AllOnes for 128 and 256-bit vectors
18809   if (ISD::isBuildVectorAllOnes(N))
18810     return true;
18811
18812   // Look through a bit convert.
18813   if (N->getOpcode() == ISD::BITCAST)
18814     N = N->getOperand(0).getNode();
18815
18816   // Sometimes the operand may come from a insert_subvector building a 256-bit
18817   // allones vector
18818   if (VT.is256BitVector() &&
18819       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
18820     SDValue V1 = N->getOperand(0);
18821     SDValue V2 = N->getOperand(1);
18822
18823     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
18824         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
18825         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
18826         ISD::isBuildVectorAllOnes(V2.getNode()))
18827       return true;
18828   }
18829
18830   return false;
18831 }
18832
18833 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
18834 // register. In most cases we actually compare or select YMM-sized registers
18835 // and mixing the two types creates horrible code. This method optimizes
18836 // some of the transition sequences.
18837 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
18838                                  TargetLowering::DAGCombinerInfo &DCI,
18839                                  const X86Subtarget *Subtarget) {
18840   EVT VT = N->getValueType(0);
18841   if (!VT.is256BitVector())
18842     return SDValue();
18843
18844   assert((N->getOpcode() == ISD::ANY_EXTEND ||
18845           N->getOpcode() == ISD::ZERO_EXTEND ||
18846           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
18847
18848   SDValue Narrow = N->getOperand(0);
18849   EVT NarrowVT = Narrow->getValueType(0);
18850   if (!NarrowVT.is128BitVector())
18851     return SDValue();
18852
18853   if (Narrow->getOpcode() != ISD::XOR &&
18854       Narrow->getOpcode() != ISD::AND &&
18855       Narrow->getOpcode() != ISD::OR)
18856     return SDValue();
18857
18858   SDValue N0  = Narrow->getOperand(0);
18859   SDValue N1  = Narrow->getOperand(1);
18860   SDLoc DL(Narrow);
18861
18862   // The Left side has to be a trunc.
18863   if (N0.getOpcode() != ISD::TRUNCATE)
18864     return SDValue();
18865
18866   // The type of the truncated inputs.
18867   EVT WideVT = N0->getOperand(0)->getValueType(0);
18868   if (WideVT != VT)
18869     return SDValue();
18870
18871   // The right side has to be a 'trunc' or a constant vector.
18872   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
18873   bool RHSConst = (isSplatVector(N1.getNode()) &&
18874                    isa<ConstantSDNode>(N1->getOperand(0)));
18875   if (!RHSTrunc && !RHSConst)
18876     return SDValue();
18877
18878   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18879
18880   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
18881     return SDValue();
18882
18883   // Set N0 and N1 to hold the inputs to the new wide operation.
18884   N0 = N0->getOperand(0);
18885   if (RHSConst) {
18886     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
18887                      N1->getOperand(0));
18888     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
18889     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
18890   } else if (RHSTrunc) {
18891     N1 = N1->getOperand(0);
18892   }
18893
18894   // Generate the wide operation.
18895   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
18896   unsigned Opcode = N->getOpcode();
18897   switch (Opcode) {
18898   case ISD::ANY_EXTEND:
18899     return Op;
18900   case ISD::ZERO_EXTEND: {
18901     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
18902     APInt Mask = APInt::getAllOnesValue(InBits);
18903     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
18904     return DAG.getNode(ISD::AND, DL, VT,
18905                        Op, DAG.getConstant(Mask, VT));
18906   }
18907   case ISD::SIGN_EXTEND:
18908     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
18909                        Op, DAG.getValueType(NarrowVT));
18910   default:
18911     llvm_unreachable("Unexpected opcode");
18912   }
18913 }
18914
18915 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
18916                                  TargetLowering::DAGCombinerInfo &DCI,
18917                                  const X86Subtarget *Subtarget) {
18918   EVT VT = N->getValueType(0);
18919   if (DCI.isBeforeLegalizeOps())
18920     return SDValue();
18921
18922   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
18923   if (R.getNode())
18924     return R;
18925
18926   // Create BEXTR instructions
18927   // BEXTR is ((X >> imm) & (2**size-1))
18928   if (VT == MVT::i32 || VT == MVT::i64) {
18929     SDValue N0 = N->getOperand(0);
18930     SDValue N1 = N->getOperand(1);
18931     SDLoc DL(N);
18932
18933     // Check for BEXTR.
18934     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
18935         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
18936       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
18937       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18938       if (MaskNode && ShiftNode) {
18939         uint64_t Mask = MaskNode->getZExtValue();
18940         uint64_t Shift = ShiftNode->getZExtValue();
18941         if (isMask_64(Mask)) {
18942           uint64_t MaskSize = CountPopulation_64(Mask);
18943           if (Shift + MaskSize <= VT.getSizeInBits())
18944             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
18945                                DAG.getConstant(Shift | (MaskSize << 8), VT));
18946         }
18947       }
18948     } // BEXTR
18949
18950     return SDValue();
18951   }
18952
18953   // Want to form ANDNP nodes:
18954   // 1) In the hopes of then easily combining them with OR and AND nodes
18955   //    to form PBLEND/PSIGN.
18956   // 2) To match ANDN packed intrinsics
18957   if (VT != MVT::v2i64 && VT != MVT::v4i64)
18958     return SDValue();
18959
18960   SDValue N0 = N->getOperand(0);
18961   SDValue N1 = N->getOperand(1);
18962   SDLoc DL(N);
18963
18964   // Check LHS for vnot
18965   if (N0.getOpcode() == ISD::XOR &&
18966       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
18967       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
18968     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
18969
18970   // Check RHS for vnot
18971   if (N1.getOpcode() == ISD::XOR &&
18972       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
18973       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
18974     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
18975
18976   return SDValue();
18977 }
18978
18979 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
18980                                 TargetLowering::DAGCombinerInfo &DCI,
18981                                 const X86Subtarget *Subtarget) {
18982   if (DCI.isBeforeLegalizeOps())
18983     return SDValue();
18984
18985   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
18986   if (R.getNode())
18987     return R;
18988
18989   SDValue N0 = N->getOperand(0);
18990   SDValue N1 = N->getOperand(1);
18991   EVT VT = N->getValueType(0);
18992
18993   // look for psign/blend
18994   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
18995     if (!Subtarget->hasSSSE3() ||
18996         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
18997       return SDValue();
18998
18999     // Canonicalize pandn to RHS
19000     if (N0.getOpcode() == X86ISD::ANDNP)
19001       std::swap(N0, N1);
19002     // or (and (m, y), (pandn m, x))
19003     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
19004       SDValue Mask = N1.getOperand(0);
19005       SDValue X    = N1.getOperand(1);
19006       SDValue Y;
19007       if (N0.getOperand(0) == Mask)
19008         Y = N0.getOperand(1);
19009       if (N0.getOperand(1) == Mask)
19010         Y = N0.getOperand(0);
19011
19012       // Check to see if the mask appeared in both the AND and ANDNP and
19013       if (!Y.getNode())
19014         return SDValue();
19015
19016       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
19017       // Look through mask bitcast.
19018       if (Mask.getOpcode() == ISD::BITCAST)
19019         Mask = Mask.getOperand(0);
19020       if (X.getOpcode() == ISD::BITCAST)
19021         X = X.getOperand(0);
19022       if (Y.getOpcode() == ISD::BITCAST)
19023         Y = Y.getOperand(0);
19024
19025       EVT MaskVT = Mask.getValueType();
19026
19027       // Validate that the Mask operand is a vector sra node.
19028       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
19029       // there is no psrai.b
19030       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
19031       unsigned SraAmt = ~0;
19032       if (Mask.getOpcode() == ISD::SRA) {
19033         SDValue Amt = Mask.getOperand(1);
19034         if (isSplatVector(Amt.getNode())) {
19035           SDValue SclrAmt = Amt->getOperand(0);
19036           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
19037             SraAmt = C->getZExtValue();
19038         }
19039       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
19040         SDValue SraC = Mask.getOperand(1);
19041         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
19042       }
19043       if ((SraAmt + 1) != EltBits)
19044         return SDValue();
19045
19046       SDLoc DL(N);
19047
19048       // Now we know we at least have a plendvb with the mask val.  See if
19049       // we can form a psignb/w/d.
19050       // psign = x.type == y.type == mask.type && y = sub(0, x);
19051       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
19052           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
19053           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
19054         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
19055                "Unsupported VT for PSIGN");
19056         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
19057         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
19058       }
19059       // PBLENDVB only available on SSE 4.1
19060       if (!Subtarget->hasSSE41())
19061         return SDValue();
19062
19063       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
19064
19065       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
19066       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
19067       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
19068       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
19069       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
19070     }
19071   }
19072
19073   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
19074     return SDValue();
19075
19076   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
19077   MachineFunction &MF = DAG.getMachineFunction();
19078   bool OptForSize = MF.getFunction()->getAttributes().
19079     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
19080
19081   // SHLD/SHRD instructions have lower register pressure, but on some
19082   // platforms they have higher latency than the equivalent
19083   // series of shifts/or that would otherwise be generated.
19084   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
19085   // have higher latencies and we are not optimizing for size.
19086   if (!OptForSize && Subtarget->isSHLDSlow())
19087     return SDValue();
19088
19089   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
19090     std::swap(N0, N1);
19091   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
19092     return SDValue();
19093   if (!N0.hasOneUse() || !N1.hasOneUse())
19094     return SDValue();
19095
19096   SDValue ShAmt0 = N0.getOperand(1);
19097   if (ShAmt0.getValueType() != MVT::i8)
19098     return SDValue();
19099   SDValue ShAmt1 = N1.getOperand(1);
19100   if (ShAmt1.getValueType() != MVT::i8)
19101     return SDValue();
19102   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
19103     ShAmt0 = ShAmt0.getOperand(0);
19104   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
19105     ShAmt1 = ShAmt1.getOperand(0);
19106
19107   SDLoc DL(N);
19108   unsigned Opc = X86ISD::SHLD;
19109   SDValue Op0 = N0.getOperand(0);
19110   SDValue Op1 = N1.getOperand(0);
19111   if (ShAmt0.getOpcode() == ISD::SUB) {
19112     Opc = X86ISD::SHRD;
19113     std::swap(Op0, Op1);
19114     std::swap(ShAmt0, ShAmt1);
19115   }
19116
19117   unsigned Bits = VT.getSizeInBits();
19118   if (ShAmt1.getOpcode() == ISD::SUB) {
19119     SDValue Sum = ShAmt1.getOperand(0);
19120     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
19121       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
19122       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
19123         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
19124       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
19125         return DAG.getNode(Opc, DL, VT,
19126                            Op0, Op1,
19127                            DAG.getNode(ISD::TRUNCATE, DL,
19128                                        MVT::i8, ShAmt0));
19129     }
19130   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
19131     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
19132     if (ShAmt0C &&
19133         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
19134       return DAG.getNode(Opc, DL, VT,
19135                          N0.getOperand(0), N1.getOperand(0),
19136                          DAG.getNode(ISD::TRUNCATE, DL,
19137                                        MVT::i8, ShAmt0));
19138   }
19139
19140   return SDValue();
19141 }
19142
19143 // Generate NEG and CMOV for integer abs.
19144 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
19145   EVT VT = N->getValueType(0);
19146
19147   // Since X86 does not have CMOV for 8-bit integer, we don't convert
19148   // 8-bit integer abs to NEG and CMOV.
19149   if (VT.isInteger() && VT.getSizeInBits() == 8)
19150     return SDValue();
19151
19152   SDValue N0 = N->getOperand(0);
19153   SDValue N1 = N->getOperand(1);
19154   SDLoc DL(N);
19155
19156   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
19157   // and change it to SUB and CMOV.
19158   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
19159       N0.getOpcode() == ISD::ADD &&
19160       N0.getOperand(1) == N1 &&
19161       N1.getOpcode() == ISD::SRA &&
19162       N1.getOperand(0) == N0.getOperand(0))
19163     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
19164       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
19165         // Generate SUB & CMOV.
19166         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
19167                                   DAG.getConstant(0, VT), N0.getOperand(0));
19168
19169         SDValue Ops[] = { N0.getOperand(0), Neg,
19170                           DAG.getConstant(X86::COND_GE, MVT::i8),
19171                           SDValue(Neg.getNode(), 1) };
19172         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
19173       }
19174   return SDValue();
19175 }
19176
19177 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
19178 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
19179                                  TargetLowering::DAGCombinerInfo &DCI,
19180                                  const X86Subtarget *Subtarget) {
19181   if (DCI.isBeforeLegalizeOps())
19182     return SDValue();
19183
19184   if (Subtarget->hasCMov()) {
19185     SDValue RV = performIntegerAbsCombine(N, DAG);
19186     if (RV.getNode())
19187       return RV;
19188   }
19189
19190   return SDValue();
19191 }
19192
19193 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
19194 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
19195                                   TargetLowering::DAGCombinerInfo &DCI,
19196                                   const X86Subtarget *Subtarget) {
19197   LoadSDNode *Ld = cast<LoadSDNode>(N);
19198   EVT RegVT = Ld->getValueType(0);
19199   EVT MemVT = Ld->getMemoryVT();
19200   SDLoc dl(Ld);
19201   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19202   unsigned RegSz = RegVT.getSizeInBits();
19203
19204   // On Sandybridge unaligned 256bit loads are inefficient.
19205   ISD::LoadExtType Ext = Ld->getExtensionType();
19206   unsigned Alignment = Ld->getAlignment();
19207   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
19208   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
19209       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
19210     unsigned NumElems = RegVT.getVectorNumElements();
19211     if (NumElems < 2)
19212       return SDValue();
19213
19214     SDValue Ptr = Ld->getBasePtr();
19215     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
19216
19217     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
19218                                   NumElems/2);
19219     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
19220                                 Ld->getPointerInfo(), Ld->isVolatile(),
19221                                 Ld->isNonTemporal(), Ld->isInvariant(),
19222                                 Alignment);
19223     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
19224     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
19225                                 Ld->getPointerInfo(), Ld->isVolatile(),
19226                                 Ld->isNonTemporal(), Ld->isInvariant(),
19227                                 std::min(16U, Alignment));
19228     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
19229                              Load1.getValue(1),
19230                              Load2.getValue(1));
19231
19232     SDValue NewVec = DAG.getUNDEF(RegVT);
19233     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
19234     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
19235     return DCI.CombineTo(N, NewVec, TF, true);
19236   }
19237
19238   // If this is a vector EXT Load then attempt to optimize it using a
19239   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
19240   // expansion is still better than scalar code.
19241   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
19242   // emit a shuffle and a arithmetic shift.
19243   // TODO: It is possible to support ZExt by zeroing the undef values
19244   // during the shuffle phase or after the shuffle.
19245   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
19246       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
19247     assert(MemVT != RegVT && "Cannot extend to the same type");
19248     assert(MemVT.isVector() && "Must load a vector from memory");
19249
19250     unsigned NumElems = RegVT.getVectorNumElements();
19251     unsigned MemSz = MemVT.getSizeInBits();
19252     assert(RegSz > MemSz && "Register size must be greater than the mem size");
19253
19254     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
19255       return SDValue();
19256
19257     // All sizes must be a power of two.
19258     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
19259       return SDValue();
19260
19261     // Attempt to load the original value using scalar loads.
19262     // Find the largest scalar type that divides the total loaded size.
19263     MVT SclrLoadTy = MVT::i8;
19264     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
19265          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
19266       MVT Tp = (MVT::SimpleValueType)tp;
19267       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
19268         SclrLoadTy = Tp;
19269       }
19270     }
19271
19272     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
19273     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
19274         (64 <= MemSz))
19275       SclrLoadTy = MVT::f64;
19276
19277     // Calculate the number of scalar loads that we need to perform
19278     // in order to load our vector from memory.
19279     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
19280     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
19281       return SDValue();
19282
19283     unsigned loadRegZize = RegSz;
19284     if (Ext == ISD::SEXTLOAD && RegSz == 256)
19285       loadRegZize /= 2;
19286
19287     // Represent our vector as a sequence of elements which are the
19288     // largest scalar that we can load.
19289     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
19290       loadRegZize/SclrLoadTy.getSizeInBits());
19291
19292     // Represent the data using the same element type that is stored in
19293     // memory. In practice, we ''widen'' MemVT.
19294     EVT WideVecVT =
19295           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
19296                        loadRegZize/MemVT.getScalarType().getSizeInBits());
19297
19298     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
19299       "Invalid vector type");
19300
19301     // We can't shuffle using an illegal type.
19302     if (!TLI.isTypeLegal(WideVecVT))
19303       return SDValue();
19304
19305     SmallVector<SDValue, 8> Chains;
19306     SDValue Ptr = Ld->getBasePtr();
19307     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
19308                                         TLI.getPointerTy());
19309     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
19310
19311     for (unsigned i = 0; i < NumLoads; ++i) {
19312       // Perform a single load.
19313       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
19314                                        Ptr, Ld->getPointerInfo(),
19315                                        Ld->isVolatile(), Ld->isNonTemporal(),
19316                                        Ld->isInvariant(), Ld->getAlignment());
19317       Chains.push_back(ScalarLoad.getValue(1));
19318       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
19319       // another round of DAGCombining.
19320       if (i == 0)
19321         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
19322       else
19323         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
19324                           ScalarLoad, DAG.getIntPtrConstant(i));
19325
19326       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
19327     }
19328
19329     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
19330
19331     // Bitcast the loaded value to a vector of the original element type, in
19332     // the size of the target vector type.
19333     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
19334     unsigned SizeRatio = RegSz/MemSz;
19335
19336     if (Ext == ISD::SEXTLOAD) {
19337       // If we have SSE4.1 we can directly emit a VSEXT node.
19338       if (Subtarget->hasSSE41()) {
19339         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
19340         return DCI.CombineTo(N, Sext, TF, true);
19341       }
19342
19343       // Otherwise we'll shuffle the small elements in the high bits of the
19344       // larger type and perform an arithmetic shift. If the shift is not legal
19345       // it's better to scalarize.
19346       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
19347         return SDValue();
19348
19349       // Redistribute the loaded elements into the different locations.
19350       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
19351       for (unsigned i = 0; i != NumElems; ++i)
19352         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
19353
19354       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
19355                                            DAG.getUNDEF(WideVecVT),
19356                                            &ShuffleVec[0]);
19357
19358       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
19359
19360       // Build the arithmetic shift.
19361       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
19362                      MemVT.getVectorElementType().getSizeInBits();
19363       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
19364                           DAG.getConstant(Amt, RegVT));
19365
19366       return DCI.CombineTo(N, Shuff, TF, true);
19367     }
19368
19369     // Redistribute the loaded elements into the different locations.
19370     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
19371     for (unsigned i = 0; i != NumElems; ++i)
19372       ShuffleVec[i*SizeRatio] = i;
19373
19374     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
19375                                          DAG.getUNDEF(WideVecVT),
19376                                          &ShuffleVec[0]);
19377
19378     // Bitcast to the requested type.
19379     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
19380     // Replace the original load with the new sequence
19381     // and return the new chain.
19382     return DCI.CombineTo(N, Shuff, TF, true);
19383   }
19384
19385   return SDValue();
19386 }
19387
19388 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
19389 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
19390                                    const X86Subtarget *Subtarget) {
19391   StoreSDNode *St = cast<StoreSDNode>(N);
19392   EVT VT = St->getValue().getValueType();
19393   EVT StVT = St->getMemoryVT();
19394   SDLoc dl(St);
19395   SDValue StoredVal = St->getOperand(1);
19396   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19397
19398   // If we are saving a concatenation of two XMM registers, perform two stores.
19399   // On Sandy Bridge, 256-bit memory operations are executed by two
19400   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
19401   // memory  operation.
19402   unsigned Alignment = St->getAlignment();
19403   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
19404   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
19405       StVT == VT && !IsAligned) {
19406     unsigned NumElems = VT.getVectorNumElements();
19407     if (NumElems < 2)
19408       return SDValue();
19409
19410     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
19411     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
19412
19413     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
19414     SDValue Ptr0 = St->getBasePtr();
19415     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
19416
19417     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
19418                                 St->getPointerInfo(), St->isVolatile(),
19419                                 St->isNonTemporal(), Alignment);
19420     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
19421                                 St->getPointerInfo(), St->isVolatile(),
19422                                 St->isNonTemporal(),
19423                                 std::min(16U, Alignment));
19424     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
19425   }
19426
19427   // Optimize trunc store (of multiple scalars) to shuffle and store.
19428   // First, pack all of the elements in one place. Next, store to memory
19429   // in fewer chunks.
19430   if (St->isTruncatingStore() && VT.isVector()) {
19431     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19432     unsigned NumElems = VT.getVectorNumElements();
19433     assert(StVT != VT && "Cannot truncate to the same type");
19434     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
19435     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
19436
19437     // From, To sizes and ElemCount must be pow of two
19438     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
19439     // We are going to use the original vector elt for storing.
19440     // Accumulated smaller vector elements must be a multiple of the store size.
19441     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
19442
19443     unsigned SizeRatio  = FromSz / ToSz;
19444
19445     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
19446
19447     // Create a type on which we perform the shuffle
19448     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
19449             StVT.getScalarType(), NumElems*SizeRatio);
19450
19451     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
19452
19453     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
19454     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
19455     for (unsigned i = 0; i != NumElems; ++i)
19456       ShuffleVec[i] = i * SizeRatio;
19457
19458     // Can't shuffle using an illegal type.
19459     if (!TLI.isTypeLegal(WideVecVT))
19460       return SDValue();
19461
19462     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
19463                                          DAG.getUNDEF(WideVecVT),
19464                                          &ShuffleVec[0]);
19465     // At this point all of the data is stored at the bottom of the
19466     // register. We now need to save it to mem.
19467
19468     // Find the largest store unit
19469     MVT StoreType = MVT::i8;
19470     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
19471          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
19472       MVT Tp = (MVT::SimpleValueType)tp;
19473       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
19474         StoreType = Tp;
19475     }
19476
19477     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
19478     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
19479         (64 <= NumElems * ToSz))
19480       StoreType = MVT::f64;
19481
19482     // Bitcast the original vector into a vector of store-size units
19483     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
19484             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
19485     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
19486     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
19487     SmallVector<SDValue, 8> Chains;
19488     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
19489                                         TLI.getPointerTy());
19490     SDValue Ptr = St->getBasePtr();
19491
19492     // Perform one or more big stores into memory.
19493     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
19494       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
19495                                    StoreType, ShuffWide,
19496                                    DAG.getIntPtrConstant(i));
19497       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
19498                                 St->getPointerInfo(), St->isVolatile(),
19499                                 St->isNonTemporal(), St->getAlignment());
19500       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
19501       Chains.push_back(Ch);
19502     }
19503
19504     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
19505   }
19506
19507   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
19508   // the FP state in cases where an emms may be missing.
19509   // A preferable solution to the general problem is to figure out the right
19510   // places to insert EMMS.  This qualifies as a quick hack.
19511
19512   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
19513   if (VT.getSizeInBits() != 64)
19514     return SDValue();
19515
19516   const Function *F = DAG.getMachineFunction().getFunction();
19517   bool NoImplicitFloatOps = F->getAttributes().
19518     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
19519   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
19520                      && Subtarget->hasSSE2();
19521   if ((VT.isVector() ||
19522        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
19523       isa<LoadSDNode>(St->getValue()) &&
19524       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
19525       St->getChain().hasOneUse() && !St->isVolatile()) {
19526     SDNode* LdVal = St->getValue().getNode();
19527     LoadSDNode *Ld = nullptr;
19528     int TokenFactorIndex = -1;
19529     SmallVector<SDValue, 8> Ops;
19530     SDNode* ChainVal = St->getChain().getNode();
19531     // Must be a store of a load.  We currently handle two cases:  the load
19532     // is a direct child, and it's under an intervening TokenFactor.  It is
19533     // possible to dig deeper under nested TokenFactors.
19534     if (ChainVal == LdVal)
19535       Ld = cast<LoadSDNode>(St->getChain());
19536     else if (St->getValue().hasOneUse() &&
19537              ChainVal->getOpcode() == ISD::TokenFactor) {
19538       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
19539         if (ChainVal->getOperand(i).getNode() == LdVal) {
19540           TokenFactorIndex = i;
19541           Ld = cast<LoadSDNode>(St->getValue());
19542         } else
19543           Ops.push_back(ChainVal->getOperand(i));
19544       }
19545     }
19546
19547     if (!Ld || !ISD::isNormalLoad(Ld))
19548       return SDValue();
19549
19550     // If this is not the MMX case, i.e. we are just turning i64 load/store
19551     // into f64 load/store, avoid the transformation if there are multiple
19552     // uses of the loaded value.
19553     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
19554       return SDValue();
19555
19556     SDLoc LdDL(Ld);
19557     SDLoc StDL(N);
19558     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
19559     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
19560     // pair instead.
19561     if (Subtarget->is64Bit() || F64IsLegal) {
19562       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
19563       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
19564                                   Ld->getPointerInfo(), Ld->isVolatile(),
19565                                   Ld->isNonTemporal(), Ld->isInvariant(),
19566                                   Ld->getAlignment());
19567       SDValue NewChain = NewLd.getValue(1);
19568       if (TokenFactorIndex != -1) {
19569         Ops.push_back(NewChain);
19570         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
19571       }
19572       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
19573                           St->getPointerInfo(),
19574                           St->isVolatile(), St->isNonTemporal(),
19575                           St->getAlignment());
19576     }
19577
19578     // Otherwise, lower to two pairs of 32-bit loads / stores.
19579     SDValue LoAddr = Ld->getBasePtr();
19580     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
19581                                  DAG.getConstant(4, MVT::i32));
19582
19583     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
19584                                Ld->getPointerInfo(),
19585                                Ld->isVolatile(), Ld->isNonTemporal(),
19586                                Ld->isInvariant(), Ld->getAlignment());
19587     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
19588                                Ld->getPointerInfo().getWithOffset(4),
19589                                Ld->isVolatile(), Ld->isNonTemporal(),
19590                                Ld->isInvariant(),
19591                                MinAlign(Ld->getAlignment(), 4));
19592
19593     SDValue NewChain = LoLd.getValue(1);
19594     if (TokenFactorIndex != -1) {
19595       Ops.push_back(LoLd);
19596       Ops.push_back(HiLd);
19597       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
19598     }
19599
19600     LoAddr = St->getBasePtr();
19601     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
19602                          DAG.getConstant(4, MVT::i32));
19603
19604     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
19605                                 St->getPointerInfo(),
19606                                 St->isVolatile(), St->isNonTemporal(),
19607                                 St->getAlignment());
19608     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
19609                                 St->getPointerInfo().getWithOffset(4),
19610                                 St->isVolatile(),
19611                                 St->isNonTemporal(),
19612                                 MinAlign(St->getAlignment(), 4));
19613     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
19614   }
19615   return SDValue();
19616 }
19617
19618 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
19619 /// and return the operands for the horizontal operation in LHS and RHS.  A
19620 /// horizontal operation performs the binary operation on successive elements
19621 /// of its first operand, then on successive elements of its second operand,
19622 /// returning the resulting values in a vector.  For example, if
19623 ///   A = < float a0, float a1, float a2, float a3 >
19624 /// and
19625 ///   B = < float b0, float b1, float b2, float b3 >
19626 /// then the result of doing a horizontal operation on A and B is
19627 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
19628 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
19629 /// A horizontal-op B, for some already available A and B, and if so then LHS is
19630 /// set to A, RHS to B, and the routine returns 'true'.
19631 /// Note that the binary operation should have the property that if one of the
19632 /// operands is UNDEF then the result is UNDEF.
19633 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
19634   // Look for the following pattern: if
19635   //   A = < float a0, float a1, float a2, float a3 >
19636   //   B = < float b0, float b1, float b2, float b3 >
19637   // and
19638   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
19639   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
19640   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
19641   // which is A horizontal-op B.
19642
19643   // At least one of the operands should be a vector shuffle.
19644   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
19645       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
19646     return false;
19647
19648   MVT VT = LHS.getSimpleValueType();
19649
19650   assert((VT.is128BitVector() || VT.is256BitVector()) &&
19651          "Unsupported vector type for horizontal add/sub");
19652
19653   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
19654   // operate independently on 128-bit lanes.
19655   unsigned NumElts = VT.getVectorNumElements();
19656   unsigned NumLanes = VT.getSizeInBits()/128;
19657   unsigned NumLaneElts = NumElts / NumLanes;
19658   assert((NumLaneElts % 2 == 0) &&
19659          "Vector type should have an even number of elements in each lane");
19660   unsigned HalfLaneElts = NumLaneElts/2;
19661
19662   // View LHS in the form
19663   //   LHS = VECTOR_SHUFFLE A, B, LMask
19664   // If LHS is not a shuffle then pretend it is the shuffle
19665   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
19666   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
19667   // type VT.
19668   SDValue A, B;
19669   SmallVector<int, 16> LMask(NumElts);
19670   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
19671     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
19672       A = LHS.getOperand(0);
19673     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
19674       B = LHS.getOperand(1);
19675     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
19676     std::copy(Mask.begin(), Mask.end(), LMask.begin());
19677   } else {
19678     if (LHS.getOpcode() != ISD::UNDEF)
19679       A = LHS;
19680     for (unsigned i = 0; i != NumElts; ++i)
19681       LMask[i] = i;
19682   }
19683
19684   // Likewise, view RHS in the form
19685   //   RHS = VECTOR_SHUFFLE C, D, RMask
19686   SDValue C, D;
19687   SmallVector<int, 16> RMask(NumElts);
19688   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
19689     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
19690       C = RHS.getOperand(0);
19691     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
19692       D = RHS.getOperand(1);
19693     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
19694     std::copy(Mask.begin(), Mask.end(), RMask.begin());
19695   } else {
19696     if (RHS.getOpcode() != ISD::UNDEF)
19697       C = RHS;
19698     for (unsigned i = 0; i != NumElts; ++i)
19699       RMask[i] = i;
19700   }
19701
19702   // Check that the shuffles are both shuffling the same vectors.
19703   if (!(A == C && B == D) && !(A == D && B == C))
19704     return false;
19705
19706   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
19707   if (!A.getNode() && !B.getNode())
19708     return false;
19709
19710   // If A and B occur in reverse order in RHS, then "swap" them (which means
19711   // rewriting the mask).
19712   if (A != C)
19713     CommuteVectorShuffleMask(RMask, NumElts);
19714
19715   // At this point LHS and RHS are equivalent to
19716   //   LHS = VECTOR_SHUFFLE A, B, LMask
19717   //   RHS = VECTOR_SHUFFLE A, B, RMask
19718   // Check that the masks correspond to performing a horizontal operation.
19719   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
19720     for (unsigned i = 0; i != NumLaneElts; ++i) {
19721       int LIdx = LMask[i+l], RIdx = RMask[i+l];
19722
19723       // Ignore any UNDEF components.
19724       if (LIdx < 0 || RIdx < 0 ||
19725           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
19726           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
19727         continue;
19728
19729       // Check that successive elements are being operated on.  If not, this is
19730       // not a horizontal operation.
19731       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
19732       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
19733       if (!(LIdx == Index && RIdx == Index + 1) &&
19734           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
19735         return false;
19736     }
19737   }
19738
19739   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
19740   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
19741   return true;
19742 }
19743
19744 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
19745 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
19746                                   const X86Subtarget *Subtarget) {
19747   EVT VT = N->getValueType(0);
19748   SDValue LHS = N->getOperand(0);
19749   SDValue RHS = N->getOperand(1);
19750
19751   // Try to synthesize horizontal adds from adds of shuffles.
19752   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
19753        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
19754       isHorizontalBinOp(LHS, RHS, true))
19755     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
19756   return SDValue();
19757 }
19758
19759 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
19760 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
19761                                   const X86Subtarget *Subtarget) {
19762   EVT VT = N->getValueType(0);
19763   SDValue LHS = N->getOperand(0);
19764   SDValue RHS = N->getOperand(1);
19765
19766   // Try to synthesize horizontal subs from subs of shuffles.
19767   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
19768        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
19769       isHorizontalBinOp(LHS, RHS, false))
19770     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
19771   return SDValue();
19772 }
19773
19774 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
19775 /// X86ISD::FXOR nodes.
19776 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
19777   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
19778   // F[X]OR(0.0, x) -> x
19779   // F[X]OR(x, 0.0) -> x
19780   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19781     if (C->getValueAPF().isPosZero())
19782       return N->getOperand(1);
19783   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19784     if (C->getValueAPF().isPosZero())
19785       return N->getOperand(0);
19786   return SDValue();
19787 }
19788
19789 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
19790 /// X86ISD::FMAX nodes.
19791 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
19792   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
19793
19794   // Only perform optimizations if UnsafeMath is used.
19795   if (!DAG.getTarget().Options.UnsafeFPMath)
19796     return SDValue();
19797
19798   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
19799   // into FMINC and FMAXC, which are Commutative operations.
19800   unsigned NewOp = 0;
19801   switch (N->getOpcode()) {
19802     default: llvm_unreachable("unknown opcode");
19803     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
19804     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
19805   }
19806
19807   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
19808                      N->getOperand(0), N->getOperand(1));
19809 }
19810
19811 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
19812 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
19813   // FAND(0.0, x) -> 0.0
19814   // FAND(x, 0.0) -> 0.0
19815   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19816     if (C->getValueAPF().isPosZero())
19817       return N->getOperand(0);
19818   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19819     if (C->getValueAPF().isPosZero())
19820       return N->getOperand(1);
19821   return SDValue();
19822 }
19823
19824 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
19825 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
19826   // FANDN(x, 0.0) -> 0.0
19827   // FANDN(0.0, x) -> x
19828   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19829     if (C->getValueAPF().isPosZero())
19830       return N->getOperand(1);
19831   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19832     if (C->getValueAPF().isPosZero())
19833       return N->getOperand(1);
19834   return SDValue();
19835 }
19836
19837 static SDValue PerformBTCombine(SDNode *N,
19838                                 SelectionDAG &DAG,
19839                                 TargetLowering::DAGCombinerInfo &DCI) {
19840   // BT ignores high bits in the bit index operand.
19841   SDValue Op1 = N->getOperand(1);
19842   if (Op1.hasOneUse()) {
19843     unsigned BitWidth = Op1.getValueSizeInBits();
19844     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
19845     APInt KnownZero, KnownOne;
19846     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
19847                                           !DCI.isBeforeLegalizeOps());
19848     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19849     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
19850         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
19851       DCI.CommitTargetLoweringOpt(TLO);
19852   }
19853   return SDValue();
19854 }
19855
19856 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
19857   SDValue Op = N->getOperand(0);
19858   if (Op.getOpcode() == ISD::BITCAST)
19859     Op = Op.getOperand(0);
19860   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
19861   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
19862       VT.getVectorElementType().getSizeInBits() ==
19863       OpVT.getVectorElementType().getSizeInBits()) {
19864     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
19865   }
19866   return SDValue();
19867 }
19868
19869 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
19870                                                const X86Subtarget *Subtarget) {
19871   EVT VT = N->getValueType(0);
19872   if (!VT.isVector())
19873     return SDValue();
19874
19875   SDValue N0 = N->getOperand(0);
19876   SDValue N1 = N->getOperand(1);
19877   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
19878   SDLoc dl(N);
19879
19880   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
19881   // both SSE and AVX2 since there is no sign-extended shift right
19882   // operation on a vector with 64-bit elements.
19883   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
19884   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
19885   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
19886       N0.getOpcode() == ISD::SIGN_EXTEND)) {
19887     SDValue N00 = N0.getOperand(0);
19888
19889     // EXTLOAD has a better solution on AVX2,
19890     // it may be replaced with X86ISD::VSEXT node.
19891     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
19892       if (!ISD::isNormalLoad(N00.getNode()))
19893         return SDValue();
19894
19895     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
19896         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
19897                                   N00, N1);
19898       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
19899     }
19900   }
19901   return SDValue();
19902 }
19903
19904 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
19905                                   TargetLowering::DAGCombinerInfo &DCI,
19906                                   const X86Subtarget *Subtarget) {
19907   if (!DCI.isBeforeLegalizeOps())
19908     return SDValue();
19909
19910   if (!Subtarget->hasFp256())
19911     return SDValue();
19912
19913   EVT VT = N->getValueType(0);
19914   if (VT.isVector() && VT.getSizeInBits() == 256) {
19915     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19916     if (R.getNode())
19917       return R;
19918   }
19919
19920   return SDValue();
19921 }
19922
19923 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
19924                                  const X86Subtarget* Subtarget) {
19925   SDLoc dl(N);
19926   EVT VT = N->getValueType(0);
19927
19928   // Let legalize expand this if it isn't a legal type yet.
19929   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
19930     return SDValue();
19931
19932   EVT ScalarVT = VT.getScalarType();
19933   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
19934       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
19935     return SDValue();
19936
19937   SDValue A = N->getOperand(0);
19938   SDValue B = N->getOperand(1);
19939   SDValue C = N->getOperand(2);
19940
19941   bool NegA = (A.getOpcode() == ISD::FNEG);
19942   bool NegB = (B.getOpcode() == ISD::FNEG);
19943   bool NegC = (C.getOpcode() == ISD::FNEG);
19944
19945   // Negative multiplication when NegA xor NegB
19946   bool NegMul = (NegA != NegB);
19947   if (NegA)
19948     A = A.getOperand(0);
19949   if (NegB)
19950     B = B.getOperand(0);
19951   if (NegC)
19952     C = C.getOperand(0);
19953
19954   unsigned Opcode;
19955   if (!NegMul)
19956     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
19957   else
19958     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
19959
19960   return DAG.getNode(Opcode, dl, VT, A, B, C);
19961 }
19962
19963 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
19964                                   TargetLowering::DAGCombinerInfo &DCI,
19965                                   const X86Subtarget *Subtarget) {
19966   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
19967   //           (and (i32 x86isd::setcc_carry), 1)
19968   // This eliminates the zext. This transformation is necessary because
19969   // ISD::SETCC is always legalized to i8.
19970   SDLoc dl(N);
19971   SDValue N0 = N->getOperand(0);
19972   EVT VT = N->getValueType(0);
19973
19974   if (N0.getOpcode() == ISD::AND &&
19975       N0.hasOneUse() &&
19976       N0.getOperand(0).hasOneUse()) {
19977     SDValue N00 = N0.getOperand(0);
19978     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19979       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
19980       if (!C || C->getZExtValue() != 1)
19981         return SDValue();
19982       return DAG.getNode(ISD::AND, dl, VT,
19983                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19984                                      N00.getOperand(0), N00.getOperand(1)),
19985                          DAG.getConstant(1, VT));
19986     }
19987   }
19988
19989   if (N0.getOpcode() == ISD::TRUNCATE &&
19990       N0.hasOneUse() &&
19991       N0.getOperand(0).hasOneUse()) {
19992     SDValue N00 = N0.getOperand(0);
19993     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19994       return DAG.getNode(ISD::AND, dl, VT,
19995                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19996                                      N00.getOperand(0), N00.getOperand(1)),
19997                          DAG.getConstant(1, VT));
19998     }
19999   }
20000   if (VT.is256BitVector()) {
20001     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
20002     if (R.getNode())
20003       return R;
20004   }
20005
20006   return SDValue();
20007 }
20008
20009 // Optimize x == -y --> x+y == 0
20010 //          x != -y --> x+y != 0
20011 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
20012                                       const X86Subtarget* Subtarget) {
20013   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
20014   SDValue LHS = N->getOperand(0);
20015   SDValue RHS = N->getOperand(1);
20016   EVT VT = N->getValueType(0);
20017   SDLoc DL(N);
20018
20019   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
20020     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
20021       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
20022         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
20023                                    LHS.getValueType(), RHS, LHS.getOperand(1));
20024         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
20025                             addV, DAG.getConstant(0, addV.getValueType()), CC);
20026       }
20027   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
20028     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
20029       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
20030         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
20031                                    RHS.getValueType(), LHS, RHS.getOperand(1));
20032         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
20033                             addV, DAG.getConstant(0, addV.getValueType()), CC);
20034       }
20035
20036   if (VT.getScalarType() == MVT::i1) {
20037     bool IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
20038       (LHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
20039     bool IsVZero0 = ISD::isBuildVectorAllZeros(LHS.getNode());
20040     if (!IsSEXT0 && !IsVZero0)
20041       return SDValue();
20042     bool IsSEXT1 = (RHS.getOpcode() == ISD::SIGN_EXTEND) &&
20043       (RHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
20044     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
20045
20046     if (!IsSEXT1 && !IsVZero1)
20047       return SDValue();
20048
20049     if (IsSEXT0 && IsVZero1) {
20050       assert(VT == LHS.getOperand(0).getValueType() && "Uexpected operand type");
20051       if (CC == ISD::SETEQ)
20052         return DAG.getNOT(DL, LHS.getOperand(0), VT);
20053       return LHS.getOperand(0);
20054     }
20055     if (IsSEXT1 && IsVZero0) {
20056       assert(VT == RHS.getOperand(0).getValueType() && "Uexpected operand type");
20057       if (CC == ISD::SETEQ)
20058         return DAG.getNOT(DL, RHS.getOperand(0), VT);
20059       return RHS.getOperand(0);
20060     }
20061   }
20062
20063   return SDValue();
20064 }
20065
20066 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
20067 // as "sbb reg,reg", since it can be extended without zext and produces
20068 // an all-ones bit which is more useful than 0/1 in some cases.
20069 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
20070                                MVT VT) {
20071   if (VT == MVT::i8)
20072     return DAG.getNode(ISD::AND, DL, VT,
20073                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
20074                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
20075                        DAG.getConstant(1, VT));
20076   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
20077   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
20078                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
20079                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
20080 }
20081
20082 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
20083 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
20084                                    TargetLowering::DAGCombinerInfo &DCI,
20085                                    const X86Subtarget *Subtarget) {
20086   SDLoc DL(N);
20087   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
20088   SDValue EFLAGS = N->getOperand(1);
20089
20090   if (CC == X86::COND_A) {
20091     // Try to convert COND_A into COND_B in an attempt to facilitate
20092     // materializing "setb reg".
20093     //
20094     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
20095     // cannot take an immediate as its first operand.
20096     //
20097     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
20098         EFLAGS.getValueType().isInteger() &&
20099         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
20100       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
20101                                    EFLAGS.getNode()->getVTList(),
20102                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
20103       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
20104       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
20105     }
20106   }
20107
20108   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
20109   // a zext and produces an all-ones bit which is more useful than 0/1 in some
20110   // cases.
20111   if (CC == X86::COND_B)
20112     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
20113
20114   SDValue Flags;
20115
20116   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
20117   if (Flags.getNode()) {
20118     SDValue Cond = DAG.getConstant(CC, MVT::i8);
20119     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
20120   }
20121
20122   return SDValue();
20123 }
20124
20125 // Optimize branch condition evaluation.
20126 //
20127 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
20128                                     TargetLowering::DAGCombinerInfo &DCI,
20129                                     const X86Subtarget *Subtarget) {
20130   SDLoc DL(N);
20131   SDValue Chain = N->getOperand(0);
20132   SDValue Dest = N->getOperand(1);
20133   SDValue EFLAGS = N->getOperand(3);
20134   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
20135
20136   SDValue Flags;
20137
20138   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
20139   if (Flags.getNode()) {
20140     SDValue Cond = DAG.getConstant(CC, MVT::i8);
20141     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
20142                        Flags);
20143   }
20144
20145   return SDValue();
20146 }
20147
20148 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
20149                                         const X86TargetLowering *XTLI) {
20150   SDValue Op0 = N->getOperand(0);
20151   EVT InVT = Op0->getValueType(0);
20152
20153   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
20154   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
20155     SDLoc dl(N);
20156     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
20157     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
20158     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
20159   }
20160
20161   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
20162   // a 32-bit target where SSE doesn't support i64->FP operations.
20163   if (Op0.getOpcode() == ISD::LOAD) {
20164     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
20165     EVT VT = Ld->getValueType(0);
20166     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
20167         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
20168         !XTLI->getSubtarget()->is64Bit() &&
20169         VT == MVT::i64) {
20170       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
20171                                           Ld->getChain(), Op0, DAG);
20172       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
20173       return FILDChain;
20174     }
20175   }
20176   return SDValue();
20177 }
20178
20179 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
20180 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
20181                                  X86TargetLowering::DAGCombinerInfo &DCI) {
20182   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
20183   // the result is either zero or one (depending on the input carry bit).
20184   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
20185   if (X86::isZeroNode(N->getOperand(0)) &&
20186       X86::isZeroNode(N->getOperand(1)) &&
20187       // We don't have a good way to replace an EFLAGS use, so only do this when
20188       // dead right now.
20189       SDValue(N, 1).use_empty()) {
20190     SDLoc DL(N);
20191     EVT VT = N->getValueType(0);
20192     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
20193     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
20194                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
20195                                            DAG.getConstant(X86::COND_B,MVT::i8),
20196                                            N->getOperand(2)),
20197                                DAG.getConstant(1, VT));
20198     return DCI.CombineTo(N, Res1, CarryOut);
20199   }
20200
20201   return SDValue();
20202 }
20203
20204 // fold (add Y, (sete  X, 0)) -> adc  0, Y
20205 //      (add Y, (setne X, 0)) -> sbb -1, Y
20206 //      (sub (sete  X, 0), Y) -> sbb  0, Y
20207 //      (sub (setne X, 0), Y) -> adc -1, Y
20208 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
20209   SDLoc DL(N);
20210
20211   // Look through ZExts.
20212   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
20213   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
20214     return SDValue();
20215
20216   SDValue SetCC = Ext.getOperand(0);
20217   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
20218     return SDValue();
20219
20220   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
20221   if (CC != X86::COND_E && CC != X86::COND_NE)
20222     return SDValue();
20223
20224   SDValue Cmp = SetCC.getOperand(1);
20225   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
20226       !X86::isZeroNode(Cmp.getOperand(1)) ||
20227       !Cmp.getOperand(0).getValueType().isInteger())
20228     return SDValue();
20229
20230   SDValue CmpOp0 = Cmp.getOperand(0);
20231   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
20232                                DAG.getConstant(1, CmpOp0.getValueType()));
20233
20234   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
20235   if (CC == X86::COND_NE)
20236     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
20237                        DL, OtherVal.getValueType(), OtherVal,
20238                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
20239   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
20240                      DL, OtherVal.getValueType(), OtherVal,
20241                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
20242 }
20243
20244 /// PerformADDCombine - Do target-specific dag combines on integer adds.
20245 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
20246                                  const X86Subtarget *Subtarget) {
20247   EVT VT = N->getValueType(0);
20248   SDValue Op0 = N->getOperand(0);
20249   SDValue Op1 = N->getOperand(1);
20250
20251   // Try to synthesize horizontal adds from adds of shuffles.
20252   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
20253        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
20254       isHorizontalBinOp(Op0, Op1, true))
20255     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
20256
20257   return OptimizeConditionalInDecrement(N, DAG);
20258 }
20259
20260 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
20261                                  const X86Subtarget *Subtarget) {
20262   SDValue Op0 = N->getOperand(0);
20263   SDValue Op1 = N->getOperand(1);
20264
20265   // X86 can't encode an immediate LHS of a sub. See if we can push the
20266   // negation into a preceding instruction.
20267   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
20268     // If the RHS of the sub is a XOR with one use and a constant, invert the
20269     // immediate. Then add one to the LHS of the sub so we can turn
20270     // X-Y -> X+~Y+1, saving one register.
20271     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
20272         isa<ConstantSDNode>(Op1.getOperand(1))) {
20273       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
20274       EVT VT = Op0.getValueType();
20275       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
20276                                    Op1.getOperand(0),
20277                                    DAG.getConstant(~XorC, VT));
20278       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
20279                          DAG.getConstant(C->getAPIntValue()+1, VT));
20280     }
20281   }
20282
20283   // Try to synthesize horizontal adds from adds of shuffles.
20284   EVT VT = N->getValueType(0);
20285   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
20286        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
20287       isHorizontalBinOp(Op0, Op1, true))
20288     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
20289
20290   return OptimizeConditionalInDecrement(N, DAG);
20291 }
20292
20293 /// performVZEXTCombine - Performs build vector combines
20294 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
20295                                         TargetLowering::DAGCombinerInfo &DCI,
20296                                         const X86Subtarget *Subtarget) {
20297   // (vzext (bitcast (vzext (x)) -> (vzext x)
20298   SDValue In = N->getOperand(0);
20299   while (In.getOpcode() == ISD::BITCAST)
20300     In = In.getOperand(0);
20301
20302   if (In.getOpcode() != X86ISD::VZEXT)
20303     return SDValue();
20304
20305   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
20306                      In.getOperand(0));
20307 }
20308
20309 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
20310                                              DAGCombinerInfo &DCI) const {
20311   SelectionDAG &DAG = DCI.DAG;
20312   switch (N->getOpcode()) {
20313   default: break;
20314   case ISD::EXTRACT_VECTOR_ELT:
20315     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
20316   case ISD::VSELECT:
20317   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
20318   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
20319   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
20320   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
20321   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
20322   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
20323   case ISD::SHL:
20324   case ISD::SRA:
20325   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
20326   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
20327   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
20328   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
20329   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
20330   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
20331   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
20332   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
20333   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
20334   case X86ISD::FXOR:
20335   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
20336   case X86ISD::FMIN:
20337   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
20338   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
20339   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
20340   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
20341   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
20342   case ISD::ANY_EXTEND:
20343   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
20344   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
20345   case ISD::SIGN_EXTEND_INREG:
20346     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
20347   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
20348   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
20349   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
20350   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
20351   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
20352   case X86ISD::SHUFP:       // Handle all target specific shuffles
20353   case X86ISD::PALIGNR:
20354   case X86ISD::UNPCKH:
20355   case X86ISD::UNPCKL:
20356   case X86ISD::MOVHLPS:
20357   case X86ISD::MOVLHPS:
20358   case X86ISD::PSHUFD:
20359   case X86ISD::PSHUFHW:
20360   case X86ISD::PSHUFLW:
20361   case X86ISD::MOVSS:
20362   case X86ISD::MOVSD:
20363   case X86ISD::VPERMILP:
20364   case X86ISD::VPERM2X128:
20365   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
20366   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
20367   case ISD::INTRINSIC_WO_CHAIN: return PerformINTRINSIC_WO_CHAINCombine(N, DAG);
20368   }
20369
20370   return SDValue();
20371 }
20372
20373 /// isTypeDesirableForOp - Return true if the target has native support for
20374 /// the specified value type and it is 'desirable' to use the type for the
20375 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
20376 /// instruction encodings are longer and some i16 instructions are slow.
20377 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
20378   if (!isTypeLegal(VT))
20379     return false;
20380   if (VT != MVT::i16)
20381     return true;
20382
20383   switch (Opc) {
20384   default:
20385     return true;
20386   case ISD::LOAD:
20387   case ISD::SIGN_EXTEND:
20388   case ISD::ZERO_EXTEND:
20389   case ISD::ANY_EXTEND:
20390   case ISD::SHL:
20391   case ISD::SRL:
20392   case ISD::SUB:
20393   case ISD::ADD:
20394   case ISD::MUL:
20395   case ISD::AND:
20396   case ISD::OR:
20397   case ISD::XOR:
20398     return false;
20399   }
20400 }
20401
20402 /// IsDesirableToPromoteOp - This method query the target whether it is
20403 /// beneficial for dag combiner to promote the specified node. If true, it
20404 /// should return the desired promotion type by reference.
20405 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
20406   EVT VT = Op.getValueType();
20407   if (VT != MVT::i16)
20408     return false;
20409
20410   bool Promote = false;
20411   bool Commute = false;
20412   switch (Op.getOpcode()) {
20413   default: break;
20414   case ISD::LOAD: {
20415     LoadSDNode *LD = cast<LoadSDNode>(Op);
20416     // If the non-extending load has a single use and it's not live out, then it
20417     // might be folded.
20418     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
20419                                                      Op.hasOneUse()*/) {
20420       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
20421              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
20422         // The only case where we'd want to promote LOAD (rather then it being
20423         // promoted as an operand is when it's only use is liveout.
20424         if (UI->getOpcode() != ISD::CopyToReg)
20425           return false;
20426       }
20427     }
20428     Promote = true;
20429     break;
20430   }
20431   case ISD::SIGN_EXTEND:
20432   case ISD::ZERO_EXTEND:
20433   case ISD::ANY_EXTEND:
20434     Promote = true;
20435     break;
20436   case ISD::SHL:
20437   case ISD::SRL: {
20438     SDValue N0 = Op.getOperand(0);
20439     // Look out for (store (shl (load), x)).
20440     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
20441       return false;
20442     Promote = true;
20443     break;
20444   }
20445   case ISD::ADD:
20446   case ISD::MUL:
20447   case ISD::AND:
20448   case ISD::OR:
20449   case ISD::XOR:
20450     Commute = true;
20451     // fallthrough
20452   case ISD::SUB: {
20453     SDValue N0 = Op.getOperand(0);
20454     SDValue N1 = Op.getOperand(1);
20455     if (!Commute && MayFoldLoad(N1))
20456       return false;
20457     // Avoid disabling potential load folding opportunities.
20458     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
20459       return false;
20460     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
20461       return false;
20462     Promote = true;
20463   }
20464   }
20465
20466   PVT = MVT::i32;
20467   return Promote;
20468 }
20469
20470 //===----------------------------------------------------------------------===//
20471 //                           X86 Inline Assembly Support
20472 //===----------------------------------------------------------------------===//
20473
20474 namespace {
20475   // Helper to match a string separated by whitespace.
20476   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
20477     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
20478
20479     for (unsigned i = 0, e = args.size(); i != e; ++i) {
20480       StringRef piece(*args[i]);
20481       if (!s.startswith(piece)) // Check if the piece matches.
20482         return false;
20483
20484       s = s.substr(piece.size());
20485       StringRef::size_type pos = s.find_first_not_of(" \t");
20486       if (pos == 0) // We matched a prefix.
20487         return false;
20488
20489       s = s.substr(pos);
20490     }
20491
20492     return s.empty();
20493   }
20494   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
20495 }
20496
20497 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
20498
20499   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
20500     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
20501         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
20502         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
20503
20504       if (AsmPieces.size() == 3)
20505         return true;
20506       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
20507         return true;
20508     }
20509   }
20510   return false;
20511 }
20512
20513 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
20514   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
20515
20516   std::string AsmStr = IA->getAsmString();
20517
20518   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
20519   if (!Ty || Ty->getBitWidth() % 16 != 0)
20520     return false;
20521
20522   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
20523   SmallVector<StringRef, 4> AsmPieces;
20524   SplitString(AsmStr, AsmPieces, ";\n");
20525
20526   switch (AsmPieces.size()) {
20527   default: return false;
20528   case 1:
20529     // FIXME: this should verify that we are targeting a 486 or better.  If not,
20530     // we will turn this bswap into something that will be lowered to logical
20531     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
20532     // lower so don't worry about this.
20533     // bswap $0
20534     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
20535         matchAsm(AsmPieces[0], "bswapl", "$0") ||
20536         matchAsm(AsmPieces[0], "bswapq", "$0") ||
20537         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
20538         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
20539         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
20540       // No need to check constraints, nothing other than the equivalent of
20541       // "=r,0" would be valid here.
20542       return IntrinsicLowering::LowerToByteSwap(CI);
20543     }
20544
20545     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
20546     if (CI->getType()->isIntegerTy(16) &&
20547         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
20548         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
20549          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
20550       AsmPieces.clear();
20551       const std::string &ConstraintsStr = IA->getConstraintString();
20552       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
20553       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
20554       if (clobbersFlagRegisters(AsmPieces))
20555         return IntrinsicLowering::LowerToByteSwap(CI);
20556     }
20557     break;
20558   case 3:
20559     if (CI->getType()->isIntegerTy(32) &&
20560         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
20561         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
20562         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
20563         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
20564       AsmPieces.clear();
20565       const std::string &ConstraintsStr = IA->getConstraintString();
20566       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
20567       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
20568       if (clobbersFlagRegisters(AsmPieces))
20569         return IntrinsicLowering::LowerToByteSwap(CI);
20570     }
20571
20572     if (CI->getType()->isIntegerTy(64)) {
20573       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
20574       if (Constraints.size() >= 2 &&
20575           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
20576           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
20577         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
20578         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
20579             matchAsm(AsmPieces[1], "bswap", "%edx") &&
20580             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
20581           return IntrinsicLowering::LowerToByteSwap(CI);
20582       }
20583     }
20584     break;
20585   }
20586   return false;
20587 }
20588
20589 /// getConstraintType - Given a constraint letter, return the type of
20590 /// constraint it is for this target.
20591 X86TargetLowering::ConstraintType
20592 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
20593   if (Constraint.size() == 1) {
20594     switch (Constraint[0]) {
20595     case 'R':
20596     case 'q':
20597     case 'Q':
20598     case 'f':
20599     case 't':
20600     case 'u':
20601     case 'y':
20602     case 'x':
20603     case 'Y':
20604     case 'l':
20605       return C_RegisterClass;
20606     case 'a':
20607     case 'b':
20608     case 'c':
20609     case 'd':
20610     case 'S':
20611     case 'D':
20612     case 'A':
20613       return C_Register;
20614     case 'I':
20615     case 'J':
20616     case 'K':
20617     case 'L':
20618     case 'M':
20619     case 'N':
20620     case 'G':
20621     case 'C':
20622     case 'e':
20623     case 'Z':
20624       return C_Other;
20625     default:
20626       break;
20627     }
20628   }
20629   return TargetLowering::getConstraintType(Constraint);
20630 }
20631
20632 /// Examine constraint type and operand type and determine a weight value.
20633 /// This object must already have been set up with the operand type
20634 /// and the current alternative constraint selected.
20635 TargetLowering::ConstraintWeight
20636   X86TargetLowering::getSingleConstraintMatchWeight(
20637     AsmOperandInfo &info, const char *constraint) const {
20638   ConstraintWeight weight = CW_Invalid;
20639   Value *CallOperandVal = info.CallOperandVal;
20640     // If we don't have a value, we can't do a match,
20641     // but allow it at the lowest weight.
20642   if (!CallOperandVal)
20643     return CW_Default;
20644   Type *type = CallOperandVal->getType();
20645   // Look at the constraint type.
20646   switch (*constraint) {
20647   default:
20648     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
20649   case 'R':
20650   case 'q':
20651   case 'Q':
20652   case 'a':
20653   case 'b':
20654   case 'c':
20655   case 'd':
20656   case 'S':
20657   case 'D':
20658   case 'A':
20659     if (CallOperandVal->getType()->isIntegerTy())
20660       weight = CW_SpecificReg;
20661     break;
20662   case 'f':
20663   case 't':
20664   case 'u':
20665     if (type->isFloatingPointTy())
20666       weight = CW_SpecificReg;
20667     break;
20668   case 'y':
20669     if (type->isX86_MMXTy() && Subtarget->hasMMX())
20670       weight = CW_SpecificReg;
20671     break;
20672   case 'x':
20673   case 'Y':
20674     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
20675         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
20676       weight = CW_Register;
20677     break;
20678   case 'I':
20679     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
20680       if (C->getZExtValue() <= 31)
20681         weight = CW_Constant;
20682     }
20683     break;
20684   case 'J':
20685     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20686       if (C->getZExtValue() <= 63)
20687         weight = CW_Constant;
20688     }
20689     break;
20690   case 'K':
20691     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20692       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
20693         weight = CW_Constant;
20694     }
20695     break;
20696   case 'L':
20697     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20698       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
20699         weight = CW_Constant;
20700     }
20701     break;
20702   case 'M':
20703     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20704       if (C->getZExtValue() <= 3)
20705         weight = CW_Constant;
20706     }
20707     break;
20708   case 'N':
20709     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20710       if (C->getZExtValue() <= 0xff)
20711         weight = CW_Constant;
20712     }
20713     break;
20714   case 'G':
20715   case 'C':
20716     if (dyn_cast<ConstantFP>(CallOperandVal)) {
20717       weight = CW_Constant;
20718     }
20719     break;
20720   case 'e':
20721     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20722       if ((C->getSExtValue() >= -0x80000000LL) &&
20723           (C->getSExtValue() <= 0x7fffffffLL))
20724         weight = CW_Constant;
20725     }
20726     break;
20727   case 'Z':
20728     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20729       if (C->getZExtValue() <= 0xffffffff)
20730         weight = CW_Constant;
20731     }
20732     break;
20733   }
20734   return weight;
20735 }
20736
20737 /// LowerXConstraint - try to replace an X constraint, which matches anything,
20738 /// with another that has more specific requirements based on the type of the
20739 /// corresponding operand.
20740 const char *X86TargetLowering::
20741 LowerXConstraint(EVT ConstraintVT) const {
20742   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
20743   // 'f' like normal targets.
20744   if (ConstraintVT.isFloatingPoint()) {
20745     if (Subtarget->hasSSE2())
20746       return "Y";
20747     if (Subtarget->hasSSE1())
20748       return "x";
20749   }
20750
20751   return TargetLowering::LowerXConstraint(ConstraintVT);
20752 }
20753
20754 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
20755 /// vector.  If it is invalid, don't add anything to Ops.
20756 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
20757                                                      std::string &Constraint,
20758                                                      std::vector<SDValue>&Ops,
20759                                                      SelectionDAG &DAG) const {
20760   SDValue Result;
20761
20762   // Only support length 1 constraints for now.
20763   if (Constraint.length() > 1) return;
20764
20765   char ConstraintLetter = Constraint[0];
20766   switch (ConstraintLetter) {
20767   default: break;
20768   case 'I':
20769     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20770       if (C->getZExtValue() <= 31) {
20771         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20772         break;
20773       }
20774     }
20775     return;
20776   case 'J':
20777     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20778       if (C->getZExtValue() <= 63) {
20779         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20780         break;
20781       }
20782     }
20783     return;
20784   case 'K':
20785     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20786       if (isInt<8>(C->getSExtValue())) {
20787         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20788         break;
20789       }
20790     }
20791     return;
20792   case 'N':
20793     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20794       if (C->getZExtValue() <= 255) {
20795         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20796         break;
20797       }
20798     }
20799     return;
20800   case 'e': {
20801     // 32-bit signed value
20802     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20803       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
20804                                            C->getSExtValue())) {
20805         // Widen to 64 bits here to get it sign extended.
20806         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
20807         break;
20808       }
20809     // FIXME gcc accepts some relocatable values here too, but only in certain
20810     // memory models; it's complicated.
20811     }
20812     return;
20813   }
20814   case 'Z': {
20815     // 32-bit unsigned value
20816     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20817       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
20818                                            C->getZExtValue())) {
20819         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20820         break;
20821       }
20822     }
20823     // FIXME gcc accepts some relocatable values here too, but only in certain
20824     // memory models; it's complicated.
20825     return;
20826   }
20827   case 'i': {
20828     // Literal immediates are always ok.
20829     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
20830       // Widen to 64 bits here to get it sign extended.
20831       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
20832       break;
20833     }
20834
20835     // In any sort of PIC mode addresses need to be computed at runtime by
20836     // adding in a register or some sort of table lookup.  These can't
20837     // be used as immediates.
20838     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
20839       return;
20840
20841     // If we are in non-pic codegen mode, we allow the address of a global (with
20842     // an optional displacement) to be used with 'i'.
20843     GlobalAddressSDNode *GA = nullptr;
20844     int64_t Offset = 0;
20845
20846     // Match either (GA), (GA+C), (GA+C1+C2), etc.
20847     while (1) {
20848       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
20849         Offset += GA->getOffset();
20850         break;
20851       } else if (Op.getOpcode() == ISD::ADD) {
20852         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
20853           Offset += C->getZExtValue();
20854           Op = Op.getOperand(0);
20855           continue;
20856         }
20857       } else if (Op.getOpcode() == ISD::SUB) {
20858         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
20859           Offset += -C->getZExtValue();
20860           Op = Op.getOperand(0);
20861           continue;
20862         }
20863       }
20864
20865       // Otherwise, this isn't something we can handle, reject it.
20866       return;
20867     }
20868
20869     const GlobalValue *GV = GA->getGlobal();
20870     // If we require an extra load to get this address, as in PIC mode, we
20871     // can't accept it.
20872     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
20873                                                         getTargetMachine())))
20874       return;
20875
20876     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
20877                                         GA->getValueType(0), Offset);
20878     break;
20879   }
20880   }
20881
20882   if (Result.getNode()) {
20883     Ops.push_back(Result);
20884     return;
20885   }
20886   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
20887 }
20888
20889 std::pair<unsigned, const TargetRegisterClass*>
20890 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
20891                                                 MVT VT) const {
20892   // First, see if this is a constraint that directly corresponds to an LLVM
20893   // register class.
20894   if (Constraint.size() == 1) {
20895     // GCC Constraint Letters
20896     switch (Constraint[0]) {
20897     default: break;
20898       // TODO: Slight differences here in allocation order and leaving
20899       // RIP in the class. Do they matter any more here than they do
20900       // in the normal allocation?
20901     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
20902       if (Subtarget->is64Bit()) {
20903         if (VT == MVT::i32 || VT == MVT::f32)
20904           return std::make_pair(0U, &X86::GR32RegClass);
20905         if (VT == MVT::i16)
20906           return std::make_pair(0U, &X86::GR16RegClass);
20907         if (VT == MVT::i8 || VT == MVT::i1)
20908           return std::make_pair(0U, &X86::GR8RegClass);
20909         if (VT == MVT::i64 || VT == MVT::f64)
20910           return std::make_pair(0U, &X86::GR64RegClass);
20911         break;
20912       }
20913       // 32-bit fallthrough
20914     case 'Q':   // Q_REGS
20915       if (VT == MVT::i32 || VT == MVT::f32)
20916         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
20917       if (VT == MVT::i16)
20918         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
20919       if (VT == MVT::i8 || VT == MVT::i1)
20920         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
20921       if (VT == MVT::i64)
20922         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
20923       break;
20924     case 'r':   // GENERAL_REGS
20925     case 'l':   // INDEX_REGS
20926       if (VT == MVT::i8 || VT == MVT::i1)
20927         return std::make_pair(0U, &X86::GR8RegClass);
20928       if (VT == MVT::i16)
20929         return std::make_pair(0U, &X86::GR16RegClass);
20930       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
20931         return std::make_pair(0U, &X86::GR32RegClass);
20932       return std::make_pair(0U, &X86::GR64RegClass);
20933     case 'R':   // LEGACY_REGS
20934       if (VT == MVT::i8 || VT == MVT::i1)
20935         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
20936       if (VT == MVT::i16)
20937         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
20938       if (VT == MVT::i32 || !Subtarget->is64Bit())
20939         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
20940       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
20941     case 'f':  // FP Stack registers.
20942       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
20943       // value to the correct fpstack register class.
20944       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
20945         return std::make_pair(0U, &X86::RFP32RegClass);
20946       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
20947         return std::make_pair(0U, &X86::RFP64RegClass);
20948       return std::make_pair(0U, &X86::RFP80RegClass);
20949     case 'y':   // MMX_REGS if MMX allowed.
20950       if (!Subtarget->hasMMX()) break;
20951       return std::make_pair(0U, &X86::VR64RegClass);
20952     case 'Y':   // SSE_REGS if SSE2 allowed
20953       if (!Subtarget->hasSSE2()) break;
20954       // FALL THROUGH.
20955     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
20956       if (!Subtarget->hasSSE1()) break;
20957
20958       switch (VT.SimpleTy) {
20959       default: break;
20960       // Scalar SSE types.
20961       case MVT::f32:
20962       case MVT::i32:
20963         return std::make_pair(0U, &X86::FR32RegClass);
20964       case MVT::f64:
20965       case MVT::i64:
20966         return std::make_pair(0U, &X86::FR64RegClass);
20967       // Vector types.
20968       case MVT::v16i8:
20969       case MVT::v8i16:
20970       case MVT::v4i32:
20971       case MVT::v2i64:
20972       case MVT::v4f32:
20973       case MVT::v2f64:
20974         return std::make_pair(0U, &X86::VR128RegClass);
20975       // AVX types.
20976       case MVT::v32i8:
20977       case MVT::v16i16:
20978       case MVT::v8i32:
20979       case MVT::v4i64:
20980       case MVT::v8f32:
20981       case MVT::v4f64:
20982         return std::make_pair(0U, &X86::VR256RegClass);
20983       case MVT::v8f64:
20984       case MVT::v16f32:
20985       case MVT::v16i32:
20986       case MVT::v8i64:
20987         return std::make_pair(0U, &X86::VR512RegClass);
20988       }
20989       break;
20990     }
20991   }
20992
20993   // Use the default implementation in TargetLowering to convert the register
20994   // constraint into a member of a register class.
20995   std::pair<unsigned, const TargetRegisterClass*> Res;
20996   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
20997
20998   // Not found as a standard register?
20999   if (!Res.second) {
21000     // Map st(0) -> st(7) -> ST0
21001     if (Constraint.size() == 7 && Constraint[0] == '{' &&
21002         tolower(Constraint[1]) == 's' &&
21003         tolower(Constraint[2]) == 't' &&
21004         Constraint[3] == '(' &&
21005         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
21006         Constraint[5] == ')' &&
21007         Constraint[6] == '}') {
21008
21009       Res.first = X86::ST0+Constraint[4]-'0';
21010       Res.second = &X86::RFP80RegClass;
21011       return Res;
21012     }
21013
21014     // GCC allows "st(0)" to be called just plain "st".
21015     if (StringRef("{st}").equals_lower(Constraint)) {
21016       Res.first = X86::ST0;
21017       Res.second = &X86::RFP80RegClass;
21018       return Res;
21019     }
21020
21021     // flags -> EFLAGS
21022     if (StringRef("{flags}").equals_lower(Constraint)) {
21023       Res.first = X86::EFLAGS;
21024       Res.second = &X86::CCRRegClass;
21025       return Res;
21026     }
21027
21028     // 'A' means EAX + EDX.
21029     if (Constraint == "A") {
21030       Res.first = X86::EAX;
21031       Res.second = &X86::GR32_ADRegClass;
21032       return Res;
21033     }
21034     return Res;
21035   }
21036
21037   // Otherwise, check to see if this is a register class of the wrong value
21038   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
21039   // turn into {ax},{dx}.
21040   if (Res.second->hasType(VT))
21041     return Res;   // Correct type already, nothing to do.
21042
21043   // All of the single-register GCC register classes map their values onto
21044   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
21045   // really want an 8-bit or 32-bit register, map to the appropriate register
21046   // class and return the appropriate register.
21047   if (Res.second == &X86::GR16RegClass) {
21048     if (VT == MVT::i8 || VT == MVT::i1) {
21049       unsigned DestReg = 0;
21050       switch (Res.first) {
21051       default: break;
21052       case X86::AX: DestReg = X86::AL; break;
21053       case X86::DX: DestReg = X86::DL; break;
21054       case X86::CX: DestReg = X86::CL; break;
21055       case X86::BX: DestReg = X86::BL; break;
21056       }
21057       if (DestReg) {
21058         Res.first = DestReg;
21059         Res.second = &X86::GR8RegClass;
21060       }
21061     } else if (VT == MVT::i32 || VT == MVT::f32) {
21062       unsigned DestReg = 0;
21063       switch (Res.first) {
21064       default: break;
21065       case X86::AX: DestReg = X86::EAX; break;
21066       case X86::DX: DestReg = X86::EDX; break;
21067       case X86::CX: DestReg = X86::ECX; break;
21068       case X86::BX: DestReg = X86::EBX; break;
21069       case X86::SI: DestReg = X86::ESI; break;
21070       case X86::DI: DestReg = X86::EDI; break;
21071       case X86::BP: DestReg = X86::EBP; break;
21072       case X86::SP: DestReg = X86::ESP; break;
21073       }
21074       if (DestReg) {
21075         Res.first = DestReg;
21076         Res.second = &X86::GR32RegClass;
21077       }
21078     } else if (VT == MVT::i64 || VT == MVT::f64) {
21079       unsigned DestReg = 0;
21080       switch (Res.first) {
21081       default: break;
21082       case X86::AX: DestReg = X86::RAX; break;
21083       case X86::DX: DestReg = X86::RDX; break;
21084       case X86::CX: DestReg = X86::RCX; break;
21085       case X86::BX: DestReg = X86::RBX; break;
21086       case X86::SI: DestReg = X86::RSI; break;
21087       case X86::DI: DestReg = X86::RDI; break;
21088       case X86::BP: DestReg = X86::RBP; break;
21089       case X86::SP: DestReg = X86::RSP; break;
21090       }
21091       if (DestReg) {
21092         Res.first = DestReg;
21093         Res.second = &X86::GR64RegClass;
21094       }
21095     }
21096   } else if (Res.second == &X86::FR32RegClass ||
21097              Res.second == &X86::FR64RegClass ||
21098              Res.second == &X86::VR128RegClass ||
21099              Res.second == &X86::VR256RegClass ||
21100              Res.second == &X86::FR32XRegClass ||
21101              Res.second == &X86::FR64XRegClass ||
21102              Res.second == &X86::VR128XRegClass ||
21103              Res.second == &X86::VR256XRegClass ||
21104              Res.second == &X86::VR512RegClass) {
21105     // Handle references to XMM physical registers that got mapped into the
21106     // wrong class.  This can happen with constraints like {xmm0} where the
21107     // target independent register mapper will just pick the first match it can
21108     // find, ignoring the required type.
21109
21110     if (VT == MVT::f32 || VT == MVT::i32)
21111       Res.second = &X86::FR32RegClass;
21112     else if (VT == MVT::f64 || VT == MVT::i64)
21113       Res.second = &X86::FR64RegClass;
21114     else if (X86::VR128RegClass.hasType(VT))
21115       Res.second = &X86::VR128RegClass;
21116     else if (X86::VR256RegClass.hasType(VT))
21117       Res.second = &X86::VR256RegClass;
21118     else if (X86::VR512RegClass.hasType(VT))
21119       Res.second = &X86::VR512RegClass;
21120   }
21121
21122   return Res;
21123 }
21124
21125 int X86TargetLowering::getScalingFactorCost(const AddrMode &AM,
21126                                             Type *Ty) const {
21127   // Scaling factors are not free at all.
21128   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
21129   // will take 2 allocations in the out of order engine instead of 1
21130   // for plain addressing mode, i.e. inst (reg1).
21131   // E.g.,
21132   // vaddps (%rsi,%drx), %ymm0, %ymm1
21133   // Requires two allocations (one for the load, one for the computation)
21134   // whereas:
21135   // vaddps (%rsi), %ymm0, %ymm1
21136   // Requires just 1 allocation, i.e., freeing allocations for other operations
21137   // and having less micro operations to execute.
21138   //
21139   // For some X86 architectures, this is even worse because for instance for
21140   // stores, the complex addressing mode forces the instruction to use the
21141   // "load" ports instead of the dedicated "store" port.
21142   // E.g., on Haswell:
21143   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
21144   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.   
21145   if (isLegalAddressingMode(AM, Ty))
21146     // Scale represents reg2 * scale, thus account for 1
21147     // as soon as we use a second register.
21148     return AM.Scale != 0;
21149   return -1;
21150 }