Separate the check for blend shuffle_vector masks
[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     setOperationAction(ISD::BITCAST,            MVT::v4i16, Custom);
1044     setOperationAction(ISD::BITCAST,            MVT::v8i8,  Custom);
1045   }
1046
1047   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1048     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1049     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1050     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1051     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1052     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1053     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1054     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1055     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1056     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1057     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1058
1059     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1060     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1061     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1062     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1063     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1064     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1065     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1066     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1067     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1068     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1069
1070     // FIXME: Do we need to handle scalar-to-vector here?
1071     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1072
1073     setOperationAction(ISD::VSELECT,            MVT::v2f64, Custom);
1074     setOperationAction(ISD::VSELECT,            MVT::v2i64, Custom);
1075     setOperationAction(ISD::VSELECT,            MVT::v4i32, Custom);
1076     setOperationAction(ISD::VSELECT,            MVT::v4f32, Custom);
1077     setOperationAction(ISD::VSELECT,            MVT::v8i16, Custom);
1078     // There is no BLENDI for byte vectors. We don't need to custom lower
1079     // some vselects for now.
1080     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1081
1082     // i8 and i16 vectors are custom , because the source register and source
1083     // source memory operand types are not the same width.  f32 vectors are
1084     // custom since the immediate controlling the insert encodes additional
1085     // information.
1086     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1087     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1088     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1089     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1090
1091     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1092     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1093     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1094     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1095
1096     // FIXME: these should be Legal but thats only for the case where
1097     // the index is constant.  For now custom expand to deal with that.
1098     if (Subtarget->is64Bit()) {
1099       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1100       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1101     }
1102   }
1103
1104   if (Subtarget->hasSSE2()) {
1105     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1106     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1107
1108     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1109     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1110
1111     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1112     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1113
1114     // In the customized shift lowering, the legal cases in AVX2 will be
1115     // recognized.
1116     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1117     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1118
1119     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1120     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1121
1122     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1123   }
1124
1125   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1126     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1127     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1128     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1129     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1130     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1131     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1132
1133     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1134     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1135     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1136
1137     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1138     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1139     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1140     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1141     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1142     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1143     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1144     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1145     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1146     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1147     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1148     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1149
1150     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1151     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1152     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1153     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1154     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1155     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1156     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1157     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1158     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1159     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1160     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1161     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1162
1163     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1164     // even though v8i16 is a legal type.
1165     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1166     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1167     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1168
1169     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1170     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1171     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1172
1173     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1174     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1175
1176     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1177
1178     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1179     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1180
1181     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1182     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1183
1184     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1185     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1186
1187     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1188     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1189     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1190     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1191
1192     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1193     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1194     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1195
1196     setOperationAction(ISD::VSELECT,           MVT::v4f64, Custom);
1197     setOperationAction(ISD::VSELECT,           MVT::v4i64, Custom);
1198     setOperationAction(ISD::VSELECT,           MVT::v8i32, Custom);
1199     setOperationAction(ISD::VSELECT,           MVT::v8f32, Custom);
1200
1201     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1202     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1203     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1204     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1205     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1206     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1207     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1208     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1209     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1210     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1211     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1212     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1213
1214     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1215       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1216       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1217       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1218       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1219       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1220       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1221     }
1222
1223     if (Subtarget->hasInt256()) {
1224       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1225       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1226       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1227       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1228
1229       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1230       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1231       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1232       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1233
1234       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1235       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1236       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1237       // Don't lower v32i8 because there is no 128-bit byte mul
1238
1239       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1240       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1241       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1242       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1243
1244       setOperationAction(ISD::VSELECT,         MVT::v16i16, Custom);
1245       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1246     } else {
1247       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1248       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1249       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1250       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1251
1252       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1253       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1254       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1255       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1256
1257       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1258       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1259       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1260       // Don't lower v32i8 because there is no 128-bit byte mul
1261     }
1262
1263     // In the customized shift lowering, the legal cases in AVX2 will be
1264     // recognized.
1265     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1266     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1267
1268     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1269     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1270
1271     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1272
1273     // Custom lower several nodes for 256-bit types.
1274     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1275              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1276       MVT VT = (MVT::SimpleValueType)i;
1277
1278       // Extract subvector is special because the value type
1279       // (result) is 128-bit but the source is 256-bit wide.
1280       if (VT.is128BitVector())
1281         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1282
1283       // Do not attempt to custom lower other non-256-bit vectors
1284       if (!VT.is256BitVector())
1285         continue;
1286
1287       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1288       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1289       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1290       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1291       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1292       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1293       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1294     }
1295
1296     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1297     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1298       MVT VT = (MVT::SimpleValueType)i;
1299
1300       // Do not attempt to promote non-256-bit vectors
1301       if (!VT.is256BitVector())
1302         continue;
1303
1304       setOperationAction(ISD::AND,    VT, Promote);
1305       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1306       setOperationAction(ISD::OR,     VT, Promote);
1307       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1308       setOperationAction(ISD::XOR,    VT, Promote);
1309       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1310       setOperationAction(ISD::LOAD,   VT, Promote);
1311       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1312       setOperationAction(ISD::SELECT, VT, Promote);
1313       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1314     }
1315   }
1316
1317   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1318     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1319     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1320     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1321     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1322
1323     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1324     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1325     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1326
1327     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1328     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1329     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1330     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1331     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1332     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1333     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1334     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1335     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1336     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1337     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1338
1339     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1340     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1341     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1342     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1343     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1344     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1345
1346     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1347     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1348     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1349     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1350     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1351     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1352     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1353     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1354
1355     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1356     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1357     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1358     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1359     if (Subtarget->is64Bit()) {
1360       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1361       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1362       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1363       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1364     }
1365     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1366     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1367     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1368     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1369     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1370     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1371     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1372     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1373     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1374     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1375
1376     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1377     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1378     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1379     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1380     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1381     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1382     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1383     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1384     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1385     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1386     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1387     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1388     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1389
1390     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1391     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1392     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1393     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1394     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1395     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1396
1397     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1398     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1399
1400     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1401
1402     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1403     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1404     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1405     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1406     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1407     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1408     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1409     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1410     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1411
1412     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1413     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1414
1415     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1416     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1417
1418     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1419
1420     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1421     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1422
1423     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1424     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1425
1426     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1427     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1428
1429     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1430     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1431     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1432     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1433     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1434     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1435
1436     // Custom lower several nodes.
1437     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1438              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1439       MVT VT = (MVT::SimpleValueType)i;
1440
1441       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1442       // Extract subvector is special because the value type
1443       // (result) is 256/128-bit but the source is 512-bit wide.
1444       if (VT.is128BitVector() || VT.is256BitVector())
1445         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1446
1447       if (VT.getVectorElementType() == MVT::i1)
1448         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1449
1450       // Do not attempt to custom lower other non-512-bit vectors
1451       if (!VT.is512BitVector())
1452         continue;
1453
1454       if ( EltSize >= 32) {
1455         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1456         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1457         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1458         setOperationAction(ISD::VSELECT,             VT, Legal);
1459         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1460         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1461         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1462       }
1463     }
1464     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1465       MVT VT = (MVT::SimpleValueType)i;
1466
1467       // Do not attempt to promote non-256-bit vectors
1468       if (!VT.is512BitVector())
1469         continue;
1470
1471       setOperationAction(ISD::SELECT, VT, Promote);
1472       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1473     }
1474   }// has  AVX-512
1475
1476   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1477   // of this type with custom code.
1478   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1479            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1480     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1481                        Custom);
1482   }
1483
1484   // We want to custom lower some of our intrinsics.
1485   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1486   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1487   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1488   if (!Subtarget->is64Bit())
1489     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1490
1491   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1492   // handle type legalization for these operations here.
1493   //
1494   // FIXME: We really should do custom legalization for addition and
1495   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1496   // than generic legalization for 64-bit multiplication-with-overflow, though.
1497   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1498     // Add/Sub/Mul with overflow operations are custom lowered.
1499     MVT VT = IntVTs[i];
1500     setOperationAction(ISD::SADDO, VT, Custom);
1501     setOperationAction(ISD::UADDO, VT, Custom);
1502     setOperationAction(ISD::SSUBO, VT, Custom);
1503     setOperationAction(ISD::USUBO, VT, Custom);
1504     setOperationAction(ISD::SMULO, VT, Custom);
1505     setOperationAction(ISD::UMULO, VT, Custom);
1506   }
1507
1508   // There are no 8-bit 3-address imul/mul instructions
1509   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1510   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1511
1512   if (!Subtarget->is64Bit()) {
1513     // These libcalls are not available in 32-bit.
1514     setLibcallName(RTLIB::SHL_I128, nullptr);
1515     setLibcallName(RTLIB::SRL_I128, nullptr);
1516     setLibcallName(RTLIB::SRA_I128, nullptr);
1517   }
1518
1519   // Combine sin / cos into one node or libcall if possible.
1520   if (Subtarget->hasSinCos()) {
1521     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1522     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1523     if (Subtarget->isTargetDarwin()) {
1524       // For MacOSX, we don't want to the normal expansion of a libcall to
1525       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1526       // traffic.
1527       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1528       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1529     }
1530   }
1531
1532   if (Subtarget->isTargetWin64()) {
1533     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1534     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1535     setOperationAction(ISD::SREM, MVT::i128, Custom);
1536     setOperationAction(ISD::UREM, MVT::i128, Custom);
1537     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1538     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1539   }
1540
1541   // We have target-specific dag combine patterns for the following nodes:
1542   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1543   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1544   setTargetDAGCombine(ISD::VSELECT);
1545   setTargetDAGCombine(ISD::SELECT);
1546   setTargetDAGCombine(ISD::SHL);
1547   setTargetDAGCombine(ISD::SRA);
1548   setTargetDAGCombine(ISD::SRL);
1549   setTargetDAGCombine(ISD::OR);
1550   setTargetDAGCombine(ISD::AND);
1551   setTargetDAGCombine(ISD::ADD);
1552   setTargetDAGCombine(ISD::FADD);
1553   setTargetDAGCombine(ISD::FSUB);
1554   setTargetDAGCombine(ISD::FMA);
1555   setTargetDAGCombine(ISD::SUB);
1556   setTargetDAGCombine(ISD::LOAD);
1557   setTargetDAGCombine(ISD::STORE);
1558   setTargetDAGCombine(ISD::ZERO_EXTEND);
1559   setTargetDAGCombine(ISD::ANY_EXTEND);
1560   setTargetDAGCombine(ISD::SIGN_EXTEND);
1561   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1562   setTargetDAGCombine(ISD::TRUNCATE);
1563   setTargetDAGCombine(ISD::SINT_TO_FP);
1564   setTargetDAGCombine(ISD::SETCC);
1565   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
1566   if (Subtarget->is64Bit())
1567     setTargetDAGCombine(ISD::MUL);
1568   setTargetDAGCombine(ISD::XOR);
1569
1570   computeRegisterProperties();
1571
1572   // On Darwin, -Os means optimize for size without hurting performance,
1573   // do not reduce the limit.
1574   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1575   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1576   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1577   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1578   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1579   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1580   setPrefLoopAlignment(4); // 2^4 bytes.
1581
1582   // Predictable cmov don't hurt on atom because it's in-order.
1583   PredictableSelectIsExpensive = !Subtarget->isAtom();
1584
1585   setPrefFunctionAlignment(4); // 2^4 bytes.
1586 }
1587
1588 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1589   if (!VT.isVector())
1590     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1591
1592   if (Subtarget->hasAVX512())
1593     switch(VT.getVectorNumElements()) {
1594     case  8: return MVT::v8i1;
1595     case 16: return MVT::v16i1;
1596   }
1597
1598   return VT.changeVectorElementTypeToInteger();
1599 }
1600
1601 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1602 /// the desired ByVal argument alignment.
1603 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1604   if (MaxAlign == 16)
1605     return;
1606   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1607     if (VTy->getBitWidth() == 128)
1608       MaxAlign = 16;
1609   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1610     unsigned EltAlign = 0;
1611     getMaxByValAlign(ATy->getElementType(), EltAlign);
1612     if (EltAlign > MaxAlign)
1613       MaxAlign = EltAlign;
1614   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1615     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1616       unsigned EltAlign = 0;
1617       getMaxByValAlign(STy->getElementType(i), EltAlign);
1618       if (EltAlign > MaxAlign)
1619         MaxAlign = EltAlign;
1620       if (MaxAlign == 16)
1621         break;
1622     }
1623   }
1624 }
1625
1626 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1627 /// function arguments in the caller parameter area. For X86, aggregates
1628 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1629 /// are at 4-byte boundaries.
1630 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1631   if (Subtarget->is64Bit()) {
1632     // Max of 8 and alignment of type.
1633     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1634     if (TyAlign > 8)
1635       return TyAlign;
1636     return 8;
1637   }
1638
1639   unsigned Align = 4;
1640   if (Subtarget->hasSSE1())
1641     getMaxByValAlign(Ty, Align);
1642   return Align;
1643 }
1644
1645 /// getOptimalMemOpType - Returns the target specific optimal type for load
1646 /// and store operations as a result of memset, memcpy, and memmove
1647 /// lowering. If DstAlign is zero that means it's safe to destination
1648 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1649 /// means there isn't a need to check it against alignment requirement,
1650 /// probably because the source does not need to be loaded. If 'IsMemset' is
1651 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1652 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1653 /// source is constant so it does not need to be loaded.
1654 /// It returns EVT::Other if the type should be determined using generic
1655 /// target-independent logic.
1656 EVT
1657 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1658                                        unsigned DstAlign, unsigned SrcAlign,
1659                                        bool IsMemset, bool ZeroMemset,
1660                                        bool MemcpyStrSrc,
1661                                        MachineFunction &MF) const {
1662   const Function *F = MF.getFunction();
1663   if ((!IsMemset || ZeroMemset) &&
1664       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1665                                        Attribute::NoImplicitFloat)) {
1666     if (Size >= 16 &&
1667         (Subtarget->isUnalignedMemAccessFast() ||
1668          ((DstAlign == 0 || DstAlign >= 16) &&
1669           (SrcAlign == 0 || SrcAlign >= 16)))) {
1670       if (Size >= 32) {
1671         if (Subtarget->hasInt256())
1672           return MVT::v8i32;
1673         if (Subtarget->hasFp256())
1674           return MVT::v8f32;
1675       }
1676       if (Subtarget->hasSSE2())
1677         return MVT::v4i32;
1678       if (Subtarget->hasSSE1())
1679         return MVT::v4f32;
1680     } else if (!MemcpyStrSrc && Size >= 8 &&
1681                !Subtarget->is64Bit() &&
1682                Subtarget->hasSSE2()) {
1683       // Do not use f64 to lower memcpy if source is string constant. It's
1684       // better to use i32 to avoid the loads.
1685       return MVT::f64;
1686     }
1687   }
1688   if (Subtarget->is64Bit() && Size >= 8)
1689     return MVT::i64;
1690   return MVT::i32;
1691 }
1692
1693 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1694   if (VT == MVT::f32)
1695     return X86ScalarSSEf32;
1696   else if (VT == MVT::f64)
1697     return X86ScalarSSEf64;
1698   return true;
1699 }
1700
1701 bool
1702 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
1703                                                  unsigned,
1704                                                  bool *Fast) const {
1705   if (Fast)
1706     *Fast = Subtarget->isUnalignedMemAccessFast();
1707   return true;
1708 }
1709
1710 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1711 /// current function.  The returned value is a member of the
1712 /// MachineJumpTableInfo::JTEntryKind enum.
1713 unsigned X86TargetLowering::getJumpTableEncoding() const {
1714   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1715   // symbol.
1716   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1717       Subtarget->isPICStyleGOT())
1718     return MachineJumpTableInfo::EK_Custom32;
1719
1720   // Otherwise, use the normal jump table encoding heuristics.
1721   return TargetLowering::getJumpTableEncoding();
1722 }
1723
1724 const MCExpr *
1725 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1726                                              const MachineBasicBlock *MBB,
1727                                              unsigned uid,MCContext &Ctx) const{
1728   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1729          Subtarget->isPICStyleGOT());
1730   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1731   // entries.
1732   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1733                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1734 }
1735
1736 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1737 /// jumptable.
1738 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1739                                                     SelectionDAG &DAG) const {
1740   if (!Subtarget->is64Bit())
1741     // This doesn't have SDLoc associated with it, but is not really the
1742     // same as a Register.
1743     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1744   return Table;
1745 }
1746
1747 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1748 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1749 /// MCExpr.
1750 const MCExpr *X86TargetLowering::
1751 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1752                              MCContext &Ctx) const {
1753   // X86-64 uses RIP relative addressing based on the jump table label.
1754   if (Subtarget->isPICStyleRIPRel())
1755     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1756
1757   // Otherwise, the reference is relative to the PIC base.
1758   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1759 }
1760
1761 // FIXME: Why this routine is here? Move to RegInfo!
1762 std::pair<const TargetRegisterClass*, uint8_t>
1763 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1764   const TargetRegisterClass *RRC = nullptr;
1765   uint8_t Cost = 1;
1766   switch (VT.SimpleTy) {
1767   default:
1768     return TargetLowering::findRepresentativeClass(VT);
1769   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1770     RRC = Subtarget->is64Bit() ?
1771       (const TargetRegisterClass*)&X86::GR64RegClass :
1772       (const TargetRegisterClass*)&X86::GR32RegClass;
1773     break;
1774   case MVT::x86mmx:
1775     RRC = &X86::VR64RegClass;
1776     break;
1777   case MVT::f32: case MVT::f64:
1778   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1779   case MVT::v4f32: case MVT::v2f64:
1780   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1781   case MVT::v4f64:
1782     RRC = &X86::VR128RegClass;
1783     break;
1784   }
1785   return std::make_pair(RRC, Cost);
1786 }
1787
1788 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1789                                                unsigned &Offset) const {
1790   if (!Subtarget->isTargetLinux())
1791     return false;
1792
1793   if (Subtarget->is64Bit()) {
1794     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1795     Offset = 0x28;
1796     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1797       AddressSpace = 256;
1798     else
1799       AddressSpace = 257;
1800   } else {
1801     // %gs:0x14 on i386
1802     Offset = 0x14;
1803     AddressSpace = 256;
1804   }
1805   return true;
1806 }
1807
1808 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1809                                             unsigned DestAS) const {
1810   assert(SrcAS != DestAS && "Expected different address spaces!");
1811
1812   return SrcAS < 256 && DestAS < 256;
1813 }
1814
1815 //===----------------------------------------------------------------------===//
1816 //               Return Value Calling Convention Implementation
1817 //===----------------------------------------------------------------------===//
1818
1819 #include "X86GenCallingConv.inc"
1820
1821 bool
1822 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1823                                   MachineFunction &MF, bool isVarArg,
1824                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1825                         LLVMContext &Context) const {
1826   SmallVector<CCValAssign, 16> RVLocs;
1827   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1828                  RVLocs, Context);
1829   return CCInfo.CheckReturn(Outs, RetCC_X86);
1830 }
1831
1832 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1833   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
1834   return ScratchRegs;
1835 }
1836
1837 SDValue
1838 X86TargetLowering::LowerReturn(SDValue Chain,
1839                                CallingConv::ID CallConv, bool isVarArg,
1840                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1841                                const SmallVectorImpl<SDValue> &OutVals,
1842                                SDLoc dl, SelectionDAG &DAG) const {
1843   MachineFunction &MF = DAG.getMachineFunction();
1844   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1845
1846   SmallVector<CCValAssign, 16> RVLocs;
1847   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1848                  RVLocs, *DAG.getContext());
1849   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1850
1851   SDValue Flag;
1852   SmallVector<SDValue, 6> RetOps;
1853   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1854   // Operand #1 = Bytes To Pop
1855   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1856                    MVT::i16));
1857
1858   // Copy the result values into the output registers.
1859   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1860     CCValAssign &VA = RVLocs[i];
1861     assert(VA.isRegLoc() && "Can only return in registers!");
1862     SDValue ValToCopy = OutVals[i];
1863     EVT ValVT = ValToCopy.getValueType();
1864
1865     // Promote values to the appropriate types
1866     if (VA.getLocInfo() == CCValAssign::SExt)
1867       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1868     else if (VA.getLocInfo() == CCValAssign::ZExt)
1869       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1870     else if (VA.getLocInfo() == CCValAssign::AExt)
1871       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1872     else if (VA.getLocInfo() == CCValAssign::BCvt)
1873       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1874
1875     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1876            "Unexpected FP-extend for return value.");  
1877
1878     // If this is x86-64, and we disabled SSE, we can't return FP values,
1879     // or SSE or MMX vectors.
1880     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1881          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1882           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1883       report_fatal_error("SSE register return with SSE disabled");
1884     }
1885     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1886     // llvm-gcc has never done it right and no one has noticed, so this
1887     // should be OK for now.
1888     if (ValVT == MVT::f64 &&
1889         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1890       report_fatal_error("SSE2 register return with SSE2 disabled");
1891
1892     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1893     // the RET instruction and handled by the FP Stackifier.
1894     if (VA.getLocReg() == X86::ST0 ||
1895         VA.getLocReg() == X86::ST1) {
1896       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1897       // change the value to the FP stack register class.
1898       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1899         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1900       RetOps.push_back(ValToCopy);
1901       // Don't emit a copytoreg.
1902       continue;
1903     }
1904
1905     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1906     // which is returned in RAX / RDX.
1907     if (Subtarget->is64Bit()) {
1908       if (ValVT == MVT::x86mmx) {
1909         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1910           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1911           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1912                                   ValToCopy);
1913           // If we don't have SSE2 available, convert to v4f32 so the generated
1914           // register is legal.
1915           if (!Subtarget->hasSSE2())
1916             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1917         }
1918       }
1919     }
1920
1921     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1922     Flag = Chain.getValue(1);
1923     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1924   }
1925
1926   // The x86-64 ABIs require that for returning structs by value we copy
1927   // the sret argument into %rax/%eax (depending on ABI) for the return.
1928   // Win32 requires us to put the sret argument to %eax as well.
1929   // We saved the argument into a virtual register in the entry block,
1930   // so now we copy the value out and into %rax/%eax.
1931   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1932       (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
1933     MachineFunction &MF = DAG.getMachineFunction();
1934     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1935     unsigned Reg = FuncInfo->getSRetReturnReg();
1936     assert(Reg &&
1937            "SRetReturnReg should have been set in LowerFormalArguments().");
1938     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1939
1940     unsigned RetValReg
1941         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1942           X86::RAX : X86::EAX;
1943     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1944     Flag = Chain.getValue(1);
1945
1946     // RAX/EAX now acts like a return value.
1947     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1948   }
1949
1950   RetOps[0] = Chain;  // Update chain.
1951
1952   // Add the flag if we have it.
1953   if (Flag.getNode())
1954     RetOps.push_back(Flag);
1955
1956   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
1957 }
1958
1959 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1960   if (N->getNumValues() != 1)
1961     return false;
1962   if (!N->hasNUsesOfValue(1, 0))
1963     return false;
1964
1965   SDValue TCChain = Chain;
1966   SDNode *Copy = *N->use_begin();
1967   if (Copy->getOpcode() == ISD::CopyToReg) {
1968     // If the copy has a glue operand, we conservatively assume it isn't safe to
1969     // perform a tail call.
1970     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1971       return false;
1972     TCChain = Copy->getOperand(0);
1973   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1974     return false;
1975
1976   bool HasRet = false;
1977   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1978        UI != UE; ++UI) {
1979     if (UI->getOpcode() != X86ISD::RET_FLAG)
1980       return false;
1981     HasRet = true;
1982   }
1983
1984   if (!HasRet)
1985     return false;
1986
1987   Chain = TCChain;
1988   return true;
1989 }
1990
1991 MVT
1992 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1993                                             ISD::NodeType ExtendKind) const {
1994   MVT ReturnMVT;
1995   // TODO: Is this also valid on 32-bit?
1996   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1997     ReturnMVT = MVT::i8;
1998   else
1999     ReturnMVT = MVT::i32;
2000
2001   MVT MinVT = getRegisterType(ReturnMVT);
2002   return VT.bitsLT(MinVT) ? MinVT : VT;
2003 }
2004
2005 /// LowerCallResult - Lower the result values of a call into the
2006 /// appropriate copies out of appropriate physical registers.
2007 ///
2008 SDValue
2009 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2010                                    CallingConv::ID CallConv, bool isVarArg,
2011                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2012                                    SDLoc dl, SelectionDAG &DAG,
2013                                    SmallVectorImpl<SDValue> &InVals) const {
2014
2015   // Assign locations to each value returned by this call.
2016   SmallVector<CCValAssign, 16> RVLocs;
2017   bool Is64Bit = Subtarget->is64Bit();
2018   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2019                  getTargetMachine(), RVLocs, *DAG.getContext());
2020   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2021
2022   // Copy all of the result registers out of their specified physreg.
2023   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2024     CCValAssign &VA = RVLocs[i];
2025     EVT CopyVT = VA.getValVT();
2026
2027     // If this is x86-64, and we disabled SSE, we can't return FP values
2028     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2029         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2030       report_fatal_error("SSE register return with SSE disabled");
2031     }
2032
2033     SDValue Val;
2034
2035     // If this is a call to a function that returns an fp value on the floating
2036     // point stack, we must guarantee the value is popped from the stack, so
2037     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2038     // if the return value is not used. We use the FpPOP_RETVAL instruction
2039     // instead.
2040     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2041       // If we prefer to use the value in xmm registers, copy it out as f80 and
2042       // use a truncate to move it from fp stack reg to xmm reg.
2043       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2044       SDValue Ops[] = { Chain, InFlag };
2045       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2046                                          MVT::Other, MVT::Glue, Ops), 1);
2047       Val = Chain.getValue(0);
2048
2049       // Round the f80 to the right size, which also moves it to the appropriate
2050       // xmm register.
2051       if (CopyVT != VA.getValVT())
2052         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2053                           // This truncation won't change the value.
2054                           DAG.getIntPtrConstant(1));
2055     } else {
2056       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2057                                  CopyVT, InFlag).getValue(1);
2058       Val = Chain.getValue(0);
2059     }
2060     InFlag = Chain.getValue(2);
2061     InVals.push_back(Val);
2062   }
2063
2064   return Chain;
2065 }
2066
2067 //===----------------------------------------------------------------------===//
2068 //                C & StdCall & Fast Calling Convention implementation
2069 //===----------------------------------------------------------------------===//
2070 //  StdCall calling convention seems to be standard for many Windows' API
2071 //  routines and around. It differs from C calling convention just a little:
2072 //  callee should clean up the stack, not caller. Symbols should be also
2073 //  decorated in some fancy way :) It doesn't support any vector arguments.
2074 //  For info on fast calling convention see Fast Calling Convention (tail call)
2075 //  implementation LowerX86_32FastCCCallTo.
2076
2077 /// CallIsStructReturn - Determines whether a call uses struct return
2078 /// semantics.
2079 enum StructReturnType {
2080   NotStructReturn,
2081   RegStructReturn,
2082   StackStructReturn
2083 };
2084 static StructReturnType
2085 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2086   if (Outs.empty())
2087     return NotStructReturn;
2088
2089   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2090   if (!Flags.isSRet())
2091     return NotStructReturn;
2092   if (Flags.isInReg())
2093     return RegStructReturn;
2094   return StackStructReturn;
2095 }
2096
2097 /// ArgsAreStructReturn - Determines whether a function uses struct
2098 /// return semantics.
2099 static StructReturnType
2100 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2101   if (Ins.empty())
2102     return NotStructReturn;
2103
2104   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2105   if (!Flags.isSRet())
2106     return NotStructReturn;
2107   if (Flags.isInReg())
2108     return RegStructReturn;
2109   return StackStructReturn;
2110 }
2111
2112 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2113 /// by "Src" to address "Dst" with size and alignment information specified by
2114 /// the specific parameter attribute. The copy will be passed as a byval
2115 /// function parameter.
2116 static SDValue
2117 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2118                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2119                           SDLoc dl) {
2120   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2121
2122   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2123                        /*isVolatile*/false, /*AlwaysInline=*/true,
2124                        MachinePointerInfo(), MachinePointerInfo());
2125 }
2126
2127 /// IsTailCallConvention - Return true if the calling convention is one that
2128 /// supports tail call optimization.
2129 static bool IsTailCallConvention(CallingConv::ID CC) {
2130   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2131           CC == CallingConv::HiPE);
2132 }
2133
2134 /// \brief Return true if the calling convention is a C calling convention.
2135 static bool IsCCallConvention(CallingConv::ID CC) {
2136   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2137           CC == CallingConv::X86_64_SysV);
2138 }
2139
2140 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2141   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2142     return false;
2143
2144   CallSite CS(CI);
2145   CallingConv::ID CalleeCC = CS.getCallingConv();
2146   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2147     return false;
2148
2149   return true;
2150 }
2151
2152 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2153 /// a tailcall target by changing its ABI.
2154 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2155                                    bool GuaranteedTailCallOpt) {
2156   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2157 }
2158
2159 SDValue
2160 X86TargetLowering::LowerMemArgument(SDValue Chain,
2161                                     CallingConv::ID CallConv,
2162                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2163                                     SDLoc dl, SelectionDAG &DAG,
2164                                     const CCValAssign &VA,
2165                                     MachineFrameInfo *MFI,
2166                                     unsigned i) const {
2167   // Create the nodes corresponding to a load from this parameter slot.
2168   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2169   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2170                               getTargetMachine().Options.GuaranteedTailCallOpt);
2171   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2172   EVT ValVT;
2173
2174   // If value is passed by pointer we have address passed instead of the value
2175   // itself.
2176   if (VA.getLocInfo() == CCValAssign::Indirect)
2177     ValVT = VA.getLocVT();
2178   else
2179     ValVT = VA.getValVT();
2180
2181   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2182   // changed with more analysis.
2183   // In case of tail call optimization mark all arguments mutable. Since they
2184   // could be overwritten by lowering of arguments in case of a tail call.
2185   if (Flags.isByVal()) {
2186     unsigned Bytes = Flags.getByValSize();
2187     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2188     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2189     return DAG.getFrameIndex(FI, getPointerTy());
2190   } else {
2191     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2192                                     VA.getLocMemOffset(), isImmutable);
2193     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2194     return DAG.getLoad(ValVT, dl, Chain, FIN,
2195                        MachinePointerInfo::getFixedStack(FI),
2196                        false, false, false, 0);
2197   }
2198 }
2199
2200 SDValue
2201 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2202                                         CallingConv::ID CallConv,
2203                                         bool isVarArg,
2204                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2205                                         SDLoc dl,
2206                                         SelectionDAG &DAG,
2207                                         SmallVectorImpl<SDValue> &InVals)
2208                                           const {
2209   MachineFunction &MF = DAG.getMachineFunction();
2210   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2211
2212   const Function* Fn = MF.getFunction();
2213   if (Fn->hasExternalLinkage() &&
2214       Subtarget->isTargetCygMing() &&
2215       Fn->getName() == "main")
2216     FuncInfo->setForceFramePointer(true);
2217
2218   MachineFrameInfo *MFI = MF.getFrameInfo();
2219   bool Is64Bit = Subtarget->is64Bit();
2220   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2221
2222   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2223          "Var args not supported with calling convention fastcc, ghc or hipe");
2224
2225   // Assign locations to all of the incoming arguments.
2226   SmallVector<CCValAssign, 16> ArgLocs;
2227   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2228                  ArgLocs, *DAG.getContext());
2229
2230   // Allocate shadow area for Win64
2231   if (IsWin64)
2232     CCInfo.AllocateStack(32, 8);
2233
2234   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2235
2236   unsigned LastVal = ~0U;
2237   SDValue ArgValue;
2238   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2239     CCValAssign &VA = ArgLocs[i];
2240     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2241     // places.
2242     assert(VA.getValNo() != LastVal &&
2243            "Don't support value assigned to multiple locs yet");
2244     (void)LastVal;
2245     LastVal = VA.getValNo();
2246
2247     if (VA.isRegLoc()) {
2248       EVT RegVT = VA.getLocVT();
2249       const TargetRegisterClass *RC;
2250       if (RegVT == MVT::i32)
2251         RC = &X86::GR32RegClass;
2252       else if (Is64Bit && RegVT == MVT::i64)
2253         RC = &X86::GR64RegClass;
2254       else if (RegVT == MVT::f32)
2255         RC = &X86::FR32RegClass;
2256       else if (RegVT == MVT::f64)
2257         RC = &X86::FR64RegClass;
2258       else if (RegVT.is512BitVector())
2259         RC = &X86::VR512RegClass;
2260       else if (RegVT.is256BitVector())
2261         RC = &X86::VR256RegClass;
2262       else if (RegVT.is128BitVector())
2263         RC = &X86::VR128RegClass;
2264       else if (RegVT == MVT::x86mmx)
2265         RC = &X86::VR64RegClass;
2266       else if (RegVT == MVT::i1)
2267         RC = &X86::VK1RegClass;
2268       else if (RegVT == MVT::v8i1)
2269         RC = &X86::VK8RegClass;
2270       else if (RegVT == MVT::v16i1)
2271         RC = &X86::VK16RegClass;
2272       else
2273         llvm_unreachable("Unknown argument type!");
2274
2275       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2276       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2277
2278       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2279       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2280       // right size.
2281       if (VA.getLocInfo() == CCValAssign::SExt)
2282         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2283                                DAG.getValueType(VA.getValVT()));
2284       else if (VA.getLocInfo() == CCValAssign::ZExt)
2285         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2286                                DAG.getValueType(VA.getValVT()));
2287       else if (VA.getLocInfo() == CCValAssign::BCvt)
2288         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2289
2290       if (VA.isExtInLoc()) {
2291         // Handle MMX values passed in XMM regs.
2292         if (RegVT.isVector())
2293           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2294         else
2295           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2296       }
2297     } else {
2298       assert(VA.isMemLoc());
2299       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2300     }
2301
2302     // If value is passed via pointer - do a load.
2303     if (VA.getLocInfo() == CCValAssign::Indirect)
2304       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2305                              MachinePointerInfo(), false, false, false, 0);
2306
2307     InVals.push_back(ArgValue);
2308   }
2309
2310   if (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC()) {
2311     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2312       // The x86-64 ABIs require that for returning structs by value we copy
2313       // the sret argument into %rax/%eax (depending on ABI) for the return.
2314       // Win32 requires us to put the sret argument to %eax as well.
2315       // Save the argument into a virtual register so that we can access it
2316       // from the return points.
2317       if (Ins[i].Flags.isSRet()) {
2318         unsigned Reg = FuncInfo->getSRetReturnReg();
2319         if (!Reg) {
2320           MVT PtrTy = getPointerTy();
2321           Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2322           FuncInfo->setSRetReturnReg(Reg);
2323         }
2324         SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]);
2325         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2326         break;
2327       }
2328     }
2329   }
2330
2331   unsigned StackSize = CCInfo.getNextStackOffset();
2332   // Align stack specially for tail calls.
2333   if (FuncIsMadeTailCallSafe(CallConv,
2334                              MF.getTarget().Options.GuaranteedTailCallOpt))
2335     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2336
2337   // If the function takes variable number of arguments, make a frame index for
2338   // the start of the first vararg value... for expansion of llvm.va_start.
2339   if (isVarArg) {
2340     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2341                     CallConv != CallingConv::X86_ThisCall)) {
2342       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2343     }
2344     if (Is64Bit) {
2345       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2346
2347       // FIXME: We should really autogenerate these arrays
2348       static const MCPhysReg GPR64ArgRegsWin64[] = {
2349         X86::RCX, X86::RDX, X86::R8,  X86::R9
2350       };
2351       static const MCPhysReg GPR64ArgRegs64Bit[] = {
2352         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2353       };
2354       static const MCPhysReg XMMArgRegs64Bit[] = {
2355         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2356         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2357       };
2358       const MCPhysReg *GPR64ArgRegs;
2359       unsigned NumXMMRegs = 0;
2360
2361       if (IsWin64) {
2362         // The XMM registers which might contain var arg parameters are shadowed
2363         // in their paired GPR.  So we only need to save the GPR to their home
2364         // slots.
2365         TotalNumIntRegs = 4;
2366         GPR64ArgRegs = GPR64ArgRegsWin64;
2367       } else {
2368         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2369         GPR64ArgRegs = GPR64ArgRegs64Bit;
2370
2371         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2372                                                 TotalNumXMMRegs);
2373       }
2374       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2375                                                        TotalNumIntRegs);
2376
2377       bool NoImplicitFloatOps = Fn->getAttributes().
2378         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2379       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2380              "SSE register cannot be used when SSE is disabled!");
2381       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2382                NoImplicitFloatOps) &&
2383              "SSE register cannot be used when SSE is disabled!");
2384       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2385           !Subtarget->hasSSE1())
2386         // Kernel mode asks for SSE to be disabled, so don't push them
2387         // on the stack.
2388         TotalNumXMMRegs = 0;
2389
2390       if (IsWin64) {
2391         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2392         // Get to the caller-allocated home save location.  Add 8 to account
2393         // for the return address.
2394         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2395         FuncInfo->setRegSaveFrameIndex(
2396           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2397         // Fixup to set vararg frame on shadow area (4 x i64).
2398         if (NumIntRegs < 4)
2399           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2400       } else {
2401         // For X86-64, if there are vararg parameters that are passed via
2402         // registers, then we must store them to their spots on the stack so
2403         // they may be loaded by deferencing the result of va_next.
2404         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2405         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2406         FuncInfo->setRegSaveFrameIndex(
2407           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2408                                false));
2409       }
2410
2411       // Store the integer parameter registers.
2412       SmallVector<SDValue, 8> MemOps;
2413       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2414                                         getPointerTy());
2415       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2416       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2417         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2418                                   DAG.getIntPtrConstant(Offset));
2419         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2420                                      &X86::GR64RegClass);
2421         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2422         SDValue Store =
2423           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2424                        MachinePointerInfo::getFixedStack(
2425                          FuncInfo->getRegSaveFrameIndex(), Offset),
2426                        false, false, 0);
2427         MemOps.push_back(Store);
2428         Offset += 8;
2429       }
2430
2431       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2432         // Now store the XMM (fp + vector) parameter registers.
2433         SmallVector<SDValue, 11> SaveXMMOps;
2434         SaveXMMOps.push_back(Chain);
2435
2436         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2437         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2438         SaveXMMOps.push_back(ALVal);
2439
2440         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2441                                FuncInfo->getRegSaveFrameIndex()));
2442         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2443                                FuncInfo->getVarArgsFPOffset()));
2444
2445         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2446           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2447                                        &X86::VR128RegClass);
2448           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2449           SaveXMMOps.push_back(Val);
2450         }
2451         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2452                                      MVT::Other, SaveXMMOps));
2453       }
2454
2455       if (!MemOps.empty())
2456         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2457     }
2458   }
2459
2460   // Some CCs need callee pop.
2461   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2462                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2463     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2464   } else {
2465     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2466     // If this is an sret function, the return should pop the hidden pointer.
2467     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2468         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2469         argsAreStructReturn(Ins) == StackStructReturn)
2470       FuncInfo->setBytesToPopOnReturn(4);
2471   }
2472
2473   if (!Is64Bit) {
2474     // RegSaveFrameIndex is X86-64 only.
2475     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2476     if (CallConv == CallingConv::X86_FastCall ||
2477         CallConv == CallingConv::X86_ThisCall)
2478       // fastcc functions can't have varargs.
2479       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2480   }
2481
2482   FuncInfo->setArgumentStackSize(StackSize);
2483
2484   return Chain;
2485 }
2486
2487 SDValue
2488 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2489                                     SDValue StackPtr, SDValue Arg,
2490                                     SDLoc dl, SelectionDAG &DAG,
2491                                     const CCValAssign &VA,
2492                                     ISD::ArgFlagsTy Flags) const {
2493   unsigned LocMemOffset = VA.getLocMemOffset();
2494   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2495   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2496   if (Flags.isByVal())
2497     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2498
2499   return DAG.getStore(Chain, dl, Arg, PtrOff,
2500                       MachinePointerInfo::getStack(LocMemOffset),
2501                       false, false, 0);
2502 }
2503
2504 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2505 /// optimization is performed and it is required.
2506 SDValue
2507 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2508                                            SDValue &OutRetAddr, SDValue Chain,
2509                                            bool IsTailCall, bool Is64Bit,
2510                                            int FPDiff, SDLoc dl) const {
2511   // Adjust the Return address stack slot.
2512   EVT VT = getPointerTy();
2513   OutRetAddr = getReturnAddressFrameIndex(DAG);
2514
2515   // Load the "old" Return address.
2516   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2517                            false, false, false, 0);
2518   return SDValue(OutRetAddr.getNode(), 1);
2519 }
2520
2521 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2522 /// optimization is performed and it is required (FPDiff!=0).
2523 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2524                                         SDValue Chain, SDValue RetAddrFrIdx,
2525                                         EVT PtrVT, unsigned SlotSize,
2526                                         int FPDiff, SDLoc dl) {
2527   // Store the return address to the appropriate stack slot.
2528   if (!FPDiff) return Chain;
2529   // Calculate the new stack slot for the return address.
2530   int NewReturnAddrFI =
2531     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2532                                          false);
2533   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2534   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2535                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2536                        false, false, 0);
2537   return Chain;
2538 }
2539
2540 SDValue
2541 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2542                              SmallVectorImpl<SDValue> &InVals) const {
2543   SelectionDAG &DAG                     = CLI.DAG;
2544   SDLoc &dl                             = CLI.DL;
2545   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2546   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2547   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2548   SDValue Chain                         = CLI.Chain;
2549   SDValue Callee                        = CLI.Callee;
2550   CallingConv::ID CallConv              = CLI.CallConv;
2551   bool &isTailCall                      = CLI.IsTailCall;
2552   bool isVarArg                         = CLI.IsVarArg;
2553
2554   MachineFunction &MF = DAG.getMachineFunction();
2555   bool Is64Bit        = Subtarget->is64Bit();
2556   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2557   StructReturnType SR = callIsStructReturn(Outs);
2558   bool IsSibcall      = false;
2559
2560   if (MF.getTarget().Options.DisableTailCalls)
2561     isTailCall = false;
2562
2563   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
2564   if (IsMustTail) {
2565     // Force this to be a tail call.  The verifier rules are enough to ensure
2566     // that we can lower this successfully without moving the return address
2567     // around.
2568     isTailCall = true;
2569   } else if (isTailCall) {
2570     // Check if it's really possible to do a tail call.
2571     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2572                     isVarArg, SR != NotStructReturn,
2573                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2574                     Outs, OutVals, Ins, DAG);
2575
2576     // Sibcalls are automatically detected tailcalls which do not require
2577     // ABI changes.
2578     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2579       IsSibcall = true;
2580
2581     if (isTailCall)
2582       ++NumTailCalls;
2583   }
2584
2585   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2586          "Var args not supported with calling convention fastcc, ghc or hipe");
2587
2588   // Analyze operands of the call, assigning locations to each operand.
2589   SmallVector<CCValAssign, 16> ArgLocs;
2590   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2591                  ArgLocs, *DAG.getContext());
2592
2593   // Allocate shadow area for Win64
2594   if (IsWin64)
2595     CCInfo.AllocateStack(32, 8);
2596
2597   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2598
2599   // Get a count of how many bytes are to be pushed on the stack.
2600   unsigned NumBytes = CCInfo.getNextStackOffset();
2601   if (IsSibcall)
2602     // This is a sibcall. The memory operands are available in caller's
2603     // own caller's stack.
2604     NumBytes = 0;
2605   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2606            IsTailCallConvention(CallConv))
2607     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2608
2609   int FPDiff = 0;
2610   if (isTailCall && !IsSibcall && !IsMustTail) {
2611     // Lower arguments at fp - stackoffset + fpdiff.
2612     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2613     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2614
2615     FPDiff = NumBytesCallerPushed - NumBytes;
2616
2617     // Set the delta of movement of the returnaddr stackslot.
2618     // But only set if delta is greater than previous delta.
2619     if (FPDiff < X86Info->getTCReturnAddrDelta())
2620       X86Info->setTCReturnAddrDelta(FPDiff);
2621   }
2622
2623   unsigned NumBytesToPush = NumBytes;
2624   unsigned NumBytesToPop = NumBytes;
2625
2626   // If we have an inalloca argument, all stack space has already been allocated
2627   // for us and be right at the top of the stack.  We don't support multiple
2628   // arguments passed in memory when using inalloca.
2629   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2630     NumBytesToPush = 0;
2631     assert(ArgLocs.back().getLocMemOffset() == 0 &&
2632            "an inalloca argument must be the only memory argument");
2633   }
2634
2635   if (!IsSibcall)
2636     Chain = DAG.getCALLSEQ_START(
2637         Chain, DAG.getIntPtrConstant(NumBytesToPush, true), dl);
2638
2639   SDValue RetAddrFrIdx;
2640   // Load return address for tail calls.
2641   if (isTailCall && FPDiff)
2642     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2643                                     Is64Bit, FPDiff, dl);
2644
2645   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2646   SmallVector<SDValue, 8> MemOpChains;
2647   SDValue StackPtr;
2648
2649   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2650   // of tail call optimization arguments are handle later.
2651   const X86RegisterInfo *RegInfo =
2652     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2653   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2654     // Skip inalloca arguments, they have already been written.
2655     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2656     if (Flags.isInAlloca())
2657       continue;
2658
2659     CCValAssign &VA = ArgLocs[i];
2660     EVT RegVT = VA.getLocVT();
2661     SDValue Arg = OutVals[i];
2662     bool isByVal = Flags.isByVal();
2663
2664     // Promote the value if needed.
2665     switch (VA.getLocInfo()) {
2666     default: llvm_unreachable("Unknown loc info!");
2667     case CCValAssign::Full: break;
2668     case CCValAssign::SExt:
2669       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2670       break;
2671     case CCValAssign::ZExt:
2672       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2673       break;
2674     case CCValAssign::AExt:
2675       if (RegVT.is128BitVector()) {
2676         // Special case: passing MMX values in XMM registers.
2677         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2678         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2679         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2680       } else
2681         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2682       break;
2683     case CCValAssign::BCvt:
2684       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2685       break;
2686     case CCValAssign::Indirect: {
2687       // Store the argument.
2688       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2689       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2690       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2691                            MachinePointerInfo::getFixedStack(FI),
2692                            false, false, 0);
2693       Arg = SpillSlot;
2694       break;
2695     }
2696     }
2697
2698     if (VA.isRegLoc()) {
2699       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2700       if (isVarArg && IsWin64) {
2701         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2702         // shadow reg if callee is a varargs function.
2703         unsigned ShadowReg = 0;
2704         switch (VA.getLocReg()) {
2705         case X86::XMM0: ShadowReg = X86::RCX; break;
2706         case X86::XMM1: ShadowReg = X86::RDX; break;
2707         case X86::XMM2: ShadowReg = X86::R8; break;
2708         case X86::XMM3: ShadowReg = X86::R9; break;
2709         }
2710         if (ShadowReg)
2711           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2712       }
2713     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2714       assert(VA.isMemLoc());
2715       if (!StackPtr.getNode())
2716         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2717                                       getPointerTy());
2718       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2719                                              dl, DAG, VA, Flags));
2720     }
2721   }
2722
2723   if (!MemOpChains.empty())
2724     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
2725
2726   if (Subtarget->isPICStyleGOT()) {
2727     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2728     // GOT pointer.
2729     if (!isTailCall) {
2730       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2731                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2732     } else {
2733       // If we are tail calling and generating PIC/GOT style code load the
2734       // address of the callee into ECX. The value in ecx is used as target of
2735       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2736       // for tail calls on PIC/GOT architectures. Normally we would just put the
2737       // address of GOT into ebx and then call target@PLT. But for tail calls
2738       // ebx would be restored (since ebx is callee saved) before jumping to the
2739       // target@PLT.
2740
2741       // Note: The actual moving to ECX is done further down.
2742       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2743       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2744           !G->getGlobal()->hasProtectedVisibility())
2745         Callee = LowerGlobalAddress(Callee, DAG);
2746       else if (isa<ExternalSymbolSDNode>(Callee))
2747         Callee = LowerExternalSymbol(Callee, DAG);
2748     }
2749   }
2750
2751   if (Is64Bit && isVarArg && !IsWin64) {
2752     // From AMD64 ABI document:
2753     // For calls that may call functions that use varargs or stdargs
2754     // (prototype-less calls or calls to functions containing ellipsis (...) in
2755     // the declaration) %al is used as hidden argument to specify the number
2756     // of SSE registers used. The contents of %al do not need to match exactly
2757     // the number of registers, but must be an ubound on the number of SSE
2758     // registers used and is in the range 0 - 8 inclusive.
2759
2760     // Count the number of XMM registers allocated.
2761     static const MCPhysReg XMMArgRegs[] = {
2762       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2763       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2764     };
2765     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2766     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2767            && "SSE registers cannot be used when SSE is disabled");
2768
2769     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2770                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2771   }
2772
2773   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
2774   // don't need this because the eligibility check rejects calls that require
2775   // shuffling arguments passed in memory.
2776   if (!IsSibcall && isTailCall) {
2777     // Force all the incoming stack arguments to be loaded from the stack
2778     // before any new outgoing arguments are stored to the stack, because the
2779     // outgoing stack slots may alias the incoming argument stack slots, and
2780     // the alias isn't otherwise explicit. This is slightly more conservative
2781     // than necessary, because it means that each store effectively depends
2782     // on every argument instead of just those arguments it would clobber.
2783     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2784
2785     SmallVector<SDValue, 8> MemOpChains2;
2786     SDValue FIN;
2787     int FI = 0;
2788     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2789       CCValAssign &VA = ArgLocs[i];
2790       if (VA.isRegLoc())
2791         continue;
2792       assert(VA.isMemLoc());
2793       SDValue Arg = OutVals[i];
2794       ISD::ArgFlagsTy Flags = Outs[i].Flags;
2795       // Skip inalloca arguments.  They don't require any work.
2796       if (Flags.isInAlloca())
2797         continue;
2798       // Create frame index.
2799       int32_t Offset = VA.getLocMemOffset()+FPDiff;
2800       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2801       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2802       FIN = DAG.getFrameIndex(FI, getPointerTy());
2803
2804       if (Flags.isByVal()) {
2805         // Copy relative to framepointer.
2806         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2807         if (!StackPtr.getNode())
2808           StackPtr = DAG.getCopyFromReg(Chain, dl,
2809                                         RegInfo->getStackRegister(),
2810                                         getPointerTy());
2811         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2812
2813         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2814                                                          ArgChain,
2815                                                          Flags, DAG, dl));
2816       } else {
2817         // Store relative to framepointer.
2818         MemOpChains2.push_back(
2819           DAG.getStore(ArgChain, dl, Arg, FIN,
2820                        MachinePointerInfo::getFixedStack(FI),
2821                        false, false, 0));
2822       }
2823     }
2824
2825     if (!MemOpChains2.empty())
2826       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
2827
2828     // Store the return address to the appropriate stack slot.
2829     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2830                                      getPointerTy(), RegInfo->getSlotSize(),
2831                                      FPDiff, dl);
2832   }
2833
2834   // Build a sequence of copy-to-reg nodes chained together with token chain
2835   // and flag operands which copy the outgoing args into registers.
2836   SDValue InFlag;
2837   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2838     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2839                              RegsToPass[i].second, InFlag);
2840     InFlag = Chain.getValue(1);
2841   }
2842
2843   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2844     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2845     // In the 64-bit large code model, we have to make all calls
2846     // through a register, since the call instruction's 32-bit
2847     // pc-relative offset may not be large enough to hold the whole
2848     // address.
2849   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2850     // If the callee is a GlobalAddress node (quite common, every direct call
2851     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2852     // it.
2853
2854     // We should use extra load for direct calls to dllimported functions in
2855     // non-JIT mode.
2856     const GlobalValue *GV = G->getGlobal();
2857     if (!GV->hasDLLImportStorageClass()) {
2858       unsigned char OpFlags = 0;
2859       bool ExtraLoad = false;
2860       unsigned WrapperKind = ISD::DELETED_NODE;
2861
2862       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2863       // external symbols most go through the PLT in PIC mode.  If the symbol
2864       // has hidden or protected visibility, or if it is static or local, then
2865       // we don't need to use the PLT - we can directly call it.
2866       if (Subtarget->isTargetELF() &&
2867           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2868           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2869         OpFlags = X86II::MO_PLT;
2870       } else if (Subtarget->isPICStyleStubAny() &&
2871                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2872                  (!Subtarget->getTargetTriple().isMacOSX() ||
2873                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2874         // PC-relative references to external symbols should go through $stub,
2875         // unless we're building with the leopard linker or later, which
2876         // automatically synthesizes these stubs.
2877         OpFlags = X86II::MO_DARWIN_STUB;
2878       } else if (Subtarget->isPICStyleRIPRel() &&
2879                  isa<Function>(GV) &&
2880                  cast<Function>(GV)->getAttributes().
2881                    hasAttribute(AttributeSet::FunctionIndex,
2882                                 Attribute::NonLazyBind)) {
2883         // If the function is marked as non-lazy, generate an indirect call
2884         // which loads from the GOT directly. This avoids runtime overhead
2885         // at the cost of eager binding (and one extra byte of encoding).
2886         OpFlags = X86II::MO_GOTPCREL;
2887         WrapperKind = X86ISD::WrapperRIP;
2888         ExtraLoad = true;
2889       }
2890
2891       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2892                                           G->getOffset(), OpFlags);
2893
2894       // Add a wrapper if needed.
2895       if (WrapperKind != ISD::DELETED_NODE)
2896         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2897       // Add extra indirection if needed.
2898       if (ExtraLoad)
2899         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2900                              MachinePointerInfo::getGOT(),
2901                              false, false, false, 0);
2902     }
2903   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2904     unsigned char OpFlags = 0;
2905
2906     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2907     // external symbols should go through the PLT.
2908     if (Subtarget->isTargetELF() &&
2909         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2910       OpFlags = X86II::MO_PLT;
2911     } else if (Subtarget->isPICStyleStubAny() &&
2912                (!Subtarget->getTargetTriple().isMacOSX() ||
2913                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2914       // PC-relative references to external symbols should go through $stub,
2915       // unless we're building with the leopard linker or later, which
2916       // automatically synthesizes these stubs.
2917       OpFlags = X86II::MO_DARWIN_STUB;
2918     }
2919
2920     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2921                                          OpFlags);
2922   }
2923
2924   // Returns a chain & a flag for retval copy to use.
2925   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2926   SmallVector<SDValue, 8> Ops;
2927
2928   if (!IsSibcall && isTailCall) {
2929     Chain = DAG.getCALLSEQ_END(Chain,
2930                                DAG.getIntPtrConstant(NumBytesToPop, true),
2931                                DAG.getIntPtrConstant(0, true), InFlag, dl);
2932     InFlag = Chain.getValue(1);
2933   }
2934
2935   Ops.push_back(Chain);
2936   Ops.push_back(Callee);
2937
2938   if (isTailCall)
2939     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2940
2941   // Add argument registers to the end of the list so that they are known live
2942   // into the call.
2943   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2944     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2945                                   RegsToPass[i].second.getValueType()));
2946
2947   // Add a register mask operand representing the call-preserved registers.
2948   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2949   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2950   assert(Mask && "Missing call preserved mask for calling convention");
2951   Ops.push_back(DAG.getRegisterMask(Mask));
2952
2953   if (InFlag.getNode())
2954     Ops.push_back(InFlag);
2955
2956   if (isTailCall) {
2957     // We used to do:
2958     //// If this is the first return lowered for this function, add the regs
2959     //// to the liveout set for the function.
2960     // This isn't right, although it's probably harmless on x86; liveouts
2961     // should be computed from returns not tail calls.  Consider a void
2962     // function making a tail call to a function returning int.
2963     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
2964   }
2965
2966   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
2967   InFlag = Chain.getValue(1);
2968
2969   // Create the CALLSEQ_END node.
2970   unsigned NumBytesForCalleeToPop;
2971   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2972                        getTargetMachine().Options.GuaranteedTailCallOpt))
2973     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
2974   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2975            !Subtarget->getTargetTriple().isOSMSVCRT() &&
2976            SR == StackStructReturn)
2977     // If this is a call to a struct-return function, the callee
2978     // pops the hidden struct pointer, so we have to push it back.
2979     // This is common for Darwin/X86, Linux & Mingw32 targets.
2980     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2981     NumBytesForCalleeToPop = 4;
2982   else
2983     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
2984
2985   // Returns a flag for retval copy to use.
2986   if (!IsSibcall) {
2987     Chain = DAG.getCALLSEQ_END(Chain,
2988                                DAG.getIntPtrConstant(NumBytesToPop, true),
2989                                DAG.getIntPtrConstant(NumBytesForCalleeToPop,
2990                                                      true),
2991                                InFlag, dl);
2992     InFlag = Chain.getValue(1);
2993   }
2994
2995   // Handle result values, copying them out of physregs into vregs that we
2996   // return.
2997   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2998                          Ins, dl, DAG, InVals);
2999 }
3000
3001 //===----------------------------------------------------------------------===//
3002 //                Fast Calling Convention (tail call) implementation
3003 //===----------------------------------------------------------------------===//
3004
3005 //  Like std call, callee cleans arguments, convention except that ECX is
3006 //  reserved for storing the tail called function address. Only 2 registers are
3007 //  free for argument passing (inreg). Tail call optimization is performed
3008 //  provided:
3009 //                * tailcallopt is enabled
3010 //                * caller/callee are fastcc
3011 //  On X86_64 architecture with GOT-style position independent code only local
3012 //  (within module) calls are supported at the moment.
3013 //  To keep the stack aligned according to platform abi the function
3014 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3015 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3016 //  If a tail called function callee has more arguments than the caller the
3017 //  caller needs to make sure that there is room to move the RETADDR to. This is
3018 //  achieved by reserving an area the size of the argument delta right after the
3019 //  original REtADDR, but before the saved framepointer or the spilled registers
3020 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3021 //  stack layout:
3022 //    arg1
3023 //    arg2
3024 //    RETADDR
3025 //    [ new RETADDR
3026 //      move area ]
3027 //    (possible EBP)
3028 //    ESI
3029 //    EDI
3030 //    local1 ..
3031
3032 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
3033 /// for a 16 byte align requirement.
3034 unsigned
3035 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3036                                                SelectionDAG& DAG) const {
3037   MachineFunction &MF = DAG.getMachineFunction();
3038   const TargetMachine &TM = MF.getTarget();
3039   const X86RegisterInfo *RegInfo =
3040     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
3041   const TargetFrameLowering &TFI = *TM.getFrameLowering();
3042   unsigned StackAlignment = TFI.getStackAlignment();
3043   uint64_t AlignMask = StackAlignment - 1;
3044   int64_t Offset = StackSize;
3045   unsigned SlotSize = RegInfo->getSlotSize();
3046   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3047     // Number smaller than 12 so just add the difference.
3048     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3049   } else {
3050     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3051     Offset = ((~AlignMask) & Offset) + StackAlignment +
3052       (StackAlignment-SlotSize);
3053   }
3054   return Offset;
3055 }
3056
3057 /// MatchingStackOffset - Return true if the given stack call argument is
3058 /// already available in the same position (relatively) of the caller's
3059 /// incoming argument stack.
3060 static
3061 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3062                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3063                          const X86InstrInfo *TII) {
3064   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3065   int FI = INT_MAX;
3066   if (Arg.getOpcode() == ISD::CopyFromReg) {
3067     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3068     if (!TargetRegisterInfo::isVirtualRegister(VR))
3069       return false;
3070     MachineInstr *Def = MRI->getVRegDef(VR);
3071     if (!Def)
3072       return false;
3073     if (!Flags.isByVal()) {
3074       if (!TII->isLoadFromStackSlot(Def, FI))
3075         return false;
3076     } else {
3077       unsigned Opcode = Def->getOpcode();
3078       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3079           Def->getOperand(1).isFI()) {
3080         FI = Def->getOperand(1).getIndex();
3081         Bytes = Flags.getByValSize();
3082       } else
3083         return false;
3084     }
3085   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3086     if (Flags.isByVal())
3087       // ByVal argument is passed in as a pointer but it's now being
3088       // dereferenced. e.g.
3089       // define @foo(%struct.X* %A) {
3090       //   tail call @bar(%struct.X* byval %A)
3091       // }
3092       return false;
3093     SDValue Ptr = Ld->getBasePtr();
3094     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3095     if (!FINode)
3096       return false;
3097     FI = FINode->getIndex();
3098   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3099     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3100     FI = FINode->getIndex();
3101     Bytes = Flags.getByValSize();
3102   } else
3103     return false;
3104
3105   assert(FI != INT_MAX);
3106   if (!MFI->isFixedObjectIndex(FI))
3107     return false;
3108   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3109 }
3110
3111 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3112 /// for tail call optimization. Targets which want to do tail call
3113 /// optimization should implement this function.
3114 bool
3115 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3116                                                      CallingConv::ID CalleeCC,
3117                                                      bool isVarArg,
3118                                                      bool isCalleeStructRet,
3119                                                      bool isCallerStructRet,
3120                                                      Type *RetTy,
3121                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3122                                     const SmallVectorImpl<SDValue> &OutVals,
3123                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3124                                                      SelectionDAG &DAG) const {
3125   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3126     return false;
3127
3128   // If -tailcallopt is specified, make fastcc functions tail-callable.
3129   const MachineFunction &MF = DAG.getMachineFunction();
3130   const Function *CallerF = MF.getFunction();
3131
3132   // If the function return type is x86_fp80 and the callee return type is not,
3133   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3134   // perform a tailcall optimization here.
3135   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3136     return false;
3137
3138   CallingConv::ID CallerCC = CallerF->getCallingConv();
3139   bool CCMatch = CallerCC == CalleeCC;
3140   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3141   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3142
3143   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3144     if (IsTailCallConvention(CalleeCC) && CCMatch)
3145       return true;
3146     return false;
3147   }
3148
3149   // Look for obvious safe cases to perform tail call optimization that do not
3150   // require ABI changes. This is what gcc calls sibcall.
3151
3152   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3153   // emit a special epilogue.
3154   const X86RegisterInfo *RegInfo =
3155     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3156   if (RegInfo->needsStackRealignment(MF))
3157     return false;
3158
3159   // Also avoid sibcall optimization if either caller or callee uses struct
3160   // return semantics.
3161   if (isCalleeStructRet || isCallerStructRet)
3162     return false;
3163
3164   // An stdcall/thiscall caller is expected to clean up its arguments; the
3165   // callee isn't going to do that.
3166   // FIXME: this is more restrictive than needed. We could produce a tailcall
3167   // when the stack adjustment matches. For example, with a thiscall that takes
3168   // only one argument.
3169   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3170                    CallerCC == CallingConv::X86_ThisCall))
3171     return false;
3172
3173   // Do not sibcall optimize vararg calls unless all arguments are passed via
3174   // registers.
3175   if (isVarArg && !Outs.empty()) {
3176
3177     // Optimizing for varargs on Win64 is unlikely to be safe without
3178     // additional testing.
3179     if (IsCalleeWin64 || IsCallerWin64)
3180       return false;
3181
3182     SmallVector<CCValAssign, 16> ArgLocs;
3183     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3184                    getTargetMachine(), ArgLocs, *DAG.getContext());
3185
3186     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3187     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3188       if (!ArgLocs[i].isRegLoc())
3189         return false;
3190   }
3191
3192   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3193   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3194   // this into a sibcall.
3195   bool Unused = false;
3196   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3197     if (!Ins[i].Used) {
3198       Unused = true;
3199       break;
3200     }
3201   }
3202   if (Unused) {
3203     SmallVector<CCValAssign, 16> RVLocs;
3204     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3205                    getTargetMachine(), RVLocs, *DAG.getContext());
3206     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3207     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3208       CCValAssign &VA = RVLocs[i];
3209       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3210         return false;
3211     }
3212   }
3213
3214   // If the calling conventions do not match, then we'd better make sure the
3215   // results are returned in the same way as what the caller expects.
3216   if (!CCMatch) {
3217     SmallVector<CCValAssign, 16> RVLocs1;
3218     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3219                     getTargetMachine(), RVLocs1, *DAG.getContext());
3220     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3221
3222     SmallVector<CCValAssign, 16> RVLocs2;
3223     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3224                     getTargetMachine(), RVLocs2, *DAG.getContext());
3225     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3226
3227     if (RVLocs1.size() != RVLocs2.size())
3228       return false;
3229     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3230       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3231         return false;
3232       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3233         return false;
3234       if (RVLocs1[i].isRegLoc()) {
3235         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3236           return false;
3237       } else {
3238         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3239           return false;
3240       }
3241     }
3242   }
3243
3244   // If the callee takes no arguments then go on to check the results of the
3245   // call.
3246   if (!Outs.empty()) {
3247     // Check if stack adjustment is needed. For now, do not do this if any
3248     // argument is passed on the stack.
3249     SmallVector<CCValAssign, 16> ArgLocs;
3250     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3251                    getTargetMachine(), ArgLocs, *DAG.getContext());
3252
3253     // Allocate shadow area for Win64
3254     if (IsCalleeWin64)
3255       CCInfo.AllocateStack(32, 8);
3256
3257     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3258     if (CCInfo.getNextStackOffset()) {
3259       MachineFunction &MF = DAG.getMachineFunction();
3260       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3261         return false;
3262
3263       // Check if the arguments are already laid out in the right way as
3264       // the caller's fixed stack objects.
3265       MachineFrameInfo *MFI = MF.getFrameInfo();
3266       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3267       const X86InstrInfo *TII =
3268         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3269       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3270         CCValAssign &VA = ArgLocs[i];
3271         SDValue Arg = OutVals[i];
3272         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3273         if (VA.getLocInfo() == CCValAssign::Indirect)
3274           return false;
3275         if (!VA.isRegLoc()) {
3276           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3277                                    MFI, MRI, TII))
3278             return false;
3279         }
3280       }
3281     }
3282
3283     // If the tailcall address may be in a register, then make sure it's
3284     // possible to register allocate for it. In 32-bit, the call address can
3285     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3286     // callee-saved registers are restored. These happen to be the same
3287     // registers used to pass 'inreg' arguments so watch out for those.
3288     if (!Subtarget->is64Bit() &&
3289         ((!isa<GlobalAddressSDNode>(Callee) &&
3290           !isa<ExternalSymbolSDNode>(Callee)) ||
3291          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3292       unsigned NumInRegs = 0;
3293       // In PIC we need an extra register to formulate the address computation
3294       // for the callee.
3295       unsigned MaxInRegs =
3296           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3297
3298       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3299         CCValAssign &VA = ArgLocs[i];
3300         if (!VA.isRegLoc())
3301           continue;
3302         unsigned Reg = VA.getLocReg();
3303         switch (Reg) {
3304         default: break;
3305         case X86::EAX: case X86::EDX: case X86::ECX:
3306           if (++NumInRegs == MaxInRegs)
3307             return false;
3308           break;
3309         }
3310       }
3311     }
3312   }
3313
3314   return true;
3315 }
3316
3317 FastISel *
3318 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3319                                   const TargetLibraryInfo *libInfo) const {
3320   return X86::createFastISel(funcInfo, libInfo);
3321 }
3322
3323 //===----------------------------------------------------------------------===//
3324 //                           Other Lowering Hooks
3325 //===----------------------------------------------------------------------===//
3326
3327 static bool MayFoldLoad(SDValue Op) {
3328   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3329 }
3330
3331 static bool MayFoldIntoStore(SDValue Op) {
3332   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3333 }
3334
3335 static bool isTargetShuffle(unsigned Opcode) {
3336   switch(Opcode) {
3337   default: return false;
3338   case X86ISD::PSHUFD:
3339   case X86ISD::PSHUFHW:
3340   case X86ISD::PSHUFLW:
3341   case X86ISD::SHUFP:
3342   case X86ISD::PALIGNR:
3343   case X86ISD::MOVLHPS:
3344   case X86ISD::MOVLHPD:
3345   case X86ISD::MOVHLPS:
3346   case X86ISD::MOVLPS:
3347   case X86ISD::MOVLPD:
3348   case X86ISD::MOVSHDUP:
3349   case X86ISD::MOVSLDUP:
3350   case X86ISD::MOVDDUP:
3351   case X86ISD::MOVSS:
3352   case X86ISD::MOVSD:
3353   case X86ISD::UNPCKL:
3354   case X86ISD::UNPCKH:
3355   case X86ISD::VPERMILP:
3356   case X86ISD::VPERM2X128:
3357   case X86ISD::VPERMI:
3358     return true;
3359   }
3360 }
3361
3362 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3363                                     SDValue V1, SelectionDAG &DAG) {
3364   switch(Opc) {
3365   default: llvm_unreachable("Unknown x86 shuffle node");
3366   case X86ISD::MOVSHDUP:
3367   case X86ISD::MOVSLDUP:
3368   case X86ISD::MOVDDUP:
3369     return DAG.getNode(Opc, dl, VT, V1);
3370   }
3371 }
3372
3373 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3374                                     SDValue V1, unsigned TargetMask,
3375                                     SelectionDAG &DAG) {
3376   switch(Opc) {
3377   default: llvm_unreachable("Unknown x86 shuffle node");
3378   case X86ISD::PSHUFD:
3379   case X86ISD::PSHUFHW:
3380   case X86ISD::PSHUFLW:
3381   case X86ISD::VPERMILP:
3382   case X86ISD::VPERMI:
3383     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3384   }
3385 }
3386
3387 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3388                                     SDValue V1, SDValue V2, unsigned TargetMask,
3389                                     SelectionDAG &DAG) {
3390   switch(Opc) {
3391   default: llvm_unreachable("Unknown x86 shuffle node");
3392   case X86ISD::PALIGNR:
3393   case X86ISD::SHUFP:
3394   case X86ISD::VPERM2X128:
3395     return DAG.getNode(Opc, dl, VT, V1, V2,
3396                        DAG.getConstant(TargetMask, MVT::i8));
3397   }
3398 }
3399
3400 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3401                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3402   switch(Opc) {
3403   default: llvm_unreachable("Unknown x86 shuffle node");
3404   case X86ISD::MOVLHPS:
3405   case X86ISD::MOVLHPD:
3406   case X86ISD::MOVHLPS:
3407   case X86ISD::MOVLPS:
3408   case X86ISD::MOVLPD:
3409   case X86ISD::MOVSS:
3410   case X86ISD::MOVSD:
3411   case X86ISD::UNPCKL:
3412   case X86ISD::UNPCKH:
3413     return DAG.getNode(Opc, dl, VT, V1, V2);
3414   }
3415 }
3416
3417 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3418   MachineFunction &MF = DAG.getMachineFunction();
3419   const X86RegisterInfo *RegInfo =
3420     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3421   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3422   int ReturnAddrIndex = FuncInfo->getRAIndex();
3423
3424   if (ReturnAddrIndex == 0) {
3425     // Set up a frame object for the return address.
3426     unsigned SlotSize = RegInfo->getSlotSize();
3427     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3428                                                            -(int64_t)SlotSize,
3429                                                            false);
3430     FuncInfo->setRAIndex(ReturnAddrIndex);
3431   }
3432
3433   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3434 }
3435
3436 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3437                                        bool hasSymbolicDisplacement) {
3438   // Offset should fit into 32 bit immediate field.
3439   if (!isInt<32>(Offset))
3440     return false;
3441
3442   // If we don't have a symbolic displacement - we don't have any extra
3443   // restrictions.
3444   if (!hasSymbolicDisplacement)
3445     return true;
3446
3447   // FIXME: Some tweaks might be needed for medium code model.
3448   if (M != CodeModel::Small && M != CodeModel::Kernel)
3449     return false;
3450
3451   // For small code model we assume that latest object is 16MB before end of 31
3452   // bits boundary. We may also accept pretty large negative constants knowing
3453   // that all objects are in the positive half of address space.
3454   if (M == CodeModel::Small && Offset < 16*1024*1024)
3455     return true;
3456
3457   // For kernel code model we know that all object resist in the negative half
3458   // of 32bits address space. We may not accept negative offsets, since they may
3459   // be just off and we may accept pretty large positive ones.
3460   if (M == CodeModel::Kernel && Offset > 0)
3461     return true;
3462
3463   return false;
3464 }
3465
3466 /// isCalleePop - Determines whether the callee is required to pop its
3467 /// own arguments. Callee pop is necessary to support tail calls.
3468 bool X86::isCalleePop(CallingConv::ID CallingConv,
3469                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3470   if (IsVarArg)
3471     return false;
3472
3473   switch (CallingConv) {
3474   default:
3475     return false;
3476   case CallingConv::X86_StdCall:
3477     return !is64Bit;
3478   case CallingConv::X86_FastCall:
3479     return !is64Bit;
3480   case CallingConv::X86_ThisCall:
3481     return !is64Bit;
3482   case CallingConv::Fast:
3483     return TailCallOpt;
3484   case CallingConv::GHC:
3485     return TailCallOpt;
3486   case CallingConv::HiPE:
3487     return TailCallOpt;
3488   }
3489 }
3490
3491 /// \brief Return true if the condition is an unsigned comparison operation.
3492 static bool isX86CCUnsigned(unsigned X86CC) {
3493   switch (X86CC) {
3494   default: llvm_unreachable("Invalid integer condition!");
3495   case X86::COND_E:     return true;
3496   case X86::COND_G:     return false;
3497   case X86::COND_GE:    return false;
3498   case X86::COND_L:     return false;
3499   case X86::COND_LE:    return false;
3500   case X86::COND_NE:    return true;
3501   case X86::COND_B:     return true;
3502   case X86::COND_A:     return true;
3503   case X86::COND_BE:    return true;
3504   case X86::COND_AE:    return true;
3505   }
3506   llvm_unreachable("covered switch fell through?!");
3507 }
3508
3509 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3510 /// specific condition code, returning the condition code and the LHS/RHS of the
3511 /// comparison to make.
3512 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3513                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3514   if (!isFP) {
3515     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3516       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3517         // X > -1   -> X == 0, jump !sign.
3518         RHS = DAG.getConstant(0, RHS.getValueType());
3519         return X86::COND_NS;
3520       }
3521       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3522         // X < 0   -> X == 0, jump on sign.
3523         return X86::COND_S;
3524       }
3525       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3526         // X < 1   -> X <= 0
3527         RHS = DAG.getConstant(0, RHS.getValueType());
3528         return X86::COND_LE;
3529       }
3530     }
3531
3532     switch (SetCCOpcode) {
3533     default: llvm_unreachable("Invalid integer condition!");
3534     case ISD::SETEQ:  return X86::COND_E;
3535     case ISD::SETGT:  return X86::COND_G;
3536     case ISD::SETGE:  return X86::COND_GE;
3537     case ISD::SETLT:  return X86::COND_L;
3538     case ISD::SETLE:  return X86::COND_LE;
3539     case ISD::SETNE:  return X86::COND_NE;
3540     case ISD::SETULT: return X86::COND_B;
3541     case ISD::SETUGT: return X86::COND_A;
3542     case ISD::SETULE: return X86::COND_BE;
3543     case ISD::SETUGE: return X86::COND_AE;
3544     }
3545   }
3546
3547   // First determine if it is required or is profitable to flip the operands.
3548
3549   // If LHS is a foldable load, but RHS is not, flip the condition.
3550   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3551       !ISD::isNON_EXTLoad(RHS.getNode())) {
3552     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3553     std::swap(LHS, RHS);
3554   }
3555
3556   switch (SetCCOpcode) {
3557   default: break;
3558   case ISD::SETOLT:
3559   case ISD::SETOLE:
3560   case ISD::SETUGT:
3561   case ISD::SETUGE:
3562     std::swap(LHS, RHS);
3563     break;
3564   }
3565
3566   // On a floating point condition, the flags are set as follows:
3567   // ZF  PF  CF   op
3568   //  0 | 0 | 0 | X > Y
3569   //  0 | 0 | 1 | X < Y
3570   //  1 | 0 | 0 | X == Y
3571   //  1 | 1 | 1 | unordered
3572   switch (SetCCOpcode) {
3573   default: llvm_unreachable("Condcode should be pre-legalized away");
3574   case ISD::SETUEQ:
3575   case ISD::SETEQ:   return X86::COND_E;
3576   case ISD::SETOLT:              // flipped
3577   case ISD::SETOGT:
3578   case ISD::SETGT:   return X86::COND_A;
3579   case ISD::SETOLE:              // flipped
3580   case ISD::SETOGE:
3581   case ISD::SETGE:   return X86::COND_AE;
3582   case ISD::SETUGT:              // flipped
3583   case ISD::SETULT:
3584   case ISD::SETLT:   return X86::COND_B;
3585   case ISD::SETUGE:              // flipped
3586   case ISD::SETULE:
3587   case ISD::SETLE:   return X86::COND_BE;
3588   case ISD::SETONE:
3589   case ISD::SETNE:   return X86::COND_NE;
3590   case ISD::SETUO:   return X86::COND_P;
3591   case ISD::SETO:    return X86::COND_NP;
3592   case ISD::SETOEQ:
3593   case ISD::SETUNE:  return X86::COND_INVALID;
3594   }
3595 }
3596
3597 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3598 /// code. Current x86 isa includes the following FP cmov instructions:
3599 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3600 static bool hasFPCMov(unsigned X86CC) {
3601   switch (X86CC) {
3602   default:
3603     return false;
3604   case X86::COND_B:
3605   case X86::COND_BE:
3606   case X86::COND_E:
3607   case X86::COND_P:
3608   case X86::COND_A:
3609   case X86::COND_AE:
3610   case X86::COND_NE:
3611   case X86::COND_NP:
3612     return true;
3613   }
3614 }
3615
3616 /// isFPImmLegal - Returns true if the target can instruction select the
3617 /// specified FP immediate natively. If false, the legalizer will
3618 /// materialize the FP immediate as a load from a constant pool.
3619 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3620   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3621     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3622       return true;
3623   }
3624   return false;
3625 }
3626
3627 /// \brief Returns true if it is beneficial to convert a load of a constant
3628 /// to just the constant itself.
3629 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3630                                                           Type *Ty) const {
3631   assert(Ty->isIntegerTy());
3632
3633   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3634   if (BitSize == 0 || BitSize > 64)
3635     return false;
3636   return true;
3637 }
3638
3639 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3640 /// the specified range (L, H].
3641 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3642   return (Val < 0) || (Val >= Low && Val < Hi);
3643 }
3644
3645 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3646 /// specified value.
3647 static bool isUndefOrEqual(int Val, int CmpVal) {
3648   return (Val < 0 || Val == CmpVal);
3649 }
3650
3651 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3652 /// from position Pos and ending in Pos+Size, falls within the specified
3653 /// sequential range (L, L+Pos]. or is undef.
3654 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3655                                        unsigned Pos, unsigned Size, int Low) {
3656   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3657     if (!isUndefOrEqual(Mask[i], Low))
3658       return false;
3659   return true;
3660 }
3661
3662 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3663 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3664 /// the second operand.
3665 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3666   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3667     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3668   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3669     return (Mask[0] < 2 && Mask[1] < 2);
3670   return false;
3671 }
3672
3673 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3674 /// is suitable for input to PSHUFHW.
3675 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3676   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3677     return false;
3678
3679   // Lower quadword copied in order or undef.
3680   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3681     return false;
3682
3683   // Upper quadword shuffled.
3684   for (unsigned i = 4; i != 8; ++i)
3685     if (!isUndefOrInRange(Mask[i], 4, 8))
3686       return false;
3687
3688   if (VT == MVT::v16i16) {
3689     // Lower quadword copied in order or undef.
3690     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3691       return false;
3692
3693     // Upper quadword shuffled.
3694     for (unsigned i = 12; i != 16; ++i)
3695       if (!isUndefOrInRange(Mask[i], 12, 16))
3696         return false;
3697   }
3698
3699   return true;
3700 }
3701
3702 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3703 /// is suitable for input to PSHUFLW.
3704 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3705   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3706     return false;
3707
3708   // Upper quadword copied in order.
3709   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3710     return false;
3711
3712   // Lower quadword shuffled.
3713   for (unsigned i = 0; i != 4; ++i)
3714     if (!isUndefOrInRange(Mask[i], 0, 4))
3715       return false;
3716
3717   if (VT == MVT::v16i16) {
3718     // Upper quadword copied in order.
3719     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3720       return false;
3721
3722     // Lower quadword shuffled.
3723     for (unsigned i = 8; i != 12; ++i)
3724       if (!isUndefOrInRange(Mask[i], 8, 12))
3725         return false;
3726   }
3727
3728   return true;
3729 }
3730
3731 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3732 /// is suitable for input to PALIGNR.
3733 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3734                           const X86Subtarget *Subtarget) {
3735   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3736       (VT.is256BitVector() && !Subtarget->hasInt256()))
3737     return false;
3738
3739   unsigned NumElts = VT.getVectorNumElements();
3740   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3741   unsigned NumLaneElts = NumElts/NumLanes;
3742
3743   // Do not handle 64-bit element shuffles with palignr.
3744   if (NumLaneElts == 2)
3745     return false;
3746
3747   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3748     unsigned i;
3749     for (i = 0; i != NumLaneElts; ++i) {
3750       if (Mask[i+l] >= 0)
3751         break;
3752     }
3753
3754     // Lane is all undef, go to next lane
3755     if (i == NumLaneElts)
3756       continue;
3757
3758     int Start = Mask[i+l];
3759
3760     // Make sure its in this lane in one of the sources
3761     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3762         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3763       return false;
3764
3765     // If not lane 0, then we must match lane 0
3766     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3767       return false;
3768
3769     // Correct second source to be contiguous with first source
3770     if (Start >= (int)NumElts)
3771       Start -= NumElts - NumLaneElts;
3772
3773     // Make sure we're shifting in the right direction.
3774     if (Start <= (int)(i+l))
3775       return false;
3776
3777     Start -= i;
3778
3779     // Check the rest of the elements to see if they are consecutive.
3780     for (++i; i != NumLaneElts; ++i) {
3781       int Idx = Mask[i+l];
3782
3783       // Make sure its in this lane
3784       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3785           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3786         return false;
3787
3788       // If not lane 0, then we must match lane 0
3789       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3790         return false;
3791
3792       if (Idx >= (int)NumElts)
3793         Idx -= NumElts - NumLaneElts;
3794
3795       if (!isUndefOrEqual(Idx, Start+i))
3796         return false;
3797
3798     }
3799   }
3800
3801   return true;
3802 }
3803
3804 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3805 /// the two vector operands have swapped position.
3806 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3807                                      unsigned NumElems) {
3808   for (unsigned i = 0; i != NumElems; ++i) {
3809     int idx = Mask[i];
3810     if (idx < 0)
3811       continue;
3812     else if (idx < (int)NumElems)
3813       Mask[i] = idx + NumElems;
3814     else
3815       Mask[i] = idx - NumElems;
3816   }
3817 }
3818
3819 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3820 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3821 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3822 /// reverse of what x86 shuffles want.
3823 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3824
3825   unsigned NumElems = VT.getVectorNumElements();
3826   unsigned NumLanes = VT.getSizeInBits()/128;
3827   unsigned NumLaneElems = NumElems/NumLanes;
3828
3829   if (NumLaneElems != 2 && NumLaneElems != 4)
3830     return false;
3831
3832   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3833   bool symetricMaskRequired =
3834     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3835
3836   // VSHUFPSY divides the resulting vector into 4 chunks.
3837   // The sources are also splitted into 4 chunks, and each destination
3838   // chunk must come from a different source chunk.
3839   //
3840   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3841   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3842   //
3843   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3844   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3845   //
3846   // VSHUFPDY divides the resulting vector into 4 chunks.
3847   // The sources are also splitted into 4 chunks, and each destination
3848   // chunk must come from a different source chunk.
3849   //
3850   //  SRC1 =>      X3       X2       X1       X0
3851   //  SRC2 =>      Y3       Y2       Y1       Y0
3852   //
3853   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3854   //
3855   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3856   unsigned HalfLaneElems = NumLaneElems/2;
3857   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3858     for (unsigned i = 0; i != NumLaneElems; ++i) {
3859       int Idx = Mask[i+l];
3860       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3861       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3862         return false;
3863       // For VSHUFPSY, the mask of the second half must be the same as the
3864       // first but with the appropriate offsets. This works in the same way as
3865       // VPERMILPS works with masks.
3866       if (!symetricMaskRequired || Idx < 0)
3867         continue;
3868       if (MaskVal[i] < 0) {
3869         MaskVal[i] = Idx - l;
3870         continue;
3871       }
3872       if ((signed)(Idx - l) != MaskVal[i])
3873         return false;
3874     }
3875   }
3876
3877   return true;
3878 }
3879
3880 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3881 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3882 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3883   if (!VT.is128BitVector())
3884     return false;
3885
3886   unsigned NumElems = VT.getVectorNumElements();
3887
3888   if (NumElems != 4)
3889     return false;
3890
3891   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3892   return isUndefOrEqual(Mask[0], 6) &&
3893          isUndefOrEqual(Mask[1], 7) &&
3894          isUndefOrEqual(Mask[2], 2) &&
3895          isUndefOrEqual(Mask[3], 3);
3896 }
3897
3898 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3899 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3900 /// <2, 3, 2, 3>
3901 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3902   if (!VT.is128BitVector())
3903     return false;
3904
3905   unsigned NumElems = VT.getVectorNumElements();
3906
3907   if (NumElems != 4)
3908     return false;
3909
3910   return isUndefOrEqual(Mask[0], 2) &&
3911          isUndefOrEqual(Mask[1], 3) &&
3912          isUndefOrEqual(Mask[2], 2) &&
3913          isUndefOrEqual(Mask[3], 3);
3914 }
3915
3916 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3917 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3918 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3919   if (!VT.is128BitVector())
3920     return false;
3921
3922   unsigned NumElems = VT.getVectorNumElements();
3923
3924   if (NumElems != 2 && NumElems != 4)
3925     return false;
3926
3927   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3928     if (!isUndefOrEqual(Mask[i], i + NumElems))
3929       return false;
3930
3931   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3932     if (!isUndefOrEqual(Mask[i], i))
3933       return false;
3934
3935   return true;
3936 }
3937
3938 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3939 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3940 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3941   if (!VT.is128BitVector())
3942     return false;
3943
3944   unsigned NumElems = VT.getVectorNumElements();
3945
3946   if (NumElems != 2 && NumElems != 4)
3947     return false;
3948
3949   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3950     if (!isUndefOrEqual(Mask[i], i))
3951       return false;
3952
3953   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3954     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3955       return false;
3956
3957   return true;
3958 }
3959
3960 /// isINSERTPSMask - Return true if the specified VECTOR_SHUFFLE operand
3961 /// specifies a shuffle of elements that is suitable for input to INSERTPS.
3962 /// i. e: If all but one element come from the same vector.
3963 static bool isINSERTPSMask(ArrayRef<int> Mask, MVT VT) {
3964   // TODO: Deal with AVX's VINSERTPS
3965   if (!VT.is128BitVector() || (VT != MVT::v4f32 && VT != MVT::v4i32))
3966     return false;
3967
3968   unsigned CorrectPosV1 = 0;
3969   unsigned CorrectPosV2 = 0;
3970   for (int i = 0, e = (int)VT.getVectorNumElements(); i != e; ++i)
3971     if (Mask[i] == i)
3972       ++CorrectPosV1;
3973     else if (Mask[i] == i + 4)
3974       ++CorrectPosV2;
3975
3976   if (CorrectPosV1 == 3 || CorrectPosV2 == 3)
3977     // We have 3 elements from one vector, and one from another.
3978     return true;
3979
3980   return false;
3981 }
3982
3983 //
3984 // Some special combinations that can be optimized.
3985 //
3986 static
3987 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3988                                SelectionDAG &DAG) {
3989   MVT VT = SVOp->getSimpleValueType(0);
3990   SDLoc dl(SVOp);
3991
3992   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3993     return SDValue();
3994
3995   ArrayRef<int> Mask = SVOp->getMask();
3996
3997   // These are the special masks that may be optimized.
3998   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3999   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
4000   bool MatchEvenMask = true;
4001   bool MatchOddMask  = true;
4002   for (int i=0; i<8; ++i) {
4003     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
4004       MatchEvenMask = false;
4005     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
4006       MatchOddMask = false;
4007   }
4008
4009   if (!MatchEvenMask && !MatchOddMask)
4010     return SDValue();
4011
4012   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
4013
4014   SDValue Op0 = SVOp->getOperand(0);
4015   SDValue Op1 = SVOp->getOperand(1);
4016
4017   if (MatchEvenMask) {
4018     // Shift the second operand right to 32 bits.
4019     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
4020     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
4021   } else {
4022     // Shift the first operand left to 32 bits.
4023     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
4024     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
4025   }
4026   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
4027   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
4028 }
4029
4030 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
4031 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
4032 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
4033                          bool HasInt256, bool V2IsSplat = false) {
4034
4035   assert(VT.getSizeInBits() >= 128 &&
4036          "Unsupported vector type for unpckl");
4037
4038   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4039   unsigned NumLanes;
4040   unsigned NumOf256BitLanes;
4041   unsigned NumElts = VT.getVectorNumElements();
4042   if (VT.is256BitVector()) {
4043     if (NumElts != 4 && NumElts != 8 &&
4044         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4045     return false;
4046     NumLanes = 2;
4047     NumOf256BitLanes = 1;
4048   } else if (VT.is512BitVector()) {
4049     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4050            "Unsupported vector type for unpckh");
4051     NumLanes = 2;
4052     NumOf256BitLanes = 2;
4053   } else {
4054     NumLanes = 1;
4055     NumOf256BitLanes = 1;
4056   }
4057
4058   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4059   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4060
4061   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4062     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4063       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4064         int BitI  = Mask[l256*NumEltsInStride+l+i];
4065         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4066         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4067           return false;
4068         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4069           return false;
4070         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4071           return false;
4072       }
4073     }
4074   }
4075   return true;
4076 }
4077
4078 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
4079 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
4080 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
4081                          bool HasInt256, bool V2IsSplat = false) {
4082   assert(VT.getSizeInBits() >= 128 &&
4083          "Unsupported vector type for unpckh");
4084
4085   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4086   unsigned NumLanes;
4087   unsigned NumOf256BitLanes;
4088   unsigned NumElts = VT.getVectorNumElements();
4089   if (VT.is256BitVector()) {
4090     if (NumElts != 4 && NumElts != 8 &&
4091         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4092     return false;
4093     NumLanes = 2;
4094     NumOf256BitLanes = 1;
4095   } else if (VT.is512BitVector()) {
4096     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4097            "Unsupported vector type for unpckh");
4098     NumLanes = 2;
4099     NumOf256BitLanes = 2;
4100   } else {
4101     NumLanes = 1;
4102     NumOf256BitLanes = 1;
4103   }
4104
4105   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4106   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4107
4108   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4109     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4110       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4111         int BitI  = Mask[l256*NumEltsInStride+l+i];
4112         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4113         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4114           return false;
4115         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4116           return false;
4117         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4118           return false;
4119       }
4120     }
4121   }
4122   return true;
4123 }
4124
4125 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4126 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4127 /// <0, 0, 1, 1>
4128 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4129   unsigned NumElts = VT.getVectorNumElements();
4130   bool Is256BitVec = VT.is256BitVector();
4131
4132   if (VT.is512BitVector())
4133     return false;
4134   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4135          "Unsupported vector type for unpckh");
4136
4137   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4138       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4139     return false;
4140
4141   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4142   // FIXME: Need a better way to get rid of this, there's no latency difference
4143   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4144   // the former later. We should also remove the "_undef" special mask.
4145   if (NumElts == 4 && Is256BitVec)
4146     return false;
4147
4148   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4149   // independently on 128-bit lanes.
4150   unsigned NumLanes = VT.getSizeInBits()/128;
4151   unsigned NumLaneElts = NumElts/NumLanes;
4152
4153   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4154     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4155       int BitI  = Mask[l+i];
4156       int BitI1 = Mask[l+i+1];
4157
4158       if (!isUndefOrEqual(BitI, j))
4159         return false;
4160       if (!isUndefOrEqual(BitI1, j))
4161         return false;
4162     }
4163   }
4164
4165   return true;
4166 }
4167
4168 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4169 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4170 /// <2, 2, 3, 3>
4171 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4172   unsigned NumElts = VT.getVectorNumElements();
4173
4174   if (VT.is512BitVector())
4175     return false;
4176
4177   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4178          "Unsupported vector type for unpckh");
4179
4180   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4181       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4182     return false;
4183
4184   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4185   // independently on 128-bit lanes.
4186   unsigned NumLanes = VT.getSizeInBits()/128;
4187   unsigned NumLaneElts = NumElts/NumLanes;
4188
4189   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4190     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4191       int BitI  = Mask[l+i];
4192       int BitI1 = Mask[l+i+1];
4193       if (!isUndefOrEqual(BitI, j))
4194         return false;
4195       if (!isUndefOrEqual(BitI1, j))
4196         return false;
4197     }
4198   }
4199   return true;
4200 }
4201
4202 // Match for INSERTI64x4 INSERTF64x4 instructions (src0[0], src1[0]) or
4203 // (src1[0], src0[1]), manipulation with 256-bit sub-vectors
4204 static bool isINSERT64x4Mask(ArrayRef<int> Mask, MVT VT, unsigned int *Imm) {
4205   if (!VT.is512BitVector())
4206     return false;
4207
4208   unsigned NumElts = VT.getVectorNumElements();
4209   unsigned HalfSize = NumElts/2;
4210   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, 0)) {
4211     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, NumElts)) {
4212       *Imm = 1;
4213       return true;
4214     }
4215   }
4216   if (isSequentialOrUndefInRange(Mask, 0, HalfSize, NumElts)) {
4217     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, HalfSize)) {
4218       *Imm = 0;
4219       return true;
4220     }
4221   }
4222   return false;
4223 }
4224
4225 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4226 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4227 /// MOVSD, and MOVD, i.e. setting the lowest element.
4228 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4229   if (VT.getVectorElementType().getSizeInBits() < 32)
4230     return false;
4231   if (!VT.is128BitVector())
4232     return false;
4233
4234   unsigned NumElts = VT.getVectorNumElements();
4235
4236   if (!isUndefOrEqual(Mask[0], NumElts))
4237     return false;
4238
4239   for (unsigned i = 1; i != NumElts; ++i)
4240     if (!isUndefOrEqual(Mask[i], i))
4241       return false;
4242
4243   return true;
4244 }
4245
4246 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4247 /// as permutations between 128-bit chunks or halves. As an example: this
4248 /// shuffle bellow:
4249 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4250 /// The first half comes from the second half of V1 and the second half from the
4251 /// the second half of V2.
4252 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4253   if (!HasFp256 || !VT.is256BitVector())
4254     return false;
4255
4256   // The shuffle result is divided into half A and half B. In total the two
4257   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4258   // B must come from C, D, E or F.
4259   unsigned HalfSize = VT.getVectorNumElements()/2;
4260   bool MatchA = false, MatchB = false;
4261
4262   // Check if A comes from one of C, D, E, F.
4263   for (unsigned Half = 0; Half != 4; ++Half) {
4264     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4265       MatchA = true;
4266       break;
4267     }
4268   }
4269
4270   // Check if B comes from one of C, D, E, F.
4271   for (unsigned Half = 0; Half != 4; ++Half) {
4272     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4273       MatchB = true;
4274       break;
4275     }
4276   }
4277
4278   return MatchA && MatchB;
4279 }
4280
4281 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4282 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4283 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4284   MVT VT = SVOp->getSimpleValueType(0);
4285
4286   unsigned HalfSize = VT.getVectorNumElements()/2;
4287
4288   unsigned FstHalf = 0, SndHalf = 0;
4289   for (unsigned i = 0; i < HalfSize; ++i) {
4290     if (SVOp->getMaskElt(i) > 0) {
4291       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4292       break;
4293     }
4294   }
4295   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4296     if (SVOp->getMaskElt(i) > 0) {
4297       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4298       break;
4299     }
4300   }
4301
4302   return (FstHalf | (SndHalf << 4));
4303 }
4304
4305 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4306 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4307   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4308   if (EltSize < 32)
4309     return false;
4310
4311   unsigned NumElts = VT.getVectorNumElements();
4312   Imm8 = 0;
4313   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4314     for (unsigned i = 0; i != NumElts; ++i) {
4315       if (Mask[i] < 0)
4316         continue;
4317       Imm8 |= Mask[i] << (i*2);
4318     }
4319     return true;
4320   }
4321
4322   unsigned LaneSize = 4;
4323   SmallVector<int, 4> MaskVal(LaneSize, -1);
4324
4325   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4326     for (unsigned i = 0; i != LaneSize; ++i) {
4327       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4328         return false;
4329       if (Mask[i+l] < 0)
4330         continue;
4331       if (MaskVal[i] < 0) {
4332         MaskVal[i] = Mask[i+l] - l;
4333         Imm8 |= MaskVal[i] << (i*2);
4334         continue;
4335       }
4336       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4337         return false;
4338     }
4339   }
4340   return true;
4341 }
4342
4343 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4344 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4345 /// Note that VPERMIL mask matching is different depending whether theunderlying
4346 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4347 /// to the same elements of the low, but to the higher half of the source.
4348 /// In VPERMILPD the two lanes could be shuffled independently of each other
4349 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4350 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4351   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4352   if (VT.getSizeInBits() < 256 || EltSize < 32)
4353     return false;
4354   bool symetricMaskRequired = (EltSize == 32);
4355   unsigned NumElts = VT.getVectorNumElements();
4356
4357   unsigned NumLanes = VT.getSizeInBits()/128;
4358   unsigned LaneSize = NumElts/NumLanes;
4359   // 2 or 4 elements in one lane
4360
4361   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4362   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4363     for (unsigned i = 0; i != LaneSize; ++i) {
4364       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4365         return false;
4366       if (symetricMaskRequired) {
4367         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4368           ExpectedMaskVal[i] = Mask[i+l] - l;
4369           continue;
4370         }
4371         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4372           return false;
4373       }
4374     }
4375   }
4376   return true;
4377 }
4378
4379 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4380 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4381 /// element of vector 2 and the other elements to come from vector 1 in order.
4382 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4383                                bool V2IsSplat = false, bool V2IsUndef = false) {
4384   if (!VT.is128BitVector())
4385     return false;
4386
4387   unsigned NumOps = VT.getVectorNumElements();
4388   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4389     return false;
4390
4391   if (!isUndefOrEqual(Mask[0], 0))
4392     return false;
4393
4394   for (unsigned i = 1; i != NumOps; ++i)
4395     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4396           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4397           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4398       return false;
4399
4400   return true;
4401 }
4402
4403 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4404 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4405 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4406 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4407                            const X86Subtarget *Subtarget) {
4408   if (!Subtarget->hasSSE3())
4409     return false;
4410
4411   unsigned NumElems = VT.getVectorNumElements();
4412
4413   if ((VT.is128BitVector() && NumElems != 4) ||
4414       (VT.is256BitVector() && NumElems != 8) ||
4415       (VT.is512BitVector() && NumElems != 16))
4416     return false;
4417
4418   // "i+1" is the value the indexed mask element must have
4419   for (unsigned i = 0; i != NumElems; i += 2)
4420     if (!isUndefOrEqual(Mask[i], i+1) ||
4421         !isUndefOrEqual(Mask[i+1], i+1))
4422       return false;
4423
4424   return true;
4425 }
4426
4427 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4428 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4429 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4430 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4431                            const X86Subtarget *Subtarget) {
4432   if (!Subtarget->hasSSE3())
4433     return false;
4434
4435   unsigned NumElems = VT.getVectorNumElements();
4436
4437   if ((VT.is128BitVector() && NumElems != 4) ||
4438       (VT.is256BitVector() && NumElems != 8) ||
4439       (VT.is512BitVector() && NumElems != 16))
4440     return false;
4441
4442   // "i" is the value the indexed mask element must have
4443   for (unsigned i = 0; i != NumElems; i += 2)
4444     if (!isUndefOrEqual(Mask[i], i) ||
4445         !isUndefOrEqual(Mask[i+1], i))
4446       return false;
4447
4448   return true;
4449 }
4450
4451 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4452 /// specifies a shuffle of elements that is suitable for input to 256-bit
4453 /// version of MOVDDUP.
4454 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4455   if (!HasFp256 || !VT.is256BitVector())
4456     return false;
4457
4458   unsigned NumElts = VT.getVectorNumElements();
4459   if (NumElts != 4)
4460     return false;
4461
4462   for (unsigned i = 0; i != NumElts/2; ++i)
4463     if (!isUndefOrEqual(Mask[i], 0))
4464       return false;
4465   for (unsigned i = NumElts/2; i != NumElts; ++i)
4466     if (!isUndefOrEqual(Mask[i], NumElts/2))
4467       return false;
4468   return true;
4469 }
4470
4471 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4472 /// specifies a shuffle of elements that is suitable for input to 128-bit
4473 /// version of MOVDDUP.
4474 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4475   if (!VT.is128BitVector())
4476     return false;
4477
4478   unsigned e = VT.getVectorNumElements() / 2;
4479   for (unsigned i = 0; i != e; ++i)
4480     if (!isUndefOrEqual(Mask[i], i))
4481       return false;
4482   for (unsigned i = 0; i != e; ++i)
4483     if (!isUndefOrEqual(Mask[e+i], i))
4484       return false;
4485   return true;
4486 }
4487
4488 /// isVEXTRACTIndex - Return true if the specified
4489 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4490 /// suitable for instruction that extract 128 or 256 bit vectors
4491 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4492   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4493   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4494     return false;
4495
4496   // The index should be aligned on a vecWidth-bit boundary.
4497   uint64_t Index =
4498     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4499
4500   MVT VT = N->getSimpleValueType(0);
4501   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4502   bool Result = (Index * ElSize) % vecWidth == 0;
4503
4504   return Result;
4505 }
4506
4507 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4508 /// operand specifies a subvector insert that is suitable for input to
4509 /// insertion of 128 or 256-bit subvectors
4510 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4511   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4512   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4513     return false;
4514   // The index should be aligned on a vecWidth-bit boundary.
4515   uint64_t Index =
4516     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4517
4518   MVT VT = N->getSimpleValueType(0);
4519   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4520   bool Result = (Index * ElSize) % vecWidth == 0;
4521
4522   return Result;
4523 }
4524
4525 bool X86::isVINSERT128Index(SDNode *N) {
4526   return isVINSERTIndex(N, 128);
4527 }
4528
4529 bool X86::isVINSERT256Index(SDNode *N) {
4530   return isVINSERTIndex(N, 256);
4531 }
4532
4533 bool X86::isVEXTRACT128Index(SDNode *N) {
4534   return isVEXTRACTIndex(N, 128);
4535 }
4536
4537 bool X86::isVEXTRACT256Index(SDNode *N) {
4538   return isVEXTRACTIndex(N, 256);
4539 }
4540
4541 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4542 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4543 /// Handles 128-bit and 256-bit.
4544 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4545   MVT VT = N->getSimpleValueType(0);
4546
4547   assert((VT.getSizeInBits() >= 128) &&
4548          "Unsupported vector type for PSHUF/SHUFP");
4549
4550   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4551   // independently on 128-bit lanes.
4552   unsigned NumElts = VT.getVectorNumElements();
4553   unsigned NumLanes = VT.getSizeInBits()/128;
4554   unsigned NumLaneElts = NumElts/NumLanes;
4555
4556   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4557          "Only supports 2, 4 or 8 elements per lane");
4558
4559   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4560   unsigned Mask = 0;
4561   for (unsigned i = 0; i != NumElts; ++i) {
4562     int Elt = N->getMaskElt(i);
4563     if (Elt < 0) continue;
4564     Elt &= NumLaneElts - 1;
4565     unsigned ShAmt = (i << Shift) % 8;
4566     Mask |= Elt << ShAmt;
4567   }
4568
4569   return Mask;
4570 }
4571
4572 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4573 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4574 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4575   MVT VT = N->getSimpleValueType(0);
4576
4577   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4578          "Unsupported vector type for PSHUFHW");
4579
4580   unsigned NumElts = VT.getVectorNumElements();
4581
4582   unsigned Mask = 0;
4583   for (unsigned l = 0; l != NumElts; l += 8) {
4584     // 8 nodes per lane, but we only care about the last 4.
4585     for (unsigned i = 0; i < 4; ++i) {
4586       int Elt = N->getMaskElt(l+i+4);
4587       if (Elt < 0) continue;
4588       Elt &= 0x3; // only 2-bits.
4589       Mask |= Elt << (i * 2);
4590     }
4591   }
4592
4593   return Mask;
4594 }
4595
4596 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4597 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4598 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4599   MVT VT = N->getSimpleValueType(0);
4600
4601   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4602          "Unsupported vector type for PSHUFHW");
4603
4604   unsigned NumElts = VT.getVectorNumElements();
4605
4606   unsigned Mask = 0;
4607   for (unsigned l = 0; l != NumElts; l += 8) {
4608     // 8 nodes per lane, but we only care about the first 4.
4609     for (unsigned i = 0; i < 4; ++i) {
4610       int Elt = N->getMaskElt(l+i);
4611       if (Elt < 0) continue;
4612       Elt &= 0x3; // only 2-bits
4613       Mask |= Elt << (i * 2);
4614     }
4615   }
4616
4617   return Mask;
4618 }
4619
4620 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4621 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4622 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4623   MVT VT = SVOp->getSimpleValueType(0);
4624   unsigned EltSize = VT.is512BitVector() ? 1 :
4625     VT.getVectorElementType().getSizeInBits() >> 3;
4626
4627   unsigned NumElts = VT.getVectorNumElements();
4628   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4629   unsigned NumLaneElts = NumElts/NumLanes;
4630
4631   int Val = 0;
4632   unsigned i;
4633   for (i = 0; i != NumElts; ++i) {
4634     Val = SVOp->getMaskElt(i);
4635     if (Val >= 0)
4636       break;
4637   }
4638   if (Val >= (int)NumElts)
4639     Val -= NumElts - NumLaneElts;
4640
4641   assert(Val - i > 0 && "PALIGNR imm should be positive");
4642   return (Val - i) * EltSize;
4643 }
4644
4645 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4646   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4647   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4648     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4649
4650   uint64_t Index =
4651     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4652
4653   MVT VecVT = N->getOperand(0).getSimpleValueType();
4654   MVT ElVT = VecVT.getVectorElementType();
4655
4656   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4657   return Index / NumElemsPerChunk;
4658 }
4659
4660 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4661   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4662   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4663     llvm_unreachable("Illegal insert subvector for VINSERT");
4664
4665   uint64_t Index =
4666     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4667
4668   MVT VecVT = N->getSimpleValueType(0);
4669   MVT ElVT = VecVT.getVectorElementType();
4670
4671   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4672   return Index / NumElemsPerChunk;
4673 }
4674
4675 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4676 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4677 /// and VINSERTI128 instructions.
4678 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4679   return getExtractVEXTRACTImmediate(N, 128);
4680 }
4681
4682 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4683 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4684 /// and VINSERTI64x4 instructions.
4685 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4686   return getExtractVEXTRACTImmediate(N, 256);
4687 }
4688
4689 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4690 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4691 /// and VINSERTI128 instructions.
4692 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4693   return getInsertVINSERTImmediate(N, 128);
4694 }
4695
4696 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4697 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4698 /// and VINSERTI64x4 instructions.
4699 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4700   return getInsertVINSERTImmediate(N, 256);
4701 }
4702
4703 /// isZero - Returns true if Elt is a constant integer zero
4704 static bool isZero(SDValue V) {
4705   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
4706   return C && C->isNullValue();
4707 }
4708
4709 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4710 /// constant +0.0.
4711 bool X86::isZeroNode(SDValue Elt) {
4712   if (isZero(Elt))
4713     return true;
4714   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4715     return CFP->getValueAPF().isPosZero();
4716   return false;
4717 }
4718
4719 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4720 /// their permute mask.
4721 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4722                                     SelectionDAG &DAG) {
4723   MVT VT = SVOp->getSimpleValueType(0);
4724   unsigned NumElems = VT.getVectorNumElements();
4725   SmallVector<int, 8> MaskVec;
4726
4727   for (unsigned i = 0; i != NumElems; ++i) {
4728     int Idx = SVOp->getMaskElt(i);
4729     if (Idx >= 0) {
4730       if (Idx < (int)NumElems)
4731         Idx += NumElems;
4732       else
4733         Idx -= NumElems;
4734     }
4735     MaskVec.push_back(Idx);
4736   }
4737   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4738                               SVOp->getOperand(0), &MaskVec[0]);
4739 }
4740
4741 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4742 /// match movhlps. The lower half elements should come from upper half of
4743 /// V1 (and in order), and the upper half elements should come from the upper
4744 /// half of V2 (and in order).
4745 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4746   if (!VT.is128BitVector())
4747     return false;
4748   if (VT.getVectorNumElements() != 4)
4749     return false;
4750   for (unsigned i = 0, e = 2; i != e; ++i)
4751     if (!isUndefOrEqual(Mask[i], i+2))
4752       return false;
4753   for (unsigned i = 2; i != 4; ++i)
4754     if (!isUndefOrEqual(Mask[i], i+4))
4755       return false;
4756   return true;
4757 }
4758
4759 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4760 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4761 /// required.
4762 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = nullptr) {
4763   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4764     return false;
4765   N = N->getOperand(0).getNode();
4766   if (!ISD::isNON_EXTLoad(N))
4767     return false;
4768   if (LD)
4769     *LD = cast<LoadSDNode>(N);
4770   return true;
4771 }
4772
4773 // Test whether the given value is a vector value which will be legalized
4774 // into a load.
4775 static bool WillBeConstantPoolLoad(SDNode *N) {
4776   if (N->getOpcode() != ISD::BUILD_VECTOR)
4777     return false;
4778
4779   // Check for any non-constant elements.
4780   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4781     switch (N->getOperand(i).getNode()->getOpcode()) {
4782     case ISD::UNDEF:
4783     case ISD::ConstantFP:
4784     case ISD::Constant:
4785       break;
4786     default:
4787       return false;
4788     }
4789
4790   // Vectors of all-zeros and all-ones are materialized with special
4791   // instructions rather than being loaded.
4792   return !ISD::isBuildVectorAllZeros(N) &&
4793          !ISD::isBuildVectorAllOnes(N);
4794 }
4795
4796 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4797 /// match movlp{s|d}. The lower half elements should come from lower half of
4798 /// V1 (and in order), and the upper half elements should come from the upper
4799 /// half of V2 (and in order). And since V1 will become the source of the
4800 /// MOVLP, it must be either a vector load or a scalar load to vector.
4801 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4802                                ArrayRef<int> Mask, MVT VT) {
4803   if (!VT.is128BitVector())
4804     return false;
4805
4806   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4807     return false;
4808   // Is V2 is a vector load, don't do this transformation. We will try to use
4809   // load folding shufps op.
4810   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4811     return false;
4812
4813   unsigned NumElems = VT.getVectorNumElements();
4814
4815   if (NumElems != 2 && NumElems != 4)
4816     return false;
4817   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4818     if (!isUndefOrEqual(Mask[i], i))
4819       return false;
4820   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4821     if (!isUndefOrEqual(Mask[i], i+NumElems))
4822       return false;
4823   return true;
4824 }
4825
4826 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4827 /// all the same.
4828 static bool isSplatVector(SDNode *N) {
4829   if (N->getOpcode() != ISD::BUILD_VECTOR)
4830     return false;
4831
4832   SDValue SplatValue = N->getOperand(0);
4833   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4834     if (N->getOperand(i) != SplatValue)
4835       return false;
4836   return true;
4837 }
4838
4839 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4840 /// to an zero vector.
4841 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4842 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4843   SDValue V1 = N->getOperand(0);
4844   SDValue V2 = N->getOperand(1);
4845   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4846   for (unsigned i = 0; i != NumElems; ++i) {
4847     int Idx = N->getMaskElt(i);
4848     if (Idx >= (int)NumElems) {
4849       unsigned Opc = V2.getOpcode();
4850       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4851         continue;
4852       if (Opc != ISD::BUILD_VECTOR ||
4853           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4854         return false;
4855     } else if (Idx >= 0) {
4856       unsigned Opc = V1.getOpcode();
4857       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4858         continue;
4859       if (Opc != ISD::BUILD_VECTOR ||
4860           !X86::isZeroNode(V1.getOperand(Idx)))
4861         return false;
4862     }
4863   }
4864   return true;
4865 }
4866
4867 /// getZeroVector - Returns a vector of specified type with all zero elements.
4868 ///
4869 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4870                              SelectionDAG &DAG, SDLoc dl) {
4871   assert(VT.isVector() && "Expected a vector type");
4872
4873   // Always build SSE zero vectors as <4 x i32> bitcasted
4874   // to their dest type. This ensures they get CSE'd.
4875   SDValue Vec;
4876   if (VT.is128BitVector()) {  // SSE
4877     if (Subtarget->hasSSE2()) {  // SSE2
4878       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4879       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4880     } else { // SSE1
4881       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4882       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4883     }
4884   } else if (VT.is256BitVector()) { // AVX
4885     if (Subtarget->hasInt256()) { // AVX2
4886       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4887       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4888       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4889     } else {
4890       // 256-bit logic and arithmetic instructions in AVX are all
4891       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4892       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4893       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4894       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4895     }
4896   } else if (VT.is512BitVector()) { // AVX-512
4897       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4898       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4899                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4900       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4901   } else if (VT.getScalarType() == MVT::i1) {
4902     assert(VT.getVectorNumElements() <= 16 && "Unexpected vector type");
4903     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
4904     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
4905     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4906   } else
4907     llvm_unreachable("Unexpected vector type");
4908
4909   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4910 }
4911
4912 /// getOnesVector - Returns a vector of specified type with all bits set.
4913 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4914 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4915 /// Then bitcast to their original type, ensuring they get CSE'd.
4916 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4917                              SDLoc dl) {
4918   assert(VT.isVector() && "Expected a vector type");
4919
4920   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4921   SDValue Vec;
4922   if (VT.is256BitVector()) {
4923     if (HasInt256) { // AVX2
4924       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4925       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4926     } else { // AVX
4927       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4928       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4929     }
4930   } else if (VT.is128BitVector()) {
4931     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4932   } else
4933     llvm_unreachable("Unexpected vector type");
4934
4935   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4936 }
4937
4938 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4939 /// that point to V2 points to its first element.
4940 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4941   for (unsigned i = 0; i != NumElems; ++i) {
4942     if (Mask[i] > (int)NumElems) {
4943       Mask[i] = NumElems;
4944     }
4945   }
4946 }
4947
4948 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4949 /// operation of specified width.
4950 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4951                        SDValue V2) {
4952   unsigned NumElems = VT.getVectorNumElements();
4953   SmallVector<int, 8> Mask;
4954   Mask.push_back(NumElems);
4955   for (unsigned i = 1; i != NumElems; ++i)
4956     Mask.push_back(i);
4957   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4958 }
4959
4960 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4961 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4962                           SDValue V2) {
4963   unsigned NumElems = VT.getVectorNumElements();
4964   SmallVector<int, 8> Mask;
4965   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4966     Mask.push_back(i);
4967     Mask.push_back(i + NumElems);
4968   }
4969   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4970 }
4971
4972 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4973 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4974                           SDValue V2) {
4975   unsigned NumElems = VT.getVectorNumElements();
4976   SmallVector<int, 8> Mask;
4977   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4978     Mask.push_back(i + Half);
4979     Mask.push_back(i + NumElems + Half);
4980   }
4981   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4982 }
4983
4984 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4985 // a generic shuffle instruction because the target has no such instructions.
4986 // Generate shuffles which repeat i16 and i8 several times until they can be
4987 // represented by v4f32 and then be manipulated by target suported shuffles.
4988 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4989   MVT VT = V.getSimpleValueType();
4990   int NumElems = VT.getVectorNumElements();
4991   SDLoc dl(V);
4992
4993   while (NumElems > 4) {
4994     if (EltNo < NumElems/2) {
4995       V = getUnpackl(DAG, dl, VT, V, V);
4996     } else {
4997       V = getUnpackh(DAG, dl, VT, V, V);
4998       EltNo -= NumElems/2;
4999     }
5000     NumElems >>= 1;
5001   }
5002   return V;
5003 }
5004
5005 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
5006 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
5007   MVT VT = V.getSimpleValueType();
5008   SDLoc dl(V);
5009
5010   if (VT.is128BitVector()) {
5011     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
5012     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
5013     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
5014                              &SplatMask[0]);
5015   } else if (VT.is256BitVector()) {
5016     // To use VPERMILPS to splat scalars, the second half of indicies must
5017     // refer to the higher part, which is a duplication of the lower one,
5018     // because VPERMILPS can only handle in-lane permutations.
5019     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
5020                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
5021
5022     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
5023     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
5024                              &SplatMask[0]);
5025   } else
5026     llvm_unreachable("Vector size not supported");
5027
5028   return DAG.getNode(ISD::BITCAST, dl, VT, V);
5029 }
5030
5031 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
5032 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
5033   MVT SrcVT = SV->getSimpleValueType(0);
5034   SDValue V1 = SV->getOperand(0);
5035   SDLoc dl(SV);
5036
5037   int EltNo = SV->getSplatIndex();
5038   int NumElems = SrcVT.getVectorNumElements();
5039   bool Is256BitVec = SrcVT.is256BitVector();
5040
5041   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
5042          "Unknown how to promote splat for type");
5043
5044   // Extract the 128-bit part containing the splat element and update
5045   // the splat element index when it refers to the higher register.
5046   if (Is256BitVec) {
5047     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
5048     if (EltNo >= NumElems/2)
5049       EltNo -= NumElems/2;
5050   }
5051
5052   // All i16 and i8 vector types can't be used directly by a generic shuffle
5053   // instruction because the target has no such instruction. Generate shuffles
5054   // which repeat i16 and i8 several times until they fit in i32, and then can
5055   // be manipulated by target suported shuffles.
5056   MVT EltVT = SrcVT.getVectorElementType();
5057   if (EltVT == MVT::i8 || EltVT == MVT::i16)
5058     V1 = PromoteSplati8i16(V1, DAG, EltNo);
5059
5060   // Recreate the 256-bit vector and place the same 128-bit vector
5061   // into the low and high part. This is necessary because we want
5062   // to use VPERM* to shuffle the vectors
5063   if (Is256BitVec) {
5064     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
5065   }
5066
5067   return getLegalSplat(DAG, V1, EltNo);
5068 }
5069
5070 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
5071 /// vector of zero or undef vector.  This produces a shuffle where the low
5072 /// element of V2 is swizzled into the zero/undef vector, landing at element
5073 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
5074 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
5075                                            bool IsZero,
5076                                            const X86Subtarget *Subtarget,
5077                                            SelectionDAG &DAG) {
5078   MVT VT = V2.getSimpleValueType();
5079   SDValue V1 = IsZero
5080     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
5081   unsigned NumElems = VT.getVectorNumElements();
5082   SmallVector<int, 16> MaskVec;
5083   for (unsigned i = 0; i != NumElems; ++i)
5084     // If this is the insertion idx, put the low elt of V2 here.
5085     MaskVec.push_back(i == Idx ? NumElems : i);
5086   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
5087 }
5088
5089 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
5090 /// target specific opcode. Returns true if the Mask could be calculated.
5091 /// Sets IsUnary to true if only uses one source.
5092 static bool getTargetShuffleMask(SDNode *N, MVT VT,
5093                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
5094   unsigned NumElems = VT.getVectorNumElements();
5095   SDValue ImmN;
5096
5097   IsUnary = false;
5098   switch(N->getOpcode()) {
5099   case X86ISD::SHUFP:
5100     ImmN = N->getOperand(N->getNumOperands()-1);
5101     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5102     break;
5103   case X86ISD::UNPCKH:
5104     DecodeUNPCKHMask(VT, Mask);
5105     break;
5106   case X86ISD::UNPCKL:
5107     DecodeUNPCKLMask(VT, Mask);
5108     break;
5109   case X86ISD::MOVHLPS:
5110     DecodeMOVHLPSMask(NumElems, Mask);
5111     break;
5112   case X86ISD::MOVLHPS:
5113     DecodeMOVLHPSMask(NumElems, Mask);
5114     break;
5115   case X86ISD::PALIGNR:
5116     ImmN = N->getOperand(N->getNumOperands()-1);
5117     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5118     break;
5119   case X86ISD::PSHUFD:
5120   case X86ISD::VPERMILP:
5121     ImmN = N->getOperand(N->getNumOperands()-1);
5122     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5123     IsUnary = true;
5124     break;
5125   case X86ISD::PSHUFHW:
5126     ImmN = N->getOperand(N->getNumOperands()-1);
5127     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5128     IsUnary = true;
5129     break;
5130   case X86ISD::PSHUFLW:
5131     ImmN = N->getOperand(N->getNumOperands()-1);
5132     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5133     IsUnary = true;
5134     break;
5135   case X86ISD::VPERMI:
5136     ImmN = N->getOperand(N->getNumOperands()-1);
5137     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5138     IsUnary = true;
5139     break;
5140   case X86ISD::MOVSS:
5141   case X86ISD::MOVSD: {
5142     // The index 0 always comes from the first element of the second source,
5143     // this is why MOVSS and MOVSD are used in the first place. The other
5144     // elements come from the other positions of the first source vector
5145     Mask.push_back(NumElems);
5146     for (unsigned i = 1; i != NumElems; ++i) {
5147       Mask.push_back(i);
5148     }
5149     break;
5150   }
5151   case X86ISD::VPERM2X128:
5152     ImmN = N->getOperand(N->getNumOperands()-1);
5153     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5154     if (Mask.empty()) return false;
5155     break;
5156   case X86ISD::MOVDDUP:
5157   case X86ISD::MOVLHPD:
5158   case X86ISD::MOVLPD:
5159   case X86ISD::MOVLPS:
5160   case X86ISD::MOVSHDUP:
5161   case X86ISD::MOVSLDUP:
5162     // Not yet implemented
5163     return false;
5164   default: llvm_unreachable("unknown target shuffle node");
5165   }
5166
5167   return true;
5168 }
5169
5170 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5171 /// element of the result of the vector shuffle.
5172 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5173                                    unsigned Depth) {
5174   if (Depth == 6)
5175     return SDValue();  // Limit search depth.
5176
5177   SDValue V = SDValue(N, 0);
5178   EVT VT = V.getValueType();
5179   unsigned Opcode = V.getOpcode();
5180
5181   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5182   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5183     int Elt = SV->getMaskElt(Index);
5184
5185     if (Elt < 0)
5186       return DAG.getUNDEF(VT.getVectorElementType());
5187
5188     unsigned NumElems = VT.getVectorNumElements();
5189     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5190                                          : SV->getOperand(1);
5191     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5192   }
5193
5194   // Recurse into target specific vector shuffles to find scalars.
5195   if (isTargetShuffle(Opcode)) {
5196     MVT ShufVT = V.getSimpleValueType();
5197     unsigned NumElems = ShufVT.getVectorNumElements();
5198     SmallVector<int, 16> ShuffleMask;
5199     bool IsUnary;
5200
5201     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5202       return SDValue();
5203
5204     int Elt = ShuffleMask[Index];
5205     if (Elt < 0)
5206       return DAG.getUNDEF(ShufVT.getVectorElementType());
5207
5208     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5209                                          : N->getOperand(1);
5210     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5211                                Depth+1);
5212   }
5213
5214   // Actual nodes that may contain scalar elements
5215   if (Opcode == ISD::BITCAST) {
5216     V = V.getOperand(0);
5217     EVT SrcVT = V.getValueType();
5218     unsigned NumElems = VT.getVectorNumElements();
5219
5220     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5221       return SDValue();
5222   }
5223
5224   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5225     return (Index == 0) ? V.getOperand(0)
5226                         : DAG.getUNDEF(VT.getVectorElementType());
5227
5228   if (V.getOpcode() == ISD::BUILD_VECTOR)
5229     return V.getOperand(Index);
5230
5231   return SDValue();
5232 }
5233
5234 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5235 /// shuffle operation which come from a consecutively from a zero. The
5236 /// search can start in two different directions, from left or right.
5237 /// We count undefs as zeros until PreferredNum is reached.
5238 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5239                                          unsigned NumElems, bool ZerosFromLeft,
5240                                          SelectionDAG &DAG,
5241                                          unsigned PreferredNum = -1U) {
5242   unsigned NumZeros = 0;
5243   for (unsigned i = 0; i != NumElems; ++i) {
5244     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5245     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5246     if (!Elt.getNode())
5247       break;
5248
5249     if (X86::isZeroNode(Elt))
5250       ++NumZeros;
5251     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5252       NumZeros = std::min(NumZeros + 1, PreferredNum);
5253     else
5254       break;
5255   }
5256
5257   return NumZeros;
5258 }
5259
5260 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5261 /// correspond consecutively to elements from one of the vector operands,
5262 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5263 static
5264 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5265                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5266                               unsigned NumElems, unsigned &OpNum) {
5267   bool SeenV1 = false;
5268   bool SeenV2 = false;
5269
5270   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5271     int Idx = SVOp->getMaskElt(i);
5272     // Ignore undef indicies
5273     if (Idx < 0)
5274       continue;
5275
5276     if (Idx < (int)NumElems)
5277       SeenV1 = true;
5278     else
5279       SeenV2 = true;
5280
5281     // Only accept consecutive elements from the same vector
5282     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5283       return false;
5284   }
5285
5286   OpNum = SeenV1 ? 0 : 1;
5287   return true;
5288 }
5289
5290 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5291 /// logical left shift of a vector.
5292 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5293                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5294   unsigned NumElems =
5295     SVOp->getSimpleValueType(0).getVectorNumElements();
5296   unsigned NumZeros = getNumOfConsecutiveZeros(
5297       SVOp, NumElems, false /* check zeros from right */, DAG,
5298       SVOp->getMaskElt(0));
5299   unsigned OpSrc;
5300
5301   if (!NumZeros)
5302     return false;
5303
5304   // Considering the elements in the mask that are not consecutive zeros,
5305   // check if they consecutively come from only one of the source vectors.
5306   //
5307   //               V1 = {X, A, B, C}     0
5308   //                         \  \  \    /
5309   //   vector_shuffle V1, V2 <1, 2, 3, X>
5310   //
5311   if (!isShuffleMaskConsecutive(SVOp,
5312             0,                   // Mask Start Index
5313             NumElems-NumZeros,   // Mask End Index(exclusive)
5314             NumZeros,            // Where to start looking in the src vector
5315             NumElems,            // Number of elements in vector
5316             OpSrc))              // Which source operand ?
5317     return false;
5318
5319   isLeft = false;
5320   ShAmt = NumZeros;
5321   ShVal = SVOp->getOperand(OpSrc);
5322   return true;
5323 }
5324
5325 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5326 /// logical left shift of a vector.
5327 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5328                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5329   unsigned NumElems =
5330     SVOp->getSimpleValueType(0).getVectorNumElements();
5331   unsigned NumZeros = getNumOfConsecutiveZeros(
5332       SVOp, NumElems, true /* check zeros from left */, DAG,
5333       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5334   unsigned OpSrc;
5335
5336   if (!NumZeros)
5337     return false;
5338
5339   // Considering the elements in the mask that are not consecutive zeros,
5340   // check if they consecutively come from only one of the source vectors.
5341   //
5342   //                           0    { A, B, X, X } = V2
5343   //                          / \    /  /
5344   //   vector_shuffle V1, V2 <X, X, 4, 5>
5345   //
5346   if (!isShuffleMaskConsecutive(SVOp,
5347             NumZeros,     // Mask Start Index
5348             NumElems,     // Mask End Index(exclusive)
5349             0,            // Where to start looking in the src vector
5350             NumElems,     // Number of elements in vector
5351             OpSrc))       // Which source operand ?
5352     return false;
5353
5354   isLeft = true;
5355   ShAmt = NumZeros;
5356   ShVal = SVOp->getOperand(OpSrc);
5357   return true;
5358 }
5359
5360 /// isVectorShift - Returns true if the shuffle can be implemented as a
5361 /// logical left or right shift of a vector.
5362 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5363                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5364   // Although the logic below support any bitwidth size, there are no
5365   // shift instructions which handle more than 128-bit vectors.
5366   if (!SVOp->getSimpleValueType(0).is128BitVector())
5367     return false;
5368
5369   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5370       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5371     return true;
5372
5373   return false;
5374 }
5375
5376 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5377 ///
5378 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5379                                        unsigned NumNonZero, unsigned NumZero,
5380                                        SelectionDAG &DAG,
5381                                        const X86Subtarget* Subtarget,
5382                                        const TargetLowering &TLI) {
5383   if (NumNonZero > 8)
5384     return SDValue();
5385
5386   SDLoc dl(Op);
5387   SDValue V;
5388   bool First = true;
5389   for (unsigned i = 0; i < 16; ++i) {
5390     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5391     if (ThisIsNonZero && First) {
5392       if (NumZero)
5393         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5394       else
5395         V = DAG.getUNDEF(MVT::v8i16);
5396       First = false;
5397     }
5398
5399     if ((i & 1) != 0) {
5400       SDValue ThisElt, LastElt;
5401       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5402       if (LastIsNonZero) {
5403         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5404                               MVT::i16, Op.getOperand(i-1));
5405       }
5406       if (ThisIsNonZero) {
5407         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5408         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5409                               ThisElt, DAG.getConstant(8, MVT::i8));
5410         if (LastIsNonZero)
5411           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5412       } else
5413         ThisElt = LastElt;
5414
5415       if (ThisElt.getNode())
5416         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5417                         DAG.getIntPtrConstant(i/2));
5418     }
5419   }
5420
5421   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5422 }
5423
5424 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5425 ///
5426 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5427                                      unsigned NumNonZero, unsigned NumZero,
5428                                      SelectionDAG &DAG,
5429                                      const X86Subtarget* Subtarget,
5430                                      const TargetLowering &TLI) {
5431   if (NumNonZero > 4)
5432     return SDValue();
5433
5434   SDLoc dl(Op);
5435   SDValue V;
5436   bool First = true;
5437   for (unsigned i = 0; i < 8; ++i) {
5438     bool isNonZero = (NonZeros & (1 << i)) != 0;
5439     if (isNonZero) {
5440       if (First) {
5441         if (NumZero)
5442           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5443         else
5444           V = DAG.getUNDEF(MVT::v8i16);
5445         First = false;
5446       }
5447       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5448                       MVT::v8i16, V, Op.getOperand(i),
5449                       DAG.getIntPtrConstant(i));
5450     }
5451   }
5452
5453   return V;
5454 }
5455
5456 /// LowerBuildVectorv4x32 - Custom lower build_vector of v4i32 or v4f32.
5457 static SDValue LowerBuildVectorv4x32(SDValue Op, unsigned NumElems,
5458                                      unsigned NonZeros, unsigned NumNonZero,
5459                                      unsigned NumZero, SelectionDAG &DAG,
5460                                      const X86Subtarget *Subtarget,
5461                                      const TargetLowering &TLI) {
5462   // We know there's at least one non-zero element
5463   unsigned FirstNonZeroIdx = 0;
5464   SDValue FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5465   while (FirstNonZero.getOpcode() == ISD::UNDEF ||
5466          X86::isZeroNode(FirstNonZero)) {
5467     ++FirstNonZeroIdx;
5468     FirstNonZero = Op->getOperand(FirstNonZeroIdx);
5469   }
5470
5471   if (FirstNonZero.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5472       !isa<ConstantSDNode>(FirstNonZero.getOperand(1)))
5473     return SDValue();
5474
5475   SDValue V = FirstNonZero.getOperand(0);
5476   MVT VVT = V.getSimpleValueType();
5477   if (!Subtarget->hasSSE41() || (VVT != MVT::v4f32 && VVT != MVT::v4i32))
5478     return SDValue();
5479
5480   unsigned FirstNonZeroDst =
5481       cast<ConstantSDNode>(FirstNonZero.getOperand(1))->getZExtValue();
5482   unsigned CorrectIdx = FirstNonZeroDst == FirstNonZeroIdx;
5483   unsigned IncorrectIdx = CorrectIdx ? -1U : FirstNonZeroIdx;
5484   unsigned IncorrectDst = CorrectIdx ? -1U : FirstNonZeroDst;
5485
5486   for (unsigned Idx = FirstNonZeroIdx + 1; Idx < NumElems; ++Idx) {
5487     SDValue Elem = Op.getOperand(Idx);
5488     if (Elem.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elem))
5489       continue;
5490
5491     // TODO: What else can be here? Deal with it.
5492     if (Elem.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5493       return SDValue();
5494
5495     // TODO: Some optimizations are still possible here
5496     // ex: Getting one element from a vector, and the rest from another.
5497     if (Elem.getOperand(0) != V)
5498       return SDValue();
5499
5500     unsigned Dst = cast<ConstantSDNode>(Elem.getOperand(1))->getZExtValue();
5501     if (Dst == Idx)
5502       ++CorrectIdx;
5503     else if (IncorrectIdx == -1U) {
5504       IncorrectIdx = Idx;
5505       IncorrectDst = Dst;
5506     } else
5507       // There was already one element with an incorrect index.
5508       // We can't optimize this case to an insertps.
5509       return SDValue();
5510   }
5511
5512   if (NumNonZero == CorrectIdx || NumNonZero == CorrectIdx + 1) {
5513     SDLoc dl(Op);
5514     EVT VT = Op.getSimpleValueType();
5515     unsigned ElementMoveMask = 0;
5516     if (IncorrectIdx == -1U)
5517       ElementMoveMask = FirstNonZeroIdx << 6 | FirstNonZeroIdx << 4;
5518     else
5519       ElementMoveMask = IncorrectDst << 6 | IncorrectIdx << 4;
5520
5521     SDValue InsertpsMask =
5522         DAG.getIntPtrConstant(ElementMoveMask | (~NonZeros & 0xf));
5523     return DAG.getNode(X86ISD::INSERTPS, dl, VT, V, V, InsertpsMask);
5524   }
5525
5526   return SDValue();
5527 }
5528
5529 /// getVShift - Return a vector logical shift node.
5530 ///
5531 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5532                          unsigned NumBits, SelectionDAG &DAG,
5533                          const TargetLowering &TLI, SDLoc dl) {
5534   assert(VT.is128BitVector() && "Unknown type for VShift");
5535   EVT ShVT = MVT::v2i64;
5536   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5537   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5538   return DAG.getNode(ISD::BITCAST, dl, VT,
5539                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5540                              DAG.getConstant(NumBits,
5541                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5542 }
5543
5544 static SDValue
5545 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5546
5547   // Check if the scalar load can be widened into a vector load. And if
5548   // the address is "base + cst" see if the cst can be "absorbed" into
5549   // the shuffle mask.
5550   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5551     SDValue Ptr = LD->getBasePtr();
5552     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5553       return SDValue();
5554     EVT PVT = LD->getValueType(0);
5555     if (PVT != MVT::i32 && PVT != MVT::f32)
5556       return SDValue();
5557
5558     int FI = -1;
5559     int64_t Offset = 0;
5560     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5561       FI = FINode->getIndex();
5562       Offset = 0;
5563     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5564                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5565       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5566       Offset = Ptr.getConstantOperandVal(1);
5567       Ptr = Ptr.getOperand(0);
5568     } else {
5569       return SDValue();
5570     }
5571
5572     // FIXME: 256-bit vector instructions don't require a strict alignment,
5573     // improve this code to support it better.
5574     unsigned RequiredAlign = VT.getSizeInBits()/8;
5575     SDValue Chain = LD->getChain();
5576     // Make sure the stack object alignment is at least 16 or 32.
5577     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5578     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5579       if (MFI->isFixedObjectIndex(FI)) {
5580         // Can't change the alignment. FIXME: It's possible to compute
5581         // the exact stack offset and reference FI + adjust offset instead.
5582         // If someone *really* cares about this. That's the way to implement it.
5583         return SDValue();
5584       } else {
5585         MFI->setObjectAlignment(FI, RequiredAlign);
5586       }
5587     }
5588
5589     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5590     // Ptr + (Offset & ~15).
5591     if (Offset < 0)
5592       return SDValue();
5593     if ((Offset % RequiredAlign) & 3)
5594       return SDValue();
5595     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5596     if (StartOffset)
5597       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5598                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5599
5600     int EltNo = (Offset - StartOffset) >> 2;
5601     unsigned NumElems = VT.getVectorNumElements();
5602
5603     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5604     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5605                              LD->getPointerInfo().getWithOffset(StartOffset),
5606                              false, false, false, 0);
5607
5608     SmallVector<int, 8> Mask;
5609     for (unsigned i = 0; i != NumElems; ++i)
5610       Mask.push_back(EltNo);
5611
5612     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5613   }
5614
5615   return SDValue();
5616 }
5617
5618 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5619 /// vector of type 'VT', see if the elements can be replaced by a single large
5620 /// load which has the same value as a build_vector whose operands are 'elts'.
5621 ///
5622 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5623 ///
5624 /// FIXME: we'd also like to handle the case where the last elements are zero
5625 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5626 /// There's even a handy isZeroNode for that purpose.
5627 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5628                                         SDLoc &DL, SelectionDAG &DAG,
5629                                         bool isAfterLegalize) {
5630   EVT EltVT = VT.getVectorElementType();
5631   unsigned NumElems = Elts.size();
5632
5633   LoadSDNode *LDBase = nullptr;
5634   unsigned LastLoadedElt = -1U;
5635
5636   // For each element in the initializer, see if we've found a load or an undef.
5637   // If we don't find an initial load element, or later load elements are
5638   // non-consecutive, bail out.
5639   for (unsigned i = 0; i < NumElems; ++i) {
5640     SDValue Elt = Elts[i];
5641
5642     if (!Elt.getNode() ||
5643         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5644       return SDValue();
5645     if (!LDBase) {
5646       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5647         return SDValue();
5648       LDBase = cast<LoadSDNode>(Elt.getNode());
5649       LastLoadedElt = i;
5650       continue;
5651     }
5652     if (Elt.getOpcode() == ISD::UNDEF)
5653       continue;
5654
5655     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5656     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5657       return SDValue();
5658     LastLoadedElt = i;
5659   }
5660
5661   // If we have found an entire vector of loads and undefs, then return a large
5662   // load of the entire vector width starting at the base pointer.  If we found
5663   // consecutive loads for the low half, generate a vzext_load node.
5664   if (LastLoadedElt == NumElems - 1) {
5665
5666     if (isAfterLegalize &&
5667         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5668       return SDValue();
5669
5670     SDValue NewLd = SDValue();
5671
5672     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5673       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5674                           LDBase->getPointerInfo(),
5675                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5676                           LDBase->isInvariant(), 0);
5677     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5678                         LDBase->getPointerInfo(),
5679                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5680                         LDBase->isInvariant(), LDBase->getAlignment());
5681
5682     if (LDBase->hasAnyUseOfValue(1)) {
5683       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5684                                      SDValue(LDBase, 1),
5685                                      SDValue(NewLd.getNode(), 1));
5686       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5687       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5688                              SDValue(NewLd.getNode(), 1));
5689     }
5690
5691     return NewLd;
5692   }
5693   if (NumElems == 4 && LastLoadedElt == 1 &&
5694       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5695     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5696     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5697     SDValue ResNode =
5698         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
5699                                 LDBase->getPointerInfo(),
5700                                 LDBase->getAlignment(),
5701                                 false/*isVolatile*/, true/*ReadMem*/,
5702                                 false/*WriteMem*/);
5703
5704     // Make sure the newly-created LOAD is in the same position as LDBase in
5705     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5706     // update uses of LDBase's output chain to use the TokenFactor.
5707     if (LDBase->hasAnyUseOfValue(1)) {
5708       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5709                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5710       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5711       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5712                              SDValue(ResNode.getNode(), 1));
5713     }
5714
5715     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5716   }
5717   return SDValue();
5718 }
5719
5720 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5721 /// to generate a splat value for the following cases:
5722 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5723 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5724 /// a scalar load, or a constant.
5725 /// The VBROADCAST node is returned when a pattern is found,
5726 /// or SDValue() otherwise.
5727 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5728                                     SelectionDAG &DAG) {
5729   if (!Subtarget->hasFp256())
5730     return SDValue();
5731
5732   MVT VT = Op.getSimpleValueType();
5733   SDLoc dl(Op);
5734
5735   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5736          "Unsupported vector type for broadcast.");
5737
5738   SDValue Ld;
5739   bool ConstSplatVal;
5740
5741   switch (Op.getOpcode()) {
5742     default:
5743       // Unknown pattern found.
5744       return SDValue();
5745
5746     case ISD::BUILD_VECTOR: {
5747       // The BUILD_VECTOR node must be a splat.
5748       if (!isSplatVector(Op.getNode()))
5749         return SDValue();
5750
5751       Ld = Op.getOperand(0);
5752       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5753                      Ld.getOpcode() == ISD::ConstantFP);
5754
5755       // The suspected load node has several users. Make sure that all
5756       // of its users are from the BUILD_VECTOR node.
5757       // Constants may have multiple users.
5758       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5759         return SDValue();
5760       break;
5761     }
5762
5763     case ISD::VECTOR_SHUFFLE: {
5764       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5765
5766       // Shuffles must have a splat mask where the first element is
5767       // broadcasted.
5768       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5769         return SDValue();
5770
5771       SDValue Sc = Op.getOperand(0);
5772       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5773           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5774
5775         if (!Subtarget->hasInt256())
5776           return SDValue();
5777
5778         // Use the register form of the broadcast instruction available on AVX2.
5779         if (VT.getSizeInBits() >= 256)
5780           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5781         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5782       }
5783
5784       Ld = Sc.getOperand(0);
5785       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5786                        Ld.getOpcode() == ISD::ConstantFP);
5787
5788       // The scalar_to_vector node and the suspected
5789       // load node must have exactly one user.
5790       // Constants may have multiple users.
5791
5792       // AVX-512 has register version of the broadcast
5793       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5794         Ld.getValueType().getSizeInBits() >= 32;
5795       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5796           !hasRegVer))
5797         return SDValue();
5798       break;
5799     }
5800   }
5801
5802   bool IsGE256 = (VT.getSizeInBits() >= 256);
5803
5804   // Handle the broadcasting a single constant scalar from the constant pool
5805   // into a vector. On Sandybridge it is still better to load a constant vector
5806   // from the constant pool and not to broadcast it from a scalar.
5807   if (ConstSplatVal && Subtarget->hasInt256()) {
5808     EVT CVT = Ld.getValueType();
5809     assert(!CVT.isVector() && "Must not broadcast a vector type");
5810     unsigned ScalarSize = CVT.getSizeInBits();
5811
5812     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5813       const Constant *C = nullptr;
5814       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5815         C = CI->getConstantIntValue();
5816       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5817         C = CF->getConstantFPValue();
5818
5819       assert(C && "Invalid constant type");
5820
5821       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5822       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5823       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5824       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5825                        MachinePointerInfo::getConstantPool(),
5826                        false, false, false, Alignment);
5827
5828       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5829     }
5830   }
5831
5832   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5833   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5834
5835   // Handle AVX2 in-register broadcasts.
5836   if (!IsLoad && Subtarget->hasInt256() &&
5837       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5838     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5839
5840   // The scalar source must be a normal load.
5841   if (!IsLoad)
5842     return SDValue();
5843
5844   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5845     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5846
5847   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5848   // double since there is no vbroadcastsd xmm
5849   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5850     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5851       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5852   }
5853
5854   // Unsupported broadcast.
5855   return SDValue();
5856 }
5857
5858 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5859 /// underlying vector and index.
5860 ///
5861 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5862 /// index.
5863 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5864                                          SDValue ExtIdx) {
5865   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5866   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5867     return Idx;
5868
5869   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5870   // lowered this:
5871   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
5872   // to:
5873   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
5874   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
5875   //                           undef)
5876   //                       Constant<0>)
5877   // In this case the vector is the extract_subvector expression and the index
5878   // is 2, as specified by the shuffle.
5879   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
5880   SDValue ShuffleVec = SVOp->getOperand(0);
5881   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
5882   assert(ShuffleVecVT.getVectorElementType() ==
5883          ExtractedFromVec.getSimpleValueType().getVectorElementType());
5884
5885   int ShuffleIdx = SVOp->getMaskElt(Idx);
5886   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
5887     ExtractedFromVec = ShuffleVec;
5888     return ShuffleIdx;
5889   }
5890   return Idx;
5891 }
5892
5893 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5894   MVT VT = Op.getSimpleValueType();
5895
5896   // Skip if insert_vec_elt is not supported.
5897   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5898   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5899     return SDValue();
5900
5901   SDLoc DL(Op);
5902   unsigned NumElems = Op.getNumOperands();
5903
5904   SDValue VecIn1;
5905   SDValue VecIn2;
5906   SmallVector<unsigned, 4> InsertIndices;
5907   SmallVector<int, 8> Mask(NumElems, -1);
5908
5909   for (unsigned i = 0; i != NumElems; ++i) {
5910     unsigned Opc = Op.getOperand(i).getOpcode();
5911
5912     if (Opc == ISD::UNDEF)
5913       continue;
5914
5915     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5916       // Quit if more than 1 elements need inserting.
5917       if (InsertIndices.size() > 1)
5918         return SDValue();
5919
5920       InsertIndices.push_back(i);
5921       continue;
5922     }
5923
5924     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5925     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5926     // Quit if non-constant index.
5927     if (!isa<ConstantSDNode>(ExtIdx))
5928       return SDValue();
5929     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
5930
5931     // Quit if extracted from vector of different type.
5932     if (ExtractedFromVec.getValueType() != VT)
5933       return SDValue();
5934
5935     if (!VecIn1.getNode())
5936       VecIn1 = ExtractedFromVec;
5937     else if (VecIn1 != ExtractedFromVec) {
5938       if (!VecIn2.getNode())
5939         VecIn2 = ExtractedFromVec;
5940       else if (VecIn2 != ExtractedFromVec)
5941         // Quit if more than 2 vectors to shuffle
5942         return SDValue();
5943     }
5944
5945     if (ExtractedFromVec == VecIn1)
5946       Mask[i] = Idx;
5947     else if (ExtractedFromVec == VecIn2)
5948       Mask[i] = Idx + NumElems;
5949   }
5950
5951   if (!VecIn1.getNode())
5952     return SDValue();
5953
5954   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5955   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5956   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5957     unsigned Idx = InsertIndices[i];
5958     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5959                      DAG.getIntPtrConstant(Idx));
5960   }
5961
5962   return NV;
5963 }
5964
5965 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5966 SDValue
5967 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5968
5969   MVT VT = Op.getSimpleValueType();
5970   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5971          "Unexpected type in LowerBUILD_VECTORvXi1!");
5972
5973   SDLoc dl(Op);
5974   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5975     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5976     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5977     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5978   }
5979
5980   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5981     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5982     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5983     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5984   }
5985
5986   bool AllContants = true;
5987   uint64_t Immediate = 0;
5988   int NonConstIdx = -1;
5989   bool IsSplat = true;
5990   unsigned NumNonConsts = 0;
5991   unsigned NumConsts = 0;
5992   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5993     SDValue In = Op.getOperand(idx);
5994     if (In.getOpcode() == ISD::UNDEF)
5995       continue;
5996     if (!isa<ConstantSDNode>(In)) {
5997       AllContants = false;
5998       NonConstIdx = idx;
5999       NumNonConsts++;
6000     }
6001     else {
6002       NumConsts++;
6003       if (cast<ConstantSDNode>(In)->getZExtValue())
6004       Immediate |= (1ULL << idx);
6005     }
6006     if (In != Op.getOperand(0))
6007       IsSplat = false;
6008   }
6009
6010   if (AllContants) {
6011     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
6012       DAG.getConstant(Immediate, MVT::i16));
6013     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
6014                        DAG.getIntPtrConstant(0));
6015   }
6016
6017   if (NumNonConsts == 1 && NonConstIdx != 0) {
6018     SDValue DstVec;
6019     if (NumConsts) {
6020       SDValue VecAsImm = DAG.getConstant(Immediate,
6021                                          MVT::getIntegerVT(VT.getSizeInBits()));
6022       DstVec = DAG.getNode(ISD::BITCAST, dl, VT, VecAsImm);
6023     }
6024     else 
6025       DstVec = DAG.getUNDEF(VT);
6026     return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
6027                        Op.getOperand(NonConstIdx),
6028                        DAG.getIntPtrConstant(NonConstIdx));
6029   }
6030   if (!IsSplat && (NonConstIdx != 0))
6031     llvm_unreachable("Unsupported BUILD_VECTOR operation");
6032   MVT SelectVT = (VT == MVT::v16i1)? MVT::i16 : MVT::i8;
6033   SDValue Select;
6034   if (IsSplat)
6035     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6036                           DAG.getConstant(-1, SelectVT),
6037                           DAG.getConstant(0, SelectVT));
6038   else
6039     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
6040                          DAG.getConstant((Immediate | 1), SelectVT),
6041                          DAG.getConstant(Immediate, SelectVT));
6042   return DAG.getNode(ISD::BITCAST, dl, VT, Select);
6043 }
6044
6045 SDValue
6046 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6047   SDLoc dl(Op);
6048
6049   MVT VT = Op.getSimpleValueType();
6050   MVT ExtVT = VT.getVectorElementType();
6051   unsigned NumElems = Op.getNumOperands();
6052
6053   // Generate vectors for predicate vectors.
6054   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
6055     return LowerBUILD_VECTORvXi1(Op, DAG);
6056
6057   // Vectors containing all zeros can be matched by pxor and xorps later
6058   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6059     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
6060     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
6061     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
6062       return Op;
6063
6064     return getZeroVector(VT, Subtarget, DAG, dl);
6065   }
6066
6067   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
6068   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
6069   // vpcmpeqd on 256-bit vectors.
6070   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
6071     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
6072       return Op;
6073
6074     if (!VT.is512BitVector())
6075       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
6076   }
6077
6078   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
6079   if (Broadcast.getNode())
6080     return Broadcast;
6081
6082   unsigned EVTBits = ExtVT.getSizeInBits();
6083
6084   unsigned NumZero  = 0;
6085   unsigned NumNonZero = 0;
6086   unsigned NonZeros = 0;
6087   bool IsAllConstants = true;
6088   SmallSet<SDValue, 8> Values;
6089   for (unsigned i = 0; i < NumElems; ++i) {
6090     SDValue Elt = Op.getOperand(i);
6091     if (Elt.getOpcode() == ISD::UNDEF)
6092       continue;
6093     Values.insert(Elt);
6094     if (Elt.getOpcode() != ISD::Constant &&
6095         Elt.getOpcode() != ISD::ConstantFP)
6096       IsAllConstants = false;
6097     if (X86::isZeroNode(Elt))
6098       NumZero++;
6099     else {
6100       NonZeros |= (1 << i);
6101       NumNonZero++;
6102     }
6103   }
6104
6105   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
6106   if (NumNonZero == 0)
6107     return DAG.getUNDEF(VT);
6108
6109   // Special case for single non-zero, non-undef, element.
6110   if (NumNonZero == 1) {
6111     unsigned Idx = countTrailingZeros(NonZeros);
6112     SDValue Item = Op.getOperand(Idx);
6113
6114     // If this is an insertion of an i64 value on x86-32, and if the top bits of
6115     // the value are obviously zero, truncate the value to i32 and do the
6116     // insertion that way.  Only do this if the value is non-constant or if the
6117     // value is a constant being inserted into element 0.  It is cheaper to do
6118     // a constant pool load than it is to do a movd + shuffle.
6119     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
6120         (!IsAllConstants || Idx == 0)) {
6121       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
6122         // Handle SSE only.
6123         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6124         EVT VecVT = MVT::v4i32;
6125         unsigned VecElts = 4;
6126
6127         // Truncate the value (which may itself be a constant) to i32, and
6128         // convert it to a vector with movd (S2V+shuffle to zero extend).
6129         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
6130         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
6131         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6132
6133         // Now we have our 32-bit value zero extended in the low element of
6134         // a vector.  If Idx != 0, swizzle it into place.
6135         if (Idx != 0) {
6136           SmallVector<int, 4> Mask;
6137           Mask.push_back(Idx);
6138           for (unsigned i = 1; i != VecElts; ++i)
6139             Mask.push_back(i);
6140           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
6141                                       &Mask[0]);
6142         }
6143         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6144       }
6145     }
6146
6147     // If we have a constant or non-constant insertion into the low element of
6148     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
6149     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
6150     // depending on what the source datatype is.
6151     if (Idx == 0) {
6152       if (NumZero == 0)
6153         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6154
6155       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
6156           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
6157         if (VT.is256BitVector() || VT.is512BitVector()) {
6158           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
6159           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
6160                              Item, DAG.getIntPtrConstant(0));
6161         }
6162         assert(VT.is128BitVector() && "Expected an SSE value type!");
6163         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6164         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6165         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6166       }
6167
6168       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6169         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6170         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6171         if (VT.is256BitVector()) {
6172           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6173           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6174         } else {
6175           assert(VT.is128BitVector() && "Expected an SSE value type!");
6176           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6177         }
6178         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6179       }
6180     }
6181
6182     // Is it a vector logical left shift?
6183     if (NumElems == 2 && Idx == 1 &&
6184         X86::isZeroNode(Op.getOperand(0)) &&
6185         !X86::isZeroNode(Op.getOperand(1))) {
6186       unsigned NumBits = VT.getSizeInBits();
6187       return getVShift(true, VT,
6188                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6189                                    VT, Op.getOperand(1)),
6190                        NumBits/2, DAG, *this, dl);
6191     }
6192
6193     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6194       return SDValue();
6195
6196     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6197     // is a non-constant being inserted into an element other than the low one,
6198     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6199     // movd/movss) to move this into the low element, then shuffle it into
6200     // place.
6201     if (EVTBits == 32) {
6202       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6203
6204       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6205       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6206       SmallVector<int, 8> MaskVec;
6207       for (unsigned i = 0; i != NumElems; ++i)
6208         MaskVec.push_back(i == Idx ? 0 : 1);
6209       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6210     }
6211   }
6212
6213   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6214   if (Values.size() == 1) {
6215     if (EVTBits == 32) {
6216       // Instead of a shuffle like this:
6217       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6218       // Check if it's possible to issue this instead.
6219       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6220       unsigned Idx = countTrailingZeros(NonZeros);
6221       SDValue Item = Op.getOperand(Idx);
6222       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6223         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6224     }
6225     return SDValue();
6226   }
6227
6228   // A vector full of immediates; various special cases are already
6229   // handled, so this is best done with a single constant-pool load.
6230   if (IsAllConstants)
6231     return SDValue();
6232
6233   // For AVX-length vectors, build the individual 128-bit pieces and use
6234   // shuffles to put them in place.
6235   if (VT.is256BitVector() || VT.is512BitVector()) {
6236     SmallVector<SDValue, 64> V;
6237     for (unsigned i = 0; i != NumElems; ++i)
6238       V.push_back(Op.getOperand(i));
6239
6240     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6241
6242     // Build both the lower and upper subvector.
6243     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6244                                 makeArrayRef(&V[0], NumElems/2));
6245     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6246                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
6247
6248     // Recreate the wider vector with the lower and upper part.
6249     if (VT.is256BitVector())
6250       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6251     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6252   }
6253
6254   // Let legalizer expand 2-wide build_vectors.
6255   if (EVTBits == 64) {
6256     if (NumNonZero == 1) {
6257       // One half is zero or undef.
6258       unsigned Idx = countTrailingZeros(NonZeros);
6259       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6260                                  Op.getOperand(Idx));
6261       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6262     }
6263     return SDValue();
6264   }
6265
6266   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6267   if (EVTBits == 8 && NumElems == 16) {
6268     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6269                                         Subtarget, *this);
6270     if (V.getNode()) return V;
6271   }
6272
6273   if (EVTBits == 16 && NumElems == 8) {
6274     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6275                                       Subtarget, *this);
6276     if (V.getNode()) return V;
6277   }
6278
6279   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
6280   if (EVTBits == 32 && NumElems == 4) {
6281     SDValue V = LowerBuildVectorv4x32(Op, NumElems, NonZeros, NumNonZero,
6282                                       NumZero, DAG, Subtarget, *this);
6283     if (V.getNode())
6284       return V;
6285   }
6286
6287   // If element VT is == 32 bits, turn it into a number of shuffles.
6288   SmallVector<SDValue, 8> V(NumElems);
6289   if (NumElems == 4 && NumZero > 0) {
6290     for (unsigned i = 0; i < 4; ++i) {
6291       bool isZero = !(NonZeros & (1 << i));
6292       if (isZero)
6293         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6294       else
6295         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6296     }
6297
6298     for (unsigned i = 0; i < 2; ++i) {
6299       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6300         default: break;
6301         case 0:
6302           V[i] = V[i*2];  // Must be a zero vector.
6303           break;
6304         case 1:
6305           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6306           break;
6307         case 2:
6308           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6309           break;
6310         case 3:
6311           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6312           break;
6313       }
6314     }
6315
6316     bool Reverse1 = (NonZeros & 0x3) == 2;
6317     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6318     int MaskVec[] = {
6319       Reverse1 ? 1 : 0,
6320       Reverse1 ? 0 : 1,
6321       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6322       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6323     };
6324     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6325   }
6326
6327   if (Values.size() > 1 && VT.is128BitVector()) {
6328     // Check for a build vector of consecutive loads.
6329     for (unsigned i = 0; i < NumElems; ++i)
6330       V[i] = Op.getOperand(i);
6331
6332     // Check for elements which are consecutive loads.
6333     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6334     if (LD.getNode())
6335       return LD;
6336
6337     // Check for a build vector from mostly shuffle plus few inserting.
6338     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6339     if (Sh.getNode())
6340       return Sh;
6341
6342     // For SSE 4.1, use insertps to put the high elements into the low element.
6343     if (getSubtarget()->hasSSE41()) {
6344       SDValue Result;
6345       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6346         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6347       else
6348         Result = DAG.getUNDEF(VT);
6349
6350       for (unsigned i = 1; i < NumElems; ++i) {
6351         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6352         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6353                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6354       }
6355       return Result;
6356     }
6357
6358     // Otherwise, expand into a number of unpckl*, start by extending each of
6359     // our (non-undef) elements to the full vector width with the element in the
6360     // bottom slot of the vector (which generates no code for SSE).
6361     for (unsigned i = 0; i < NumElems; ++i) {
6362       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6363         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6364       else
6365         V[i] = DAG.getUNDEF(VT);
6366     }
6367
6368     // Next, we iteratively mix elements, e.g. for v4f32:
6369     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6370     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6371     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6372     unsigned EltStride = NumElems >> 1;
6373     while (EltStride != 0) {
6374       for (unsigned i = 0; i < EltStride; ++i) {
6375         // If V[i+EltStride] is undef and this is the first round of mixing,
6376         // then it is safe to just drop this shuffle: V[i] is already in the
6377         // right place, the one element (since it's the first round) being
6378         // inserted as undef can be dropped.  This isn't safe for successive
6379         // rounds because they will permute elements within both vectors.
6380         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6381             EltStride == NumElems/2)
6382           continue;
6383
6384         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6385       }
6386       EltStride >>= 1;
6387     }
6388     return V[0];
6389   }
6390   return SDValue();
6391 }
6392
6393 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6394 // to create 256-bit vectors from two other 128-bit ones.
6395 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6396   SDLoc dl(Op);
6397   MVT ResVT = Op.getSimpleValueType();
6398
6399   assert((ResVT.is256BitVector() ||
6400           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6401
6402   SDValue V1 = Op.getOperand(0);
6403   SDValue V2 = Op.getOperand(1);
6404   unsigned NumElems = ResVT.getVectorNumElements();
6405   if(ResVT.is256BitVector())
6406     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6407
6408   if (Op.getNumOperands() == 4) {
6409     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6410                                 ResVT.getVectorNumElements()/2);
6411     SDValue V3 = Op.getOperand(2);
6412     SDValue V4 = Op.getOperand(3);
6413     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6414       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6415   }
6416   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6417 }
6418
6419 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6420   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6421   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6422          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6423           Op.getNumOperands() == 4)));
6424
6425   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6426   // from two other 128-bit ones.
6427
6428   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6429   return LowerAVXCONCAT_VECTORS(Op, DAG);
6430 }
6431
6432 static bool isBlendMask(ArrayRef<int> MaskVals, MVT VT, bool hasSSE41,
6433                         bool hasInt256, unsigned *MaskOut = nullptr) {
6434   MVT EltVT = VT.getVectorElementType();
6435
6436   // There is no blend with immediate in AVX-512.
6437   if (VT.is512BitVector())
6438     return false;
6439
6440   if (!hasSSE41 || EltVT == MVT::i8)
6441     return false;
6442   if (!hasInt256 && VT == MVT::v16i16)
6443     return false;
6444
6445   unsigned MaskValue = 0;
6446   unsigned NumElems = VT.getVectorNumElements();
6447   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6448   unsigned NumLanes = (NumElems - 1) / 8 + 1;
6449   unsigned NumElemsInLane = NumElems / NumLanes;
6450
6451   // Blend for v16i16 should be symetric for the both lanes.
6452   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6453
6454     int SndLaneEltIdx = (NumLanes == 2) ? MaskVals[i + NumElemsInLane] : -1;
6455     int EltIdx = MaskVals[i];
6456
6457     if ((EltIdx < 0 || EltIdx == (int)i) &&
6458         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6459       continue;
6460
6461     if (((unsigned)EltIdx == (i + NumElems)) &&
6462         (SndLaneEltIdx < 0 ||
6463          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6464       MaskValue |= (1 << i);
6465     else
6466       return false;
6467   }
6468
6469   if (MaskOut)
6470     *MaskOut = MaskValue;
6471   return true;
6472 }
6473
6474 // Try to lower a shuffle node into a simple blend instruction.
6475 // This function assumes isBlendMask returns true for this
6476 // SuffleVectorSDNode
6477 static SDValue LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6478                                           unsigned MaskValue,
6479                                           const X86Subtarget *Subtarget,
6480                                           SelectionDAG &DAG) {
6481   MVT VT = SVOp->getSimpleValueType(0);
6482   MVT EltVT = VT.getVectorElementType();
6483   assert(isBlendMask(SVOp->getMask(), VT, Subtarget->hasSSE41(),
6484                      Subtarget->hasInt256() && "Trying to lower a "
6485                                                "VECTOR_SHUFFLE to a Blend but "
6486                                                "with the wrong mask"));
6487   SDValue V1 = SVOp->getOperand(0);
6488   SDValue V2 = SVOp->getOperand(1);
6489   SDLoc dl(SVOp);
6490   unsigned NumElems = VT.getVectorNumElements();
6491
6492   // Convert i32 vectors to floating point if it is not AVX2.
6493   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6494   MVT BlendVT = VT;
6495   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6496     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6497                                NumElems);
6498     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6499     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6500   }
6501
6502   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6503                             DAG.getConstant(MaskValue, MVT::i32));
6504   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6505 }
6506
6507 /// In vector type \p VT, return true if the element at index \p InputIdx
6508 /// falls on a different 128-bit lane than \p OutputIdx.
6509 static bool ShuffleCrosses128bitLane(MVT VT, unsigned InputIdx,
6510                                      unsigned OutputIdx) {
6511   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
6512   return InputIdx * EltSize / 128 != OutputIdx * EltSize / 128;
6513 }
6514
6515 /// Generate a PSHUFB if possible.  Selects elements from \p V1 according to
6516 /// \p MaskVals.  MaskVals[OutputIdx] = InputIdx specifies that we want to
6517 /// shuffle the element at InputIdx in V1 to OutputIdx in the result.  If \p
6518 /// MaskVals refers to elements outside of \p V1 or is undef (-1), insert a
6519 /// zero.
6520 static SDValue getPSHUFB(ArrayRef<int> MaskVals, SDValue V1, SDLoc &dl,
6521                          SelectionDAG &DAG) {
6522   MVT VT = V1.getSimpleValueType();
6523   assert(VT.is128BitVector() || VT.is256BitVector());
6524
6525   MVT EltVT = VT.getVectorElementType();
6526   unsigned EltSizeInBytes = EltVT.getSizeInBits() / 8;
6527   unsigned NumElts = VT.getVectorNumElements();
6528
6529   SmallVector<SDValue, 32> PshufbMask;
6530   for (unsigned OutputIdx = 0; OutputIdx < NumElts; ++OutputIdx) {
6531     int InputIdx = MaskVals[OutputIdx];
6532     unsigned InputByteIdx;
6533
6534     if (InputIdx < 0 || NumElts <= (unsigned)InputIdx)
6535       InputByteIdx = 0x80;
6536     else {
6537       // Cross lane is not allowed.
6538       if (ShuffleCrosses128bitLane(VT, InputIdx, OutputIdx))
6539         return SDValue();
6540       InputByteIdx = InputIdx * EltSizeInBytes;
6541       // Index is an byte offset within the 128-bit lane.
6542       InputByteIdx &= 0xf;
6543     }
6544
6545     for (unsigned j = 0; j < EltSizeInBytes; ++j) {
6546       PshufbMask.push_back(DAG.getConstant(InputByteIdx, MVT::i8));
6547       if (InputByteIdx != 0x80)
6548         ++InputByteIdx;
6549     }
6550   }
6551
6552   MVT ShufVT = MVT::getVectorVT(MVT::i8, PshufbMask.size());
6553   if (ShufVT != VT)
6554     V1 = DAG.getNode(ISD::BITCAST, dl, ShufVT, V1);
6555   return DAG.getNode(X86ISD::PSHUFB, dl, ShufVT, V1,
6556                      DAG.getNode(ISD::BUILD_VECTOR, dl, ShufVT, PshufbMask));
6557 }
6558
6559 // v8i16 shuffles - Prefer shuffles in the following order:
6560 // 1. [all]   pshuflw, pshufhw, optional move
6561 // 2. [ssse3] 1 x pshufb
6562 // 3. [ssse3] 2 x pshufb + 1 x por
6563 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6564 static SDValue
6565 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6566                          SelectionDAG &DAG) {
6567   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6568   SDValue V1 = SVOp->getOperand(0);
6569   SDValue V2 = SVOp->getOperand(1);
6570   SDLoc dl(SVOp);
6571   SmallVector<int, 8> MaskVals;
6572
6573   // Determine if more than 1 of the words in each of the low and high quadwords
6574   // of the result come from the same quadword of one of the two inputs.  Undef
6575   // mask values count as coming from any quadword, for better codegen.
6576   //
6577   // Lo/HiQuad[i] = j indicates how many words from the ith quad of the input
6578   // feeds this quad.  For i, 0 and 1 refer to V1, 2 and 3 refer to V2.
6579   unsigned LoQuad[] = { 0, 0, 0, 0 };
6580   unsigned HiQuad[] = { 0, 0, 0, 0 };
6581   // Indices of quads used.
6582   std::bitset<4> InputQuads;
6583   for (unsigned i = 0; i < 8; ++i) {
6584     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6585     int EltIdx = SVOp->getMaskElt(i);
6586     MaskVals.push_back(EltIdx);
6587     if (EltIdx < 0) {
6588       ++Quad[0];
6589       ++Quad[1];
6590       ++Quad[2];
6591       ++Quad[3];
6592       continue;
6593     }
6594     ++Quad[EltIdx / 4];
6595     InputQuads.set(EltIdx / 4);
6596   }
6597
6598   int BestLoQuad = -1;
6599   unsigned MaxQuad = 1;
6600   for (unsigned i = 0; i < 4; ++i) {
6601     if (LoQuad[i] > MaxQuad) {
6602       BestLoQuad = i;
6603       MaxQuad = LoQuad[i];
6604     }
6605   }
6606
6607   int BestHiQuad = -1;
6608   MaxQuad = 1;
6609   for (unsigned i = 0; i < 4; ++i) {
6610     if (HiQuad[i] > MaxQuad) {
6611       BestHiQuad = i;
6612       MaxQuad = HiQuad[i];
6613     }
6614   }
6615
6616   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6617   // of the two input vectors, shuffle them into one input vector so only a
6618   // single pshufb instruction is necessary. If there are more than 2 input
6619   // quads, disable the next transformation since it does not help SSSE3.
6620   bool V1Used = InputQuads[0] || InputQuads[1];
6621   bool V2Used = InputQuads[2] || InputQuads[3];
6622   if (Subtarget->hasSSSE3()) {
6623     if (InputQuads.count() == 2 && V1Used && V2Used) {
6624       BestLoQuad = InputQuads[0] ? 0 : 1;
6625       BestHiQuad = InputQuads[2] ? 2 : 3;
6626     }
6627     if (InputQuads.count() > 2) {
6628       BestLoQuad = -1;
6629       BestHiQuad = -1;
6630     }
6631   }
6632
6633   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6634   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6635   // words from all 4 input quadwords.
6636   SDValue NewV;
6637   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6638     int MaskV[] = {
6639       BestLoQuad < 0 ? 0 : BestLoQuad,
6640       BestHiQuad < 0 ? 1 : BestHiQuad
6641     };
6642     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6643                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6644                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6645     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6646
6647     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6648     // source words for the shuffle, to aid later transformations.
6649     bool AllWordsInNewV = true;
6650     bool InOrder[2] = { true, true };
6651     for (unsigned i = 0; i != 8; ++i) {
6652       int idx = MaskVals[i];
6653       if (idx != (int)i)
6654         InOrder[i/4] = false;
6655       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6656         continue;
6657       AllWordsInNewV = false;
6658       break;
6659     }
6660
6661     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6662     if (AllWordsInNewV) {
6663       for (int i = 0; i != 8; ++i) {
6664         int idx = MaskVals[i];
6665         if (idx < 0)
6666           continue;
6667         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6668         if ((idx != i) && idx < 4)
6669           pshufhw = false;
6670         if ((idx != i) && idx > 3)
6671           pshuflw = false;
6672       }
6673       V1 = NewV;
6674       V2Used = false;
6675       BestLoQuad = 0;
6676       BestHiQuad = 1;
6677     }
6678
6679     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6680     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6681     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6682       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6683       unsigned TargetMask = 0;
6684       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6685                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6686       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6687       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6688                              getShufflePSHUFLWImmediate(SVOp);
6689       V1 = NewV.getOperand(0);
6690       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6691     }
6692   }
6693
6694   // Promote splats to a larger type which usually leads to more efficient code.
6695   // FIXME: Is this true if pshufb is available?
6696   if (SVOp->isSplat())
6697     return PromoteSplat(SVOp, DAG);
6698
6699   // If we have SSSE3, and all words of the result are from 1 input vector,
6700   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6701   // is present, fall back to case 4.
6702   if (Subtarget->hasSSSE3()) {
6703     SmallVector<SDValue,16> pshufbMask;
6704
6705     // If we have elements from both input vectors, set the high bit of the
6706     // shuffle mask element to zero out elements that come from V2 in the V1
6707     // mask, and elements that come from V1 in the V2 mask, so that the two
6708     // results can be OR'd together.
6709     bool TwoInputs = V1Used && V2Used;
6710     V1 = getPSHUFB(MaskVals, V1, dl, DAG);
6711     if (!TwoInputs)
6712       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6713
6714     // Calculate the shuffle mask for the second input, shuffle it, and
6715     // OR it with the first shuffled input.
6716     CommuteVectorShuffleMask(MaskVals, 8);
6717     V2 = getPSHUFB(MaskVals, V2, dl, DAG);
6718     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6719     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6720   }
6721
6722   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6723   // and update MaskVals with new element order.
6724   std::bitset<8> InOrder;
6725   if (BestLoQuad >= 0) {
6726     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6727     for (int i = 0; i != 4; ++i) {
6728       int idx = MaskVals[i];
6729       if (idx < 0) {
6730         InOrder.set(i);
6731       } else if ((idx / 4) == BestLoQuad) {
6732         MaskV[i] = idx & 3;
6733         InOrder.set(i);
6734       }
6735     }
6736     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6737                                 &MaskV[0]);
6738
6739     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSE2()) {
6740       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6741       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6742                                   NewV.getOperand(0),
6743                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6744     }
6745   }
6746
6747   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6748   // and update MaskVals with the new element order.
6749   if (BestHiQuad >= 0) {
6750     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6751     for (unsigned i = 4; i != 8; ++i) {
6752       int idx = MaskVals[i];
6753       if (idx < 0) {
6754         InOrder.set(i);
6755       } else if ((idx / 4) == BestHiQuad) {
6756         MaskV[i] = (idx & 3) + 4;
6757         InOrder.set(i);
6758       }
6759     }
6760     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6761                                 &MaskV[0]);
6762
6763     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSE2()) {
6764       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6765       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6766                                   NewV.getOperand(0),
6767                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6768     }
6769   }
6770
6771   // In case BestHi & BestLo were both -1, which means each quadword has a word
6772   // from each of the four input quadwords, calculate the InOrder bitvector now
6773   // before falling through to the insert/extract cleanup.
6774   if (BestLoQuad == -1 && BestHiQuad == -1) {
6775     NewV = V1;
6776     for (int i = 0; i != 8; ++i)
6777       if (MaskVals[i] < 0 || MaskVals[i] == i)
6778         InOrder.set(i);
6779   }
6780
6781   // The other elements are put in the right place using pextrw and pinsrw.
6782   for (unsigned i = 0; i != 8; ++i) {
6783     if (InOrder[i])
6784       continue;
6785     int EltIdx = MaskVals[i];
6786     if (EltIdx < 0)
6787       continue;
6788     SDValue ExtOp = (EltIdx < 8) ?
6789       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6790                   DAG.getIntPtrConstant(EltIdx)) :
6791       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6792                   DAG.getIntPtrConstant(EltIdx - 8));
6793     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6794                        DAG.getIntPtrConstant(i));
6795   }
6796   return NewV;
6797 }
6798
6799 /// \brief v16i16 shuffles
6800 ///
6801 /// FIXME: We only support generation of a single pshufb currently.  We can
6802 /// generalize the other applicable cases from LowerVECTOR_SHUFFLEv8i16 as
6803 /// well (e.g 2 x pshufb + 1 x por).
6804 static SDValue
6805 LowerVECTOR_SHUFFLEv16i16(SDValue Op, SelectionDAG &DAG) {
6806   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6807   SDValue V1 = SVOp->getOperand(0);
6808   SDValue V2 = SVOp->getOperand(1);
6809   SDLoc dl(SVOp);
6810
6811   if (V2.getOpcode() != ISD::UNDEF)
6812     return SDValue();
6813
6814   SmallVector<int, 16> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6815   return getPSHUFB(MaskVals, V1, dl, DAG);
6816 }
6817
6818 // v16i8 shuffles - Prefer shuffles in the following order:
6819 // 1. [ssse3] 1 x pshufb
6820 // 2. [ssse3] 2 x pshufb + 1 x por
6821 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6822 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6823                                         const X86Subtarget* Subtarget,
6824                                         SelectionDAG &DAG) {
6825   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6826   SDValue V1 = SVOp->getOperand(0);
6827   SDValue V2 = SVOp->getOperand(1);
6828   SDLoc dl(SVOp);
6829   ArrayRef<int> MaskVals = SVOp->getMask();
6830
6831   // Promote splats to a larger type which usually leads to more efficient code.
6832   // FIXME: Is this true if pshufb is available?
6833   if (SVOp->isSplat())
6834     return PromoteSplat(SVOp, DAG);
6835
6836   // If we have SSSE3, case 1 is generated when all result bytes come from
6837   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6838   // present, fall back to case 3.
6839
6840   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6841   if (Subtarget->hasSSSE3()) {
6842     SmallVector<SDValue,16> pshufbMask;
6843
6844     // If all result elements are from one input vector, then only translate
6845     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6846     //
6847     // Otherwise, we have elements from both input vectors, and must zero out
6848     // elements that come from V2 in the first mask, and V1 in the second mask
6849     // so that we can OR them together.
6850     for (unsigned i = 0; i != 16; ++i) {
6851       int EltIdx = MaskVals[i];
6852       if (EltIdx < 0 || EltIdx >= 16)
6853         EltIdx = 0x80;
6854       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6855     }
6856     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6857                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6858                                  MVT::v16i8, pshufbMask));
6859
6860     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6861     // the 2nd operand if it's undefined or zero.
6862     if (V2.getOpcode() == ISD::UNDEF ||
6863         ISD::isBuildVectorAllZeros(V2.getNode()))
6864       return V1;
6865
6866     // Calculate the shuffle mask for the second input, shuffle it, and
6867     // OR it with the first shuffled input.
6868     pshufbMask.clear();
6869     for (unsigned i = 0; i != 16; ++i) {
6870       int EltIdx = MaskVals[i];
6871       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6872       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6873     }
6874     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6875                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6876                                  MVT::v16i8, pshufbMask));
6877     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6878   }
6879
6880   // No SSSE3 - Calculate in place words and then fix all out of place words
6881   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6882   // the 16 different words that comprise the two doublequadword input vectors.
6883   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6884   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6885   SDValue NewV = V1;
6886   for (int i = 0; i != 8; ++i) {
6887     int Elt0 = MaskVals[i*2];
6888     int Elt1 = MaskVals[i*2+1];
6889
6890     // This word of the result is all undef, skip it.
6891     if (Elt0 < 0 && Elt1 < 0)
6892       continue;
6893
6894     // This word of the result is already in the correct place, skip it.
6895     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6896       continue;
6897
6898     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6899     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6900     SDValue InsElt;
6901
6902     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6903     // using a single extract together, load it and store it.
6904     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6905       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6906                            DAG.getIntPtrConstant(Elt1 / 2));
6907       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6908                         DAG.getIntPtrConstant(i));
6909       continue;
6910     }
6911
6912     // If Elt1 is defined, extract it from the appropriate source.  If the
6913     // source byte is not also odd, shift the extracted word left 8 bits
6914     // otherwise clear the bottom 8 bits if we need to do an or.
6915     if (Elt1 >= 0) {
6916       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6917                            DAG.getIntPtrConstant(Elt1 / 2));
6918       if ((Elt1 & 1) == 0)
6919         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6920                              DAG.getConstant(8,
6921                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6922       else if (Elt0 >= 0)
6923         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6924                              DAG.getConstant(0xFF00, MVT::i16));
6925     }
6926     // If Elt0 is defined, extract it from the appropriate source.  If the
6927     // source byte is not also even, shift the extracted word right 8 bits. If
6928     // Elt1 was also defined, OR the extracted values together before
6929     // inserting them in the result.
6930     if (Elt0 >= 0) {
6931       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6932                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6933       if ((Elt0 & 1) != 0)
6934         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6935                               DAG.getConstant(8,
6936                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6937       else if (Elt1 >= 0)
6938         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6939                              DAG.getConstant(0x00FF, MVT::i16));
6940       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6941                          : InsElt0;
6942     }
6943     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6944                        DAG.getIntPtrConstant(i));
6945   }
6946   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6947 }
6948
6949 // v32i8 shuffles - Translate to VPSHUFB if possible.
6950 static
6951 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6952                                  const X86Subtarget *Subtarget,
6953                                  SelectionDAG &DAG) {
6954   MVT VT = SVOp->getSimpleValueType(0);
6955   SDValue V1 = SVOp->getOperand(0);
6956   SDValue V2 = SVOp->getOperand(1);
6957   SDLoc dl(SVOp);
6958   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6959
6960   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6961   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6962   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6963
6964   // VPSHUFB may be generated if
6965   // (1) one of input vector is undefined or zeroinitializer.
6966   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6967   // And (2) the mask indexes don't cross the 128-bit lane.
6968   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6969       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6970     return SDValue();
6971
6972   if (V1IsAllZero && !V2IsAllZero) {
6973     CommuteVectorShuffleMask(MaskVals, 32);
6974     V1 = V2;
6975   }
6976   return getPSHUFB(MaskVals, V1, dl, DAG);
6977 }
6978
6979 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6980 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6981 /// done when every pair / quad of shuffle mask elements point to elements in
6982 /// the right sequence. e.g.
6983 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6984 static
6985 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6986                                  SelectionDAG &DAG) {
6987   MVT VT = SVOp->getSimpleValueType(0);
6988   SDLoc dl(SVOp);
6989   unsigned NumElems = VT.getVectorNumElements();
6990   MVT NewVT;
6991   unsigned Scale;
6992   switch (VT.SimpleTy) {
6993   default: llvm_unreachable("Unexpected!");
6994   case MVT::v2i64:
6995   case MVT::v2f64:
6996            return SDValue(SVOp, 0);
6997   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6998   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6999   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
7000   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
7001   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
7002   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
7003   }
7004
7005   SmallVector<int, 8> MaskVec;
7006   for (unsigned i = 0; i != NumElems; i += Scale) {
7007     int StartIdx = -1;
7008     for (unsigned j = 0; j != Scale; ++j) {
7009       int EltIdx = SVOp->getMaskElt(i+j);
7010       if (EltIdx < 0)
7011         continue;
7012       if (StartIdx < 0)
7013         StartIdx = (EltIdx / Scale);
7014       if (EltIdx != (int)(StartIdx*Scale + j))
7015         return SDValue();
7016     }
7017     MaskVec.push_back(StartIdx);
7018   }
7019
7020   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
7021   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
7022   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
7023 }
7024
7025 /// getVZextMovL - Return a zero-extending vector move low node.
7026 ///
7027 static SDValue getVZextMovL(MVT VT, MVT OpVT,
7028                             SDValue SrcOp, SelectionDAG &DAG,
7029                             const X86Subtarget *Subtarget, SDLoc dl) {
7030   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
7031     LoadSDNode *LD = nullptr;
7032     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
7033       LD = dyn_cast<LoadSDNode>(SrcOp);
7034     if (!LD) {
7035       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
7036       // instead.
7037       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
7038       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
7039           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
7040           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
7041           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
7042         // PR2108
7043         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
7044         return DAG.getNode(ISD::BITCAST, dl, VT,
7045                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
7046                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7047                                                    OpVT,
7048                                                    SrcOp.getOperand(0)
7049                                                           .getOperand(0))));
7050       }
7051     }
7052   }
7053
7054   return DAG.getNode(ISD::BITCAST, dl, VT,
7055                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
7056                                  DAG.getNode(ISD::BITCAST, dl,
7057                                              OpVT, SrcOp)));
7058 }
7059
7060 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
7061 /// which could not be matched by any known target speficic shuffle
7062 static SDValue
7063 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
7064
7065   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
7066   if (NewOp.getNode())
7067     return NewOp;
7068
7069   MVT VT = SVOp->getSimpleValueType(0);
7070
7071   unsigned NumElems = VT.getVectorNumElements();
7072   unsigned NumLaneElems = NumElems / 2;
7073
7074   SDLoc dl(SVOp);
7075   MVT EltVT = VT.getVectorElementType();
7076   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
7077   SDValue Output[2];
7078
7079   SmallVector<int, 16> Mask;
7080   for (unsigned l = 0; l < 2; ++l) {
7081     // Build a shuffle mask for the output, discovering on the fly which
7082     // input vectors to use as shuffle operands (recorded in InputUsed).
7083     // If building a suitable shuffle vector proves too hard, then bail
7084     // out with UseBuildVector set.
7085     bool UseBuildVector = false;
7086     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
7087     unsigned LaneStart = l * NumLaneElems;
7088     for (unsigned i = 0; i != NumLaneElems; ++i) {
7089       // The mask element.  This indexes into the input.
7090       int Idx = SVOp->getMaskElt(i+LaneStart);
7091       if (Idx < 0) {
7092         // the mask element does not index into any input vector.
7093         Mask.push_back(-1);
7094         continue;
7095       }
7096
7097       // The input vector this mask element indexes into.
7098       int Input = Idx / NumLaneElems;
7099
7100       // Turn the index into an offset from the start of the input vector.
7101       Idx -= Input * NumLaneElems;
7102
7103       // Find or create a shuffle vector operand to hold this input.
7104       unsigned OpNo;
7105       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
7106         if (InputUsed[OpNo] == Input)
7107           // This input vector is already an operand.
7108           break;
7109         if (InputUsed[OpNo] < 0) {
7110           // Create a new operand for this input vector.
7111           InputUsed[OpNo] = Input;
7112           break;
7113         }
7114       }
7115
7116       if (OpNo >= array_lengthof(InputUsed)) {
7117         // More than two input vectors used!  Give up on trying to create a
7118         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
7119         UseBuildVector = true;
7120         break;
7121       }
7122
7123       // Add the mask index for the new shuffle vector.
7124       Mask.push_back(Idx + OpNo * NumLaneElems);
7125     }
7126
7127     if (UseBuildVector) {
7128       SmallVector<SDValue, 16> SVOps;
7129       for (unsigned i = 0; i != NumLaneElems; ++i) {
7130         // The mask element.  This indexes into the input.
7131         int Idx = SVOp->getMaskElt(i+LaneStart);
7132         if (Idx < 0) {
7133           SVOps.push_back(DAG.getUNDEF(EltVT));
7134           continue;
7135         }
7136
7137         // The input vector this mask element indexes into.
7138         int Input = Idx / NumElems;
7139
7140         // Turn the index into an offset from the start of the input vector.
7141         Idx -= Input * NumElems;
7142
7143         // Extract the vector element by hand.
7144         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
7145                                     SVOp->getOperand(Input),
7146                                     DAG.getIntPtrConstant(Idx)));
7147       }
7148
7149       // Construct the output using a BUILD_VECTOR.
7150       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, SVOps);
7151     } else if (InputUsed[0] < 0) {
7152       // No input vectors were used! The result is undefined.
7153       Output[l] = DAG.getUNDEF(NVT);
7154     } else {
7155       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
7156                                         (InputUsed[0] % 2) * NumLaneElems,
7157                                         DAG, dl);
7158       // If only one input was used, use an undefined vector for the other.
7159       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
7160         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
7161                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
7162       // At least one input vector was used. Create a new shuffle vector.
7163       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
7164     }
7165
7166     Mask.clear();
7167   }
7168
7169   // Concatenate the result back
7170   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
7171 }
7172
7173 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
7174 /// 4 elements, and match them with several different shuffle types.
7175 static SDValue
7176 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
7177   SDValue V1 = SVOp->getOperand(0);
7178   SDValue V2 = SVOp->getOperand(1);
7179   SDLoc dl(SVOp);
7180   MVT VT = SVOp->getSimpleValueType(0);
7181
7182   assert(VT.is128BitVector() && "Unsupported vector size");
7183
7184   std::pair<int, int> Locs[4];
7185   int Mask1[] = { -1, -1, -1, -1 };
7186   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
7187
7188   unsigned NumHi = 0;
7189   unsigned NumLo = 0;
7190   for (unsigned i = 0; i != 4; ++i) {
7191     int Idx = PermMask[i];
7192     if (Idx < 0) {
7193       Locs[i] = std::make_pair(-1, -1);
7194     } else {
7195       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
7196       if (Idx < 4) {
7197         Locs[i] = std::make_pair(0, NumLo);
7198         Mask1[NumLo] = Idx;
7199         NumLo++;
7200       } else {
7201         Locs[i] = std::make_pair(1, NumHi);
7202         if (2+NumHi < 4)
7203           Mask1[2+NumHi] = Idx;
7204         NumHi++;
7205       }
7206     }
7207   }
7208
7209   if (NumLo <= 2 && NumHi <= 2) {
7210     // If no more than two elements come from either vector. This can be
7211     // implemented with two shuffles. First shuffle gather the elements.
7212     // The second shuffle, which takes the first shuffle as both of its
7213     // vector operands, put the elements into the right order.
7214     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7215
7216     int Mask2[] = { -1, -1, -1, -1 };
7217
7218     for (unsigned i = 0; i != 4; ++i)
7219       if (Locs[i].first != -1) {
7220         unsigned Idx = (i < 2) ? 0 : 4;
7221         Idx += Locs[i].first * 2 + Locs[i].second;
7222         Mask2[i] = Idx;
7223       }
7224
7225     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
7226   }
7227
7228   if (NumLo == 3 || NumHi == 3) {
7229     // Otherwise, we must have three elements from one vector, call it X, and
7230     // one element from the other, call it Y.  First, use a shufps to build an
7231     // intermediate vector with the one element from Y and the element from X
7232     // that will be in the same half in the final destination (the indexes don't
7233     // matter). Then, use a shufps to build the final vector, taking the half
7234     // containing the element from Y from the intermediate, and the other half
7235     // from X.
7236     if (NumHi == 3) {
7237       // Normalize it so the 3 elements come from V1.
7238       CommuteVectorShuffleMask(PermMask, 4);
7239       std::swap(V1, V2);
7240     }
7241
7242     // Find the element from V2.
7243     unsigned HiIndex;
7244     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
7245       int Val = PermMask[HiIndex];
7246       if (Val < 0)
7247         continue;
7248       if (Val >= 4)
7249         break;
7250     }
7251
7252     Mask1[0] = PermMask[HiIndex];
7253     Mask1[1] = -1;
7254     Mask1[2] = PermMask[HiIndex^1];
7255     Mask1[3] = -1;
7256     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7257
7258     if (HiIndex >= 2) {
7259       Mask1[0] = PermMask[0];
7260       Mask1[1] = PermMask[1];
7261       Mask1[2] = HiIndex & 1 ? 6 : 4;
7262       Mask1[3] = HiIndex & 1 ? 4 : 6;
7263       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7264     }
7265
7266     Mask1[0] = HiIndex & 1 ? 2 : 0;
7267     Mask1[1] = HiIndex & 1 ? 0 : 2;
7268     Mask1[2] = PermMask[2];
7269     Mask1[3] = PermMask[3];
7270     if (Mask1[2] >= 0)
7271       Mask1[2] += 4;
7272     if (Mask1[3] >= 0)
7273       Mask1[3] += 4;
7274     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
7275   }
7276
7277   // Break it into (shuffle shuffle_hi, shuffle_lo).
7278   int LoMask[] = { -1, -1, -1, -1 };
7279   int HiMask[] = { -1, -1, -1, -1 };
7280
7281   int *MaskPtr = LoMask;
7282   unsigned MaskIdx = 0;
7283   unsigned LoIdx = 0;
7284   unsigned HiIdx = 2;
7285   for (unsigned i = 0; i != 4; ++i) {
7286     if (i == 2) {
7287       MaskPtr = HiMask;
7288       MaskIdx = 1;
7289       LoIdx = 0;
7290       HiIdx = 2;
7291     }
7292     int Idx = PermMask[i];
7293     if (Idx < 0) {
7294       Locs[i] = std::make_pair(-1, -1);
7295     } else if (Idx < 4) {
7296       Locs[i] = std::make_pair(MaskIdx, LoIdx);
7297       MaskPtr[LoIdx] = Idx;
7298       LoIdx++;
7299     } else {
7300       Locs[i] = std::make_pair(MaskIdx, HiIdx);
7301       MaskPtr[HiIdx] = Idx;
7302       HiIdx++;
7303     }
7304   }
7305
7306   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
7307   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
7308   int MaskOps[] = { -1, -1, -1, -1 };
7309   for (unsigned i = 0; i != 4; ++i)
7310     if (Locs[i].first != -1)
7311       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
7312   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
7313 }
7314
7315 static bool MayFoldVectorLoad(SDValue V) {
7316   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
7317     V = V.getOperand(0);
7318
7319   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7320     V = V.getOperand(0);
7321   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7322       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7323     // BUILD_VECTOR (load), undef
7324     V = V.getOperand(0);
7325
7326   return MayFoldLoad(V);
7327 }
7328
7329 static
7330 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
7331   MVT VT = Op.getSimpleValueType();
7332
7333   // Canonizalize to v2f64.
7334   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7335   return DAG.getNode(ISD::BITCAST, dl, VT,
7336                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7337                                           V1, DAG));
7338 }
7339
7340 static
7341 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
7342                         bool HasSSE2) {
7343   SDValue V1 = Op.getOperand(0);
7344   SDValue V2 = Op.getOperand(1);
7345   MVT VT = Op.getSimpleValueType();
7346
7347   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7348
7349   if (HasSSE2 && VT == MVT::v2f64)
7350     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7351
7352   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7353   return DAG.getNode(ISD::BITCAST, dl, VT,
7354                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7355                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7356                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7357 }
7358
7359 static
7360 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7361   SDValue V1 = Op.getOperand(0);
7362   SDValue V2 = Op.getOperand(1);
7363   MVT VT = Op.getSimpleValueType();
7364
7365   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7366          "unsupported shuffle type");
7367
7368   if (V2.getOpcode() == ISD::UNDEF)
7369     V2 = V1;
7370
7371   // v4i32 or v4f32
7372   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7373 }
7374
7375 static
7376 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7377   SDValue V1 = Op.getOperand(0);
7378   SDValue V2 = Op.getOperand(1);
7379   MVT VT = Op.getSimpleValueType();
7380   unsigned NumElems = VT.getVectorNumElements();
7381
7382   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7383   // operand of these instructions is only memory, so check if there's a
7384   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7385   // same masks.
7386   bool CanFoldLoad = false;
7387
7388   // Trivial case, when V2 comes from a load.
7389   if (MayFoldVectorLoad(V2))
7390     CanFoldLoad = true;
7391
7392   // When V1 is a load, it can be folded later into a store in isel, example:
7393   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7394   //    turns into:
7395   //  (MOVLPSmr addr:$src1, VR128:$src2)
7396   // So, recognize this potential and also use MOVLPS or MOVLPD
7397   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7398     CanFoldLoad = true;
7399
7400   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7401   if (CanFoldLoad) {
7402     if (HasSSE2 && NumElems == 2)
7403       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7404
7405     if (NumElems == 4)
7406       // If we don't care about the second element, proceed to use movss.
7407       if (SVOp->getMaskElt(1) != -1)
7408         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7409   }
7410
7411   // movl and movlp will both match v2i64, but v2i64 is never matched by
7412   // movl earlier because we make it strict to avoid messing with the movlp load
7413   // folding logic (see the code above getMOVLP call). Match it here then,
7414   // this is horrible, but will stay like this until we move all shuffle
7415   // matching to x86 specific nodes. Note that for the 1st condition all
7416   // types are matched with movsd.
7417   if (HasSSE2) {
7418     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7419     // as to remove this logic from here, as much as possible
7420     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7421       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7422     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7423   }
7424
7425   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7426
7427   // Invert the operand order and use SHUFPS to match it.
7428   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7429                               getShuffleSHUFImmediate(SVOp), DAG);
7430 }
7431
7432 static SDValue NarrowVectorLoadToElement(LoadSDNode *Load, unsigned Index,
7433                                          SelectionDAG &DAG) {
7434   SDLoc dl(Load);
7435   MVT VT = Load->getSimpleValueType(0);
7436   MVT EVT = VT.getVectorElementType();
7437   SDValue Addr = Load->getOperand(1);
7438   SDValue NewAddr = DAG.getNode(
7439       ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
7440       DAG.getConstant(Index * EVT.getStoreSize(), Addr.getSimpleValueType()));
7441
7442   SDValue NewLoad =
7443       DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
7444                   DAG.getMachineFunction().getMachineMemOperand(
7445                       Load->getMemOperand(), 0, EVT.getStoreSize()));
7446   return NewLoad;
7447 }
7448
7449 // It is only safe to call this function if isINSERTPSMask is true for
7450 // this shufflevector mask.
7451 static SDValue getINSERTPS(ShuffleVectorSDNode *SVOp, SDLoc &dl,
7452                            SelectionDAG &DAG) {
7453   // Generate an insertps instruction when inserting an f32 from memory onto a
7454   // v4f32 or when copying a member from one v4f32 to another.
7455   // We also use it for transferring i32 from one register to another,
7456   // since it simply copies the same bits.
7457   // If we're transferring an i32 from memory to a specific element in a
7458   // register, we output a generic DAG that will match the PINSRD
7459   // instruction.
7460   MVT VT = SVOp->getSimpleValueType(0);
7461   MVT EVT = VT.getVectorElementType();
7462   SDValue V1 = SVOp->getOperand(0);
7463   SDValue V2 = SVOp->getOperand(1);
7464   auto Mask = SVOp->getMask();
7465   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
7466          "unsupported vector type for insertps/pinsrd");
7467
7468   int FromV1 = std::count_if(Mask.begin(), Mask.end(),
7469                              [](const int &i) { return i < 4; });
7470
7471   SDValue From;
7472   SDValue To;
7473   unsigned DestIndex;
7474   if (FromV1 == 1) {
7475     From = V1;
7476     To = V2;
7477     DestIndex = std::find_if(Mask.begin(), Mask.end(),
7478                              [](const int &i) { return i < 4; }) -
7479                 Mask.begin();
7480   } else {
7481     From = V2;
7482     To = V1;
7483     DestIndex = std::find_if(Mask.begin(), Mask.end(),
7484                              [](const int &i) { return i >= 4; }) -
7485                 Mask.begin();
7486   }
7487
7488   if (MayFoldLoad(From)) {
7489     // Trivial case, when From comes from a load and is only used by the
7490     // shuffle. Make it use insertps from the vector that we need from that
7491     // load.
7492     SDValue NewLoad =
7493         NarrowVectorLoadToElement(cast<LoadSDNode>(From), DestIndex, DAG);
7494     if (!NewLoad.getNode())
7495       return SDValue();
7496
7497     if (EVT == MVT::f32) {
7498       // Create this as a scalar to vector to match the instruction pattern.
7499       SDValue LoadScalarToVector =
7500           DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, NewLoad);
7501       SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4);
7502       return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, LoadScalarToVector,
7503                          InsertpsMask);
7504     } else { // EVT == MVT::i32
7505       // If we're getting an i32 from memory, use an INSERT_VECTOR_ELT
7506       // instruction, to match the PINSRD instruction, which loads an i32 to a
7507       // certain vector element.
7508       return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, To, NewLoad,
7509                          DAG.getConstant(DestIndex, MVT::i32));
7510     }
7511   }
7512
7513   // Vector-element-to-vector
7514   unsigned SrcIndex = Mask[DestIndex] % 4;
7515   SDValue InsertpsMask = DAG.getIntPtrConstant(DestIndex << 4 | SrcIndex << 6);
7516   return DAG.getNode(X86ISD::INSERTPS, dl, VT, To, From, InsertpsMask);
7517 }
7518
7519 // Reduce a vector shuffle to zext.
7520 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7521                                     SelectionDAG &DAG) {
7522   // PMOVZX is only available from SSE41.
7523   if (!Subtarget->hasSSE41())
7524     return SDValue();
7525
7526   MVT VT = Op.getSimpleValueType();
7527
7528   // Only AVX2 support 256-bit vector integer extending.
7529   if (!Subtarget->hasInt256() && VT.is256BitVector())
7530     return SDValue();
7531
7532   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7533   SDLoc DL(Op);
7534   SDValue V1 = Op.getOperand(0);
7535   SDValue V2 = Op.getOperand(1);
7536   unsigned NumElems = VT.getVectorNumElements();
7537
7538   // Extending is an unary operation and the element type of the source vector
7539   // won't be equal to or larger than i64.
7540   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7541       VT.getVectorElementType() == MVT::i64)
7542     return SDValue();
7543
7544   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7545   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7546   while ((1U << Shift) < NumElems) {
7547     if (SVOp->getMaskElt(1U << Shift) == 1)
7548       break;
7549     Shift += 1;
7550     // The maximal ratio is 8, i.e. from i8 to i64.
7551     if (Shift > 3)
7552       return SDValue();
7553   }
7554
7555   // Check the shuffle mask.
7556   unsigned Mask = (1U << Shift) - 1;
7557   for (unsigned i = 0; i != NumElems; ++i) {
7558     int EltIdx = SVOp->getMaskElt(i);
7559     if ((i & Mask) != 0 && EltIdx != -1)
7560       return SDValue();
7561     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7562       return SDValue();
7563   }
7564
7565   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7566   MVT NeVT = MVT::getIntegerVT(NBits);
7567   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7568
7569   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7570     return SDValue();
7571
7572   // Simplify the operand as it's prepared to be fed into shuffle.
7573   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7574   if (V1.getOpcode() == ISD::BITCAST &&
7575       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7576       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7577       V1.getOperand(0).getOperand(0)
7578         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7579     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7580     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7581     ConstantSDNode *CIdx =
7582       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7583     // If it's foldable, i.e. normal load with single use, we will let code
7584     // selection to fold it. Otherwise, we will short the conversion sequence.
7585     if (CIdx && CIdx->getZExtValue() == 0 &&
7586         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7587       MVT FullVT = V.getSimpleValueType();
7588       MVT V1VT = V1.getSimpleValueType();
7589       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7590         // The "ext_vec_elt" node is wider than the result node.
7591         // In this case we should extract subvector from V.
7592         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7593         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7594         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7595                                         FullVT.getVectorNumElements()/Ratio);
7596         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7597                         DAG.getIntPtrConstant(0));
7598       }
7599       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7600     }
7601   }
7602
7603   return DAG.getNode(ISD::BITCAST, DL, VT,
7604                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7605 }
7606
7607 static SDValue NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7608                                       SelectionDAG &DAG) {
7609   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7610   MVT VT = Op.getSimpleValueType();
7611   SDLoc dl(Op);
7612   SDValue V1 = Op.getOperand(0);
7613   SDValue V2 = Op.getOperand(1);
7614
7615   if (isZeroShuffle(SVOp))
7616     return getZeroVector(VT, Subtarget, DAG, dl);
7617
7618   // Handle splat operations
7619   if (SVOp->isSplat()) {
7620     // Use vbroadcast whenever the splat comes from a foldable load
7621     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7622     if (Broadcast.getNode())
7623       return Broadcast;
7624   }
7625
7626   // Check integer expanding shuffles.
7627   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7628   if (NewOp.getNode())
7629     return NewOp;
7630
7631   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7632   // do it!
7633   if (VT == MVT::v8i16 || VT == MVT::v16i8 || VT == MVT::v16i16 ||
7634       VT == MVT::v32i8) {
7635     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7636     if (NewOp.getNode())
7637       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7638   } else if (VT.is128BitVector() && Subtarget->hasSSE2()) {
7639     // FIXME: Figure out a cleaner way to do this.
7640     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7641       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7642       if (NewOp.getNode()) {
7643         MVT NewVT = NewOp.getSimpleValueType();
7644         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7645                                NewVT, true, false))
7646           return getVZextMovL(VT, NewVT, NewOp.getOperand(0), DAG, Subtarget,
7647                               dl);
7648       }
7649     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7650       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7651       if (NewOp.getNode()) {
7652         MVT NewVT = NewOp.getSimpleValueType();
7653         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7654           return getVZextMovL(VT, NewVT, NewOp.getOperand(1), DAG, Subtarget,
7655                               dl);
7656       }
7657     }
7658   }
7659   return SDValue();
7660 }
7661
7662 SDValue
7663 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7664   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7665   SDValue V1 = Op.getOperand(0);
7666   SDValue V2 = Op.getOperand(1);
7667   MVT VT = Op.getSimpleValueType();
7668   SDLoc dl(Op);
7669   unsigned NumElems = VT.getVectorNumElements();
7670   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7671   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7672   bool V1IsSplat = false;
7673   bool V2IsSplat = false;
7674   bool HasSSE2 = Subtarget->hasSSE2();
7675   bool HasFp256    = Subtarget->hasFp256();
7676   bool HasInt256   = Subtarget->hasInt256();
7677   MachineFunction &MF = DAG.getMachineFunction();
7678   bool OptForSize = MF.getFunction()->getAttributes().
7679     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7680
7681   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7682
7683   if (V1IsUndef && V2IsUndef)
7684     return DAG.getUNDEF(VT);
7685
7686   // When we create a shuffle node we put the UNDEF node to second operand,
7687   // but in some cases the first operand may be transformed to UNDEF.
7688   // In this case we should just commute the node.
7689   if (V1IsUndef)
7690     return CommuteVectorShuffle(SVOp, DAG);
7691
7692   // Vector shuffle lowering takes 3 steps:
7693   //
7694   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7695   //    narrowing and commutation of operands should be handled.
7696   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7697   //    shuffle nodes.
7698   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7699   //    so the shuffle can be broken into other shuffles and the legalizer can
7700   //    try the lowering again.
7701   //
7702   // The general idea is that no vector_shuffle operation should be left to
7703   // be matched during isel, all of them must be converted to a target specific
7704   // node here.
7705
7706   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7707   // narrowing and commutation of operands should be handled. The actual code
7708   // doesn't include all of those, work in progress...
7709   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7710   if (NewOp.getNode())
7711     return NewOp;
7712
7713   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7714
7715   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7716   // unpckh_undef). Only use pshufd if speed is more important than size.
7717   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7718     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7719   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7720     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7721
7722   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7723       V2IsUndef && MayFoldVectorLoad(V1))
7724     return getMOVDDup(Op, dl, V1, DAG);
7725
7726   if (isMOVHLPS_v_undef_Mask(M, VT))
7727     return getMOVHighToLow(Op, dl, DAG);
7728
7729   // Use to match splats
7730   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7731       (VT == MVT::v2f64 || VT == MVT::v2i64))
7732     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7733
7734   if (isPSHUFDMask(M, VT)) {
7735     // The actual implementation will match the mask in the if above and then
7736     // during isel it can match several different instructions, not only pshufd
7737     // as its name says, sad but true, emulate the behavior for now...
7738     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7739       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7740
7741     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7742
7743     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7744       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7745
7746     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7747       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7748                                   DAG);
7749
7750     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7751                                 TargetMask, DAG);
7752   }
7753
7754   if (isPALIGNRMask(M, VT, Subtarget))
7755     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7756                                 getShufflePALIGNRImmediate(SVOp),
7757                                 DAG);
7758
7759   // Check if this can be converted into a logical shift.
7760   bool isLeft = false;
7761   unsigned ShAmt = 0;
7762   SDValue ShVal;
7763   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7764   if (isShift && ShVal.hasOneUse()) {
7765     // If the shifted value has multiple uses, it may be cheaper to use
7766     // v_set0 + movlhps or movhlps, etc.
7767     MVT EltVT = VT.getVectorElementType();
7768     ShAmt *= EltVT.getSizeInBits();
7769     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7770   }
7771
7772   if (isMOVLMask(M, VT)) {
7773     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7774       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7775     if (!isMOVLPMask(M, VT)) {
7776       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7777         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7778
7779       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7780         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7781     }
7782   }
7783
7784   // FIXME: fold these into legal mask.
7785   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7786     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7787
7788   if (isMOVHLPSMask(M, VT))
7789     return getMOVHighToLow(Op, dl, DAG);
7790
7791   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7792     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7793
7794   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7795     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7796
7797   if (isMOVLPMask(M, VT))
7798     return getMOVLP(Op, dl, DAG, HasSSE2);
7799
7800   if (ShouldXformToMOVHLPS(M, VT) ||
7801       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7802     return CommuteVectorShuffle(SVOp, DAG);
7803
7804   if (isShift) {
7805     // No better options. Use a vshldq / vsrldq.
7806     MVT EltVT = VT.getVectorElementType();
7807     ShAmt *= EltVT.getSizeInBits();
7808     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7809   }
7810
7811   bool Commuted = false;
7812   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7813   // 1,1,1,1 -> v8i16 though.
7814   V1IsSplat = isSplatVector(V1.getNode());
7815   V2IsSplat = isSplatVector(V2.getNode());
7816
7817   // Canonicalize the splat or undef, if present, to be on the RHS.
7818   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7819     CommuteVectorShuffleMask(M, NumElems);
7820     std::swap(V1, V2);
7821     std::swap(V1IsSplat, V2IsSplat);
7822     Commuted = true;
7823   }
7824
7825   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7826     // Shuffling low element of v1 into undef, just return v1.
7827     if (V2IsUndef)
7828       return V1;
7829     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7830     // the instruction selector will not match, so get a canonical MOVL with
7831     // swapped operands to undo the commute.
7832     return getMOVL(DAG, dl, VT, V2, V1);
7833   }
7834
7835   if (isUNPCKLMask(M, VT, HasInt256))
7836     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7837
7838   if (isUNPCKHMask(M, VT, HasInt256))
7839     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7840
7841   if (V2IsSplat) {
7842     // Normalize mask so all entries that point to V2 points to its first
7843     // element then try to match unpck{h|l} again. If match, return a
7844     // new vector_shuffle with the corrected mask.p
7845     SmallVector<int, 8> NewMask(M.begin(), M.end());
7846     NormalizeMask(NewMask, NumElems);
7847     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7848       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7849     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7850       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7851   }
7852
7853   if (Commuted) {
7854     // Commute is back and try unpck* again.
7855     // FIXME: this seems wrong.
7856     CommuteVectorShuffleMask(M, NumElems);
7857     std::swap(V1, V2);
7858     std::swap(V1IsSplat, V2IsSplat);
7859
7860     if (isUNPCKLMask(M, VT, HasInt256))
7861       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7862
7863     if (isUNPCKHMask(M, VT, HasInt256))
7864       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7865   }
7866
7867   // Normalize the node to match x86 shuffle ops if needed
7868   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7869     return CommuteVectorShuffle(SVOp, DAG);
7870
7871   // The checks below are all present in isShuffleMaskLegal, but they are
7872   // inlined here right now to enable us to directly emit target specific
7873   // nodes, and remove one by one until they don't return Op anymore.
7874
7875   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7876       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7877     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7878       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7879   }
7880
7881   if (isPSHUFHWMask(M, VT, HasInt256))
7882     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7883                                 getShufflePSHUFHWImmediate(SVOp),
7884                                 DAG);
7885
7886   if (isPSHUFLWMask(M, VT, HasInt256))
7887     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7888                                 getShufflePSHUFLWImmediate(SVOp),
7889                                 DAG);
7890
7891   if (isSHUFPMask(M, VT))
7892     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7893                                 getShuffleSHUFImmediate(SVOp), DAG);
7894
7895   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7896     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7897   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7898     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7899
7900   //===--------------------------------------------------------------------===//
7901   // Generate target specific nodes for 128 or 256-bit shuffles only
7902   // supported in the AVX instruction set.
7903   //
7904
7905   // Handle VMOVDDUPY permutations
7906   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7907     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7908
7909   // Handle VPERMILPS/D* permutations
7910   if (isVPERMILPMask(M, VT)) {
7911     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7912       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7913                                   getShuffleSHUFImmediate(SVOp), DAG);
7914     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7915                                 getShuffleSHUFImmediate(SVOp), DAG);
7916   }
7917
7918   unsigned Idx;
7919   if (VT.is512BitVector() && isINSERT64x4Mask(M, VT, &Idx))
7920     return Insert256BitVector(V1, Extract256BitVector(V2, 0, DAG, dl),
7921                               Idx*(NumElems/2), DAG, dl);
7922
7923   // Handle VPERM2F128/VPERM2I128 permutations
7924   if (isVPERM2X128Mask(M, VT, HasFp256))
7925     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7926                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7927
7928   unsigned MaskValue;
7929   if (isBlendMask(M, VT, Subtarget->hasSSE41(), Subtarget->hasInt256(),
7930                   &MaskValue))
7931     return LowerVECTOR_SHUFFLEtoBlend(SVOp, MaskValue, Subtarget, DAG);
7932
7933   if (Subtarget->hasSSE41() && isINSERTPSMask(M, VT))
7934     return getINSERTPS(SVOp, dl, DAG);
7935
7936   unsigned Imm8;
7937   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7938     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7939
7940   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7941       VT.is512BitVector()) {
7942     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7943     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7944     SmallVector<SDValue, 16> permclMask;
7945     for (unsigned i = 0; i != NumElems; ++i) {
7946       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7947     }
7948
7949     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT, permclMask);
7950     if (V2IsUndef)
7951       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7952       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7953                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7954     return DAG.getNode(X86ISD::VPERMV3, dl, VT, V1,
7955                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V2);
7956   }
7957
7958   //===--------------------------------------------------------------------===//
7959   // Since no target specific shuffle was selected for this generic one,
7960   // lower it into other known shuffles. FIXME: this isn't true yet, but
7961   // this is the plan.
7962   //
7963
7964   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7965   if (VT == MVT::v8i16) {
7966     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7967     if (NewOp.getNode())
7968       return NewOp;
7969   }
7970
7971   if (VT == MVT::v16i16 && Subtarget->hasInt256()) {
7972     SDValue NewOp = LowerVECTOR_SHUFFLEv16i16(Op, DAG);
7973     if (NewOp.getNode())
7974       return NewOp;
7975   }
7976
7977   if (VT == MVT::v16i8) {
7978     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7979     if (NewOp.getNode())
7980       return NewOp;
7981   }
7982
7983   if (VT == MVT::v32i8) {
7984     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7985     if (NewOp.getNode())
7986       return NewOp;
7987   }
7988
7989   // Handle all 128-bit wide vectors with 4 elements, and match them with
7990   // several different shuffle types.
7991   if (NumElems == 4 && VT.is128BitVector())
7992     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7993
7994   // Handle general 256-bit shuffles
7995   if (VT.is256BitVector())
7996     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7997
7998   return SDValue();
7999 }
8000
8001 // This function assumes its argument is a BUILD_VECTOR of constants or
8002 // undef SDNodes. i.e: ISD::isBuildVectorOfConstantSDNodes(BuildVector) is
8003 // true.
8004 static bool BUILD_VECTORtoBlendMask(BuildVectorSDNode *BuildVector,
8005                                     unsigned &MaskValue) {
8006   MaskValue = 0;
8007   unsigned NumElems = BuildVector->getNumOperands();
8008   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
8009   unsigned NumLanes = (NumElems - 1) / 8 + 1;
8010   unsigned NumElemsInLane = NumElems / NumLanes;
8011
8012   // Blend for v16i16 should be symetric for the both lanes.
8013   for (unsigned i = 0; i < NumElemsInLane; ++i) {
8014     SDValue EltCond = BuildVector->getOperand(i);
8015     SDValue SndLaneEltCond =
8016         (NumLanes == 2) ? BuildVector->getOperand(i + NumElemsInLane) : EltCond;
8017
8018     int Lane1Cond = -1, Lane2Cond = -1;
8019     if (isa<ConstantSDNode>(EltCond))
8020       Lane1Cond = !isZero(EltCond);
8021     if (isa<ConstantSDNode>(SndLaneEltCond))
8022       Lane2Cond = !isZero(SndLaneEltCond);
8023
8024     if (Lane1Cond == Lane2Cond || Lane2Cond < 0)
8025       // Lane1Cond != 0, means we want the first argument.
8026       // Lane1Cond == 0, means we want the second argument.
8027       // The encoding of this argument is 0 for the first argument, 1
8028       // for the second. Therefore, invert the condition.
8029       MaskValue |= !Lane1Cond << i;
8030     else if (Lane1Cond < 0)
8031       MaskValue |= !Lane2Cond << i;
8032     else
8033       return false;
8034   }
8035   return true;
8036 }
8037
8038 // Try to lower a vselect node into a simple blend instruction.
8039 static SDValue LowerVSELECTtoBlend(SDValue Op, const X86Subtarget *Subtarget,
8040                                    SelectionDAG &DAG) {
8041   SDValue Cond = Op.getOperand(0);
8042   SDValue LHS = Op.getOperand(1);
8043   SDValue RHS = Op.getOperand(2);
8044   SDLoc dl(Op);
8045   MVT VT = Op.getSimpleValueType();
8046   MVT EltVT = VT.getVectorElementType();
8047   unsigned NumElems = VT.getVectorNumElements();
8048
8049   // There is no blend with immediate in AVX-512.
8050   if (VT.is512BitVector())
8051     return SDValue();
8052
8053   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
8054     return SDValue();
8055   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
8056     return SDValue();
8057
8058   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
8059     return SDValue();
8060
8061   // Check the mask for BLEND and build the value.
8062   unsigned MaskValue = 0;
8063   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
8064     return SDValue();
8065
8066   // Convert i32 vectors to floating point if it is not AVX2.
8067   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
8068   MVT BlendVT = VT;
8069   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
8070     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
8071                                NumElems);
8072     LHS = DAG.getNode(ISD::BITCAST, dl, VT, LHS);
8073     RHS = DAG.getNode(ISD::BITCAST, dl, VT, RHS);
8074   }
8075
8076   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, LHS, RHS,
8077                             DAG.getConstant(MaskValue, MVT::i32));
8078   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
8079 }
8080
8081 SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
8082   SDValue BlendOp = LowerVSELECTtoBlend(Op, Subtarget, DAG);
8083   if (BlendOp.getNode())
8084     return BlendOp;
8085
8086   // Some types for vselect were previously set to Expand, not Legal or
8087   // Custom. Return an empty SDValue so we fall-through to Expand, after
8088   // the Custom lowering phase.
8089   MVT VT = Op.getSimpleValueType();
8090   switch (VT.SimpleTy) {
8091   default:
8092     break;
8093   case MVT::v8i16:
8094   case MVT::v16i16:
8095     return SDValue();
8096   }
8097
8098   // We couldn't create a "Blend with immediate" node.
8099   // This node should still be legal, but we'll have to emit a blendv*
8100   // instruction.
8101   return Op;
8102 }
8103
8104 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
8105   MVT VT = Op.getSimpleValueType();
8106   SDLoc dl(Op);
8107
8108   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
8109     return SDValue();
8110
8111   if (VT.getSizeInBits() == 8) {
8112     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
8113                                   Op.getOperand(0), Op.getOperand(1));
8114     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
8115                                   DAG.getValueType(VT));
8116     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
8117   }
8118
8119   if (VT.getSizeInBits() == 16) {
8120     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8121     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
8122     if (Idx == 0)
8123       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
8124                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
8125                                      DAG.getNode(ISD::BITCAST, dl,
8126                                                  MVT::v4i32,
8127                                                  Op.getOperand(0)),
8128                                      Op.getOperand(1)));
8129     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
8130                                   Op.getOperand(0), Op.getOperand(1));
8131     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
8132                                   DAG.getValueType(VT));
8133     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
8134   }
8135
8136   if (VT == MVT::f32) {
8137     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
8138     // the result back to FR32 register. It's only worth matching if the
8139     // result has a single use which is a store or a bitcast to i32.  And in
8140     // the case of a store, it's not worth it if the index is a constant 0,
8141     // because a MOVSSmr can be used instead, which is smaller and faster.
8142     if (!Op.hasOneUse())
8143       return SDValue();
8144     SDNode *User = *Op.getNode()->use_begin();
8145     if ((User->getOpcode() != ISD::STORE ||
8146          (isa<ConstantSDNode>(Op.getOperand(1)) &&
8147           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
8148         (User->getOpcode() != ISD::BITCAST ||
8149          User->getValueType(0) != MVT::i32))
8150       return SDValue();
8151     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
8152                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
8153                                               Op.getOperand(0)),
8154                                               Op.getOperand(1));
8155     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
8156   }
8157
8158   if (VT == MVT::i32 || VT == MVT::i64) {
8159     // ExtractPS/pextrq works with constant index.
8160     if (isa<ConstantSDNode>(Op.getOperand(1)))
8161       return Op;
8162   }
8163   return SDValue();
8164 }
8165
8166 /// Extract one bit from mask vector, like v16i1 or v8i1.
8167 /// AVX-512 feature.
8168 SDValue
8169 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
8170   SDValue Vec = Op.getOperand(0);
8171   SDLoc dl(Vec);
8172   MVT VecVT = Vec.getSimpleValueType();
8173   SDValue Idx = Op.getOperand(1);
8174   MVT EltVT = Op.getSimpleValueType();
8175
8176   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
8177
8178   // variable index can't be handled in mask registers,
8179   // extend vector to VR512
8180   if (!isa<ConstantSDNode>(Idx)) {
8181     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
8182     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
8183     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
8184                               ExtVT.getVectorElementType(), Ext, Idx);
8185     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
8186   }
8187
8188   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8189   const TargetRegisterClass* rc = getRegClassFor(VecVT);
8190   unsigned MaxSift = rc->getSize()*8 - 1;
8191   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
8192                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
8193   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
8194                     DAG.getConstant(MaxSift, MVT::i8));
8195   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
8196                        DAG.getIntPtrConstant(0));
8197 }
8198
8199 SDValue
8200 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
8201                                            SelectionDAG &DAG) const {
8202   SDLoc dl(Op);
8203   SDValue Vec = Op.getOperand(0);
8204   MVT VecVT = Vec.getSimpleValueType();
8205   SDValue Idx = Op.getOperand(1);
8206
8207   if (Op.getSimpleValueType() == MVT::i1)
8208     return ExtractBitFromMaskVector(Op, DAG);
8209
8210   if (!isa<ConstantSDNode>(Idx)) {
8211     if (VecVT.is512BitVector() ||
8212         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
8213          VecVT.getVectorElementType().getSizeInBits() == 32)) {
8214
8215       MVT MaskEltVT =
8216         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
8217       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
8218                                     MaskEltVT.getSizeInBits());
8219
8220       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
8221       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
8222                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
8223                                 Idx, DAG.getConstant(0, getPointerTy()));
8224       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
8225       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
8226                         Perm, DAG.getConstant(0, getPointerTy()));
8227     }
8228     return SDValue();
8229   }
8230
8231   // If this is a 256-bit vector result, first extract the 128-bit vector and
8232   // then extract the element from the 128-bit vector.
8233   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
8234
8235     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8236     // Get the 128-bit vector.
8237     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
8238     MVT EltVT = VecVT.getVectorElementType();
8239
8240     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
8241
8242     //if (IdxVal >= NumElems/2)
8243     //  IdxVal -= NumElems/2;
8244     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
8245     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
8246                        DAG.getConstant(IdxVal, MVT::i32));
8247   }
8248
8249   assert(VecVT.is128BitVector() && "Unexpected vector length");
8250
8251   if (Subtarget->hasSSE41()) {
8252     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
8253     if (Res.getNode())
8254       return Res;
8255   }
8256
8257   MVT VT = Op.getSimpleValueType();
8258   // TODO: handle v16i8.
8259   if (VT.getSizeInBits() == 16) {
8260     SDValue Vec = Op.getOperand(0);
8261     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8262     if (Idx == 0)
8263       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
8264                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
8265                                      DAG.getNode(ISD::BITCAST, dl,
8266                                                  MVT::v4i32, Vec),
8267                                      Op.getOperand(1)));
8268     // Transform it so it match pextrw which produces a 32-bit result.
8269     MVT EltVT = MVT::i32;
8270     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
8271                                   Op.getOperand(0), Op.getOperand(1));
8272     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
8273                                   DAG.getValueType(VT));
8274     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
8275   }
8276
8277   if (VT.getSizeInBits() == 32) {
8278     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8279     if (Idx == 0)
8280       return Op;
8281
8282     // SHUFPS the element to the lowest double word, then movss.
8283     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
8284     MVT VVT = Op.getOperand(0).getSimpleValueType();
8285     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
8286                                        DAG.getUNDEF(VVT), Mask);
8287     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
8288                        DAG.getIntPtrConstant(0));
8289   }
8290
8291   if (VT.getSizeInBits() == 64) {
8292     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
8293     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
8294     //        to match extract_elt for f64.
8295     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8296     if (Idx == 0)
8297       return Op;
8298
8299     // UNPCKHPD the element to the lowest double word, then movsd.
8300     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
8301     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
8302     int Mask[2] = { 1, -1 };
8303     MVT VVT = Op.getOperand(0).getSimpleValueType();
8304     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
8305                                        DAG.getUNDEF(VVT), Mask);
8306     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
8307                        DAG.getIntPtrConstant(0));
8308   }
8309
8310   return SDValue();
8311 }
8312
8313 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
8314   MVT VT = Op.getSimpleValueType();
8315   MVT EltVT = VT.getVectorElementType();
8316   SDLoc dl(Op);
8317
8318   SDValue N0 = Op.getOperand(0);
8319   SDValue N1 = Op.getOperand(1);
8320   SDValue N2 = Op.getOperand(2);
8321
8322   if (!VT.is128BitVector())
8323     return SDValue();
8324
8325   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
8326       isa<ConstantSDNode>(N2)) {
8327     unsigned Opc;
8328     if (VT == MVT::v8i16)
8329       Opc = X86ISD::PINSRW;
8330     else if (VT == MVT::v16i8)
8331       Opc = X86ISD::PINSRB;
8332     else
8333       Opc = X86ISD::PINSRB;
8334
8335     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
8336     // argument.
8337     if (N1.getValueType() != MVT::i32)
8338       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
8339     if (N2.getValueType() != MVT::i32)
8340       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
8341     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
8342   }
8343
8344   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
8345     // Bits [7:6] of the constant are the source select.  This will always be
8346     //  zero here.  The DAG Combiner may combine an extract_elt index into these
8347     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
8348     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
8349     // Bits [5:4] of the constant are the destination select.  This is the
8350     //  value of the incoming immediate.
8351     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
8352     //   combine either bitwise AND or insert of float 0.0 to set these bits.
8353     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
8354     // Create this as a scalar to vector..
8355     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
8356     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
8357   }
8358
8359   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
8360     // PINSR* works with constant index.
8361     return Op;
8362   }
8363   return SDValue();
8364 }
8365
8366 /// Insert one bit to mask vector, like v16i1 or v8i1.
8367 /// AVX-512 feature.
8368 SDValue 
8369 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
8370   SDLoc dl(Op);
8371   SDValue Vec = Op.getOperand(0);
8372   SDValue Elt = Op.getOperand(1);
8373   SDValue Idx = Op.getOperand(2);
8374   MVT VecVT = Vec.getSimpleValueType();
8375
8376   if (!isa<ConstantSDNode>(Idx)) {
8377     // Non constant index. Extend source and destination,
8378     // insert element and then truncate the result.
8379     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
8380     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
8381     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT, 
8382       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
8383       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
8384     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
8385   }
8386
8387   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8388   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
8389   if (Vec.getOpcode() == ISD::UNDEF)
8390     return DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
8391                        DAG.getConstant(IdxVal, MVT::i8));
8392   const TargetRegisterClass* rc = getRegClassFor(VecVT);
8393   unsigned MaxSift = rc->getSize()*8 - 1;
8394   EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
8395                     DAG.getConstant(MaxSift, MVT::i8));
8396   EltInVec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, EltInVec,
8397                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
8398   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
8399 }
8400 SDValue
8401 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
8402   MVT VT = Op.getSimpleValueType();
8403   MVT EltVT = VT.getVectorElementType();
8404   
8405   if (EltVT == MVT::i1)
8406     return InsertBitToMaskVector(Op, DAG);
8407
8408   SDLoc dl(Op);
8409   SDValue N0 = Op.getOperand(0);
8410   SDValue N1 = Op.getOperand(1);
8411   SDValue N2 = Op.getOperand(2);
8412
8413   // If this is a 256-bit vector result, first extract the 128-bit vector,
8414   // insert the element into the extracted half and then place it back.
8415   if (VT.is256BitVector() || VT.is512BitVector()) {
8416     if (!isa<ConstantSDNode>(N2))
8417       return SDValue();
8418
8419     // Get the desired 128-bit vector half.
8420     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
8421     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
8422
8423     // Insert the element into the desired half.
8424     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
8425     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
8426
8427     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
8428                     DAG.getConstant(IdxIn128, MVT::i32));
8429
8430     // Insert the changed part back to the 256-bit vector
8431     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
8432   }
8433
8434   if (Subtarget->hasSSE41())
8435     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
8436
8437   if (EltVT == MVT::i8)
8438     return SDValue();
8439
8440   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
8441     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
8442     // as its second argument.
8443     if (N1.getValueType() != MVT::i32)
8444       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
8445     if (N2.getValueType() != MVT::i32)
8446       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
8447     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
8448   }
8449   return SDValue();
8450 }
8451
8452 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
8453   SDLoc dl(Op);
8454   MVT OpVT = Op.getSimpleValueType();
8455
8456   // If this is a 256-bit vector result, first insert into a 128-bit
8457   // vector and then insert into the 256-bit vector.
8458   if (!OpVT.is128BitVector()) {
8459     // Insert into a 128-bit vector.
8460     unsigned SizeFactor = OpVT.getSizeInBits()/128;
8461     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
8462                                  OpVT.getVectorNumElements() / SizeFactor);
8463
8464     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
8465
8466     // Insert the 128-bit vector.
8467     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
8468   }
8469
8470   if (OpVT == MVT::v1i64 &&
8471       Op.getOperand(0).getValueType() == MVT::i64)
8472     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
8473
8474   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
8475   assert(OpVT.is128BitVector() && "Expected an SSE type!");
8476   return DAG.getNode(ISD::BITCAST, dl, OpVT,
8477                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
8478 }
8479
8480 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
8481 // a simple subregister reference or explicit instructions to grab
8482 // upper bits of a vector.
8483 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8484                                       SelectionDAG &DAG) {
8485   SDLoc dl(Op);
8486   SDValue In =  Op.getOperand(0);
8487   SDValue Idx = Op.getOperand(1);
8488   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8489   MVT ResVT   = Op.getSimpleValueType();
8490   MVT InVT    = In.getSimpleValueType();
8491
8492   if (Subtarget->hasFp256()) {
8493     if (ResVT.is128BitVector() &&
8494         (InVT.is256BitVector() || InVT.is512BitVector()) &&
8495         isa<ConstantSDNode>(Idx)) {
8496       return Extract128BitVector(In, IdxVal, DAG, dl);
8497     }
8498     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
8499         isa<ConstantSDNode>(Idx)) {
8500       return Extract256BitVector(In, IdxVal, DAG, dl);
8501     }
8502   }
8503   return SDValue();
8504 }
8505
8506 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
8507 // simple superregister reference or explicit instructions to insert
8508 // the upper bits of a vector.
8509 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8510                                      SelectionDAG &DAG) {
8511   if (Subtarget->hasFp256()) {
8512     SDLoc dl(Op.getNode());
8513     SDValue Vec = Op.getNode()->getOperand(0);
8514     SDValue SubVec = Op.getNode()->getOperand(1);
8515     SDValue Idx = Op.getNode()->getOperand(2);
8516
8517     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
8518          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
8519         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
8520         isa<ConstantSDNode>(Idx)) {
8521       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8522       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
8523     }
8524
8525     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
8526         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
8527         isa<ConstantSDNode>(Idx)) {
8528       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8529       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
8530     }
8531   }
8532   return SDValue();
8533 }
8534
8535 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
8536 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
8537 // one of the above mentioned nodes. It has to be wrapped because otherwise
8538 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
8539 // be used to form addressing mode. These wrapped nodes will be selected
8540 // into MOV32ri.
8541 SDValue
8542 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
8543   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
8544
8545   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8546   // global base reg.
8547   unsigned char OpFlag = 0;
8548   unsigned WrapperKind = X86ISD::Wrapper;
8549   CodeModel::Model M = getTargetMachine().getCodeModel();
8550
8551   if (Subtarget->isPICStyleRIPRel() &&
8552       (M == CodeModel::Small || M == CodeModel::Kernel))
8553     WrapperKind = X86ISD::WrapperRIP;
8554   else if (Subtarget->isPICStyleGOT())
8555     OpFlag = X86II::MO_GOTOFF;
8556   else if (Subtarget->isPICStyleStubPIC())
8557     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8558
8559   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
8560                                              CP->getAlignment(),
8561                                              CP->getOffset(), OpFlag);
8562   SDLoc DL(CP);
8563   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8564   // With PIC, the address is actually $g + Offset.
8565   if (OpFlag) {
8566     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8567                          DAG.getNode(X86ISD::GlobalBaseReg,
8568                                      SDLoc(), getPointerTy()),
8569                          Result);
8570   }
8571
8572   return Result;
8573 }
8574
8575 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
8576   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
8577
8578   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8579   // global base reg.
8580   unsigned char OpFlag = 0;
8581   unsigned WrapperKind = X86ISD::Wrapper;
8582   CodeModel::Model M = getTargetMachine().getCodeModel();
8583
8584   if (Subtarget->isPICStyleRIPRel() &&
8585       (M == CodeModel::Small || M == CodeModel::Kernel))
8586     WrapperKind = X86ISD::WrapperRIP;
8587   else if (Subtarget->isPICStyleGOT())
8588     OpFlag = X86II::MO_GOTOFF;
8589   else if (Subtarget->isPICStyleStubPIC())
8590     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8591
8592   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
8593                                           OpFlag);
8594   SDLoc DL(JT);
8595   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8596
8597   // With PIC, the address is actually $g + Offset.
8598   if (OpFlag)
8599     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8600                          DAG.getNode(X86ISD::GlobalBaseReg,
8601                                      SDLoc(), getPointerTy()),
8602                          Result);
8603
8604   return Result;
8605 }
8606
8607 SDValue
8608 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
8609   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
8610
8611   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8612   // global base reg.
8613   unsigned char OpFlag = 0;
8614   unsigned WrapperKind = X86ISD::Wrapper;
8615   CodeModel::Model M = getTargetMachine().getCodeModel();
8616
8617   if (Subtarget->isPICStyleRIPRel() &&
8618       (M == CodeModel::Small || M == CodeModel::Kernel)) {
8619     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8620       OpFlag = X86II::MO_GOTPCREL;
8621     WrapperKind = X86ISD::WrapperRIP;
8622   } else if (Subtarget->isPICStyleGOT()) {
8623     OpFlag = X86II::MO_GOT;
8624   } else if (Subtarget->isPICStyleStubPIC()) {
8625     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8626   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8627     OpFlag = X86II::MO_DARWIN_NONLAZY;
8628   }
8629
8630   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8631
8632   SDLoc DL(Op);
8633   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8634
8635   // With PIC, the address is actually $g + Offset.
8636   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8637       !Subtarget->is64Bit()) {
8638     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8639                          DAG.getNode(X86ISD::GlobalBaseReg,
8640                                      SDLoc(), getPointerTy()),
8641                          Result);
8642   }
8643
8644   // For symbols that require a load from a stub to get the address, emit the
8645   // load.
8646   if (isGlobalStubReference(OpFlag))
8647     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8648                          MachinePointerInfo::getGOT(), false, false, false, 0);
8649
8650   return Result;
8651 }
8652
8653 SDValue
8654 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8655   // Create the TargetBlockAddressAddress node.
8656   unsigned char OpFlags =
8657     Subtarget->ClassifyBlockAddressReference();
8658   CodeModel::Model M = getTargetMachine().getCodeModel();
8659   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8660   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8661   SDLoc dl(Op);
8662   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8663                                              OpFlags);
8664
8665   if (Subtarget->isPICStyleRIPRel() &&
8666       (M == CodeModel::Small || M == CodeModel::Kernel))
8667     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8668   else
8669     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8670
8671   // With PIC, the address is actually $g + Offset.
8672   if (isGlobalRelativeToPICBase(OpFlags)) {
8673     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8674                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8675                          Result);
8676   }
8677
8678   return Result;
8679 }
8680
8681 SDValue
8682 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8683                                       int64_t Offset, SelectionDAG &DAG) const {
8684   // Create the TargetGlobalAddress node, folding in the constant
8685   // offset if it is legal.
8686   unsigned char OpFlags =
8687     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8688   CodeModel::Model M = getTargetMachine().getCodeModel();
8689   SDValue Result;
8690   if (OpFlags == X86II::MO_NO_FLAG &&
8691       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8692     // A direct static reference to a global.
8693     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8694     Offset = 0;
8695   } else {
8696     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8697   }
8698
8699   if (Subtarget->isPICStyleRIPRel() &&
8700       (M == CodeModel::Small || M == CodeModel::Kernel))
8701     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8702   else
8703     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8704
8705   // With PIC, the address is actually $g + Offset.
8706   if (isGlobalRelativeToPICBase(OpFlags)) {
8707     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8708                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8709                          Result);
8710   }
8711
8712   // For globals that require a load from a stub to get the address, emit the
8713   // load.
8714   if (isGlobalStubReference(OpFlags))
8715     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8716                          MachinePointerInfo::getGOT(), false, false, false, 0);
8717
8718   // If there was a non-zero offset that we didn't fold, create an explicit
8719   // addition for it.
8720   if (Offset != 0)
8721     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8722                          DAG.getConstant(Offset, getPointerTy()));
8723
8724   return Result;
8725 }
8726
8727 SDValue
8728 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8729   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8730   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8731   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8732 }
8733
8734 static SDValue
8735 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8736            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8737            unsigned char OperandFlags, bool LocalDynamic = false) {
8738   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8739   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8740   SDLoc dl(GA);
8741   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8742                                            GA->getValueType(0),
8743                                            GA->getOffset(),
8744                                            OperandFlags);
8745
8746   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8747                                            : X86ISD::TLSADDR;
8748
8749   if (InFlag) {
8750     SDValue Ops[] = { Chain,  TGA, *InFlag };
8751     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
8752   } else {
8753     SDValue Ops[]  = { Chain, TGA };
8754     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
8755   }
8756
8757   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8758   MFI->setAdjustsStack(true);
8759
8760   SDValue Flag = Chain.getValue(1);
8761   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8762 }
8763
8764 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8765 static SDValue
8766 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8767                                 const EVT PtrVT) {
8768   SDValue InFlag;
8769   SDLoc dl(GA);  // ? function entry point might be better
8770   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8771                                    DAG.getNode(X86ISD::GlobalBaseReg,
8772                                                SDLoc(), PtrVT), InFlag);
8773   InFlag = Chain.getValue(1);
8774
8775   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8776 }
8777
8778 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8779 static SDValue
8780 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8781                                 const EVT PtrVT) {
8782   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
8783                     X86::RAX, X86II::MO_TLSGD);
8784 }
8785
8786 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8787                                            SelectionDAG &DAG,
8788                                            const EVT PtrVT,
8789                                            bool is64Bit) {
8790   SDLoc dl(GA);
8791
8792   // Get the start address of the TLS block for this module.
8793   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8794       .getInfo<X86MachineFunctionInfo>();
8795   MFI->incNumLocalDynamicTLSAccesses();
8796
8797   SDValue Base;
8798   if (is64Bit) {
8799     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
8800                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8801   } else {
8802     SDValue InFlag;
8803     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8804         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8805     InFlag = Chain.getValue(1);
8806     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8807                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8808   }
8809
8810   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8811   // of Base.
8812
8813   // Build x@dtpoff.
8814   unsigned char OperandFlags = X86II::MO_DTPOFF;
8815   unsigned WrapperKind = X86ISD::Wrapper;
8816   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8817                                            GA->getValueType(0),
8818                                            GA->getOffset(), OperandFlags);
8819   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8820
8821   // Add x@dtpoff with the base.
8822   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8823 }
8824
8825 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8826 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8827                                    const EVT PtrVT, TLSModel::Model model,
8828                                    bool is64Bit, bool isPIC) {
8829   SDLoc dl(GA);
8830
8831   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8832   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8833                                                          is64Bit ? 257 : 256));
8834
8835   SDValue ThreadPointer =
8836       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8837                   MachinePointerInfo(Ptr), false, false, false, 0);
8838
8839   unsigned char OperandFlags = 0;
8840   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8841   // initialexec.
8842   unsigned WrapperKind = X86ISD::Wrapper;
8843   if (model == TLSModel::LocalExec) {
8844     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8845   } else if (model == TLSModel::InitialExec) {
8846     if (is64Bit) {
8847       OperandFlags = X86II::MO_GOTTPOFF;
8848       WrapperKind = X86ISD::WrapperRIP;
8849     } else {
8850       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8851     }
8852   } else {
8853     llvm_unreachable("Unexpected model");
8854   }
8855
8856   // emit "addl x@ntpoff,%eax" (local exec)
8857   // or "addl x@indntpoff,%eax" (initial exec)
8858   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8859   SDValue TGA =
8860       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8861                                  GA->getOffset(), OperandFlags);
8862   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8863
8864   if (model == TLSModel::InitialExec) {
8865     if (isPIC && !is64Bit) {
8866       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8867                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8868                            Offset);
8869     }
8870
8871     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8872                          MachinePointerInfo::getGOT(), false, false, false, 0);
8873   }
8874
8875   // The address of the thread local variable is the add of the thread
8876   // pointer with the offset of the variable.
8877   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8878 }
8879
8880 SDValue
8881 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8882
8883   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8884   const GlobalValue *GV = GA->getGlobal();
8885
8886   if (Subtarget->isTargetELF()) {
8887     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8888
8889     switch (model) {
8890       case TLSModel::GeneralDynamic:
8891         if (Subtarget->is64Bit())
8892           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8893         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8894       case TLSModel::LocalDynamic:
8895         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8896                                            Subtarget->is64Bit());
8897       case TLSModel::InitialExec:
8898       case TLSModel::LocalExec:
8899         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8900                                    Subtarget->is64Bit(),
8901                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8902     }
8903     llvm_unreachable("Unknown TLS model.");
8904   }
8905
8906   if (Subtarget->isTargetDarwin()) {
8907     // Darwin only has one model of TLS.  Lower to that.
8908     unsigned char OpFlag = 0;
8909     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8910                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8911
8912     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8913     // global base reg.
8914     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8915                   !Subtarget->is64Bit();
8916     if (PIC32)
8917       OpFlag = X86II::MO_TLVP_PIC_BASE;
8918     else
8919       OpFlag = X86II::MO_TLVP;
8920     SDLoc DL(Op);
8921     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8922                                                 GA->getValueType(0),
8923                                                 GA->getOffset(), OpFlag);
8924     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8925
8926     // With PIC32, the address is actually $g + Offset.
8927     if (PIC32)
8928       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8929                            DAG.getNode(X86ISD::GlobalBaseReg,
8930                                        SDLoc(), getPointerTy()),
8931                            Offset);
8932
8933     // Lowering the machine isd will make sure everything is in the right
8934     // location.
8935     SDValue Chain = DAG.getEntryNode();
8936     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8937     SDValue Args[] = { Chain, Offset };
8938     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
8939
8940     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8941     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8942     MFI->setAdjustsStack(true);
8943
8944     // And our return value (tls address) is in the standard call return value
8945     // location.
8946     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8947     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8948                               Chain.getValue(1));
8949   }
8950
8951   if (Subtarget->isTargetKnownWindowsMSVC() ||
8952       Subtarget->isTargetWindowsGNU()) {
8953     // Just use the implicit TLS architecture
8954     // Need to generate someting similar to:
8955     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8956     //                                  ; from TEB
8957     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8958     //   mov     rcx, qword [rdx+rcx*8]
8959     //   mov     eax, .tls$:tlsvar
8960     //   [rax+rcx] contains the address
8961     // Windows 64bit: gs:0x58
8962     // Windows 32bit: fs:__tls_array
8963
8964     SDLoc dl(GA);
8965     SDValue Chain = DAG.getEntryNode();
8966
8967     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8968     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8969     // use its literal value of 0x2C.
8970     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8971                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8972                                                              256)
8973                                         : Type::getInt32PtrTy(*DAG.getContext(),
8974                                                               257));
8975
8976     SDValue TlsArray =
8977         Subtarget->is64Bit()
8978             ? DAG.getIntPtrConstant(0x58)
8979             : (Subtarget->isTargetWindowsGNU()
8980                    ? DAG.getIntPtrConstant(0x2C)
8981                    : DAG.getExternalSymbol("_tls_array", getPointerTy()));
8982
8983     SDValue ThreadPointer =
8984         DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8985                     MachinePointerInfo(Ptr), false, false, false, 0);
8986
8987     // Load the _tls_index variable
8988     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8989     if (Subtarget->is64Bit())
8990       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8991                            IDX, MachinePointerInfo(), MVT::i32,
8992                            false, false, 0);
8993     else
8994       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8995                         false, false, false, 0);
8996
8997     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8998                                     getPointerTy());
8999     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
9000
9001     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
9002     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
9003                       false, false, false, 0);
9004
9005     // Get the offset of start of .tls section
9006     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
9007                                              GA->getValueType(0),
9008                                              GA->getOffset(), X86II::MO_SECREL);
9009     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
9010
9011     // The address of the thread local variable is the add of the thread
9012     // pointer with the offset of the variable.
9013     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
9014   }
9015
9016   llvm_unreachable("TLS not implemented for this target.");
9017 }
9018
9019 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
9020 /// and take a 2 x i32 value to shift plus a shift amount.
9021 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
9022   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
9023   MVT VT = Op.getSimpleValueType();
9024   unsigned VTBits = VT.getSizeInBits();
9025   SDLoc dl(Op);
9026   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
9027   SDValue ShOpLo = Op.getOperand(0);
9028   SDValue ShOpHi = Op.getOperand(1);
9029   SDValue ShAmt  = Op.getOperand(2);
9030   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
9031   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
9032   // during isel.
9033   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
9034                                   DAG.getConstant(VTBits - 1, MVT::i8));
9035   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
9036                                      DAG.getConstant(VTBits - 1, MVT::i8))
9037                        : DAG.getConstant(0, VT);
9038
9039   SDValue Tmp2, Tmp3;
9040   if (Op.getOpcode() == ISD::SHL_PARTS) {
9041     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
9042     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
9043   } else {
9044     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
9045     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
9046   }
9047
9048   // If the shift amount is larger or equal than the width of a part we can't
9049   // rely on the results of shld/shrd. Insert a test and select the appropriate
9050   // values for large shift amounts.
9051   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
9052                                 DAG.getConstant(VTBits, MVT::i8));
9053   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9054                              AndNode, DAG.getConstant(0, MVT::i8));
9055
9056   SDValue Hi, Lo;
9057   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9058   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
9059   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
9060
9061   if (Op.getOpcode() == ISD::SHL_PARTS) {
9062     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
9063     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
9064   } else {
9065     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
9066     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
9067   }
9068
9069   SDValue Ops[2] = { Lo, Hi };
9070   return DAG.getMergeValues(Ops, dl);
9071 }
9072
9073 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
9074                                            SelectionDAG &DAG) const {
9075   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
9076
9077   if (SrcVT.isVector())
9078     return SDValue();
9079
9080   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
9081          "Unknown SINT_TO_FP to lower!");
9082
9083   // These are really Legal; return the operand so the caller accepts it as
9084   // Legal.
9085   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
9086     return Op;
9087   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
9088       Subtarget->is64Bit()) {
9089     return Op;
9090   }
9091
9092   SDLoc dl(Op);
9093   unsigned Size = SrcVT.getSizeInBits()/8;
9094   MachineFunction &MF = DAG.getMachineFunction();
9095   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
9096   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9097   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
9098                                StackSlot,
9099                                MachinePointerInfo::getFixedStack(SSFI),
9100                                false, false, 0);
9101   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
9102 }
9103
9104 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
9105                                      SDValue StackSlot,
9106                                      SelectionDAG &DAG) const {
9107   // Build the FILD
9108   SDLoc DL(Op);
9109   SDVTList Tys;
9110   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
9111   if (useSSE)
9112     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
9113   else
9114     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
9115
9116   unsigned ByteSize = SrcVT.getSizeInBits()/8;
9117
9118   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
9119   MachineMemOperand *MMO;
9120   if (FI) {
9121     int SSFI = FI->getIndex();
9122     MMO =
9123       DAG.getMachineFunction()
9124       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9125                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
9126   } else {
9127     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
9128     StackSlot = StackSlot.getOperand(1);
9129   }
9130   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
9131   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
9132                                            X86ISD::FILD, DL,
9133                                            Tys, Ops, SrcVT, MMO);
9134
9135   if (useSSE) {
9136     Chain = Result.getValue(1);
9137     SDValue InFlag = Result.getValue(2);
9138
9139     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
9140     // shouldn't be necessary except that RFP cannot be live across
9141     // multiple blocks. When stackifier is fixed, they can be uncoupled.
9142     MachineFunction &MF = DAG.getMachineFunction();
9143     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
9144     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
9145     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9146     Tys = DAG.getVTList(MVT::Other);
9147     SDValue Ops[] = {
9148       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
9149     };
9150     MachineMemOperand *MMO =
9151       DAG.getMachineFunction()
9152       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9153                             MachineMemOperand::MOStore, SSFISize, SSFISize);
9154
9155     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
9156                                     Ops, Op.getValueType(), MMO);
9157     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
9158                          MachinePointerInfo::getFixedStack(SSFI),
9159                          false, false, false, 0);
9160   }
9161
9162   return Result;
9163 }
9164
9165 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
9166 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
9167                                                SelectionDAG &DAG) const {
9168   // This algorithm is not obvious. Here it is what we're trying to output:
9169   /*
9170      movq       %rax,  %xmm0
9171      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
9172      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
9173      #ifdef __SSE3__
9174        haddpd   %xmm0, %xmm0
9175      #else
9176        pshufd   $0x4e, %xmm0, %xmm1
9177        addpd    %xmm1, %xmm0
9178      #endif
9179   */
9180
9181   SDLoc dl(Op);
9182   LLVMContext *Context = DAG.getContext();
9183
9184   // Build some magic constants.
9185   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
9186   Constant *C0 = ConstantDataVector::get(*Context, CV0);
9187   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
9188
9189   SmallVector<Constant*,2> CV1;
9190   CV1.push_back(
9191     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9192                                       APInt(64, 0x4330000000000000ULL))));
9193   CV1.push_back(
9194     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9195                                       APInt(64, 0x4530000000000000ULL))));
9196   Constant *C1 = ConstantVector::get(CV1);
9197   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
9198
9199   // Load the 64-bit value into an XMM register.
9200   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
9201                             Op.getOperand(0));
9202   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
9203                               MachinePointerInfo::getConstantPool(),
9204                               false, false, false, 16);
9205   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
9206                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
9207                               CLod0);
9208
9209   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
9210                               MachinePointerInfo::getConstantPool(),
9211                               false, false, false, 16);
9212   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
9213   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
9214   SDValue Result;
9215
9216   if (Subtarget->hasSSE3()) {
9217     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
9218     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
9219   } else {
9220     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
9221     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
9222                                            S2F, 0x4E, DAG);
9223     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
9224                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
9225                          Sub);
9226   }
9227
9228   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
9229                      DAG.getIntPtrConstant(0));
9230 }
9231
9232 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
9233 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
9234                                                SelectionDAG &DAG) const {
9235   SDLoc dl(Op);
9236   // FP constant to bias correct the final result.
9237   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
9238                                    MVT::f64);
9239
9240   // Load the 32-bit value into an XMM register.
9241   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
9242                              Op.getOperand(0));
9243
9244   // Zero out the upper parts of the register.
9245   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
9246
9247   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
9248                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
9249                      DAG.getIntPtrConstant(0));
9250
9251   // Or the load with the bias.
9252   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
9253                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
9254                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
9255                                                    MVT::v2f64, Load)),
9256                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
9257                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
9258                                                    MVT::v2f64, Bias)));
9259   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
9260                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
9261                    DAG.getIntPtrConstant(0));
9262
9263   // Subtract the bias.
9264   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
9265
9266   // Handle final rounding.
9267   EVT DestVT = Op.getValueType();
9268
9269   if (DestVT.bitsLT(MVT::f64))
9270     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
9271                        DAG.getIntPtrConstant(0));
9272   if (DestVT.bitsGT(MVT::f64))
9273     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
9274
9275   // Handle final rounding.
9276   return Sub;
9277 }
9278
9279 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
9280                                                SelectionDAG &DAG) const {
9281   SDValue N0 = Op.getOperand(0);
9282   MVT SVT = N0.getSimpleValueType();
9283   SDLoc dl(Op);
9284
9285   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
9286           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
9287          "Custom UINT_TO_FP is not supported!");
9288
9289   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
9290   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
9291                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
9292 }
9293
9294 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
9295                                            SelectionDAG &DAG) const {
9296   SDValue N0 = Op.getOperand(0);
9297   SDLoc dl(Op);
9298
9299   if (Op.getValueType().isVector())
9300     return lowerUINT_TO_FP_vec(Op, DAG);
9301
9302   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
9303   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
9304   // the optimization here.
9305   if (DAG.SignBitIsZero(N0))
9306     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
9307
9308   MVT SrcVT = N0.getSimpleValueType();
9309   MVT DstVT = Op.getSimpleValueType();
9310   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
9311     return LowerUINT_TO_FP_i64(Op, DAG);
9312   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
9313     return LowerUINT_TO_FP_i32(Op, DAG);
9314   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
9315     return SDValue();
9316
9317   // Make a 64-bit buffer, and use it to build an FILD.
9318   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
9319   if (SrcVT == MVT::i32) {
9320     SDValue WordOff = DAG.getConstant(4, getPointerTy());
9321     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
9322                                      getPointerTy(), StackSlot, WordOff);
9323     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
9324                                   StackSlot, MachinePointerInfo(),
9325                                   false, false, 0);
9326     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
9327                                   OffsetSlot, MachinePointerInfo(),
9328                                   false, false, 0);
9329     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
9330     return Fild;
9331   }
9332
9333   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
9334   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
9335                                StackSlot, MachinePointerInfo(),
9336                                false, false, 0);
9337   // For i64 source, we need to add the appropriate power of 2 if the input
9338   // was negative.  This is the same as the optimization in
9339   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
9340   // we must be careful to do the computation in x87 extended precision, not
9341   // in SSE. (The generic code can't know it's OK to do this, or how to.)
9342   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
9343   MachineMemOperand *MMO =
9344     DAG.getMachineFunction()
9345     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9346                           MachineMemOperand::MOLoad, 8, 8);
9347
9348   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
9349   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
9350   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
9351                                          MVT::i64, MMO);
9352
9353   APInt FF(32, 0x5F800000ULL);
9354
9355   // Check whether the sign bit is set.
9356   SDValue SignSet = DAG.getSetCC(dl,
9357                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
9358                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
9359                                  ISD::SETLT);
9360
9361   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
9362   SDValue FudgePtr = DAG.getConstantPool(
9363                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
9364                                          getPointerTy());
9365
9366   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
9367   SDValue Zero = DAG.getIntPtrConstant(0);
9368   SDValue Four = DAG.getIntPtrConstant(4);
9369   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
9370                                Zero, Four);
9371   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
9372
9373   // Load the value out, extending it from f32 to f80.
9374   // FIXME: Avoid the extend by constructing the right constant pool?
9375   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
9376                                  FudgePtr, MachinePointerInfo::getConstantPool(),
9377                                  MVT::f32, false, false, 4);
9378   // Extend everything to 80 bits to force it to be done on x87.
9379   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
9380   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
9381 }
9382
9383 std::pair<SDValue,SDValue>
9384 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
9385                                     bool IsSigned, bool IsReplace) const {
9386   SDLoc DL(Op);
9387
9388   EVT DstTy = Op.getValueType();
9389
9390   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
9391     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
9392     DstTy = MVT::i64;
9393   }
9394
9395   assert(DstTy.getSimpleVT() <= MVT::i64 &&
9396          DstTy.getSimpleVT() >= MVT::i16 &&
9397          "Unknown FP_TO_INT to lower!");
9398
9399   // These are really Legal.
9400   if (DstTy == MVT::i32 &&
9401       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
9402     return std::make_pair(SDValue(), SDValue());
9403   if (Subtarget->is64Bit() &&
9404       DstTy == MVT::i64 &&
9405       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
9406     return std::make_pair(SDValue(), SDValue());
9407
9408   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
9409   // stack slot, or into the FTOL runtime function.
9410   MachineFunction &MF = DAG.getMachineFunction();
9411   unsigned MemSize = DstTy.getSizeInBits()/8;
9412   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
9413   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9414
9415   unsigned Opc;
9416   if (!IsSigned && isIntegerTypeFTOL(DstTy))
9417     Opc = X86ISD::WIN_FTOL;
9418   else
9419     switch (DstTy.getSimpleVT().SimpleTy) {
9420     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
9421     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
9422     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
9423     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
9424     }
9425
9426   SDValue Chain = DAG.getEntryNode();
9427   SDValue Value = Op.getOperand(0);
9428   EVT TheVT = Op.getOperand(0).getValueType();
9429   // FIXME This causes a redundant load/store if the SSE-class value is already
9430   // in memory, such as if it is on the callstack.
9431   if (isScalarFPTypeInSSEReg(TheVT)) {
9432     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
9433     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
9434                          MachinePointerInfo::getFixedStack(SSFI),
9435                          false, false, 0);
9436     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
9437     SDValue Ops[] = {
9438       Chain, StackSlot, DAG.getValueType(TheVT)
9439     };
9440
9441     MachineMemOperand *MMO =
9442       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9443                               MachineMemOperand::MOLoad, MemSize, MemSize);
9444     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
9445     Chain = Value.getValue(1);
9446     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
9447     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
9448   }
9449
9450   MachineMemOperand *MMO =
9451     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9452                             MachineMemOperand::MOStore, MemSize, MemSize);
9453
9454   if (Opc != X86ISD::WIN_FTOL) {
9455     // Build the FP_TO_INT*_IN_MEM
9456     SDValue Ops[] = { Chain, Value, StackSlot };
9457     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
9458                                            Ops, DstTy, MMO);
9459     return std::make_pair(FIST, StackSlot);
9460   } else {
9461     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
9462       DAG.getVTList(MVT::Other, MVT::Glue),
9463       Chain, Value);
9464     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
9465       MVT::i32, ftol.getValue(1));
9466     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
9467       MVT::i32, eax.getValue(2));
9468     SDValue Ops[] = { eax, edx };
9469     SDValue pair = IsReplace
9470       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops)
9471       : DAG.getMergeValues(Ops, DL);
9472     return std::make_pair(pair, SDValue());
9473   }
9474 }
9475
9476 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
9477                               const X86Subtarget *Subtarget) {
9478   MVT VT = Op->getSimpleValueType(0);
9479   SDValue In = Op->getOperand(0);
9480   MVT InVT = In.getSimpleValueType();
9481   SDLoc dl(Op);
9482
9483   // Optimize vectors in AVX mode:
9484   //
9485   //   v8i16 -> v8i32
9486   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
9487   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
9488   //   Concat upper and lower parts.
9489   //
9490   //   v4i32 -> v4i64
9491   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
9492   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
9493   //   Concat upper and lower parts.
9494   //
9495
9496   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
9497       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
9498       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
9499     return SDValue();
9500
9501   if (Subtarget->hasInt256())
9502     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
9503
9504   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
9505   SDValue Undef = DAG.getUNDEF(InVT);
9506   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
9507   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9508   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9509
9510   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
9511                              VT.getVectorNumElements()/2);
9512
9513   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
9514   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
9515
9516   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
9517 }
9518
9519 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
9520                                         SelectionDAG &DAG) {
9521   MVT VT = Op->getSimpleValueType(0);
9522   SDValue In = Op->getOperand(0);
9523   MVT InVT = In.getSimpleValueType();
9524   SDLoc DL(Op);
9525   unsigned int NumElts = VT.getVectorNumElements();
9526   if (NumElts != 8 && NumElts != 16)
9527     return SDValue();
9528
9529   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
9530     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
9531
9532   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
9533   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9534   // Now we have only mask extension
9535   assert(InVT.getVectorElementType() == MVT::i1);
9536   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
9537   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9538   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
9539   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9540   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9541                            MachinePointerInfo::getConstantPool(),
9542                            false, false, false, Alignment);
9543
9544   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
9545   if (VT.is512BitVector())
9546     return Brcst;
9547   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
9548 }
9549
9550 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9551                                SelectionDAG &DAG) {
9552   if (Subtarget->hasFp256()) {
9553     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9554     if (Res.getNode())
9555       return Res;
9556   }
9557
9558   return SDValue();
9559 }
9560
9561 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9562                                 SelectionDAG &DAG) {
9563   SDLoc DL(Op);
9564   MVT VT = Op.getSimpleValueType();
9565   SDValue In = Op.getOperand(0);
9566   MVT SVT = In.getSimpleValueType();
9567
9568   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
9569     return LowerZERO_EXTEND_AVX512(Op, DAG);
9570
9571   if (Subtarget->hasFp256()) {
9572     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9573     if (Res.getNode())
9574       return Res;
9575   }
9576
9577   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
9578          VT.getVectorNumElements() != SVT.getVectorNumElements());
9579   return SDValue();
9580 }
9581
9582 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
9583   SDLoc DL(Op);
9584   MVT VT = Op.getSimpleValueType();
9585   SDValue In = Op.getOperand(0);
9586   MVT InVT = In.getSimpleValueType();
9587
9588   if (VT == MVT::i1) {
9589     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
9590            "Invalid scalar TRUNCATE operation");
9591     if (InVT == MVT::i32)
9592       return SDValue();
9593     if (InVT.getSizeInBits() == 64)
9594       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
9595     else if (InVT.getSizeInBits() < 32)
9596       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
9597     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
9598   }
9599   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
9600          "Invalid TRUNCATE operation");
9601
9602   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9603     if (VT.getVectorElementType().getSizeInBits() >=8)
9604       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9605
9606     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9607     unsigned NumElts = InVT.getVectorNumElements();
9608     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9609     if (InVT.getSizeInBits() < 512) {
9610       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9611       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9612       InVT = ExtVT;
9613     }
9614     
9615     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9616     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9617     SDValue CP = DAG.getConstantPool(C, getPointerTy());
9618     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9619     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9620                            MachinePointerInfo::getConstantPool(),
9621                            false, false, false, Alignment);
9622     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9623     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9624     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9625   }
9626
9627   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9628     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9629     if (Subtarget->hasInt256()) {
9630       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9631       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9632       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9633                                 ShufMask);
9634       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9635                          DAG.getIntPtrConstant(0));
9636     }
9637
9638     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9639                                DAG.getIntPtrConstant(0));
9640     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9641                                DAG.getIntPtrConstant(2));
9642     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9643     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9644     static const int ShufMask[] = {0, 2, 4, 6};
9645     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
9646   }
9647
9648   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9649     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9650     if (Subtarget->hasInt256()) {
9651       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9652
9653       SmallVector<SDValue,32> pshufbMask;
9654       for (unsigned i = 0; i < 2; ++i) {
9655         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9656         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9657         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9658         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9659         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9660         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9661         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9662         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9663         for (unsigned j = 0; j < 8; ++j)
9664           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9665       }
9666       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
9667       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9668       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9669
9670       static const int ShufMask[] = {0,  2,  -1,  -1};
9671       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9672                                 &ShufMask[0]);
9673       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9674                        DAG.getIntPtrConstant(0));
9675       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9676     }
9677
9678     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9679                                DAG.getIntPtrConstant(0));
9680
9681     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9682                                DAG.getIntPtrConstant(4));
9683
9684     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9685     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9686
9687     // The PSHUFB mask:
9688     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9689                                    -1, -1, -1, -1, -1, -1, -1, -1};
9690
9691     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9692     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9693     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9694
9695     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9696     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9697
9698     // The MOVLHPS Mask:
9699     static const int ShufMask2[] = {0, 1, 4, 5};
9700     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9701     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9702   }
9703
9704   // Handle truncation of V256 to V128 using shuffles.
9705   if (!VT.is128BitVector() || !InVT.is256BitVector())
9706     return SDValue();
9707
9708   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9709
9710   unsigned NumElems = VT.getVectorNumElements();
9711   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
9712
9713   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9714   // Prepare truncation shuffle mask
9715   for (unsigned i = 0; i != NumElems; ++i)
9716     MaskVec[i] = i * 2;
9717   SDValue V = DAG.getVectorShuffle(NVT, DL,
9718                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9719                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9720   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9721                      DAG.getIntPtrConstant(0));
9722 }
9723
9724 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9725                                            SelectionDAG &DAG) const {
9726   assert(!Op.getSimpleValueType().isVector());
9727
9728   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9729     /*IsSigned=*/ true, /*IsReplace=*/ false);
9730   SDValue FIST = Vals.first, StackSlot = Vals.second;
9731   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9732   if (!FIST.getNode()) return Op;
9733
9734   if (StackSlot.getNode())
9735     // Load the result.
9736     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9737                        FIST, StackSlot, MachinePointerInfo(),
9738                        false, false, false, 0);
9739
9740   // The node is the result.
9741   return FIST;
9742 }
9743
9744 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9745                                            SelectionDAG &DAG) const {
9746   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9747     /*IsSigned=*/ false, /*IsReplace=*/ false);
9748   SDValue FIST = Vals.first, StackSlot = Vals.second;
9749   assert(FIST.getNode() && "Unexpected failure");
9750
9751   if (StackSlot.getNode())
9752     // Load the result.
9753     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9754                        FIST, StackSlot, MachinePointerInfo(),
9755                        false, false, false, 0);
9756
9757   // The node is the result.
9758   return FIST;
9759 }
9760
9761 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9762   SDLoc DL(Op);
9763   MVT VT = Op.getSimpleValueType();
9764   SDValue In = Op.getOperand(0);
9765   MVT SVT = In.getSimpleValueType();
9766
9767   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9768
9769   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9770                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9771                                  In, DAG.getUNDEF(SVT)));
9772 }
9773
9774 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
9775   LLVMContext *Context = DAG.getContext();
9776   SDLoc dl(Op);
9777   MVT VT = Op.getSimpleValueType();
9778   MVT EltVT = VT;
9779   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9780   if (VT.isVector()) {
9781     EltVT = VT.getVectorElementType();
9782     NumElts = VT.getVectorNumElements();
9783   }
9784   Constant *C;
9785   if (EltVT == MVT::f64)
9786     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9787                                           APInt(64, ~(1ULL << 63))));
9788   else
9789     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9790                                           APInt(32, ~(1U << 31))));
9791   C = ConstantVector::getSplat(NumElts, C);
9792   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9793   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9794   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9795   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9796                              MachinePointerInfo::getConstantPool(),
9797                              false, false, false, Alignment);
9798   if (VT.isVector()) {
9799     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9800     return DAG.getNode(ISD::BITCAST, dl, VT,
9801                        DAG.getNode(ISD::AND, dl, ANDVT,
9802                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9803                                                Op.getOperand(0)),
9804                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9805   }
9806   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9807 }
9808
9809 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
9810   LLVMContext *Context = DAG.getContext();
9811   SDLoc dl(Op);
9812   MVT VT = Op.getSimpleValueType();
9813   MVT EltVT = VT;
9814   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9815   if (VT.isVector()) {
9816     EltVT = VT.getVectorElementType();
9817     NumElts = VT.getVectorNumElements();
9818   }
9819   Constant *C;
9820   if (EltVT == MVT::f64)
9821     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9822                                           APInt(64, 1ULL << 63)));
9823   else
9824     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9825                                           APInt(32, 1U << 31)));
9826   C = ConstantVector::getSplat(NumElts, C);
9827   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9828   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9829   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9830   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9831                              MachinePointerInfo::getConstantPool(),
9832                              false, false, false, Alignment);
9833   if (VT.isVector()) {
9834     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9835     return DAG.getNode(ISD::BITCAST, dl, VT,
9836                        DAG.getNode(ISD::XOR, dl, XORVT,
9837                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9838                                                Op.getOperand(0)),
9839                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9840   }
9841
9842   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9843 }
9844
9845 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
9846   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9847   LLVMContext *Context = DAG.getContext();
9848   SDValue Op0 = Op.getOperand(0);
9849   SDValue Op1 = Op.getOperand(1);
9850   SDLoc dl(Op);
9851   MVT VT = Op.getSimpleValueType();
9852   MVT SrcVT = Op1.getSimpleValueType();
9853
9854   // If second operand is smaller, extend it first.
9855   if (SrcVT.bitsLT(VT)) {
9856     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9857     SrcVT = VT;
9858   }
9859   // And if it is bigger, shrink it first.
9860   if (SrcVT.bitsGT(VT)) {
9861     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9862     SrcVT = VT;
9863   }
9864
9865   // At this point the operands and the result should have the same
9866   // type, and that won't be f80 since that is not custom lowered.
9867
9868   // First get the sign bit of second operand.
9869   SmallVector<Constant*,4> CV;
9870   if (SrcVT == MVT::f64) {
9871     const fltSemantics &Sem = APFloat::IEEEdouble;
9872     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9873     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9874   } else {
9875     const fltSemantics &Sem = APFloat::IEEEsingle;
9876     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9877     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9878     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9879     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9880   }
9881   Constant *C = ConstantVector::get(CV);
9882   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9883   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9884                               MachinePointerInfo::getConstantPool(),
9885                               false, false, false, 16);
9886   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9887
9888   // Shift sign bit right or left if the two operands have different types.
9889   if (SrcVT.bitsGT(VT)) {
9890     // Op0 is MVT::f32, Op1 is MVT::f64.
9891     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9892     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9893                           DAG.getConstant(32, MVT::i32));
9894     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9895     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9896                           DAG.getIntPtrConstant(0));
9897   }
9898
9899   // Clear first operand sign bit.
9900   CV.clear();
9901   if (VT == MVT::f64) {
9902     const fltSemantics &Sem = APFloat::IEEEdouble;
9903     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9904                                                    APInt(64, ~(1ULL << 63)))));
9905     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9906   } else {
9907     const fltSemantics &Sem = APFloat::IEEEsingle;
9908     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9909                                                    APInt(32, ~(1U << 31)))));
9910     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9911     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9912     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9913   }
9914   C = ConstantVector::get(CV);
9915   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9916   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9917                               MachinePointerInfo::getConstantPool(),
9918                               false, false, false, 16);
9919   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9920
9921   // Or the value with the sign bit.
9922   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9923 }
9924
9925 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9926   SDValue N0 = Op.getOperand(0);
9927   SDLoc dl(Op);
9928   MVT VT = Op.getSimpleValueType();
9929
9930   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9931   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9932                                   DAG.getConstant(1, VT));
9933   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9934 }
9935
9936 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9937 //
9938 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9939                                       SelectionDAG &DAG) {
9940   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9941
9942   if (!Subtarget->hasSSE41())
9943     return SDValue();
9944
9945   if (!Op->hasOneUse())
9946     return SDValue();
9947
9948   SDNode *N = Op.getNode();
9949   SDLoc DL(N);
9950
9951   SmallVector<SDValue, 8> Opnds;
9952   DenseMap<SDValue, unsigned> VecInMap;
9953   SmallVector<SDValue, 8> VecIns;
9954   EVT VT = MVT::Other;
9955
9956   // Recognize a special case where a vector is casted into wide integer to
9957   // test all 0s.
9958   Opnds.push_back(N->getOperand(0));
9959   Opnds.push_back(N->getOperand(1));
9960
9961   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9962     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9963     // BFS traverse all OR'd operands.
9964     if (I->getOpcode() == ISD::OR) {
9965       Opnds.push_back(I->getOperand(0));
9966       Opnds.push_back(I->getOperand(1));
9967       // Re-evaluate the number of nodes to be traversed.
9968       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9969       continue;
9970     }
9971
9972     // Quit if a non-EXTRACT_VECTOR_ELT
9973     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9974       return SDValue();
9975
9976     // Quit if without a constant index.
9977     SDValue Idx = I->getOperand(1);
9978     if (!isa<ConstantSDNode>(Idx))
9979       return SDValue();
9980
9981     SDValue ExtractedFromVec = I->getOperand(0);
9982     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9983     if (M == VecInMap.end()) {
9984       VT = ExtractedFromVec.getValueType();
9985       // Quit if not 128/256-bit vector.
9986       if (!VT.is128BitVector() && !VT.is256BitVector())
9987         return SDValue();
9988       // Quit if not the same type.
9989       if (VecInMap.begin() != VecInMap.end() &&
9990           VT != VecInMap.begin()->first.getValueType())
9991         return SDValue();
9992       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9993       VecIns.push_back(ExtractedFromVec);
9994     }
9995     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9996   }
9997
9998   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9999          "Not extracted from 128-/256-bit vector.");
10000
10001   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
10002
10003   for (DenseMap<SDValue, unsigned>::const_iterator
10004         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
10005     // Quit if not all elements are used.
10006     if (I->second != FullMask)
10007       return SDValue();
10008   }
10009
10010   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
10011
10012   // Cast all vectors into TestVT for PTEST.
10013   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
10014     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
10015
10016   // If more than one full vectors are evaluated, OR them first before PTEST.
10017   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
10018     // Each iteration will OR 2 nodes and append the result until there is only
10019     // 1 node left, i.e. the final OR'd value of all vectors.
10020     SDValue LHS = VecIns[Slot];
10021     SDValue RHS = VecIns[Slot + 1];
10022     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
10023   }
10024
10025   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
10026                      VecIns.back(), VecIns.back());
10027 }
10028
10029 /// \brief return true if \c Op has a use that doesn't just read flags.
10030 static bool hasNonFlagsUse(SDValue Op) {
10031   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
10032        ++UI) {
10033     SDNode *User = *UI;
10034     unsigned UOpNo = UI.getOperandNo();
10035     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
10036       // Look pass truncate.
10037       UOpNo = User->use_begin().getOperandNo();
10038       User = *User->use_begin();
10039     }
10040
10041     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
10042         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
10043       return true;
10044   }
10045   return false;
10046 }
10047
10048 /// Emit nodes that will be selected as "test Op0,Op0", or something
10049 /// equivalent.
10050 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
10051                                     SelectionDAG &DAG) const {
10052   if (Op.getValueType() == MVT::i1)
10053     // KORTEST instruction should be selected
10054     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
10055                        DAG.getConstant(0, Op.getValueType()));
10056
10057   // CF and OF aren't always set the way we want. Determine which
10058   // of these we need.
10059   bool NeedCF = false;
10060   bool NeedOF = false;
10061   switch (X86CC) {
10062   default: break;
10063   case X86::COND_A: case X86::COND_AE:
10064   case X86::COND_B: case X86::COND_BE:
10065     NeedCF = true;
10066     break;
10067   case X86::COND_G: case X86::COND_GE:
10068   case X86::COND_L: case X86::COND_LE:
10069   case X86::COND_O: case X86::COND_NO:
10070     NeedOF = true;
10071     break;
10072   }
10073   // See if we can use the EFLAGS value from the operand instead of
10074   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
10075   // we prove that the arithmetic won't overflow, we can't use OF or CF.
10076   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
10077     // Emit a CMP with 0, which is the TEST pattern.
10078     //if (Op.getValueType() == MVT::i1)
10079     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
10080     //                     DAG.getConstant(0, MVT::i1));
10081     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
10082                        DAG.getConstant(0, Op.getValueType()));
10083   }
10084   unsigned Opcode = 0;
10085   unsigned NumOperands = 0;
10086
10087   // Truncate operations may prevent the merge of the SETCC instruction
10088   // and the arithmetic instruction before it. Attempt to truncate the operands
10089   // of the arithmetic instruction and use a reduced bit-width instruction.
10090   bool NeedTruncation = false;
10091   SDValue ArithOp = Op;
10092   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
10093     SDValue Arith = Op->getOperand(0);
10094     // Both the trunc and the arithmetic op need to have one user each.
10095     if (Arith->hasOneUse())
10096       switch (Arith.getOpcode()) {
10097         default: break;
10098         case ISD::ADD:
10099         case ISD::SUB:
10100         case ISD::AND:
10101         case ISD::OR:
10102         case ISD::XOR: {
10103           NeedTruncation = true;
10104           ArithOp = Arith;
10105         }
10106       }
10107   }
10108
10109   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
10110   // which may be the result of a CAST.  We use the variable 'Op', which is the
10111   // non-casted variable when we check for possible users.
10112   switch (ArithOp.getOpcode()) {
10113   case ISD::ADD:
10114     // Due to an isel shortcoming, be conservative if this add is likely to be
10115     // selected as part of a load-modify-store instruction. When the root node
10116     // in a match is a store, isel doesn't know how to remap non-chain non-flag
10117     // uses of other nodes in the match, such as the ADD in this case. This
10118     // leads to the ADD being left around and reselected, with the result being
10119     // two adds in the output.  Alas, even if none our users are stores, that
10120     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
10121     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
10122     // climbing the DAG back to the root, and it doesn't seem to be worth the
10123     // effort.
10124     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
10125          UE = Op.getNode()->use_end(); UI != UE; ++UI)
10126       if (UI->getOpcode() != ISD::CopyToReg &&
10127           UI->getOpcode() != ISD::SETCC &&
10128           UI->getOpcode() != ISD::STORE)
10129         goto default_case;
10130
10131     if (ConstantSDNode *C =
10132         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
10133       // An add of one will be selected as an INC.
10134       if (C->getAPIntValue() == 1) {
10135         Opcode = X86ISD::INC;
10136         NumOperands = 1;
10137         break;
10138       }
10139
10140       // An add of negative one (subtract of one) will be selected as a DEC.
10141       if (C->getAPIntValue().isAllOnesValue()) {
10142         Opcode = X86ISD::DEC;
10143         NumOperands = 1;
10144         break;
10145       }
10146     }
10147
10148     // Otherwise use a regular EFLAGS-setting add.
10149     Opcode = X86ISD::ADD;
10150     NumOperands = 2;
10151     break;
10152   case ISD::SHL:
10153   case ISD::SRL:
10154     // If we have a constant logical shift that's only used in a comparison
10155     // against zero turn it into an equivalent AND. This allows turning it into
10156     // a TEST instruction later.
10157     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) &&
10158         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
10159       EVT VT = Op.getValueType();
10160       unsigned BitWidth = VT.getSizeInBits();
10161       unsigned ShAmt = Op->getConstantOperandVal(1);
10162       if (ShAmt >= BitWidth) // Avoid undefined shifts.
10163         break;
10164       APInt Mask = ArithOp.getOpcode() == ISD::SRL
10165                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
10166                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
10167       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
10168         break;
10169       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
10170                                 DAG.getConstant(Mask, VT));
10171       DAG.ReplaceAllUsesWith(Op, New);
10172       Op = New;
10173     }
10174     break;
10175
10176   case ISD::AND:
10177     // If the primary and result isn't used, don't bother using X86ISD::AND,
10178     // because a TEST instruction will be better.
10179     if (!hasNonFlagsUse(Op))
10180       break;
10181     // FALL THROUGH
10182   case ISD::SUB:
10183   case ISD::OR:
10184   case ISD::XOR:
10185     // Due to the ISEL shortcoming noted above, be conservative if this op is
10186     // likely to be selected as part of a load-modify-store instruction.
10187     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
10188            UE = Op.getNode()->use_end(); UI != UE; ++UI)
10189       if (UI->getOpcode() == ISD::STORE)
10190         goto default_case;
10191
10192     // Otherwise use a regular EFLAGS-setting instruction.
10193     switch (ArithOp.getOpcode()) {
10194     default: llvm_unreachable("unexpected operator!");
10195     case ISD::SUB: Opcode = X86ISD::SUB; break;
10196     case ISD::XOR: Opcode = X86ISD::XOR; break;
10197     case ISD::AND: Opcode = X86ISD::AND; break;
10198     case ISD::OR: {
10199       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
10200         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
10201         if (EFLAGS.getNode())
10202           return EFLAGS;
10203       }
10204       Opcode = X86ISD::OR;
10205       break;
10206     }
10207     }
10208
10209     NumOperands = 2;
10210     break;
10211   case X86ISD::ADD:
10212   case X86ISD::SUB:
10213   case X86ISD::INC:
10214   case X86ISD::DEC:
10215   case X86ISD::OR:
10216   case X86ISD::XOR:
10217   case X86ISD::AND:
10218     return SDValue(Op.getNode(), 1);
10219   default:
10220   default_case:
10221     break;
10222   }
10223
10224   // If we found that truncation is beneficial, perform the truncation and
10225   // update 'Op'.
10226   if (NeedTruncation) {
10227     EVT VT = Op.getValueType();
10228     SDValue WideVal = Op->getOperand(0);
10229     EVT WideVT = WideVal.getValueType();
10230     unsigned ConvertedOp = 0;
10231     // Use a target machine opcode to prevent further DAGCombine
10232     // optimizations that may separate the arithmetic operations
10233     // from the setcc node.
10234     switch (WideVal.getOpcode()) {
10235       default: break;
10236       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
10237       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
10238       case ISD::AND: ConvertedOp = X86ISD::AND; break;
10239       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
10240       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
10241     }
10242
10243     if (ConvertedOp) {
10244       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10245       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
10246         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
10247         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
10248         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
10249       }
10250     }
10251   }
10252
10253   if (Opcode == 0)
10254     // Emit a CMP with 0, which is the TEST pattern.
10255     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
10256                        DAG.getConstant(0, Op.getValueType()));
10257
10258   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10259   SmallVector<SDValue, 4> Ops;
10260   for (unsigned i = 0; i != NumOperands; ++i)
10261     Ops.push_back(Op.getOperand(i));
10262
10263   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
10264   DAG.ReplaceAllUsesWith(Op, New);
10265   return SDValue(New.getNode(), 1);
10266 }
10267
10268 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
10269 /// equivalent.
10270 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
10271                                    SDLoc dl, SelectionDAG &DAG) const {
10272   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
10273     if (C->getAPIntValue() == 0)
10274       return EmitTest(Op0, X86CC, dl, DAG);
10275
10276      if (Op0.getValueType() == MVT::i1)
10277        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
10278   }
10279  
10280   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
10281        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
10282     // Do the comparison at i32 if it's smaller, besides the Atom case. 
10283     // This avoids subregister aliasing issues. Keep the smaller reference 
10284     // if we're optimizing for size, however, as that'll allow better folding 
10285     // of memory operations.
10286     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
10287         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
10288              AttributeSet::FunctionIndex, Attribute::MinSize) &&
10289         !Subtarget->isAtom()) {
10290       unsigned ExtendOp =
10291           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
10292       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
10293       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
10294     }
10295     // Use SUB instead of CMP to enable CSE between SUB and CMP.
10296     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
10297     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
10298                               Op0, Op1);
10299     return SDValue(Sub.getNode(), 1);
10300   }
10301   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
10302 }
10303
10304 /// Convert a comparison if required by the subtarget.
10305 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
10306                                                  SelectionDAG &DAG) const {
10307   // If the subtarget does not support the FUCOMI instruction, floating-point
10308   // comparisons have to be converted.
10309   if (Subtarget->hasCMov() ||
10310       Cmp.getOpcode() != X86ISD::CMP ||
10311       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
10312       !Cmp.getOperand(1).getValueType().isFloatingPoint())
10313     return Cmp;
10314
10315   // The instruction selector will select an FUCOM instruction instead of
10316   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
10317   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
10318   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
10319   SDLoc dl(Cmp);
10320   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
10321   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
10322   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
10323                             DAG.getConstant(8, MVT::i8));
10324   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
10325   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
10326 }
10327
10328 static bool isAllOnes(SDValue V) {
10329   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10330   return C && C->isAllOnesValue();
10331 }
10332
10333 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
10334 /// if it's possible.
10335 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
10336                                      SDLoc dl, SelectionDAG &DAG) const {
10337   SDValue Op0 = And.getOperand(0);
10338   SDValue Op1 = And.getOperand(1);
10339   if (Op0.getOpcode() == ISD::TRUNCATE)
10340     Op0 = Op0.getOperand(0);
10341   if (Op1.getOpcode() == ISD::TRUNCATE)
10342     Op1 = Op1.getOperand(0);
10343
10344   SDValue LHS, RHS;
10345   if (Op1.getOpcode() == ISD::SHL)
10346     std::swap(Op0, Op1);
10347   if (Op0.getOpcode() == ISD::SHL) {
10348     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
10349       if (And00C->getZExtValue() == 1) {
10350         // If we looked past a truncate, check that it's only truncating away
10351         // known zeros.
10352         unsigned BitWidth = Op0.getValueSizeInBits();
10353         unsigned AndBitWidth = And.getValueSizeInBits();
10354         if (BitWidth > AndBitWidth) {
10355           APInt Zeros, Ones;
10356           DAG.computeKnownBits(Op0, Zeros, Ones);
10357           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
10358             return SDValue();
10359         }
10360         LHS = Op1;
10361         RHS = Op0.getOperand(1);
10362       }
10363   } else if (Op1.getOpcode() == ISD::Constant) {
10364     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
10365     uint64_t AndRHSVal = AndRHS->getZExtValue();
10366     SDValue AndLHS = Op0;
10367
10368     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
10369       LHS = AndLHS.getOperand(0);
10370       RHS = AndLHS.getOperand(1);
10371     }
10372
10373     // Use BT if the immediate can't be encoded in a TEST instruction.
10374     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
10375       LHS = AndLHS;
10376       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
10377     }
10378   }
10379
10380   if (LHS.getNode()) {
10381     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
10382     // instruction.  Since the shift amount is in-range-or-undefined, we know
10383     // that doing a bittest on the i32 value is ok.  We extend to i32 because
10384     // the encoding for the i16 version is larger than the i32 version.
10385     // Also promote i16 to i32 for performance / code size reason.
10386     if (LHS.getValueType() == MVT::i8 ||
10387         LHS.getValueType() == MVT::i16)
10388       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
10389
10390     // If the operand types disagree, extend the shift amount to match.  Since
10391     // BT ignores high bits (like shifts) we can use anyextend.
10392     if (LHS.getValueType() != RHS.getValueType())
10393       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
10394
10395     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
10396     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
10397     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10398                        DAG.getConstant(Cond, MVT::i8), BT);
10399   }
10400
10401   return SDValue();
10402 }
10403
10404 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
10405 /// mask CMPs.
10406 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
10407                               SDValue &Op1) {
10408   unsigned SSECC;
10409   bool Swap = false;
10410
10411   // SSE Condition code mapping:
10412   //  0 - EQ
10413   //  1 - LT
10414   //  2 - LE
10415   //  3 - UNORD
10416   //  4 - NEQ
10417   //  5 - NLT
10418   //  6 - NLE
10419   //  7 - ORD
10420   switch (SetCCOpcode) {
10421   default: llvm_unreachable("Unexpected SETCC condition");
10422   case ISD::SETOEQ:
10423   case ISD::SETEQ:  SSECC = 0; break;
10424   case ISD::SETOGT:
10425   case ISD::SETGT:  Swap = true; // Fallthrough
10426   case ISD::SETLT:
10427   case ISD::SETOLT: SSECC = 1; break;
10428   case ISD::SETOGE:
10429   case ISD::SETGE:  Swap = true; // Fallthrough
10430   case ISD::SETLE:
10431   case ISD::SETOLE: SSECC = 2; break;
10432   case ISD::SETUO:  SSECC = 3; break;
10433   case ISD::SETUNE:
10434   case ISD::SETNE:  SSECC = 4; break;
10435   case ISD::SETULE: Swap = true; // Fallthrough
10436   case ISD::SETUGE: SSECC = 5; break;
10437   case ISD::SETULT: Swap = true; // Fallthrough
10438   case ISD::SETUGT: SSECC = 6; break;
10439   case ISD::SETO:   SSECC = 7; break;
10440   case ISD::SETUEQ:
10441   case ISD::SETONE: SSECC = 8; break;
10442   }
10443   if (Swap)
10444     std::swap(Op0, Op1);
10445
10446   return SSECC;
10447 }
10448
10449 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
10450 // ones, and then concatenate the result back.
10451 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
10452   MVT VT = Op.getSimpleValueType();
10453
10454   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
10455          "Unsupported value type for operation");
10456
10457   unsigned NumElems = VT.getVectorNumElements();
10458   SDLoc dl(Op);
10459   SDValue CC = Op.getOperand(2);
10460
10461   // Extract the LHS vectors
10462   SDValue LHS = Op.getOperand(0);
10463   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
10464   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
10465
10466   // Extract the RHS vectors
10467   SDValue RHS = Op.getOperand(1);
10468   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
10469   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
10470
10471   // Issue the operation on the smaller types and concatenate the result back
10472   MVT EltVT = VT.getVectorElementType();
10473   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10474   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
10475                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
10476                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
10477 }
10478
10479 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
10480                                      const X86Subtarget *Subtarget) {
10481   SDValue Op0 = Op.getOperand(0);
10482   SDValue Op1 = Op.getOperand(1);
10483   SDValue CC = Op.getOperand(2);
10484   MVT VT = Op.getSimpleValueType();
10485   SDLoc dl(Op);
10486
10487   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
10488          Op.getValueType().getScalarType() == MVT::i1 &&
10489          "Cannot set masked compare for this operation");
10490
10491   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10492   unsigned  Opc = 0;
10493   bool Unsigned = false;
10494   bool Swap = false;
10495   unsigned SSECC;
10496   switch (SetCCOpcode) {
10497   default: llvm_unreachable("Unexpected SETCC condition");
10498   case ISD::SETNE:  SSECC = 4; break;
10499   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
10500   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
10501   case ISD::SETLT:  Swap = true; //fall-through
10502   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
10503   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
10504   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
10505   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
10506   case ISD::SETULE: Unsigned = true; //fall-through
10507   case ISD::SETLE:  SSECC = 2; break;
10508   }
10509
10510   if (Swap)
10511     std::swap(Op0, Op1);
10512   if (Opc)
10513     return DAG.getNode(Opc, dl, VT, Op0, Op1);
10514   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
10515   return DAG.getNode(Opc, dl, VT, Op0, Op1,
10516                      DAG.getConstant(SSECC, MVT::i8));
10517 }
10518
10519 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
10520 /// operand \p Op1.  If non-trivial (for example because it's not constant)
10521 /// return an empty value.
10522 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
10523 {
10524   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
10525   if (!BV)
10526     return SDValue();
10527
10528   MVT VT = Op1.getSimpleValueType();
10529   MVT EVT = VT.getVectorElementType();
10530   unsigned n = VT.getVectorNumElements();
10531   SmallVector<SDValue, 8> ULTOp1;
10532
10533   for (unsigned i = 0; i < n; ++i) {
10534     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
10535     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
10536       return SDValue();
10537
10538     // Avoid underflow.
10539     APInt Val = Elt->getAPIntValue();
10540     if (Val == 0)
10541       return SDValue();
10542
10543     ULTOp1.push_back(DAG.getConstant(Val - 1, EVT));
10544   }
10545
10546   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
10547 }
10548
10549 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
10550                            SelectionDAG &DAG) {
10551   SDValue Op0 = Op.getOperand(0);
10552   SDValue Op1 = Op.getOperand(1);
10553   SDValue CC = Op.getOperand(2);
10554   MVT VT = Op.getSimpleValueType();
10555   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10556   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10557   SDLoc dl(Op);
10558
10559   if (isFP) {
10560 #ifndef NDEBUG
10561     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10562     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10563 #endif
10564
10565     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10566     unsigned Opc = X86ISD::CMPP;
10567     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10568       assert(VT.getVectorNumElements() <= 16);
10569       Opc = X86ISD::CMPM;
10570     }
10571     // In the two special cases we can't handle, emit two comparisons.
10572     if (SSECC == 8) {
10573       unsigned CC0, CC1;
10574       unsigned CombineOpc;
10575       if (SetCCOpcode == ISD::SETUEQ) {
10576         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10577       } else {
10578         assert(SetCCOpcode == ISD::SETONE);
10579         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10580       }
10581
10582       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10583                                  DAG.getConstant(CC0, MVT::i8));
10584       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10585                                  DAG.getConstant(CC1, MVT::i8));
10586       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10587     }
10588     // Handle all other FP comparisons here.
10589     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10590                        DAG.getConstant(SSECC, MVT::i8));
10591   }
10592
10593   // Break 256-bit integer vector compare into smaller ones.
10594   if (VT.is256BitVector() && !Subtarget->hasInt256())
10595     return Lower256IntVSETCC(Op, DAG);
10596
10597   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10598   EVT OpVT = Op1.getValueType();
10599   if (Subtarget->hasAVX512()) {
10600     if (Op1.getValueType().is512BitVector() ||
10601         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10602       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
10603
10604     // In AVX-512 architecture setcc returns mask with i1 elements,
10605     // But there is no compare instruction for i8 and i16 elements.
10606     // We are not talking about 512-bit operands in this case, these
10607     // types are illegal.
10608     if (MaskResult &&
10609         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10610          OpVT.getVectorElementType().getSizeInBits() >= 8))
10611       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10612                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10613   }
10614
10615   // We are handling one of the integer comparisons here.  Since SSE only has
10616   // GT and EQ comparisons for integer, swapping operands and multiple
10617   // operations may be required for some comparisons.
10618   unsigned Opc;
10619   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10620   bool Subus = false;
10621
10622   switch (SetCCOpcode) {
10623   default: llvm_unreachable("Unexpected SETCC condition");
10624   case ISD::SETNE:  Invert = true;
10625   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
10626   case ISD::SETLT:  Swap = true;
10627   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
10628   case ISD::SETGE:  Swap = true;
10629   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
10630                     Invert = true; break;
10631   case ISD::SETULT: Swap = true;
10632   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
10633                     FlipSigns = true; break;
10634   case ISD::SETUGE: Swap = true;
10635   case ISD::SETULE: Opc = X86ISD::PCMPGT;
10636                     FlipSigns = true; Invert = true; break;
10637   }
10638
10639   // Special case: Use min/max operations for SETULE/SETUGE
10640   MVT VET = VT.getVectorElementType();
10641   bool hasMinMax =
10642        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10643     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10644
10645   if (hasMinMax) {
10646     switch (SetCCOpcode) {
10647     default: break;
10648     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10649     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10650     }
10651
10652     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10653   }
10654
10655   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
10656   if (!MinMax && hasSubus) {
10657     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
10658     // Op0 u<= Op1:
10659     //   t = psubus Op0, Op1
10660     //   pcmpeq t, <0..0>
10661     switch (SetCCOpcode) {
10662     default: break;
10663     case ISD::SETULT: {
10664       // If the comparison is against a constant we can turn this into a
10665       // setule.  With psubus, setule does not require a swap.  This is
10666       // beneficial because the constant in the register is no longer
10667       // destructed as the destination so it can be hoisted out of a loop.
10668       // Only do this pre-AVX since vpcmp* is no longer destructive.
10669       if (Subtarget->hasAVX())
10670         break;
10671       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
10672       if (ULEOp1.getNode()) {
10673         Op1 = ULEOp1;
10674         Subus = true; Invert = false; Swap = false;
10675       }
10676       break;
10677     }
10678     // Psubus is better than flip-sign because it requires no inversion.
10679     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
10680     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
10681     }
10682
10683     if (Subus) {
10684       Opc = X86ISD::SUBUS;
10685       FlipSigns = false;
10686     }
10687   }
10688
10689   if (Swap)
10690     std::swap(Op0, Op1);
10691
10692   // Check that the operation in question is available (most are plain SSE2,
10693   // but PCMPGTQ and PCMPEQQ have different requirements).
10694   if (VT == MVT::v2i64) {
10695     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10696       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10697
10698       // First cast everything to the right type.
10699       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10700       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10701
10702       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10703       // bits of the inputs before performing those operations. The lower
10704       // compare is always unsigned.
10705       SDValue SB;
10706       if (FlipSigns) {
10707         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10708       } else {
10709         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10710         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10711         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10712                          Sign, Zero, Sign, Zero);
10713       }
10714       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10715       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10716
10717       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10718       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10719       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10720
10721       // Create masks for only the low parts/high parts of the 64 bit integers.
10722       static const int MaskHi[] = { 1, 1, 3, 3 };
10723       static const int MaskLo[] = { 0, 0, 2, 2 };
10724       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10725       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10726       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10727
10728       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10729       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10730
10731       if (Invert)
10732         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10733
10734       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10735     }
10736
10737     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10738       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10739       // pcmpeqd + pshufd + pand.
10740       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10741
10742       // First cast everything to the right type.
10743       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10744       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10745
10746       // Do the compare.
10747       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10748
10749       // Make sure the lower and upper halves are both all-ones.
10750       static const int Mask[] = { 1, 0, 3, 2 };
10751       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10752       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10753
10754       if (Invert)
10755         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10756
10757       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10758     }
10759   }
10760
10761   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10762   // bits of the inputs before performing those operations.
10763   if (FlipSigns) {
10764     EVT EltVT = VT.getVectorElementType();
10765     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10766     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10767     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10768   }
10769
10770   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10771
10772   // If the logical-not of the result is required, perform that now.
10773   if (Invert)
10774     Result = DAG.getNOT(dl, Result, VT);
10775
10776   if (MinMax)
10777     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10778
10779   if (Subus)
10780     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
10781                          getZeroVector(VT, Subtarget, DAG, dl));
10782
10783   return Result;
10784 }
10785
10786 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10787
10788   MVT VT = Op.getSimpleValueType();
10789
10790   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10791
10792   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10793          && "SetCC type must be 8-bit or 1-bit integer");
10794   SDValue Op0 = Op.getOperand(0);
10795   SDValue Op1 = Op.getOperand(1);
10796   SDLoc dl(Op);
10797   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10798
10799   // Optimize to BT if possible.
10800   // Lower (X & (1 << N)) == 0 to BT(X, N).
10801   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10802   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10803   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10804       Op1.getOpcode() == ISD::Constant &&
10805       cast<ConstantSDNode>(Op1)->isNullValue() &&
10806       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10807     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10808     if (NewSetCC.getNode())
10809       return NewSetCC;
10810   }
10811
10812   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10813   // these.
10814   if (Op1.getOpcode() == ISD::Constant &&
10815       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10816        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10817       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10818
10819     // If the input is a setcc, then reuse the input setcc or use a new one with
10820     // the inverted condition.
10821     if (Op0.getOpcode() == X86ISD::SETCC) {
10822       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10823       bool Invert = (CC == ISD::SETNE) ^
10824         cast<ConstantSDNode>(Op1)->isNullValue();
10825       if (!Invert)
10826         return Op0;
10827
10828       CCode = X86::GetOppositeBranchCondition(CCode);
10829       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10830                                   DAG.getConstant(CCode, MVT::i8),
10831                                   Op0.getOperand(1));
10832       if (VT == MVT::i1)
10833         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10834       return SetCC;
10835     }
10836   }
10837   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
10838       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
10839       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10840
10841     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
10842     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, MVT::i1), NewCC);
10843   }
10844
10845   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10846   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10847   if (X86CC == X86::COND_INVALID)
10848     return SDValue();
10849
10850   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
10851   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10852   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10853                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10854   if (VT == MVT::i1)
10855     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10856   return SetCC;
10857 }
10858
10859 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10860 static bool isX86LogicalCmp(SDValue Op) {
10861   unsigned Opc = Op.getNode()->getOpcode();
10862   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10863       Opc == X86ISD::SAHF)
10864     return true;
10865   if (Op.getResNo() == 1 &&
10866       (Opc == X86ISD::ADD ||
10867        Opc == X86ISD::SUB ||
10868        Opc == X86ISD::ADC ||
10869        Opc == X86ISD::SBB ||
10870        Opc == X86ISD::SMUL ||
10871        Opc == X86ISD::UMUL ||
10872        Opc == X86ISD::INC ||
10873        Opc == X86ISD::DEC ||
10874        Opc == X86ISD::OR ||
10875        Opc == X86ISD::XOR ||
10876        Opc == X86ISD::AND))
10877     return true;
10878
10879   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10880     return true;
10881
10882   return false;
10883 }
10884
10885 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10886   if (V.getOpcode() != ISD::TRUNCATE)
10887     return false;
10888
10889   SDValue VOp0 = V.getOperand(0);
10890   unsigned InBits = VOp0.getValueSizeInBits();
10891   unsigned Bits = V.getValueSizeInBits();
10892   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10893 }
10894
10895 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10896   bool addTest = true;
10897   SDValue Cond  = Op.getOperand(0);
10898   SDValue Op1 = Op.getOperand(1);
10899   SDValue Op2 = Op.getOperand(2);
10900   SDLoc DL(Op);
10901   EVT VT = Op1.getValueType();
10902   SDValue CC;
10903
10904   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10905   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10906   // sequence later on.
10907   if (Cond.getOpcode() == ISD::SETCC &&
10908       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10909        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10910       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10911     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10912     int SSECC = translateX86FSETCC(
10913         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10914
10915     if (SSECC != 8) {
10916       if (Subtarget->hasAVX512()) {
10917         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10918                                   DAG.getConstant(SSECC, MVT::i8));
10919         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10920       }
10921       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10922                                 DAG.getConstant(SSECC, MVT::i8));
10923       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10924       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10925       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10926     }
10927   }
10928
10929   if (Cond.getOpcode() == ISD::SETCC) {
10930     SDValue NewCond = LowerSETCC(Cond, DAG);
10931     if (NewCond.getNode())
10932       Cond = NewCond;
10933   }
10934
10935   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10936   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10937   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10938   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10939   if (Cond.getOpcode() == X86ISD::SETCC &&
10940       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10941       isZero(Cond.getOperand(1).getOperand(1))) {
10942     SDValue Cmp = Cond.getOperand(1);
10943
10944     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10945
10946     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10947         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10948       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10949
10950       SDValue CmpOp0 = Cmp.getOperand(0);
10951       // Apply further optimizations for special cases
10952       // (select (x != 0), -1, 0) -> neg & sbb
10953       // (select (x == 0), 0, -1) -> neg & sbb
10954       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10955         if (YC->isNullValue() &&
10956             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10957           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10958           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10959                                     DAG.getConstant(0, CmpOp0.getValueType()),
10960                                     CmpOp0);
10961           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10962                                     DAG.getConstant(X86::COND_B, MVT::i8),
10963                                     SDValue(Neg.getNode(), 1));
10964           return Res;
10965         }
10966
10967       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10968                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10969       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10970
10971       SDValue Res =   // Res = 0 or -1.
10972         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10973                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10974
10975       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10976         Res = DAG.getNOT(DL, Res, Res.getValueType());
10977
10978       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10979       if (!N2C || !N2C->isNullValue())
10980         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10981       return Res;
10982     }
10983   }
10984
10985   // Look past (and (setcc_carry (cmp ...)), 1).
10986   if (Cond.getOpcode() == ISD::AND &&
10987       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10988     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10989     if (C && C->getAPIntValue() == 1)
10990       Cond = Cond.getOperand(0);
10991   }
10992
10993   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10994   // setting operand in place of the X86ISD::SETCC.
10995   unsigned CondOpcode = Cond.getOpcode();
10996   if (CondOpcode == X86ISD::SETCC ||
10997       CondOpcode == X86ISD::SETCC_CARRY) {
10998     CC = Cond.getOperand(0);
10999
11000     SDValue Cmp = Cond.getOperand(1);
11001     unsigned Opc = Cmp.getOpcode();
11002     MVT VT = Op.getSimpleValueType();
11003
11004     bool IllegalFPCMov = false;
11005     if (VT.isFloatingPoint() && !VT.isVector() &&
11006         !isScalarFPTypeInSSEReg(VT))  // FPStack?
11007       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
11008
11009     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
11010         Opc == X86ISD::BT) { // FIXME
11011       Cond = Cmp;
11012       addTest = false;
11013     }
11014   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
11015              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
11016              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
11017               Cond.getOperand(0).getValueType() != MVT::i8)) {
11018     SDValue LHS = Cond.getOperand(0);
11019     SDValue RHS = Cond.getOperand(1);
11020     unsigned X86Opcode;
11021     unsigned X86Cond;
11022     SDVTList VTs;
11023     switch (CondOpcode) {
11024     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
11025     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
11026     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
11027     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
11028     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
11029     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
11030     default: llvm_unreachable("unexpected overflowing operator");
11031     }
11032     if (CondOpcode == ISD::UMULO)
11033       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
11034                           MVT::i32);
11035     else
11036       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
11037
11038     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
11039
11040     if (CondOpcode == ISD::UMULO)
11041       Cond = X86Op.getValue(2);
11042     else
11043       Cond = X86Op.getValue(1);
11044
11045     CC = DAG.getConstant(X86Cond, MVT::i8);
11046     addTest = false;
11047   }
11048
11049   if (addTest) {
11050     // Look pass the truncate if the high bits are known zero.
11051     if (isTruncWithZeroHighBitsInput(Cond, DAG))
11052         Cond = Cond.getOperand(0);
11053
11054     // We know the result of AND is compared against zero. Try to match
11055     // it to BT.
11056     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
11057       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
11058       if (NewSetCC.getNode()) {
11059         CC = NewSetCC.getOperand(0);
11060         Cond = NewSetCC.getOperand(1);
11061         addTest = false;
11062       }
11063     }
11064   }
11065
11066   if (addTest) {
11067     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11068     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
11069   }
11070
11071   // a <  b ? -1 :  0 -> RES = ~setcc_carry
11072   // a <  b ?  0 : -1 -> RES = setcc_carry
11073   // a >= b ? -1 :  0 -> RES = setcc_carry
11074   // a >= b ?  0 : -1 -> RES = ~setcc_carry
11075   if (Cond.getOpcode() == X86ISD::SUB) {
11076     Cond = ConvertCmpIfNecessary(Cond, DAG);
11077     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
11078
11079     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
11080         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
11081       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
11082                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
11083       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
11084         return DAG.getNOT(DL, Res, Res.getValueType());
11085       return Res;
11086     }
11087   }
11088
11089   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
11090   // widen the cmov and push the truncate through. This avoids introducing a new
11091   // branch during isel and doesn't add any extensions.
11092   if (Op.getValueType() == MVT::i8 &&
11093       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
11094     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
11095     if (T1.getValueType() == T2.getValueType() &&
11096         // Blacklist CopyFromReg to avoid partial register stalls.
11097         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
11098       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
11099       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
11100       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
11101     }
11102   }
11103
11104   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
11105   // condition is true.
11106   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
11107   SDValue Ops[] = { Op2, Op1, CC, Cond };
11108   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
11109 }
11110
11111 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
11112   MVT VT = Op->getSimpleValueType(0);
11113   SDValue In = Op->getOperand(0);
11114   MVT InVT = In.getSimpleValueType();
11115   SDLoc dl(Op);
11116
11117   unsigned int NumElts = VT.getVectorNumElements();
11118   if (NumElts != 8 && NumElts != 16)
11119     return SDValue();
11120
11121   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
11122     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
11123
11124   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11125   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
11126
11127   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
11128   Constant *C = ConstantInt::get(*DAG.getContext(),
11129     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
11130
11131   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
11132   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
11133   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
11134                           MachinePointerInfo::getConstantPool(),
11135                           false, false, false, Alignment);
11136   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
11137   if (VT.is512BitVector())
11138     return Brcst;
11139   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
11140 }
11141
11142 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
11143                                 SelectionDAG &DAG) {
11144   MVT VT = Op->getSimpleValueType(0);
11145   SDValue In = Op->getOperand(0);
11146   MVT InVT = In.getSimpleValueType();
11147   SDLoc dl(Op);
11148
11149   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
11150     return LowerSIGN_EXTEND_AVX512(Op, DAG);
11151
11152   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
11153       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
11154       (VT != MVT::v16i16 || InVT != MVT::v16i8))
11155     return SDValue();
11156
11157   if (Subtarget->hasInt256())
11158     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
11159
11160   // Optimize vectors in AVX mode
11161   // Sign extend  v8i16 to v8i32 and
11162   //              v4i32 to v4i64
11163   //
11164   // Divide input vector into two parts
11165   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
11166   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
11167   // concat the vectors to original VT
11168
11169   unsigned NumElems = InVT.getVectorNumElements();
11170   SDValue Undef = DAG.getUNDEF(InVT);
11171
11172   SmallVector<int,8> ShufMask1(NumElems, -1);
11173   for (unsigned i = 0; i != NumElems/2; ++i)
11174     ShufMask1[i] = i;
11175
11176   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
11177
11178   SmallVector<int,8> ShufMask2(NumElems, -1);
11179   for (unsigned i = 0; i != NumElems/2; ++i)
11180     ShufMask2[i] = i + NumElems/2;
11181
11182   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
11183
11184   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
11185                                 VT.getVectorNumElements()/2);
11186
11187   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
11188   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
11189
11190   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
11191 }
11192
11193 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
11194 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
11195 // from the AND / OR.
11196 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
11197   Opc = Op.getOpcode();
11198   if (Opc != ISD::OR && Opc != ISD::AND)
11199     return false;
11200   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
11201           Op.getOperand(0).hasOneUse() &&
11202           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
11203           Op.getOperand(1).hasOneUse());
11204 }
11205
11206 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
11207 // 1 and that the SETCC node has a single use.
11208 static bool isXor1OfSetCC(SDValue Op) {
11209   if (Op.getOpcode() != ISD::XOR)
11210     return false;
11211   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
11212   if (N1C && N1C->getAPIntValue() == 1) {
11213     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
11214       Op.getOperand(0).hasOneUse();
11215   }
11216   return false;
11217 }
11218
11219 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
11220   bool addTest = true;
11221   SDValue Chain = Op.getOperand(0);
11222   SDValue Cond  = Op.getOperand(1);
11223   SDValue Dest  = Op.getOperand(2);
11224   SDLoc dl(Op);
11225   SDValue CC;
11226   bool Inverted = false;
11227
11228   if (Cond.getOpcode() == ISD::SETCC) {
11229     // Check for setcc([su]{add,sub,mul}o == 0).
11230     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
11231         isa<ConstantSDNode>(Cond.getOperand(1)) &&
11232         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
11233         Cond.getOperand(0).getResNo() == 1 &&
11234         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
11235          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
11236          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
11237          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
11238          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
11239          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
11240       Inverted = true;
11241       Cond = Cond.getOperand(0);
11242     } else {
11243       SDValue NewCond = LowerSETCC(Cond, DAG);
11244       if (NewCond.getNode())
11245         Cond = NewCond;
11246     }
11247   }
11248 #if 0
11249   // FIXME: LowerXALUO doesn't handle these!!
11250   else if (Cond.getOpcode() == X86ISD::ADD  ||
11251            Cond.getOpcode() == X86ISD::SUB  ||
11252            Cond.getOpcode() == X86ISD::SMUL ||
11253            Cond.getOpcode() == X86ISD::UMUL)
11254     Cond = LowerXALUO(Cond, DAG);
11255 #endif
11256
11257   // Look pass (and (setcc_carry (cmp ...)), 1).
11258   if (Cond.getOpcode() == ISD::AND &&
11259       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
11260     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
11261     if (C && C->getAPIntValue() == 1)
11262       Cond = Cond.getOperand(0);
11263   }
11264
11265   // If condition flag is set by a X86ISD::CMP, then use it as the condition
11266   // setting operand in place of the X86ISD::SETCC.
11267   unsigned CondOpcode = Cond.getOpcode();
11268   if (CondOpcode == X86ISD::SETCC ||
11269       CondOpcode == X86ISD::SETCC_CARRY) {
11270     CC = Cond.getOperand(0);
11271
11272     SDValue Cmp = Cond.getOperand(1);
11273     unsigned Opc = Cmp.getOpcode();
11274     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
11275     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
11276       Cond = Cmp;
11277       addTest = false;
11278     } else {
11279       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
11280       default: break;
11281       case X86::COND_O:
11282       case X86::COND_B:
11283         // These can only come from an arithmetic instruction with overflow,
11284         // e.g. SADDO, UADDO.
11285         Cond = Cond.getNode()->getOperand(1);
11286         addTest = false;
11287         break;
11288       }
11289     }
11290   }
11291   CondOpcode = Cond.getOpcode();
11292   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
11293       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
11294       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
11295        Cond.getOperand(0).getValueType() != MVT::i8)) {
11296     SDValue LHS = Cond.getOperand(0);
11297     SDValue RHS = Cond.getOperand(1);
11298     unsigned X86Opcode;
11299     unsigned X86Cond;
11300     SDVTList VTs;
11301     // Keep this in sync with LowerXALUO, otherwise we might create redundant
11302     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
11303     // X86ISD::INC).
11304     switch (CondOpcode) {
11305     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
11306     case ISD::SADDO:
11307       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11308         if (C->isOne()) {
11309           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
11310           break;
11311         }
11312       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
11313     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
11314     case ISD::SSUBO:
11315       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11316         if (C->isOne()) {
11317           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
11318           break;
11319         }
11320       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
11321     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
11322     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
11323     default: llvm_unreachable("unexpected overflowing operator");
11324     }
11325     if (Inverted)
11326       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
11327     if (CondOpcode == ISD::UMULO)
11328       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
11329                           MVT::i32);
11330     else
11331       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
11332
11333     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
11334
11335     if (CondOpcode == ISD::UMULO)
11336       Cond = X86Op.getValue(2);
11337     else
11338       Cond = X86Op.getValue(1);
11339
11340     CC = DAG.getConstant(X86Cond, MVT::i8);
11341     addTest = false;
11342   } else {
11343     unsigned CondOpc;
11344     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
11345       SDValue Cmp = Cond.getOperand(0).getOperand(1);
11346       if (CondOpc == ISD::OR) {
11347         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
11348         // two branches instead of an explicit OR instruction with a
11349         // separate test.
11350         if (Cmp == Cond.getOperand(1).getOperand(1) &&
11351             isX86LogicalCmp(Cmp)) {
11352           CC = Cond.getOperand(0).getOperand(0);
11353           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11354                               Chain, Dest, CC, Cmp);
11355           CC = Cond.getOperand(1).getOperand(0);
11356           Cond = Cmp;
11357           addTest = false;
11358         }
11359       } else { // ISD::AND
11360         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
11361         // two branches instead of an explicit AND instruction with a
11362         // separate test. However, we only do this if this block doesn't
11363         // have a fall-through edge, because this requires an explicit
11364         // jmp when the condition is false.
11365         if (Cmp == Cond.getOperand(1).getOperand(1) &&
11366             isX86LogicalCmp(Cmp) &&
11367             Op.getNode()->hasOneUse()) {
11368           X86::CondCode CCode =
11369             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
11370           CCode = X86::GetOppositeBranchCondition(CCode);
11371           CC = DAG.getConstant(CCode, MVT::i8);
11372           SDNode *User = *Op.getNode()->use_begin();
11373           // Look for an unconditional branch following this conditional branch.
11374           // We need this because we need to reverse the successors in order
11375           // to implement FCMP_OEQ.
11376           if (User->getOpcode() == ISD::BR) {
11377             SDValue FalseBB = User->getOperand(1);
11378             SDNode *NewBR =
11379               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
11380             assert(NewBR == User);
11381             (void)NewBR;
11382             Dest = FalseBB;
11383
11384             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11385                                 Chain, Dest, CC, Cmp);
11386             X86::CondCode CCode =
11387               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
11388             CCode = X86::GetOppositeBranchCondition(CCode);
11389             CC = DAG.getConstant(CCode, MVT::i8);
11390             Cond = Cmp;
11391             addTest = false;
11392           }
11393         }
11394       }
11395     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
11396       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
11397       // It should be transformed during dag combiner except when the condition
11398       // is set by a arithmetics with overflow node.
11399       X86::CondCode CCode =
11400         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
11401       CCode = X86::GetOppositeBranchCondition(CCode);
11402       CC = DAG.getConstant(CCode, MVT::i8);
11403       Cond = Cond.getOperand(0).getOperand(1);
11404       addTest = false;
11405     } else if (Cond.getOpcode() == ISD::SETCC &&
11406                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
11407       // For FCMP_OEQ, we can emit
11408       // two branches instead of an explicit AND instruction with a
11409       // separate test. However, we only do this if this block doesn't
11410       // have a fall-through edge, because this requires an explicit
11411       // jmp when the condition is false.
11412       if (Op.getNode()->hasOneUse()) {
11413         SDNode *User = *Op.getNode()->use_begin();
11414         // Look for an unconditional branch following this conditional branch.
11415         // We need this because we need to reverse the successors in order
11416         // to implement FCMP_OEQ.
11417         if (User->getOpcode() == ISD::BR) {
11418           SDValue FalseBB = User->getOperand(1);
11419           SDNode *NewBR =
11420             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
11421           assert(NewBR == User);
11422           (void)NewBR;
11423           Dest = FalseBB;
11424
11425           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
11426                                     Cond.getOperand(0), Cond.getOperand(1));
11427           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
11428           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11429           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11430                               Chain, Dest, CC, Cmp);
11431           CC = DAG.getConstant(X86::COND_P, MVT::i8);
11432           Cond = Cmp;
11433           addTest = false;
11434         }
11435       }
11436     } else if (Cond.getOpcode() == ISD::SETCC &&
11437                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
11438       // For FCMP_UNE, we can emit
11439       // two branches instead of an explicit AND instruction with a
11440       // separate test. However, we only do this if this block doesn't
11441       // have a fall-through edge, because this requires an explicit
11442       // jmp when the condition is false.
11443       if (Op.getNode()->hasOneUse()) {
11444         SDNode *User = *Op.getNode()->use_begin();
11445         // Look for an unconditional branch following this conditional branch.
11446         // We need this because we need to reverse the successors in order
11447         // to implement FCMP_UNE.
11448         if (User->getOpcode() == ISD::BR) {
11449           SDValue FalseBB = User->getOperand(1);
11450           SDNode *NewBR =
11451             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
11452           assert(NewBR == User);
11453           (void)NewBR;
11454
11455           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
11456                                     Cond.getOperand(0), Cond.getOperand(1));
11457           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
11458           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11459           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11460                               Chain, Dest, CC, Cmp);
11461           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
11462           Cond = Cmp;
11463           addTest = false;
11464           Dest = FalseBB;
11465         }
11466       }
11467     }
11468   }
11469
11470   if (addTest) {
11471     // Look pass the truncate if the high bits are known zero.
11472     if (isTruncWithZeroHighBitsInput(Cond, DAG))
11473         Cond = Cond.getOperand(0);
11474
11475     // We know the result of AND is compared against zero. Try to match
11476     // it to BT.
11477     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
11478       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
11479       if (NewSetCC.getNode()) {
11480         CC = NewSetCC.getOperand(0);
11481         Cond = NewSetCC.getOperand(1);
11482         addTest = false;
11483       }
11484     }
11485   }
11486
11487   if (addTest) {
11488     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
11489     Cond = EmitTest(Cond, X86::COND_NE, dl, DAG);
11490   }
11491   Cond = ConvertCmpIfNecessary(Cond, DAG);
11492   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
11493                      Chain, Dest, CC, Cond);
11494 }
11495
11496 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
11497 // Calls to _alloca is needed to probe the stack when allocating more than 4k
11498 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
11499 // that the guard pages used by the OS virtual memory manager are allocated in
11500 // correct sequence.
11501 SDValue
11502 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
11503                                            SelectionDAG &DAG) const {
11504   MachineFunction &MF = DAG.getMachineFunction();
11505   bool SplitStack = MF.shouldSplitStack();
11506   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMacho()) ||
11507                SplitStack;
11508   SDLoc dl(Op);
11509
11510   if (!Lower) {
11511     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11512     SDNode* Node = Op.getNode();
11513
11514     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
11515     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
11516         " not tell us which reg is the stack pointer!");
11517     EVT VT = Node->getValueType(0);
11518     SDValue Tmp1 = SDValue(Node, 0);
11519     SDValue Tmp2 = SDValue(Node, 1);
11520     SDValue Tmp3 = Node->getOperand(2);
11521     SDValue Chain = Tmp1.getOperand(0);
11522
11523     // Chain the dynamic stack allocation so that it doesn't modify the stack
11524     // pointer when other instructions are using the stack.
11525     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
11526         SDLoc(Node));
11527
11528     SDValue Size = Tmp2.getOperand(1);
11529     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
11530     Chain = SP.getValue(1);
11531     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
11532     const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
11533     unsigned StackAlign = TFI.getStackAlignment();
11534     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
11535     if (Align > StackAlign)
11536       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
11537           DAG.getConstant(-(uint64_t)Align, VT));
11538     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
11539
11540     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
11541         DAG.getIntPtrConstant(0, true), SDValue(),
11542         SDLoc(Node));
11543
11544     SDValue Ops[2] = { Tmp1, Tmp2 };
11545     return DAG.getMergeValues(Ops, dl);
11546   }
11547
11548   // Get the inputs.
11549   SDValue Chain = Op.getOperand(0);
11550   SDValue Size  = Op.getOperand(1);
11551   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
11552   EVT VT = Op.getNode()->getValueType(0);
11553
11554   bool Is64Bit = Subtarget->is64Bit();
11555   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
11556
11557   if (SplitStack) {
11558     MachineRegisterInfo &MRI = MF.getRegInfo();
11559
11560     if (Is64Bit) {
11561       // The 64 bit implementation of segmented stacks needs to clobber both r10
11562       // r11. This makes it impossible to use it along with nested parameters.
11563       const Function *F = MF.getFunction();
11564
11565       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
11566            I != E; ++I)
11567         if (I->hasNestAttr())
11568           report_fatal_error("Cannot use segmented stacks with functions that "
11569                              "have nested arguments.");
11570     }
11571
11572     const TargetRegisterClass *AddrRegClass =
11573       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
11574     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
11575     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
11576     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
11577                                 DAG.getRegister(Vreg, SPTy));
11578     SDValue Ops1[2] = { Value, Chain };
11579     return DAG.getMergeValues(Ops1, dl);
11580   } else {
11581     SDValue Flag;
11582     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
11583
11584     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
11585     Flag = Chain.getValue(1);
11586     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11587
11588     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
11589
11590     const X86RegisterInfo *RegInfo =
11591       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11592     unsigned SPReg = RegInfo->getStackRegister();
11593     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
11594     Chain = SP.getValue(1);
11595
11596     if (Align) {
11597       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
11598                        DAG.getConstant(-(uint64_t)Align, VT));
11599       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
11600     }
11601
11602     SDValue Ops1[2] = { SP, Chain };
11603     return DAG.getMergeValues(Ops1, dl);
11604   }
11605 }
11606
11607 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
11608   MachineFunction &MF = DAG.getMachineFunction();
11609   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
11610
11611   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11612   SDLoc DL(Op);
11613
11614   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
11615     // vastart just stores the address of the VarArgsFrameIndex slot into the
11616     // memory location argument.
11617     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11618                                    getPointerTy());
11619     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
11620                         MachinePointerInfo(SV), false, false, 0);
11621   }
11622
11623   // __va_list_tag:
11624   //   gp_offset         (0 - 6 * 8)
11625   //   fp_offset         (48 - 48 + 8 * 16)
11626   //   overflow_arg_area (point to parameters coming in memory).
11627   //   reg_save_area
11628   SmallVector<SDValue, 8> MemOps;
11629   SDValue FIN = Op.getOperand(1);
11630   // Store gp_offset
11631   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
11632                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
11633                                                MVT::i32),
11634                                FIN, MachinePointerInfo(SV), false, false, 0);
11635   MemOps.push_back(Store);
11636
11637   // Store fp_offset
11638   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11639                     FIN, DAG.getIntPtrConstant(4));
11640   Store = DAG.getStore(Op.getOperand(0), DL,
11641                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
11642                                        MVT::i32),
11643                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
11644   MemOps.push_back(Store);
11645
11646   // Store ptr to overflow_arg_area
11647   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11648                     FIN, DAG.getIntPtrConstant(4));
11649   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11650                                     getPointerTy());
11651   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
11652                        MachinePointerInfo(SV, 8),
11653                        false, false, 0);
11654   MemOps.push_back(Store);
11655
11656   // Store ptr to reg_save_area.
11657   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11658                     FIN, DAG.getIntPtrConstant(8));
11659   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11660                                     getPointerTy());
11661   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11662                        MachinePointerInfo(SV, 16), false, false, 0);
11663   MemOps.push_back(Store);
11664   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
11665 }
11666
11667 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11668   assert(Subtarget->is64Bit() &&
11669          "LowerVAARG only handles 64-bit va_arg!");
11670   assert((Subtarget->isTargetLinux() ||
11671           Subtarget->isTargetDarwin()) &&
11672           "Unhandled target in LowerVAARG");
11673   assert(Op.getNode()->getNumOperands() == 4);
11674   SDValue Chain = Op.getOperand(0);
11675   SDValue SrcPtr = Op.getOperand(1);
11676   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11677   unsigned Align = Op.getConstantOperandVal(3);
11678   SDLoc dl(Op);
11679
11680   EVT ArgVT = Op.getNode()->getValueType(0);
11681   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11682   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11683   uint8_t ArgMode;
11684
11685   // Decide which area this value should be read from.
11686   // TODO: Implement the AMD64 ABI in its entirety. This simple
11687   // selection mechanism works only for the basic types.
11688   if (ArgVT == MVT::f80) {
11689     llvm_unreachable("va_arg for f80 not yet implemented");
11690   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11691     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11692   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11693     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11694   } else {
11695     llvm_unreachable("Unhandled argument type in LowerVAARG");
11696   }
11697
11698   if (ArgMode == 2) {
11699     // Sanity Check: Make sure using fp_offset makes sense.
11700     assert(!getTargetMachine().Options.UseSoftFloat &&
11701            !(DAG.getMachineFunction()
11702                 .getFunction()->getAttributes()
11703                 .hasAttribute(AttributeSet::FunctionIndex,
11704                               Attribute::NoImplicitFloat)) &&
11705            Subtarget->hasSSE1());
11706   }
11707
11708   // Insert VAARG_64 node into the DAG
11709   // VAARG_64 returns two values: Variable Argument Address, Chain
11710   SmallVector<SDValue, 11> InstOps;
11711   InstOps.push_back(Chain);
11712   InstOps.push_back(SrcPtr);
11713   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11714   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11715   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11716   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11717   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11718                                           VTs, InstOps, MVT::i64,
11719                                           MachinePointerInfo(SV),
11720                                           /*Align=*/0,
11721                                           /*Volatile=*/false,
11722                                           /*ReadMem=*/true,
11723                                           /*WriteMem=*/true);
11724   Chain = VAARG.getValue(1);
11725
11726   // Load the next argument and return it
11727   return DAG.getLoad(ArgVT, dl,
11728                      Chain,
11729                      VAARG,
11730                      MachinePointerInfo(),
11731                      false, false, false, 0);
11732 }
11733
11734 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11735                            SelectionDAG &DAG) {
11736   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11737   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11738   SDValue Chain = Op.getOperand(0);
11739   SDValue DstPtr = Op.getOperand(1);
11740   SDValue SrcPtr = Op.getOperand(2);
11741   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11742   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11743   SDLoc DL(Op);
11744
11745   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11746                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11747                        false,
11748                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11749 }
11750
11751 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11752 // amount is a constant. Takes immediate version of shift as input.
11753 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11754                                           SDValue SrcOp, uint64_t ShiftAmt,
11755                                           SelectionDAG &DAG) {
11756   MVT ElementType = VT.getVectorElementType();
11757
11758   // Fold this packed shift into its first operand if ShiftAmt is 0.
11759   if (ShiftAmt == 0)
11760     return SrcOp;
11761
11762   // Check for ShiftAmt >= element width
11763   if (ShiftAmt >= ElementType.getSizeInBits()) {
11764     if (Opc == X86ISD::VSRAI)
11765       ShiftAmt = ElementType.getSizeInBits() - 1;
11766     else
11767       return DAG.getConstant(0, VT);
11768   }
11769
11770   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11771          && "Unknown target vector shift-by-constant node");
11772
11773   // Fold this packed vector shift into a build vector if SrcOp is a
11774   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
11775   if (VT == SrcOp.getSimpleValueType() &&
11776       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11777     SmallVector<SDValue, 8> Elts;
11778     unsigned NumElts = SrcOp->getNumOperands();
11779     ConstantSDNode *ND;
11780
11781     switch(Opc) {
11782     default: llvm_unreachable(nullptr);
11783     case X86ISD::VSHLI:
11784       for (unsigned i=0; i!=NumElts; ++i) {
11785         SDValue CurrentOp = SrcOp->getOperand(i);
11786         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11787           Elts.push_back(CurrentOp);
11788           continue;
11789         }
11790         ND = cast<ConstantSDNode>(CurrentOp);
11791         const APInt &C = ND->getAPIntValue();
11792         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11793       }
11794       break;
11795     case X86ISD::VSRLI:
11796       for (unsigned i=0; i!=NumElts; ++i) {
11797         SDValue CurrentOp = SrcOp->getOperand(i);
11798         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11799           Elts.push_back(CurrentOp);
11800           continue;
11801         }
11802         ND = cast<ConstantSDNode>(CurrentOp);
11803         const APInt &C = ND->getAPIntValue();
11804         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11805       }
11806       break;
11807     case X86ISD::VSRAI:
11808       for (unsigned i=0; i!=NumElts; ++i) {
11809         SDValue CurrentOp = SrcOp->getOperand(i);
11810         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11811           Elts.push_back(CurrentOp);
11812           continue;
11813         }
11814         ND = cast<ConstantSDNode>(CurrentOp);
11815         const APInt &C = ND->getAPIntValue();
11816         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11817       }
11818       break;
11819     }
11820
11821     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
11822   }
11823
11824   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11825 }
11826
11827 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11828 // may or may not be a constant. Takes immediate version of shift as input.
11829 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11830                                    SDValue SrcOp, SDValue ShAmt,
11831                                    SelectionDAG &DAG) {
11832   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11833
11834   // Catch shift-by-constant.
11835   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11836     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11837                                       CShAmt->getZExtValue(), DAG);
11838
11839   // Change opcode to non-immediate version
11840   switch (Opc) {
11841     default: llvm_unreachable("Unknown target vector shift node");
11842     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11843     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11844     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11845   }
11846
11847   // Need to build a vector containing shift amount
11848   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11849   SDValue ShOps[4];
11850   ShOps[0] = ShAmt;
11851   ShOps[1] = DAG.getConstant(0, MVT::i32);
11852   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11853   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, ShOps);
11854
11855   // The return type has to be a 128-bit type with the same element
11856   // type as the input type.
11857   MVT EltVT = VT.getVectorElementType();
11858   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11859
11860   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11861   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11862 }
11863
11864 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11865   SDLoc dl(Op);
11866   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11867   switch (IntNo) {
11868   default: return SDValue();    // Don't custom lower most intrinsics.
11869   // Comparison intrinsics.
11870   case Intrinsic::x86_sse_comieq_ss:
11871   case Intrinsic::x86_sse_comilt_ss:
11872   case Intrinsic::x86_sse_comile_ss:
11873   case Intrinsic::x86_sse_comigt_ss:
11874   case Intrinsic::x86_sse_comige_ss:
11875   case Intrinsic::x86_sse_comineq_ss:
11876   case Intrinsic::x86_sse_ucomieq_ss:
11877   case Intrinsic::x86_sse_ucomilt_ss:
11878   case Intrinsic::x86_sse_ucomile_ss:
11879   case Intrinsic::x86_sse_ucomigt_ss:
11880   case Intrinsic::x86_sse_ucomige_ss:
11881   case Intrinsic::x86_sse_ucomineq_ss:
11882   case Intrinsic::x86_sse2_comieq_sd:
11883   case Intrinsic::x86_sse2_comilt_sd:
11884   case Intrinsic::x86_sse2_comile_sd:
11885   case Intrinsic::x86_sse2_comigt_sd:
11886   case Intrinsic::x86_sse2_comige_sd:
11887   case Intrinsic::x86_sse2_comineq_sd:
11888   case Intrinsic::x86_sse2_ucomieq_sd:
11889   case Intrinsic::x86_sse2_ucomilt_sd:
11890   case Intrinsic::x86_sse2_ucomile_sd:
11891   case Intrinsic::x86_sse2_ucomigt_sd:
11892   case Intrinsic::x86_sse2_ucomige_sd:
11893   case Intrinsic::x86_sse2_ucomineq_sd: {
11894     unsigned Opc;
11895     ISD::CondCode CC;
11896     switch (IntNo) {
11897     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11898     case Intrinsic::x86_sse_comieq_ss:
11899     case Intrinsic::x86_sse2_comieq_sd:
11900       Opc = X86ISD::COMI;
11901       CC = ISD::SETEQ;
11902       break;
11903     case Intrinsic::x86_sse_comilt_ss:
11904     case Intrinsic::x86_sse2_comilt_sd:
11905       Opc = X86ISD::COMI;
11906       CC = ISD::SETLT;
11907       break;
11908     case Intrinsic::x86_sse_comile_ss:
11909     case Intrinsic::x86_sse2_comile_sd:
11910       Opc = X86ISD::COMI;
11911       CC = ISD::SETLE;
11912       break;
11913     case Intrinsic::x86_sse_comigt_ss:
11914     case Intrinsic::x86_sse2_comigt_sd:
11915       Opc = X86ISD::COMI;
11916       CC = ISD::SETGT;
11917       break;
11918     case Intrinsic::x86_sse_comige_ss:
11919     case Intrinsic::x86_sse2_comige_sd:
11920       Opc = X86ISD::COMI;
11921       CC = ISD::SETGE;
11922       break;
11923     case Intrinsic::x86_sse_comineq_ss:
11924     case Intrinsic::x86_sse2_comineq_sd:
11925       Opc = X86ISD::COMI;
11926       CC = ISD::SETNE;
11927       break;
11928     case Intrinsic::x86_sse_ucomieq_ss:
11929     case Intrinsic::x86_sse2_ucomieq_sd:
11930       Opc = X86ISD::UCOMI;
11931       CC = ISD::SETEQ;
11932       break;
11933     case Intrinsic::x86_sse_ucomilt_ss:
11934     case Intrinsic::x86_sse2_ucomilt_sd:
11935       Opc = X86ISD::UCOMI;
11936       CC = ISD::SETLT;
11937       break;
11938     case Intrinsic::x86_sse_ucomile_ss:
11939     case Intrinsic::x86_sse2_ucomile_sd:
11940       Opc = X86ISD::UCOMI;
11941       CC = ISD::SETLE;
11942       break;
11943     case Intrinsic::x86_sse_ucomigt_ss:
11944     case Intrinsic::x86_sse2_ucomigt_sd:
11945       Opc = X86ISD::UCOMI;
11946       CC = ISD::SETGT;
11947       break;
11948     case Intrinsic::x86_sse_ucomige_ss:
11949     case Intrinsic::x86_sse2_ucomige_sd:
11950       Opc = X86ISD::UCOMI;
11951       CC = ISD::SETGE;
11952       break;
11953     case Intrinsic::x86_sse_ucomineq_ss:
11954     case Intrinsic::x86_sse2_ucomineq_sd:
11955       Opc = X86ISD::UCOMI;
11956       CC = ISD::SETNE;
11957       break;
11958     }
11959
11960     SDValue LHS = Op.getOperand(1);
11961     SDValue RHS = Op.getOperand(2);
11962     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11963     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11964     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11965     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11966                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11967     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11968   }
11969
11970   // Arithmetic intrinsics.
11971   case Intrinsic::x86_sse2_pmulu_dq:
11972   case Intrinsic::x86_avx2_pmulu_dq:
11973     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11974                        Op.getOperand(1), Op.getOperand(2));
11975
11976   case Intrinsic::x86_sse41_pmuldq:
11977   case Intrinsic::x86_avx2_pmul_dq:
11978     return DAG.getNode(X86ISD::PMULDQ, dl, Op.getValueType(),
11979                        Op.getOperand(1), Op.getOperand(2));
11980
11981   case Intrinsic::x86_sse2_pmulhu_w:
11982   case Intrinsic::x86_avx2_pmulhu_w:
11983     return DAG.getNode(ISD::MULHU, dl, Op.getValueType(),
11984                        Op.getOperand(1), Op.getOperand(2));
11985
11986   case Intrinsic::x86_sse2_pmulh_w:
11987   case Intrinsic::x86_avx2_pmulh_w:
11988     return DAG.getNode(ISD::MULHS, dl, Op.getValueType(),
11989                        Op.getOperand(1), Op.getOperand(2));
11990
11991   // SSE2/AVX2 sub with unsigned saturation intrinsics
11992   case Intrinsic::x86_sse2_psubus_b:
11993   case Intrinsic::x86_sse2_psubus_w:
11994   case Intrinsic::x86_avx2_psubus_b:
11995   case Intrinsic::x86_avx2_psubus_w:
11996     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11997                        Op.getOperand(1), Op.getOperand(2));
11998
11999   // SSE3/AVX horizontal add/sub intrinsics
12000   case Intrinsic::x86_sse3_hadd_ps:
12001   case Intrinsic::x86_sse3_hadd_pd:
12002   case Intrinsic::x86_avx_hadd_ps_256:
12003   case Intrinsic::x86_avx_hadd_pd_256:
12004   case Intrinsic::x86_sse3_hsub_ps:
12005   case Intrinsic::x86_sse3_hsub_pd:
12006   case Intrinsic::x86_avx_hsub_ps_256:
12007   case Intrinsic::x86_avx_hsub_pd_256:
12008   case Intrinsic::x86_ssse3_phadd_w_128:
12009   case Intrinsic::x86_ssse3_phadd_d_128:
12010   case Intrinsic::x86_avx2_phadd_w:
12011   case Intrinsic::x86_avx2_phadd_d:
12012   case Intrinsic::x86_ssse3_phsub_w_128:
12013   case Intrinsic::x86_ssse3_phsub_d_128:
12014   case Intrinsic::x86_avx2_phsub_w:
12015   case Intrinsic::x86_avx2_phsub_d: {
12016     unsigned Opcode;
12017     switch (IntNo) {
12018     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12019     case Intrinsic::x86_sse3_hadd_ps:
12020     case Intrinsic::x86_sse3_hadd_pd:
12021     case Intrinsic::x86_avx_hadd_ps_256:
12022     case Intrinsic::x86_avx_hadd_pd_256:
12023       Opcode = X86ISD::FHADD;
12024       break;
12025     case Intrinsic::x86_sse3_hsub_ps:
12026     case Intrinsic::x86_sse3_hsub_pd:
12027     case Intrinsic::x86_avx_hsub_ps_256:
12028     case Intrinsic::x86_avx_hsub_pd_256:
12029       Opcode = X86ISD::FHSUB;
12030       break;
12031     case Intrinsic::x86_ssse3_phadd_w_128:
12032     case Intrinsic::x86_ssse3_phadd_d_128:
12033     case Intrinsic::x86_avx2_phadd_w:
12034     case Intrinsic::x86_avx2_phadd_d:
12035       Opcode = X86ISD::HADD;
12036       break;
12037     case Intrinsic::x86_ssse3_phsub_w_128:
12038     case Intrinsic::x86_ssse3_phsub_d_128:
12039     case Intrinsic::x86_avx2_phsub_w:
12040     case Intrinsic::x86_avx2_phsub_d:
12041       Opcode = X86ISD::HSUB;
12042       break;
12043     }
12044     return DAG.getNode(Opcode, dl, Op.getValueType(),
12045                        Op.getOperand(1), Op.getOperand(2));
12046   }
12047
12048   // SSE2/SSE41/AVX2 integer max/min intrinsics.
12049   case Intrinsic::x86_sse2_pmaxu_b:
12050   case Intrinsic::x86_sse41_pmaxuw:
12051   case Intrinsic::x86_sse41_pmaxud:
12052   case Intrinsic::x86_avx2_pmaxu_b:
12053   case Intrinsic::x86_avx2_pmaxu_w:
12054   case Intrinsic::x86_avx2_pmaxu_d:
12055   case Intrinsic::x86_sse2_pminu_b:
12056   case Intrinsic::x86_sse41_pminuw:
12057   case Intrinsic::x86_sse41_pminud:
12058   case Intrinsic::x86_avx2_pminu_b:
12059   case Intrinsic::x86_avx2_pminu_w:
12060   case Intrinsic::x86_avx2_pminu_d:
12061   case Intrinsic::x86_sse41_pmaxsb:
12062   case Intrinsic::x86_sse2_pmaxs_w:
12063   case Intrinsic::x86_sse41_pmaxsd:
12064   case Intrinsic::x86_avx2_pmaxs_b:
12065   case Intrinsic::x86_avx2_pmaxs_w:
12066   case Intrinsic::x86_avx2_pmaxs_d:
12067   case Intrinsic::x86_sse41_pminsb:
12068   case Intrinsic::x86_sse2_pmins_w:
12069   case Intrinsic::x86_sse41_pminsd:
12070   case Intrinsic::x86_avx2_pmins_b:
12071   case Intrinsic::x86_avx2_pmins_w:
12072   case Intrinsic::x86_avx2_pmins_d: {
12073     unsigned Opcode;
12074     switch (IntNo) {
12075     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12076     case Intrinsic::x86_sse2_pmaxu_b:
12077     case Intrinsic::x86_sse41_pmaxuw:
12078     case Intrinsic::x86_sse41_pmaxud:
12079     case Intrinsic::x86_avx2_pmaxu_b:
12080     case Intrinsic::x86_avx2_pmaxu_w:
12081     case Intrinsic::x86_avx2_pmaxu_d:
12082       Opcode = X86ISD::UMAX;
12083       break;
12084     case Intrinsic::x86_sse2_pminu_b:
12085     case Intrinsic::x86_sse41_pminuw:
12086     case Intrinsic::x86_sse41_pminud:
12087     case Intrinsic::x86_avx2_pminu_b:
12088     case Intrinsic::x86_avx2_pminu_w:
12089     case Intrinsic::x86_avx2_pminu_d:
12090       Opcode = X86ISD::UMIN;
12091       break;
12092     case Intrinsic::x86_sse41_pmaxsb:
12093     case Intrinsic::x86_sse2_pmaxs_w:
12094     case Intrinsic::x86_sse41_pmaxsd:
12095     case Intrinsic::x86_avx2_pmaxs_b:
12096     case Intrinsic::x86_avx2_pmaxs_w:
12097     case Intrinsic::x86_avx2_pmaxs_d:
12098       Opcode = X86ISD::SMAX;
12099       break;
12100     case Intrinsic::x86_sse41_pminsb:
12101     case Intrinsic::x86_sse2_pmins_w:
12102     case Intrinsic::x86_sse41_pminsd:
12103     case Intrinsic::x86_avx2_pmins_b:
12104     case Intrinsic::x86_avx2_pmins_w:
12105     case Intrinsic::x86_avx2_pmins_d:
12106       Opcode = X86ISD::SMIN;
12107       break;
12108     }
12109     return DAG.getNode(Opcode, dl, Op.getValueType(),
12110                        Op.getOperand(1), Op.getOperand(2));
12111   }
12112
12113   // SSE/SSE2/AVX floating point max/min intrinsics.
12114   case Intrinsic::x86_sse_max_ps:
12115   case Intrinsic::x86_sse2_max_pd:
12116   case Intrinsic::x86_avx_max_ps_256:
12117   case Intrinsic::x86_avx_max_pd_256:
12118   case Intrinsic::x86_sse_min_ps:
12119   case Intrinsic::x86_sse2_min_pd:
12120   case Intrinsic::x86_avx_min_ps_256:
12121   case Intrinsic::x86_avx_min_pd_256: {
12122     unsigned Opcode;
12123     switch (IntNo) {
12124     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12125     case Intrinsic::x86_sse_max_ps:
12126     case Intrinsic::x86_sse2_max_pd:
12127     case Intrinsic::x86_avx_max_ps_256:
12128     case Intrinsic::x86_avx_max_pd_256:
12129       Opcode = X86ISD::FMAX;
12130       break;
12131     case Intrinsic::x86_sse_min_ps:
12132     case Intrinsic::x86_sse2_min_pd:
12133     case Intrinsic::x86_avx_min_ps_256:
12134     case Intrinsic::x86_avx_min_pd_256:
12135       Opcode = X86ISD::FMIN;
12136       break;
12137     }
12138     return DAG.getNode(Opcode, dl, Op.getValueType(),
12139                        Op.getOperand(1), Op.getOperand(2));
12140   }
12141
12142   // AVX2 variable shift intrinsics
12143   case Intrinsic::x86_avx2_psllv_d:
12144   case Intrinsic::x86_avx2_psllv_q:
12145   case Intrinsic::x86_avx2_psllv_d_256:
12146   case Intrinsic::x86_avx2_psllv_q_256:
12147   case Intrinsic::x86_avx2_psrlv_d:
12148   case Intrinsic::x86_avx2_psrlv_q:
12149   case Intrinsic::x86_avx2_psrlv_d_256:
12150   case Intrinsic::x86_avx2_psrlv_q_256:
12151   case Intrinsic::x86_avx2_psrav_d:
12152   case Intrinsic::x86_avx2_psrav_d_256: {
12153     unsigned Opcode;
12154     switch (IntNo) {
12155     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12156     case Intrinsic::x86_avx2_psllv_d:
12157     case Intrinsic::x86_avx2_psllv_q:
12158     case Intrinsic::x86_avx2_psllv_d_256:
12159     case Intrinsic::x86_avx2_psllv_q_256:
12160       Opcode = ISD::SHL;
12161       break;
12162     case Intrinsic::x86_avx2_psrlv_d:
12163     case Intrinsic::x86_avx2_psrlv_q:
12164     case Intrinsic::x86_avx2_psrlv_d_256:
12165     case Intrinsic::x86_avx2_psrlv_q_256:
12166       Opcode = ISD::SRL;
12167       break;
12168     case Intrinsic::x86_avx2_psrav_d:
12169     case Intrinsic::x86_avx2_psrav_d_256:
12170       Opcode = ISD::SRA;
12171       break;
12172     }
12173     return DAG.getNode(Opcode, dl, Op.getValueType(),
12174                        Op.getOperand(1), Op.getOperand(2));
12175   }
12176
12177   case Intrinsic::x86_ssse3_pshuf_b_128:
12178   case Intrinsic::x86_avx2_pshuf_b:
12179     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
12180                        Op.getOperand(1), Op.getOperand(2));
12181
12182   case Intrinsic::x86_ssse3_psign_b_128:
12183   case Intrinsic::x86_ssse3_psign_w_128:
12184   case Intrinsic::x86_ssse3_psign_d_128:
12185   case Intrinsic::x86_avx2_psign_b:
12186   case Intrinsic::x86_avx2_psign_w:
12187   case Intrinsic::x86_avx2_psign_d:
12188     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
12189                        Op.getOperand(1), Op.getOperand(2));
12190
12191   case Intrinsic::x86_sse41_insertps:
12192     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
12193                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
12194
12195   case Intrinsic::x86_avx_vperm2f128_ps_256:
12196   case Intrinsic::x86_avx_vperm2f128_pd_256:
12197   case Intrinsic::x86_avx_vperm2f128_si_256:
12198   case Intrinsic::x86_avx2_vperm2i128:
12199     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
12200                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
12201
12202   case Intrinsic::x86_avx2_permd:
12203   case Intrinsic::x86_avx2_permps:
12204     // Operands intentionally swapped. Mask is last operand to intrinsic,
12205     // but second operand for node/instruction.
12206     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
12207                        Op.getOperand(2), Op.getOperand(1));
12208
12209   case Intrinsic::x86_sse_sqrt_ps:
12210   case Intrinsic::x86_sse2_sqrt_pd:
12211   case Intrinsic::x86_avx_sqrt_ps_256:
12212   case Intrinsic::x86_avx_sqrt_pd_256:
12213     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
12214
12215   // ptest and testp intrinsics. The intrinsic these come from are designed to
12216   // return an integer value, not just an instruction so lower it to the ptest
12217   // or testp pattern and a setcc for the result.
12218   case Intrinsic::x86_sse41_ptestz:
12219   case Intrinsic::x86_sse41_ptestc:
12220   case Intrinsic::x86_sse41_ptestnzc:
12221   case Intrinsic::x86_avx_ptestz_256:
12222   case Intrinsic::x86_avx_ptestc_256:
12223   case Intrinsic::x86_avx_ptestnzc_256:
12224   case Intrinsic::x86_avx_vtestz_ps:
12225   case Intrinsic::x86_avx_vtestc_ps:
12226   case Intrinsic::x86_avx_vtestnzc_ps:
12227   case Intrinsic::x86_avx_vtestz_pd:
12228   case Intrinsic::x86_avx_vtestc_pd:
12229   case Intrinsic::x86_avx_vtestnzc_pd:
12230   case Intrinsic::x86_avx_vtestz_ps_256:
12231   case Intrinsic::x86_avx_vtestc_ps_256:
12232   case Intrinsic::x86_avx_vtestnzc_ps_256:
12233   case Intrinsic::x86_avx_vtestz_pd_256:
12234   case Intrinsic::x86_avx_vtestc_pd_256:
12235   case Intrinsic::x86_avx_vtestnzc_pd_256: {
12236     bool IsTestPacked = false;
12237     unsigned X86CC;
12238     switch (IntNo) {
12239     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
12240     case Intrinsic::x86_avx_vtestz_ps:
12241     case Intrinsic::x86_avx_vtestz_pd:
12242     case Intrinsic::x86_avx_vtestz_ps_256:
12243     case Intrinsic::x86_avx_vtestz_pd_256:
12244       IsTestPacked = true; // Fallthrough
12245     case Intrinsic::x86_sse41_ptestz:
12246     case Intrinsic::x86_avx_ptestz_256:
12247       // ZF = 1
12248       X86CC = X86::COND_E;
12249       break;
12250     case Intrinsic::x86_avx_vtestc_ps:
12251     case Intrinsic::x86_avx_vtestc_pd:
12252     case Intrinsic::x86_avx_vtestc_ps_256:
12253     case Intrinsic::x86_avx_vtestc_pd_256:
12254       IsTestPacked = true; // Fallthrough
12255     case Intrinsic::x86_sse41_ptestc:
12256     case Intrinsic::x86_avx_ptestc_256:
12257       // CF = 1
12258       X86CC = X86::COND_B;
12259       break;
12260     case Intrinsic::x86_avx_vtestnzc_ps:
12261     case Intrinsic::x86_avx_vtestnzc_pd:
12262     case Intrinsic::x86_avx_vtestnzc_ps_256:
12263     case Intrinsic::x86_avx_vtestnzc_pd_256:
12264       IsTestPacked = true; // Fallthrough
12265     case Intrinsic::x86_sse41_ptestnzc:
12266     case Intrinsic::x86_avx_ptestnzc_256:
12267       // ZF and CF = 0
12268       X86CC = X86::COND_A;
12269       break;
12270     }
12271
12272     SDValue LHS = Op.getOperand(1);
12273     SDValue RHS = Op.getOperand(2);
12274     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
12275     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
12276     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
12277     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
12278     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
12279   }
12280   case Intrinsic::x86_avx512_kortestz_w:
12281   case Intrinsic::x86_avx512_kortestc_w: {
12282     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
12283     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
12284     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
12285     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
12286     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
12287     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
12288     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
12289   }
12290
12291   // SSE/AVX shift intrinsics
12292   case Intrinsic::x86_sse2_psll_w:
12293   case Intrinsic::x86_sse2_psll_d:
12294   case Intrinsic::x86_sse2_psll_q:
12295   case Intrinsic::x86_avx2_psll_w:
12296   case Intrinsic::x86_avx2_psll_d:
12297   case Intrinsic::x86_avx2_psll_q:
12298   case Intrinsic::x86_sse2_psrl_w:
12299   case Intrinsic::x86_sse2_psrl_d:
12300   case Intrinsic::x86_sse2_psrl_q:
12301   case Intrinsic::x86_avx2_psrl_w:
12302   case Intrinsic::x86_avx2_psrl_d:
12303   case Intrinsic::x86_avx2_psrl_q:
12304   case Intrinsic::x86_sse2_psra_w:
12305   case Intrinsic::x86_sse2_psra_d:
12306   case Intrinsic::x86_avx2_psra_w:
12307   case Intrinsic::x86_avx2_psra_d: {
12308     unsigned Opcode;
12309     switch (IntNo) {
12310     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12311     case Intrinsic::x86_sse2_psll_w:
12312     case Intrinsic::x86_sse2_psll_d:
12313     case Intrinsic::x86_sse2_psll_q:
12314     case Intrinsic::x86_avx2_psll_w:
12315     case Intrinsic::x86_avx2_psll_d:
12316     case Intrinsic::x86_avx2_psll_q:
12317       Opcode = X86ISD::VSHL;
12318       break;
12319     case Intrinsic::x86_sse2_psrl_w:
12320     case Intrinsic::x86_sse2_psrl_d:
12321     case Intrinsic::x86_sse2_psrl_q:
12322     case Intrinsic::x86_avx2_psrl_w:
12323     case Intrinsic::x86_avx2_psrl_d:
12324     case Intrinsic::x86_avx2_psrl_q:
12325       Opcode = X86ISD::VSRL;
12326       break;
12327     case Intrinsic::x86_sse2_psra_w:
12328     case Intrinsic::x86_sse2_psra_d:
12329     case Intrinsic::x86_avx2_psra_w:
12330     case Intrinsic::x86_avx2_psra_d:
12331       Opcode = X86ISD::VSRA;
12332       break;
12333     }
12334     return DAG.getNode(Opcode, dl, Op.getValueType(),
12335                        Op.getOperand(1), Op.getOperand(2));
12336   }
12337
12338   // SSE/AVX immediate shift intrinsics
12339   case Intrinsic::x86_sse2_pslli_w:
12340   case Intrinsic::x86_sse2_pslli_d:
12341   case Intrinsic::x86_sse2_pslli_q:
12342   case Intrinsic::x86_avx2_pslli_w:
12343   case Intrinsic::x86_avx2_pslli_d:
12344   case Intrinsic::x86_avx2_pslli_q:
12345   case Intrinsic::x86_sse2_psrli_w:
12346   case Intrinsic::x86_sse2_psrli_d:
12347   case Intrinsic::x86_sse2_psrli_q:
12348   case Intrinsic::x86_avx2_psrli_w:
12349   case Intrinsic::x86_avx2_psrli_d:
12350   case Intrinsic::x86_avx2_psrli_q:
12351   case Intrinsic::x86_sse2_psrai_w:
12352   case Intrinsic::x86_sse2_psrai_d:
12353   case Intrinsic::x86_avx2_psrai_w:
12354   case Intrinsic::x86_avx2_psrai_d: {
12355     unsigned Opcode;
12356     switch (IntNo) {
12357     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12358     case Intrinsic::x86_sse2_pslli_w:
12359     case Intrinsic::x86_sse2_pslli_d:
12360     case Intrinsic::x86_sse2_pslli_q:
12361     case Intrinsic::x86_avx2_pslli_w:
12362     case Intrinsic::x86_avx2_pslli_d:
12363     case Intrinsic::x86_avx2_pslli_q:
12364       Opcode = X86ISD::VSHLI;
12365       break;
12366     case Intrinsic::x86_sse2_psrli_w:
12367     case Intrinsic::x86_sse2_psrli_d:
12368     case Intrinsic::x86_sse2_psrli_q:
12369     case Intrinsic::x86_avx2_psrli_w:
12370     case Intrinsic::x86_avx2_psrli_d:
12371     case Intrinsic::x86_avx2_psrli_q:
12372       Opcode = X86ISD::VSRLI;
12373       break;
12374     case Intrinsic::x86_sse2_psrai_w:
12375     case Intrinsic::x86_sse2_psrai_d:
12376     case Intrinsic::x86_avx2_psrai_w:
12377     case Intrinsic::x86_avx2_psrai_d:
12378       Opcode = X86ISD::VSRAI;
12379       break;
12380     }
12381     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
12382                                Op.getOperand(1), Op.getOperand(2), DAG);
12383   }
12384
12385   case Intrinsic::x86_sse42_pcmpistria128:
12386   case Intrinsic::x86_sse42_pcmpestria128:
12387   case Intrinsic::x86_sse42_pcmpistric128:
12388   case Intrinsic::x86_sse42_pcmpestric128:
12389   case Intrinsic::x86_sse42_pcmpistrio128:
12390   case Intrinsic::x86_sse42_pcmpestrio128:
12391   case Intrinsic::x86_sse42_pcmpistris128:
12392   case Intrinsic::x86_sse42_pcmpestris128:
12393   case Intrinsic::x86_sse42_pcmpistriz128:
12394   case Intrinsic::x86_sse42_pcmpestriz128: {
12395     unsigned Opcode;
12396     unsigned X86CC;
12397     switch (IntNo) {
12398     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12399     case Intrinsic::x86_sse42_pcmpistria128:
12400       Opcode = X86ISD::PCMPISTRI;
12401       X86CC = X86::COND_A;
12402       break;
12403     case Intrinsic::x86_sse42_pcmpestria128:
12404       Opcode = X86ISD::PCMPESTRI;
12405       X86CC = X86::COND_A;
12406       break;
12407     case Intrinsic::x86_sse42_pcmpistric128:
12408       Opcode = X86ISD::PCMPISTRI;
12409       X86CC = X86::COND_B;
12410       break;
12411     case Intrinsic::x86_sse42_pcmpestric128:
12412       Opcode = X86ISD::PCMPESTRI;
12413       X86CC = X86::COND_B;
12414       break;
12415     case Intrinsic::x86_sse42_pcmpistrio128:
12416       Opcode = X86ISD::PCMPISTRI;
12417       X86CC = X86::COND_O;
12418       break;
12419     case Intrinsic::x86_sse42_pcmpestrio128:
12420       Opcode = X86ISD::PCMPESTRI;
12421       X86CC = X86::COND_O;
12422       break;
12423     case Intrinsic::x86_sse42_pcmpistris128:
12424       Opcode = X86ISD::PCMPISTRI;
12425       X86CC = X86::COND_S;
12426       break;
12427     case Intrinsic::x86_sse42_pcmpestris128:
12428       Opcode = X86ISD::PCMPESTRI;
12429       X86CC = X86::COND_S;
12430       break;
12431     case Intrinsic::x86_sse42_pcmpistriz128:
12432       Opcode = X86ISD::PCMPISTRI;
12433       X86CC = X86::COND_E;
12434       break;
12435     case Intrinsic::x86_sse42_pcmpestriz128:
12436       Opcode = X86ISD::PCMPESTRI;
12437       X86CC = X86::COND_E;
12438       break;
12439     }
12440     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
12441     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
12442     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
12443     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12444                                 DAG.getConstant(X86CC, MVT::i8),
12445                                 SDValue(PCMP.getNode(), 1));
12446     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
12447   }
12448
12449   case Intrinsic::x86_sse42_pcmpistri128:
12450   case Intrinsic::x86_sse42_pcmpestri128: {
12451     unsigned Opcode;
12452     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
12453       Opcode = X86ISD::PCMPISTRI;
12454     else
12455       Opcode = X86ISD::PCMPESTRI;
12456
12457     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
12458     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
12459     return DAG.getNode(Opcode, dl, VTs, NewOps);
12460   }
12461   case Intrinsic::x86_fma_vfmadd_ps:
12462   case Intrinsic::x86_fma_vfmadd_pd:
12463   case Intrinsic::x86_fma_vfmsub_ps:
12464   case Intrinsic::x86_fma_vfmsub_pd:
12465   case Intrinsic::x86_fma_vfnmadd_ps:
12466   case Intrinsic::x86_fma_vfnmadd_pd:
12467   case Intrinsic::x86_fma_vfnmsub_ps:
12468   case Intrinsic::x86_fma_vfnmsub_pd:
12469   case Intrinsic::x86_fma_vfmaddsub_ps:
12470   case Intrinsic::x86_fma_vfmaddsub_pd:
12471   case Intrinsic::x86_fma_vfmsubadd_ps:
12472   case Intrinsic::x86_fma_vfmsubadd_pd:
12473   case Intrinsic::x86_fma_vfmadd_ps_256:
12474   case Intrinsic::x86_fma_vfmadd_pd_256:
12475   case Intrinsic::x86_fma_vfmsub_ps_256:
12476   case Intrinsic::x86_fma_vfmsub_pd_256:
12477   case Intrinsic::x86_fma_vfnmadd_ps_256:
12478   case Intrinsic::x86_fma_vfnmadd_pd_256:
12479   case Intrinsic::x86_fma_vfnmsub_ps_256:
12480   case Intrinsic::x86_fma_vfnmsub_pd_256:
12481   case Intrinsic::x86_fma_vfmaddsub_ps_256:
12482   case Intrinsic::x86_fma_vfmaddsub_pd_256:
12483   case Intrinsic::x86_fma_vfmsubadd_ps_256:
12484   case Intrinsic::x86_fma_vfmsubadd_pd_256:
12485   case Intrinsic::x86_fma_vfmadd_ps_512:
12486   case Intrinsic::x86_fma_vfmadd_pd_512:
12487   case Intrinsic::x86_fma_vfmsub_ps_512:
12488   case Intrinsic::x86_fma_vfmsub_pd_512:
12489   case Intrinsic::x86_fma_vfnmadd_ps_512:
12490   case Intrinsic::x86_fma_vfnmadd_pd_512:
12491   case Intrinsic::x86_fma_vfnmsub_ps_512:
12492   case Intrinsic::x86_fma_vfnmsub_pd_512:
12493   case Intrinsic::x86_fma_vfmaddsub_ps_512:
12494   case Intrinsic::x86_fma_vfmaddsub_pd_512:
12495   case Intrinsic::x86_fma_vfmsubadd_ps_512:
12496   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
12497     unsigned Opc;
12498     switch (IntNo) {
12499     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12500     case Intrinsic::x86_fma_vfmadd_ps:
12501     case Intrinsic::x86_fma_vfmadd_pd:
12502     case Intrinsic::x86_fma_vfmadd_ps_256:
12503     case Intrinsic::x86_fma_vfmadd_pd_256:
12504     case Intrinsic::x86_fma_vfmadd_ps_512:
12505     case Intrinsic::x86_fma_vfmadd_pd_512:
12506       Opc = X86ISD::FMADD;
12507       break;
12508     case Intrinsic::x86_fma_vfmsub_ps:
12509     case Intrinsic::x86_fma_vfmsub_pd:
12510     case Intrinsic::x86_fma_vfmsub_ps_256:
12511     case Intrinsic::x86_fma_vfmsub_pd_256:
12512     case Intrinsic::x86_fma_vfmsub_ps_512:
12513     case Intrinsic::x86_fma_vfmsub_pd_512:
12514       Opc = X86ISD::FMSUB;
12515       break;
12516     case Intrinsic::x86_fma_vfnmadd_ps:
12517     case Intrinsic::x86_fma_vfnmadd_pd:
12518     case Intrinsic::x86_fma_vfnmadd_ps_256:
12519     case Intrinsic::x86_fma_vfnmadd_pd_256:
12520     case Intrinsic::x86_fma_vfnmadd_ps_512:
12521     case Intrinsic::x86_fma_vfnmadd_pd_512:
12522       Opc = X86ISD::FNMADD;
12523       break;
12524     case Intrinsic::x86_fma_vfnmsub_ps:
12525     case Intrinsic::x86_fma_vfnmsub_pd:
12526     case Intrinsic::x86_fma_vfnmsub_ps_256:
12527     case Intrinsic::x86_fma_vfnmsub_pd_256:
12528     case Intrinsic::x86_fma_vfnmsub_ps_512:
12529     case Intrinsic::x86_fma_vfnmsub_pd_512:
12530       Opc = X86ISD::FNMSUB;
12531       break;
12532     case Intrinsic::x86_fma_vfmaddsub_ps:
12533     case Intrinsic::x86_fma_vfmaddsub_pd:
12534     case Intrinsic::x86_fma_vfmaddsub_ps_256:
12535     case Intrinsic::x86_fma_vfmaddsub_pd_256:
12536     case Intrinsic::x86_fma_vfmaddsub_ps_512:
12537     case Intrinsic::x86_fma_vfmaddsub_pd_512:
12538       Opc = X86ISD::FMADDSUB;
12539       break;
12540     case Intrinsic::x86_fma_vfmsubadd_ps:
12541     case Intrinsic::x86_fma_vfmsubadd_pd:
12542     case Intrinsic::x86_fma_vfmsubadd_ps_256:
12543     case Intrinsic::x86_fma_vfmsubadd_pd_256:
12544     case Intrinsic::x86_fma_vfmsubadd_ps_512:
12545     case Intrinsic::x86_fma_vfmsubadd_pd_512:
12546       Opc = X86ISD::FMSUBADD;
12547       break;
12548     }
12549
12550     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
12551                        Op.getOperand(2), Op.getOperand(3));
12552   }
12553   }
12554 }
12555
12556 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12557                               SDValue Src, SDValue Mask, SDValue Base,
12558                               SDValue Index, SDValue ScaleOp, SDValue Chain,
12559                               const X86Subtarget * Subtarget) {
12560   SDLoc dl(Op);
12561   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12562   assert(C && "Invalid scale type");
12563   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12564   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12565                              Index.getSimpleValueType().getVectorNumElements());
12566   SDValue MaskInReg;
12567   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
12568   if (MaskC)
12569     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
12570   else
12571     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12572   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
12573   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12574   SDValue Segment = DAG.getRegister(0, MVT::i32);
12575   if (Src.getOpcode() == ISD::UNDEF)
12576     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
12577   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12578   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12579   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
12580   return DAG.getMergeValues(RetOps, dl);
12581 }
12582
12583 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12584                                SDValue Src, SDValue Mask, SDValue Base,
12585                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
12586   SDLoc dl(Op);
12587   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12588   assert(C && "Invalid scale type");
12589   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12590   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12591   SDValue Segment = DAG.getRegister(0, MVT::i32);
12592   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12593                              Index.getSimpleValueType().getVectorNumElements());
12594   SDValue MaskInReg;
12595   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
12596   if (MaskC)
12597     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
12598   else
12599     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12600   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12601   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12602   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12603   return SDValue(Res, 1);
12604 }
12605
12606 static SDValue getPrefetchNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12607                                SDValue Mask, SDValue Base, SDValue Index,
12608                                SDValue ScaleOp, SDValue Chain) {
12609   SDLoc dl(Op);
12610   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12611   assert(C && "Invalid scale type");
12612   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12613   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12614   SDValue Segment = DAG.getRegister(0, MVT::i32);
12615   EVT MaskVT =
12616     MVT::getVectorVT(MVT::i1, Index.getSimpleValueType().getVectorNumElements());
12617   SDValue MaskInReg;
12618   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
12619   if (MaskC)
12620     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), MaskVT);
12621   else
12622     MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12623   //SDVTList VTs = DAG.getVTList(MVT::Other);
12624   SDValue Ops[] = {MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12625   SDNode *Res = DAG.getMachineNode(Opc, dl, MVT::Other, Ops);
12626   return SDValue(Res, 0);
12627 }
12628
12629 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
12630 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
12631 // also used to custom lower READCYCLECOUNTER nodes.
12632 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
12633                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
12634                               SmallVectorImpl<SDValue> &Results) {
12635   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
12636   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
12637   SDValue LO, HI;
12638
12639   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
12640   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
12641   // and the EAX register is loaded with the low-order 32 bits.
12642   if (Subtarget->is64Bit()) {
12643     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
12644     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
12645                             LO.getValue(2));
12646   } else {
12647     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
12648     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
12649                             LO.getValue(2));
12650   }
12651   SDValue Chain = HI.getValue(1);
12652
12653   if (Opcode == X86ISD::RDTSCP_DAG) {
12654     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
12655
12656     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
12657     // the ECX register. Add 'ecx' explicitly to the chain.
12658     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
12659                                      HI.getValue(2));
12660     // Explicitly store the content of ECX at the location passed in input
12661     // to the 'rdtscp' intrinsic.
12662     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
12663                          MachinePointerInfo(), false, false, 0);
12664   }
12665
12666   if (Subtarget->is64Bit()) {
12667     // The EDX register is loaded with the high-order 32 bits of the MSR, and
12668     // the EAX register is loaded with the low-order 32 bits.
12669     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
12670                               DAG.getConstant(32, MVT::i8));
12671     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
12672     Results.push_back(Chain);
12673     return;
12674   }
12675
12676   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
12677   SDValue Ops[] = { LO, HI };
12678   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
12679   Results.push_back(Pair);
12680   Results.push_back(Chain);
12681 }
12682
12683 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
12684                                      SelectionDAG &DAG) {
12685   SmallVector<SDValue, 2> Results;
12686   SDLoc DL(Op);
12687   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
12688                           Results);
12689   return DAG.getMergeValues(Results, DL);
12690 }
12691
12692 enum IntrinsicType {
12693   GATHER, SCATTER, PREFETCH, RDSEED, RDRAND, RDTSC, XTEST
12694 };
12695
12696 struct IntrinsicData {
12697   IntrinsicData(IntrinsicType IType, unsigned IOpc0, unsigned IOpc1)
12698     :Type(IType), Opc0(IOpc0), Opc1(IOpc1) {}
12699   IntrinsicType Type;
12700   unsigned      Opc0;
12701   unsigned      Opc1;
12702 };
12703
12704 std::map < unsigned, IntrinsicData> IntrMap;
12705 static void InitIntinsicsMap() {
12706   static bool Initialized = false;
12707   if (Initialized) 
12708     return;
12709   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qps_512,
12710                                 IntrinsicData(GATHER, X86::VGATHERQPSZrm, 0)));
12711   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qps_512,
12712                                 IntrinsicData(GATHER, X86::VGATHERQPSZrm, 0)));
12713   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpd_512,
12714                                 IntrinsicData(GATHER, X86::VGATHERQPDZrm, 0)));
12715   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpd_512,
12716                                 IntrinsicData(GATHER, X86::VGATHERDPDZrm, 0)));
12717   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dps_512,
12718                                 IntrinsicData(GATHER, X86::VGATHERDPSZrm, 0)));
12719   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpi_512, 
12720                                 IntrinsicData(GATHER, X86::VPGATHERQDZrm, 0)));
12721   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_qpq_512, 
12722                                 IntrinsicData(GATHER, X86::VPGATHERQQZrm, 0)));
12723   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpi_512, 
12724                                 IntrinsicData(GATHER, X86::VPGATHERDDZrm, 0)));
12725   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gather_dpq_512, 
12726                                 IntrinsicData(GATHER, X86::VPGATHERDQZrm, 0)));
12727
12728   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qps_512,
12729                                 IntrinsicData(SCATTER, X86::VSCATTERQPSZmr, 0)));
12730   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpd_512, 
12731                                 IntrinsicData(SCATTER, X86::VSCATTERQPDZmr, 0)));
12732   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpd_512, 
12733                                 IntrinsicData(SCATTER, X86::VSCATTERDPDZmr, 0)));
12734   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dps_512, 
12735                                 IntrinsicData(SCATTER, X86::VSCATTERDPSZmr, 0)));
12736   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpi_512, 
12737                                 IntrinsicData(SCATTER, X86::VPSCATTERQDZmr, 0)));
12738   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_qpq_512, 
12739                                 IntrinsicData(SCATTER, X86::VPSCATTERQQZmr, 0)));
12740   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpi_512, 
12741                                 IntrinsicData(SCATTER, X86::VPSCATTERDDZmr, 0)));
12742   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatter_dpq_512, 
12743                                 IntrinsicData(SCATTER, X86::VPSCATTERDQZmr, 0)));
12744    
12745   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_qps_512, 
12746                                 IntrinsicData(PREFETCH, X86::VGATHERPF0QPSm,
12747                                                         X86::VGATHERPF1QPSm)));
12748   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_qpd_512, 
12749                                 IntrinsicData(PREFETCH, X86::VGATHERPF0QPDm,
12750                                                         X86::VGATHERPF1QPDm)));
12751   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_dpd_512, 
12752                                 IntrinsicData(PREFETCH, X86::VGATHERPF0DPDm,
12753                                                         X86::VGATHERPF1DPDm)));
12754   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_gatherpf_dps_512, 
12755                                 IntrinsicData(PREFETCH, X86::VGATHERPF0DPSm,
12756                                                         X86::VGATHERPF1DPSm)));
12757   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_qps_512, 
12758                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0QPSm,
12759                                                         X86::VSCATTERPF1QPSm)));
12760   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_qpd_512, 
12761                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0QPDm,
12762                                                         X86::VSCATTERPF1QPDm)));
12763   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_dpd_512, 
12764                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0DPDm,
12765                                                         X86::VSCATTERPF1DPDm)));
12766   IntrMap.insert(std::make_pair(Intrinsic::x86_avx512_scatterpf_dps_512, 
12767                                 IntrinsicData(PREFETCH, X86::VSCATTERPF0DPSm,
12768                                                         X86::VSCATTERPF1DPSm)));
12769   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_16,
12770                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
12771   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_32,
12772                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
12773   IntrMap.insert(std::make_pair(Intrinsic::x86_rdrand_64,
12774                                 IntrinsicData(RDRAND, X86ISD::RDRAND, 0)));
12775   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_16,
12776                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
12777   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_32,
12778                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
12779   IntrMap.insert(std::make_pair(Intrinsic::x86_rdseed_64,
12780                                 IntrinsicData(RDSEED, X86ISD::RDSEED, 0)));
12781   IntrMap.insert(std::make_pair(Intrinsic::x86_xtest,
12782                                 IntrinsicData(XTEST,  X86ISD::XTEST,  0)));
12783   IntrMap.insert(std::make_pair(Intrinsic::x86_rdtsc,
12784                                 IntrinsicData(RDTSC,  X86ISD::RDTSC_DAG, 0)));
12785   IntrMap.insert(std::make_pair(Intrinsic::x86_rdtscp,
12786                                 IntrinsicData(RDTSC,  X86ISD::RDTSCP_DAG, 0)));
12787   Initialized = true;
12788 }
12789
12790 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
12791                                       SelectionDAG &DAG) {
12792   InitIntinsicsMap();
12793   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
12794   std::map < unsigned, IntrinsicData>::const_iterator itr = IntrMap.find(IntNo);
12795   if (itr == IntrMap.end())
12796     return SDValue();
12797
12798   SDLoc dl(Op);
12799   IntrinsicData Intr = itr->second;
12800   switch(Intr.Type) {
12801   case RDSEED:
12802   case RDRAND: {
12803     // Emit the node with the right value type.
12804     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12805     SDValue Result = DAG.getNode(Intr.Opc0, dl, VTs, Op.getOperand(0));
12806
12807     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12808     // Otherwise return the value from Rand, which is always 0, casted to i32.
12809     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12810                       DAG.getConstant(1, Op->getValueType(1)),
12811                       DAG.getConstant(X86::COND_B, MVT::i32),
12812                       SDValue(Result.getNode(), 1) };
12813     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12814                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12815                                   Ops);
12816
12817     // Return { result, isValid, chain }.
12818     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12819                        SDValue(Result.getNode(), 2));
12820   }
12821   case GATHER: {
12822   //gather(v1, mask, index, base, scale);
12823     SDValue Chain = Op.getOperand(0);
12824     SDValue Src   = Op.getOperand(2);
12825     SDValue Base  = Op.getOperand(3);
12826     SDValue Index = Op.getOperand(4);
12827     SDValue Mask  = Op.getOperand(5);
12828     SDValue Scale = Op.getOperand(6);
12829     return getGatherNode(Intr.Opc0, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12830                           Subtarget);
12831   }
12832   case SCATTER: {
12833   //scatter(base, mask, index, v1, scale);
12834     SDValue Chain = Op.getOperand(0);
12835     SDValue Base  = Op.getOperand(2);
12836     SDValue Mask  = Op.getOperand(3);
12837     SDValue Index = Op.getOperand(4);
12838     SDValue Src   = Op.getOperand(5);
12839     SDValue Scale = Op.getOperand(6);
12840     return getScatterNode(Intr.Opc0, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12841   }
12842   case PREFETCH: {
12843     SDValue Hint = Op.getOperand(6);
12844     unsigned HintVal;
12845     if (dyn_cast<ConstantSDNode> (Hint) == 0 ||
12846         (HintVal = dyn_cast<ConstantSDNode> (Hint)->getZExtValue()) > 1)
12847       llvm_unreachable("Wrong prefetch hint in intrinsic: should be 0 or 1");
12848     unsigned Opcode = (HintVal ? Intr.Opc1 : Intr.Opc0);
12849     SDValue Chain = Op.getOperand(0);
12850     SDValue Mask  = Op.getOperand(2);
12851     SDValue Index = Op.getOperand(3);
12852     SDValue Base  = Op.getOperand(4);
12853     SDValue Scale = Op.getOperand(5);
12854     return getPrefetchNode(Opcode, Op, DAG, Mask, Base, Index, Scale, Chain);
12855   }
12856   // Read Time Stamp Counter (RDTSC) and Processor ID (RDTSCP).
12857   case RDTSC: {
12858     SmallVector<SDValue, 2> Results;
12859     getReadTimeStampCounter(Op.getNode(), dl, Intr.Opc0, DAG, Subtarget, Results);
12860     return DAG.getMergeValues(Results, dl);
12861   }
12862   // XTEST intrinsics.
12863   case XTEST: {
12864     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12865     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12866     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12867                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12868                                 InTrans);
12869     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12870     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12871                        Ret, SDValue(InTrans.getNode(), 1));
12872   }
12873   }
12874   llvm_unreachable("Unknown Intrinsic Type");
12875 }
12876
12877 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12878                                            SelectionDAG &DAG) const {
12879   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12880   MFI->setReturnAddressIsTaken(true);
12881
12882   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
12883     return SDValue();
12884
12885   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12886   SDLoc dl(Op);
12887   EVT PtrVT = getPointerTy();
12888
12889   if (Depth > 0) {
12890     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12891     const X86RegisterInfo *RegInfo =
12892       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12893     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12894     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12895                        DAG.getNode(ISD::ADD, dl, PtrVT,
12896                                    FrameAddr, Offset),
12897                        MachinePointerInfo(), false, false, false, 0);
12898   }
12899
12900   // Just load the return address.
12901   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12902   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12903                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12904 }
12905
12906 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12907   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12908   MFI->setFrameAddressIsTaken(true);
12909
12910   EVT VT = Op.getValueType();
12911   SDLoc dl(Op);  // FIXME probably not meaningful
12912   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12913   const X86RegisterInfo *RegInfo =
12914     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12915   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12916   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12917           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12918          "Invalid Frame Register!");
12919   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12920   while (Depth--)
12921     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12922                             MachinePointerInfo(),
12923                             false, false, false, 0);
12924   return FrameAddr;
12925 }
12926
12927 // FIXME? Maybe this could be a TableGen attribute on some registers and
12928 // this table could be generated automatically from RegInfo.
12929 unsigned X86TargetLowering::getRegisterByName(const char* RegName,
12930                                               EVT VT) const {
12931   unsigned Reg = StringSwitch<unsigned>(RegName)
12932                        .Case("esp", X86::ESP)
12933                        .Case("rsp", X86::RSP)
12934                        .Default(0);
12935   if (Reg)
12936     return Reg;
12937   report_fatal_error("Invalid register name global variable");
12938 }
12939
12940 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12941                                                      SelectionDAG &DAG) const {
12942   const X86RegisterInfo *RegInfo =
12943     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12944   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12945 }
12946
12947 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12948   SDValue Chain     = Op.getOperand(0);
12949   SDValue Offset    = Op.getOperand(1);
12950   SDValue Handler   = Op.getOperand(2);
12951   SDLoc dl      (Op);
12952
12953   EVT PtrVT = getPointerTy();
12954   const X86RegisterInfo *RegInfo =
12955     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12956   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12957   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12958           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12959          "Invalid Frame Register!");
12960   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12961   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12962
12963   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12964                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12965   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12966   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12967                        false, false, 0);
12968   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12969
12970   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12971                      DAG.getRegister(StoreAddrReg, PtrVT));
12972 }
12973
12974 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12975                                                SelectionDAG &DAG) const {
12976   SDLoc DL(Op);
12977   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12978                      DAG.getVTList(MVT::i32, MVT::Other),
12979                      Op.getOperand(0), Op.getOperand(1));
12980 }
12981
12982 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12983                                                 SelectionDAG &DAG) const {
12984   SDLoc DL(Op);
12985   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12986                      Op.getOperand(0), Op.getOperand(1));
12987 }
12988
12989 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12990   return Op.getOperand(0);
12991 }
12992
12993 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12994                                                 SelectionDAG &DAG) const {
12995   SDValue Root = Op.getOperand(0);
12996   SDValue Trmp = Op.getOperand(1); // trampoline
12997   SDValue FPtr = Op.getOperand(2); // nested function
12998   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12999   SDLoc dl (Op);
13000
13001   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
13002   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
13003
13004   if (Subtarget->is64Bit()) {
13005     SDValue OutChains[6];
13006
13007     // Large code-model.
13008     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
13009     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
13010
13011     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
13012     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
13013
13014     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
13015
13016     // Load the pointer to the nested function into R11.
13017     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
13018     SDValue Addr = Trmp;
13019     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
13020                                 Addr, MachinePointerInfo(TrmpAddr),
13021                                 false, false, 0);
13022
13023     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
13024                        DAG.getConstant(2, MVT::i64));
13025     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
13026                                 MachinePointerInfo(TrmpAddr, 2),
13027                                 false, false, 2);
13028
13029     // Load the 'nest' parameter value into R10.
13030     // R10 is specified in X86CallingConv.td
13031     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
13032     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
13033                        DAG.getConstant(10, MVT::i64));
13034     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
13035                                 Addr, MachinePointerInfo(TrmpAddr, 10),
13036                                 false, false, 0);
13037
13038     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
13039                        DAG.getConstant(12, MVT::i64));
13040     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
13041                                 MachinePointerInfo(TrmpAddr, 12),
13042                                 false, false, 2);
13043
13044     // Jump to the nested function.
13045     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
13046     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
13047                        DAG.getConstant(20, MVT::i64));
13048     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
13049                                 Addr, MachinePointerInfo(TrmpAddr, 20),
13050                                 false, false, 0);
13051
13052     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
13053     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
13054                        DAG.getConstant(22, MVT::i64));
13055     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
13056                                 MachinePointerInfo(TrmpAddr, 22),
13057                                 false, false, 0);
13058
13059     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
13060   } else {
13061     const Function *Func =
13062       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
13063     CallingConv::ID CC = Func->getCallingConv();
13064     unsigned NestReg;
13065
13066     switch (CC) {
13067     default:
13068       llvm_unreachable("Unsupported calling convention");
13069     case CallingConv::C:
13070     case CallingConv::X86_StdCall: {
13071       // Pass 'nest' parameter in ECX.
13072       // Must be kept in sync with X86CallingConv.td
13073       NestReg = X86::ECX;
13074
13075       // Check that ECX wasn't needed by an 'inreg' parameter.
13076       FunctionType *FTy = Func->getFunctionType();
13077       const AttributeSet &Attrs = Func->getAttributes();
13078
13079       if (!Attrs.isEmpty() && !Func->isVarArg()) {
13080         unsigned InRegCount = 0;
13081         unsigned Idx = 1;
13082
13083         for (FunctionType::param_iterator I = FTy->param_begin(),
13084              E = FTy->param_end(); I != E; ++I, ++Idx)
13085           if (Attrs.hasAttribute(Idx, Attribute::InReg))
13086             // FIXME: should only count parameters that are lowered to integers.
13087             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
13088
13089         if (InRegCount > 2) {
13090           report_fatal_error("Nest register in use - reduce number of inreg"
13091                              " parameters!");
13092         }
13093       }
13094       break;
13095     }
13096     case CallingConv::X86_FastCall:
13097     case CallingConv::X86_ThisCall:
13098     case CallingConv::Fast:
13099       // Pass 'nest' parameter in EAX.
13100       // Must be kept in sync with X86CallingConv.td
13101       NestReg = X86::EAX;
13102       break;
13103     }
13104
13105     SDValue OutChains[4];
13106     SDValue Addr, Disp;
13107
13108     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13109                        DAG.getConstant(10, MVT::i32));
13110     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
13111
13112     // This is storing the opcode for MOV32ri.
13113     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
13114     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
13115     OutChains[0] = DAG.getStore(Root, dl,
13116                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
13117                                 Trmp, MachinePointerInfo(TrmpAddr),
13118                                 false, false, 0);
13119
13120     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13121                        DAG.getConstant(1, MVT::i32));
13122     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
13123                                 MachinePointerInfo(TrmpAddr, 1),
13124                                 false, false, 1);
13125
13126     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
13127     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13128                        DAG.getConstant(5, MVT::i32));
13129     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
13130                                 MachinePointerInfo(TrmpAddr, 5),
13131                                 false, false, 1);
13132
13133     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
13134                        DAG.getConstant(6, MVT::i32));
13135     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
13136                                 MachinePointerInfo(TrmpAddr, 6),
13137                                 false, false, 1);
13138
13139     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
13140   }
13141 }
13142
13143 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
13144                                             SelectionDAG &DAG) const {
13145   /*
13146    The rounding mode is in bits 11:10 of FPSR, and has the following
13147    settings:
13148      00 Round to nearest
13149      01 Round to -inf
13150      10 Round to +inf
13151      11 Round to 0
13152
13153   FLT_ROUNDS, on the other hand, expects the following:
13154     -1 Undefined
13155      0 Round to 0
13156      1 Round to nearest
13157      2 Round to +inf
13158      3 Round to -inf
13159
13160   To perform the conversion, we do:
13161     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
13162   */
13163
13164   MachineFunction &MF = DAG.getMachineFunction();
13165   const TargetMachine &TM = MF.getTarget();
13166   const TargetFrameLowering &TFI = *TM.getFrameLowering();
13167   unsigned StackAlignment = TFI.getStackAlignment();
13168   MVT VT = Op.getSimpleValueType();
13169   SDLoc DL(Op);
13170
13171   // Save FP Control Word to stack slot
13172   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
13173   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
13174
13175   MachineMemOperand *MMO =
13176    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
13177                            MachineMemOperand::MOStore, 2, 2);
13178
13179   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
13180   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
13181                                           DAG.getVTList(MVT::Other),
13182                                           Ops, MVT::i16, MMO);
13183
13184   // Load FP Control Word from stack slot
13185   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
13186                             MachinePointerInfo(), false, false, false, 0);
13187
13188   // Transform as necessary
13189   SDValue CWD1 =
13190     DAG.getNode(ISD::SRL, DL, MVT::i16,
13191                 DAG.getNode(ISD::AND, DL, MVT::i16,
13192                             CWD, DAG.getConstant(0x800, MVT::i16)),
13193                 DAG.getConstant(11, MVT::i8));
13194   SDValue CWD2 =
13195     DAG.getNode(ISD::SRL, DL, MVT::i16,
13196                 DAG.getNode(ISD::AND, DL, MVT::i16,
13197                             CWD, DAG.getConstant(0x400, MVT::i16)),
13198                 DAG.getConstant(9, MVT::i8));
13199
13200   SDValue RetVal =
13201     DAG.getNode(ISD::AND, DL, MVT::i16,
13202                 DAG.getNode(ISD::ADD, DL, MVT::i16,
13203                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
13204                             DAG.getConstant(1, MVT::i16)),
13205                 DAG.getConstant(3, MVT::i16));
13206
13207   return DAG.getNode((VT.getSizeInBits() < 16 ?
13208                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
13209 }
13210
13211 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
13212   MVT VT = Op.getSimpleValueType();
13213   EVT OpVT = VT;
13214   unsigned NumBits = VT.getSizeInBits();
13215   SDLoc dl(Op);
13216
13217   Op = Op.getOperand(0);
13218   if (VT == MVT::i8) {
13219     // Zero extend to i32 since there is not an i8 bsr.
13220     OpVT = MVT::i32;
13221     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
13222   }
13223
13224   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
13225   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
13226   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
13227
13228   // If src is zero (i.e. bsr sets ZF), returns NumBits.
13229   SDValue Ops[] = {
13230     Op,
13231     DAG.getConstant(NumBits+NumBits-1, OpVT),
13232     DAG.getConstant(X86::COND_E, MVT::i8),
13233     Op.getValue(1)
13234   };
13235   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
13236
13237   // Finally xor with NumBits-1.
13238   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
13239
13240   if (VT == MVT::i8)
13241     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
13242   return Op;
13243 }
13244
13245 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
13246   MVT VT = Op.getSimpleValueType();
13247   EVT OpVT = VT;
13248   unsigned NumBits = VT.getSizeInBits();
13249   SDLoc dl(Op);
13250
13251   Op = Op.getOperand(0);
13252   if (VT == MVT::i8) {
13253     // Zero extend to i32 since there is not an i8 bsr.
13254     OpVT = MVT::i32;
13255     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
13256   }
13257
13258   // Issue a bsr (scan bits in reverse).
13259   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
13260   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
13261
13262   // And xor with NumBits-1.
13263   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
13264
13265   if (VT == MVT::i8)
13266     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
13267   return Op;
13268 }
13269
13270 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
13271   MVT VT = Op.getSimpleValueType();
13272   unsigned NumBits = VT.getSizeInBits();
13273   SDLoc dl(Op);
13274   Op = Op.getOperand(0);
13275
13276   // Issue a bsf (scan bits forward) which also sets EFLAGS.
13277   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13278   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
13279
13280   // If src is zero (i.e. bsf sets ZF), returns NumBits.
13281   SDValue Ops[] = {
13282     Op,
13283     DAG.getConstant(NumBits, VT),
13284     DAG.getConstant(X86::COND_E, MVT::i8),
13285     Op.getValue(1)
13286   };
13287   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
13288 }
13289
13290 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
13291 // ones, and then concatenate the result back.
13292 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
13293   MVT VT = Op.getSimpleValueType();
13294
13295   assert(VT.is256BitVector() && VT.isInteger() &&
13296          "Unsupported value type for operation");
13297
13298   unsigned NumElems = VT.getVectorNumElements();
13299   SDLoc dl(Op);
13300
13301   // Extract the LHS vectors
13302   SDValue LHS = Op.getOperand(0);
13303   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13304   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13305
13306   // Extract the RHS vectors
13307   SDValue RHS = Op.getOperand(1);
13308   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
13309   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
13310
13311   MVT EltVT = VT.getVectorElementType();
13312   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13313
13314   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
13315                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
13316                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
13317 }
13318
13319 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
13320   assert(Op.getSimpleValueType().is256BitVector() &&
13321          Op.getSimpleValueType().isInteger() &&
13322          "Only handle AVX 256-bit vector integer operation");
13323   return Lower256IntArith(Op, DAG);
13324 }
13325
13326 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
13327   assert(Op.getSimpleValueType().is256BitVector() &&
13328          Op.getSimpleValueType().isInteger() &&
13329          "Only handle AVX 256-bit vector integer operation");
13330   return Lower256IntArith(Op, DAG);
13331 }
13332
13333 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
13334                         SelectionDAG &DAG) {
13335   SDLoc dl(Op);
13336   MVT VT = Op.getSimpleValueType();
13337
13338   // Decompose 256-bit ops into smaller 128-bit ops.
13339   if (VT.is256BitVector() && !Subtarget->hasInt256())
13340     return Lower256IntArith(Op, DAG);
13341
13342   SDValue A = Op.getOperand(0);
13343   SDValue B = Op.getOperand(1);
13344
13345   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
13346   if (VT == MVT::v4i32) {
13347     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
13348            "Should not custom lower when pmuldq is available!");
13349
13350     // Extract the odd parts.
13351     static const int UnpackMask[] = { 1, -1, 3, -1 };
13352     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
13353     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
13354
13355     // Multiply the even parts.
13356     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
13357     // Now multiply odd parts.
13358     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
13359
13360     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
13361     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
13362
13363     // Merge the two vectors back together with a shuffle. This expands into 2
13364     // shuffles.
13365     static const int ShufMask[] = { 0, 4, 2, 6 };
13366     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
13367   }
13368
13369   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
13370          "Only know how to lower V2I64/V4I64/V8I64 multiply");
13371
13372   //  Ahi = psrlqi(a, 32);
13373   //  Bhi = psrlqi(b, 32);
13374   //
13375   //  AloBlo = pmuludq(a, b);
13376   //  AloBhi = pmuludq(a, Bhi);
13377   //  AhiBlo = pmuludq(Ahi, b);
13378
13379   //  AloBhi = psllqi(AloBhi, 32);
13380   //  AhiBlo = psllqi(AhiBlo, 32);
13381   //  return AloBlo + AloBhi + AhiBlo;
13382
13383   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
13384   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
13385
13386   // Bit cast to 32-bit vectors for MULUDQ
13387   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
13388                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
13389   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
13390   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
13391   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
13392   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
13393
13394   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
13395   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
13396   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
13397
13398   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
13399   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
13400
13401   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
13402   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
13403 }
13404
13405 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
13406   assert(Subtarget->isTargetWin64() && "Unexpected target");
13407   EVT VT = Op.getValueType();
13408   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
13409          "Unexpected return type for lowering");
13410
13411   RTLIB::Libcall LC;
13412   bool isSigned;
13413   switch (Op->getOpcode()) {
13414   default: llvm_unreachable("Unexpected request for libcall!");
13415   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
13416   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
13417   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
13418   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
13419   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
13420   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
13421   }
13422
13423   SDLoc dl(Op);
13424   SDValue InChain = DAG.getEntryNode();
13425
13426   TargetLowering::ArgListTy Args;
13427   TargetLowering::ArgListEntry Entry;
13428   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
13429     EVT ArgVT = Op->getOperand(i).getValueType();
13430     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
13431            "Unexpected argument type for lowering");
13432     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
13433     Entry.Node = StackPtr;
13434     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
13435                            false, false, 16);
13436     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13437     Entry.Ty = PointerType::get(ArgTy,0);
13438     Entry.isSExt = false;
13439     Entry.isZExt = false;
13440     Args.push_back(Entry);
13441   }
13442
13443   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
13444                                          getPointerTy());
13445
13446   TargetLowering::CallLoweringInfo CLI(DAG);
13447   CLI.setDebugLoc(dl).setChain(InChain)
13448     .setCallee(getLibcallCallingConv(LC),
13449                static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
13450                Callee, &Args, 0)
13451     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
13452
13453   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
13454   return DAG.getNode(ISD::BITCAST, dl, VT, CallInfo.first);
13455 }
13456
13457 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
13458                              SelectionDAG &DAG) {
13459   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
13460   EVT VT = Op0.getValueType();
13461   SDLoc dl(Op);
13462
13463   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
13464          (VT == MVT::v8i32 && Subtarget->hasInt256()));
13465
13466   // Get the high parts.
13467   const int Mask[] = {1, 2, 3, 4, 5, 6, 7, 8};
13468   SDValue Hi0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
13469   SDValue Hi1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
13470
13471   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
13472   // ints.
13473   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
13474   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
13475   unsigned Opcode =
13476       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
13477   SDValue Mul1 = DAG.getNode(ISD::BITCAST, dl, VT,
13478                              DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
13479   SDValue Mul2 = DAG.getNode(ISD::BITCAST, dl, VT,
13480                              DAG.getNode(Opcode, dl, MulVT, Hi0, Hi1));
13481
13482   // Shuffle it back into the right order.
13483   const int HighMask[] = {1, 5, 3, 7, 9, 13, 11, 15};
13484   SDValue Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
13485   const int LowMask[] = {0, 4, 2, 6, 8, 12, 10, 14};
13486   SDValue Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
13487
13488   // If we have a signed multiply but no PMULDQ fix up the high parts of a
13489   // unsigned multiply.
13490   if (IsSigned && !Subtarget->hasSSE41()) {
13491     SDValue ShAmt =
13492         DAG.getConstant(31, DAG.getTargetLoweringInfo().getShiftAmountTy(VT));
13493     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
13494                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
13495     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
13496                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
13497
13498     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
13499     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
13500   }
13501
13502   return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getValueType(), Highs, Lows);
13503 }
13504
13505 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
13506                                          const X86Subtarget *Subtarget) {
13507   MVT VT = Op.getSimpleValueType();
13508   SDLoc dl(Op);
13509   SDValue R = Op.getOperand(0);
13510   SDValue Amt = Op.getOperand(1);
13511
13512   // Optimize shl/srl/sra with constant shift amount.
13513   if (isSplatVector(Amt.getNode())) {
13514     SDValue SclrAmt = Amt->getOperand(0);
13515     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
13516       uint64_t ShiftAmt = C->getZExtValue();
13517
13518       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
13519           (Subtarget->hasInt256() &&
13520            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
13521           (Subtarget->hasAVX512() &&
13522            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
13523         if (Op.getOpcode() == ISD::SHL)
13524           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
13525                                             DAG);
13526         if (Op.getOpcode() == ISD::SRL)
13527           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
13528                                             DAG);
13529         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
13530           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
13531                                             DAG);
13532       }
13533
13534       if (VT == MVT::v16i8) {
13535         if (Op.getOpcode() == ISD::SHL) {
13536           // Make a large shift.
13537           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
13538                                                    MVT::v8i16, R, ShiftAmt,
13539                                                    DAG);
13540           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
13541           // Zero out the rightmost bits.
13542           SmallVector<SDValue, 16> V(16,
13543                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
13544                                                      MVT::i8));
13545           return DAG.getNode(ISD::AND, dl, VT, SHL,
13546                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13547         }
13548         if (Op.getOpcode() == ISD::SRL) {
13549           // Make a large shift.
13550           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
13551                                                    MVT::v8i16, R, ShiftAmt,
13552                                                    DAG);
13553           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
13554           // Zero out the leftmost bits.
13555           SmallVector<SDValue, 16> V(16,
13556                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
13557                                                      MVT::i8));
13558           return DAG.getNode(ISD::AND, dl, VT, SRL,
13559                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13560         }
13561         if (Op.getOpcode() == ISD::SRA) {
13562           if (ShiftAmt == 7) {
13563             // R s>> 7  ===  R s< 0
13564             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
13565             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
13566           }
13567
13568           // R s>> a === ((R u>> a) ^ m) - m
13569           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
13570           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
13571                                                          MVT::i8));
13572           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
13573           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
13574           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
13575           return Res;
13576         }
13577         llvm_unreachable("Unknown shift opcode.");
13578       }
13579
13580       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
13581         if (Op.getOpcode() == ISD::SHL) {
13582           // Make a large shift.
13583           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
13584                                                    MVT::v16i16, R, ShiftAmt,
13585                                                    DAG);
13586           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
13587           // Zero out the rightmost bits.
13588           SmallVector<SDValue, 32> V(32,
13589                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
13590                                                      MVT::i8));
13591           return DAG.getNode(ISD::AND, dl, VT, SHL,
13592                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13593         }
13594         if (Op.getOpcode() == ISD::SRL) {
13595           // Make a large shift.
13596           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
13597                                                    MVT::v16i16, R, ShiftAmt,
13598                                                    DAG);
13599           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
13600           // Zero out the leftmost bits.
13601           SmallVector<SDValue, 32> V(32,
13602                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
13603                                                      MVT::i8));
13604           return DAG.getNode(ISD::AND, dl, VT, SRL,
13605                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
13606         }
13607         if (Op.getOpcode() == ISD::SRA) {
13608           if (ShiftAmt == 7) {
13609             // R s>> 7  ===  R s< 0
13610             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
13611             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
13612           }
13613
13614           // R s>> a === ((R u>> a) ^ m) - m
13615           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
13616           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
13617                                                          MVT::i8));
13618           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
13619           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
13620           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
13621           return Res;
13622         }
13623         llvm_unreachable("Unknown shift opcode.");
13624       }
13625     }
13626   }
13627
13628   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13629   if (!Subtarget->is64Bit() &&
13630       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
13631       Amt.getOpcode() == ISD::BITCAST &&
13632       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13633     Amt = Amt.getOperand(0);
13634     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13635                      VT.getVectorNumElements();
13636     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
13637     uint64_t ShiftAmt = 0;
13638     for (unsigned i = 0; i != Ratio; ++i) {
13639       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
13640       if (!C)
13641         return SDValue();
13642       // 6 == Log2(64)
13643       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
13644     }
13645     // Check remaining shift amounts.
13646     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13647       uint64_t ShAmt = 0;
13648       for (unsigned j = 0; j != Ratio; ++j) {
13649         ConstantSDNode *C =
13650           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
13651         if (!C)
13652           return SDValue();
13653         // 6 == Log2(64)
13654         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
13655       }
13656       if (ShAmt != ShiftAmt)
13657         return SDValue();
13658     }
13659     switch (Op.getOpcode()) {
13660     default:
13661       llvm_unreachable("Unknown shift opcode!");
13662     case ISD::SHL:
13663       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
13664                                         DAG);
13665     case ISD::SRL:
13666       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
13667                                         DAG);
13668     case ISD::SRA:
13669       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
13670                                         DAG);
13671     }
13672   }
13673
13674   return SDValue();
13675 }
13676
13677 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
13678                                         const X86Subtarget* Subtarget) {
13679   MVT VT = Op.getSimpleValueType();
13680   SDLoc dl(Op);
13681   SDValue R = Op.getOperand(0);
13682   SDValue Amt = Op.getOperand(1);
13683
13684   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
13685       VT == MVT::v4i32 || VT == MVT::v8i16 ||
13686       (Subtarget->hasInt256() &&
13687        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
13688         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
13689        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
13690     SDValue BaseShAmt;
13691     EVT EltVT = VT.getVectorElementType();
13692
13693     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13694       unsigned NumElts = VT.getVectorNumElements();
13695       unsigned i, j;
13696       for (i = 0; i != NumElts; ++i) {
13697         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
13698           continue;
13699         break;
13700       }
13701       for (j = i; j != NumElts; ++j) {
13702         SDValue Arg = Amt.getOperand(j);
13703         if (Arg.getOpcode() == ISD::UNDEF) continue;
13704         if (Arg != Amt.getOperand(i))
13705           break;
13706       }
13707       if (i != NumElts && j == NumElts)
13708         BaseShAmt = Amt.getOperand(i);
13709     } else {
13710       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
13711         Amt = Amt.getOperand(0);
13712       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
13713                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
13714         SDValue InVec = Amt.getOperand(0);
13715         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13716           unsigned NumElts = InVec.getValueType().getVectorNumElements();
13717           unsigned i = 0;
13718           for (; i != NumElts; ++i) {
13719             SDValue Arg = InVec.getOperand(i);
13720             if (Arg.getOpcode() == ISD::UNDEF) continue;
13721             BaseShAmt = Arg;
13722             break;
13723           }
13724         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13725            if (ConstantSDNode *C =
13726                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
13727              unsigned SplatIdx =
13728                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
13729              if (C->getZExtValue() == SplatIdx)
13730                BaseShAmt = InVec.getOperand(1);
13731            }
13732         }
13733         if (!BaseShAmt.getNode())
13734           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
13735                                   DAG.getIntPtrConstant(0));
13736       }
13737     }
13738
13739     if (BaseShAmt.getNode()) {
13740       if (EltVT.bitsGT(MVT::i32))
13741         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
13742       else if (EltVT.bitsLT(MVT::i32))
13743         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
13744
13745       switch (Op.getOpcode()) {
13746       default:
13747         llvm_unreachable("Unknown shift opcode!");
13748       case ISD::SHL:
13749         switch (VT.SimpleTy) {
13750         default: return SDValue();
13751         case MVT::v2i64:
13752         case MVT::v4i32:
13753         case MVT::v8i16:
13754         case MVT::v4i64:
13755         case MVT::v8i32:
13756         case MVT::v16i16:
13757         case MVT::v16i32:
13758         case MVT::v8i64:
13759           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
13760         }
13761       case ISD::SRA:
13762         switch (VT.SimpleTy) {
13763         default: return SDValue();
13764         case MVT::v4i32:
13765         case MVT::v8i16:
13766         case MVT::v8i32:
13767         case MVT::v16i16:
13768         case MVT::v16i32:
13769         case MVT::v8i64:
13770           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13771         }
13772       case ISD::SRL:
13773         switch (VT.SimpleTy) {
13774         default: return SDValue();
13775         case MVT::v2i64:
13776         case MVT::v4i32:
13777         case MVT::v8i16:
13778         case MVT::v4i64:
13779         case MVT::v8i32:
13780         case MVT::v16i16:
13781         case MVT::v16i32:
13782         case MVT::v8i64:
13783           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13784         }
13785       }
13786     }
13787   }
13788
13789   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13790   if (!Subtarget->is64Bit() &&
13791       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13792       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13793       Amt.getOpcode() == ISD::BITCAST &&
13794       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13795     Amt = Amt.getOperand(0);
13796     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13797                      VT.getVectorNumElements();
13798     std::vector<SDValue> Vals(Ratio);
13799     for (unsigned i = 0; i != Ratio; ++i)
13800       Vals[i] = Amt.getOperand(i);
13801     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13802       for (unsigned j = 0; j != Ratio; ++j)
13803         if (Vals[j] != Amt.getOperand(i + j))
13804           return SDValue();
13805     }
13806     switch (Op.getOpcode()) {
13807     default:
13808       llvm_unreachable("Unknown shift opcode!");
13809     case ISD::SHL:
13810       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13811     case ISD::SRL:
13812       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13813     case ISD::SRA:
13814       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13815     }
13816   }
13817
13818   return SDValue();
13819 }
13820
13821 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13822                           SelectionDAG &DAG) {
13823
13824   MVT VT = Op.getSimpleValueType();
13825   SDLoc dl(Op);
13826   SDValue R = Op.getOperand(0);
13827   SDValue Amt = Op.getOperand(1);
13828   SDValue V;
13829
13830   if (!Subtarget->hasSSE2())
13831     return SDValue();
13832
13833   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13834   if (V.getNode())
13835     return V;
13836
13837   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13838   if (V.getNode())
13839       return V;
13840
13841   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13842     return Op;
13843   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13844   if (Subtarget->hasInt256()) {
13845     if (Op.getOpcode() == ISD::SRL &&
13846         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13847          VT == MVT::v4i64 || VT == MVT::v8i32))
13848       return Op;
13849     if (Op.getOpcode() == ISD::SHL &&
13850         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13851          VT == MVT::v4i64 || VT == MVT::v8i32))
13852       return Op;
13853     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13854       return Op;
13855   }
13856
13857   // If possible, lower this packed shift into a vector multiply instead of
13858   // expanding it into a sequence of scalar shifts.
13859   // Do this only if the vector shift count is a constant build_vector.
13860   if (Op.getOpcode() == ISD::SHL && 
13861       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
13862        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
13863       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
13864     SmallVector<SDValue, 8> Elts;
13865     EVT SVT = VT.getScalarType();
13866     unsigned SVTBits = SVT.getSizeInBits();
13867     const APInt &One = APInt(SVTBits, 1);
13868     unsigned NumElems = VT.getVectorNumElements();
13869
13870     for (unsigned i=0; i !=NumElems; ++i) {
13871       SDValue Op = Amt->getOperand(i);
13872       if (Op->getOpcode() == ISD::UNDEF) {
13873         Elts.push_back(Op);
13874         continue;
13875       }
13876
13877       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
13878       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
13879       uint64_t ShAmt = C.getZExtValue();
13880       if (ShAmt >= SVTBits) {
13881         Elts.push_back(DAG.getUNDEF(SVT));
13882         continue;
13883       }
13884       Elts.push_back(DAG.getConstant(One.shl(ShAmt), SVT));
13885     }
13886     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
13887     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
13888   }
13889
13890   // Lower SHL with variable shift amount.
13891   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13892     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13893
13894     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13895     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13896     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13897     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13898   }
13899
13900   // If possible, lower this shift as a sequence of two shifts by
13901   // constant plus a MOVSS/MOVSD instead of scalarizing it.
13902   // Example:
13903   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
13904   //
13905   // Could be rewritten as:
13906   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
13907   //
13908   // The advantage is that the two shifts from the example would be
13909   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
13910   // the vector shift into four scalar shifts plus four pairs of vector
13911   // insert/extract.
13912   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
13913       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
13914     unsigned TargetOpcode = X86ISD::MOVSS;
13915     bool CanBeSimplified;
13916     // The splat value for the first packed shift (the 'X' from the example).
13917     SDValue Amt1 = Amt->getOperand(0);
13918     // The splat value for the second packed shift (the 'Y' from the example).
13919     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
13920                                         Amt->getOperand(2);
13921
13922     // See if it is possible to replace this node with a sequence of
13923     // two shifts followed by a MOVSS/MOVSD
13924     if (VT == MVT::v4i32) {
13925       // Check if it is legal to use a MOVSS.
13926       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
13927                         Amt2 == Amt->getOperand(3);
13928       if (!CanBeSimplified) {
13929         // Otherwise, check if we can still simplify this node using a MOVSD.
13930         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
13931                           Amt->getOperand(2) == Amt->getOperand(3);
13932         TargetOpcode = X86ISD::MOVSD;
13933         Amt2 = Amt->getOperand(2);
13934       }
13935     } else {
13936       // Do similar checks for the case where the machine value type
13937       // is MVT::v8i16.
13938       CanBeSimplified = Amt1 == Amt->getOperand(1);
13939       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
13940         CanBeSimplified = Amt2 == Amt->getOperand(i);
13941
13942       if (!CanBeSimplified) {
13943         TargetOpcode = X86ISD::MOVSD;
13944         CanBeSimplified = true;
13945         Amt2 = Amt->getOperand(4);
13946         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
13947           CanBeSimplified = Amt1 == Amt->getOperand(i);
13948         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
13949           CanBeSimplified = Amt2 == Amt->getOperand(j);
13950       }
13951     }
13952     
13953     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
13954         isa<ConstantSDNode>(Amt2)) {
13955       // Replace this node with two shifts followed by a MOVSS/MOVSD.
13956       EVT CastVT = MVT::v4i32;
13957       SDValue Splat1 = 
13958         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), VT);
13959       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
13960       SDValue Splat2 = 
13961         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), VT);
13962       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
13963       if (TargetOpcode == X86ISD::MOVSD)
13964         CastVT = MVT::v2i64;
13965       SDValue BitCast1 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift1);
13966       SDValue BitCast2 = DAG.getNode(ISD::BITCAST, dl, CastVT, Shift2);
13967       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
13968                                             BitCast1, DAG);
13969       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
13970     }
13971   }
13972
13973   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13974     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13975
13976     // a = a << 5;
13977     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13978     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13979
13980     // Turn 'a' into a mask suitable for VSELECT
13981     SDValue VSelM = DAG.getConstant(0x80, VT);
13982     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13983     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13984
13985     SDValue CM1 = DAG.getConstant(0x0f, VT);
13986     SDValue CM2 = DAG.getConstant(0x3f, VT);
13987
13988     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13989     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13990     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13991     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13992     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13993
13994     // a += a
13995     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13996     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13997     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13998
13999     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
14000     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
14001     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
14002     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
14003     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
14004
14005     // a += a
14006     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
14007     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
14008     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
14009
14010     // return VSELECT(r, r+r, a);
14011     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
14012                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
14013     return R;
14014   }
14015
14016   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
14017   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
14018   // solution better.
14019   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
14020     MVT NewVT = VT == MVT::v8i16 ? MVT::v8i32 : MVT::v16i16;
14021     unsigned ExtOpc =
14022         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
14023     R = DAG.getNode(ExtOpc, dl, NewVT, R);
14024     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, NewVT, Amt);
14025     return DAG.getNode(ISD::TRUNCATE, dl, VT,
14026                        DAG.getNode(Op.getOpcode(), dl, NewVT, R, Amt));
14027     }
14028
14029   // Decompose 256-bit shifts into smaller 128-bit shifts.
14030   if (VT.is256BitVector()) {
14031     unsigned NumElems = VT.getVectorNumElements();
14032     MVT EltVT = VT.getVectorElementType();
14033     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
14034
14035     // Extract the two vectors
14036     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
14037     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
14038
14039     // Recreate the shift amount vectors
14040     SDValue Amt1, Amt2;
14041     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
14042       // Constant shift amount
14043       SmallVector<SDValue, 4> Amt1Csts;
14044       SmallVector<SDValue, 4> Amt2Csts;
14045       for (unsigned i = 0; i != NumElems/2; ++i)
14046         Amt1Csts.push_back(Amt->getOperand(i));
14047       for (unsigned i = NumElems/2; i != NumElems; ++i)
14048         Amt2Csts.push_back(Amt->getOperand(i));
14049
14050       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
14051       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
14052     } else {
14053       // Variable shift amount
14054       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
14055       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
14056     }
14057
14058     // Issue new vector shifts for the smaller types
14059     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
14060     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
14061
14062     // Concatenate the result back
14063     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
14064   }
14065
14066   return SDValue();
14067 }
14068
14069 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
14070   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
14071   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
14072   // looks for this combo and may remove the "setcc" instruction if the "setcc"
14073   // has only one use.
14074   SDNode *N = Op.getNode();
14075   SDValue LHS = N->getOperand(0);
14076   SDValue RHS = N->getOperand(1);
14077   unsigned BaseOp = 0;
14078   unsigned Cond = 0;
14079   SDLoc DL(Op);
14080   switch (Op.getOpcode()) {
14081   default: llvm_unreachable("Unknown ovf instruction!");
14082   case ISD::SADDO:
14083     // A subtract of one will be selected as a INC. Note that INC doesn't
14084     // set CF, so we can't do this for UADDO.
14085     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
14086       if (C->isOne()) {
14087         BaseOp = X86ISD::INC;
14088         Cond = X86::COND_O;
14089         break;
14090       }
14091     BaseOp = X86ISD::ADD;
14092     Cond = X86::COND_O;
14093     break;
14094   case ISD::UADDO:
14095     BaseOp = X86ISD::ADD;
14096     Cond = X86::COND_B;
14097     break;
14098   case ISD::SSUBO:
14099     // A subtract of one will be selected as a DEC. Note that DEC doesn't
14100     // set CF, so we can't do this for USUBO.
14101     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
14102       if (C->isOne()) {
14103         BaseOp = X86ISD::DEC;
14104         Cond = X86::COND_O;
14105         break;
14106       }
14107     BaseOp = X86ISD::SUB;
14108     Cond = X86::COND_O;
14109     break;
14110   case ISD::USUBO:
14111     BaseOp = X86ISD::SUB;
14112     Cond = X86::COND_B;
14113     break;
14114   case ISD::SMULO:
14115     BaseOp = X86ISD::SMUL;
14116     Cond = X86::COND_O;
14117     break;
14118   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
14119     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
14120                                  MVT::i32);
14121     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
14122
14123     SDValue SetCC =
14124       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
14125                   DAG.getConstant(X86::COND_O, MVT::i32),
14126                   SDValue(Sum.getNode(), 2));
14127
14128     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
14129   }
14130   }
14131
14132   // Also sets EFLAGS.
14133   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
14134   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
14135
14136   SDValue SetCC =
14137     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
14138                 DAG.getConstant(Cond, MVT::i32),
14139                 SDValue(Sum.getNode(), 1));
14140
14141   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
14142 }
14143
14144 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
14145                                                   SelectionDAG &DAG) const {
14146   SDLoc dl(Op);
14147   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
14148   MVT VT = Op.getSimpleValueType();
14149
14150   if (!Subtarget->hasSSE2() || !VT.isVector())
14151     return SDValue();
14152
14153   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
14154                       ExtraVT.getScalarType().getSizeInBits();
14155
14156   switch (VT.SimpleTy) {
14157     default: return SDValue();
14158     case MVT::v8i32:
14159     case MVT::v16i16:
14160       if (!Subtarget->hasFp256())
14161         return SDValue();
14162       if (!Subtarget->hasInt256()) {
14163         // needs to be split
14164         unsigned NumElems = VT.getVectorNumElements();
14165
14166         // Extract the LHS vectors
14167         SDValue LHS = Op.getOperand(0);
14168         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
14169         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
14170
14171         MVT EltVT = VT.getVectorElementType();
14172         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
14173
14174         EVT ExtraEltVT = ExtraVT.getVectorElementType();
14175         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
14176         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
14177                                    ExtraNumElems/2);
14178         SDValue Extra = DAG.getValueType(ExtraVT);
14179
14180         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
14181         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
14182
14183         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
14184       }
14185       // fall through
14186     case MVT::v4i32:
14187     case MVT::v8i16: {
14188       SDValue Op0 = Op.getOperand(0);
14189       SDValue Op00 = Op0.getOperand(0);
14190       SDValue Tmp1;
14191       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
14192       if (Op0.getOpcode() == ISD::BITCAST &&
14193           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
14194         // (sext (vzext x)) -> (vsext x)
14195         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
14196         if (Tmp1.getNode()) {
14197           EVT ExtraEltVT = ExtraVT.getVectorElementType();
14198           // This folding is only valid when the in-reg type is a vector of i8,
14199           // i16, or i32.
14200           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
14201               ExtraEltVT == MVT::i32) {
14202             SDValue Tmp1Op0 = Tmp1.getOperand(0);
14203             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
14204                    "This optimization is invalid without a VZEXT.");
14205             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
14206           }
14207           Op0 = Tmp1;
14208         }
14209       }
14210
14211       // If the above didn't work, then just use Shift-Left + Shift-Right.
14212       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
14213                                         DAG);
14214       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
14215                                         DAG);
14216     }
14217   }
14218 }
14219
14220 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
14221                                  SelectionDAG &DAG) {
14222   SDLoc dl(Op);
14223   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
14224     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
14225   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
14226     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
14227
14228   // The only fence that needs an instruction is a sequentially-consistent
14229   // cross-thread fence.
14230   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
14231     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
14232     // no-sse2). There isn't any reason to disable it if the target processor
14233     // supports it.
14234     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
14235       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
14236
14237     SDValue Chain = Op.getOperand(0);
14238     SDValue Zero = DAG.getConstant(0, MVT::i32);
14239     SDValue Ops[] = {
14240       DAG.getRegister(X86::ESP, MVT::i32), // Base
14241       DAG.getTargetConstant(1, MVT::i8),   // Scale
14242       DAG.getRegister(0, MVT::i32),        // Index
14243       DAG.getTargetConstant(0, MVT::i32),  // Disp
14244       DAG.getRegister(0, MVT::i32),        // Segment.
14245       Zero,
14246       Chain
14247     };
14248     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
14249     return SDValue(Res, 0);
14250   }
14251
14252   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
14253   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
14254 }
14255
14256 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
14257                              SelectionDAG &DAG) {
14258   MVT T = Op.getSimpleValueType();
14259   SDLoc DL(Op);
14260   unsigned Reg = 0;
14261   unsigned size = 0;
14262   switch(T.SimpleTy) {
14263   default: llvm_unreachable("Invalid value type!");
14264   case MVT::i8:  Reg = X86::AL;  size = 1; break;
14265   case MVT::i16: Reg = X86::AX;  size = 2; break;
14266   case MVT::i32: Reg = X86::EAX; size = 4; break;
14267   case MVT::i64:
14268     assert(Subtarget->is64Bit() && "Node not type legal!");
14269     Reg = X86::RAX; size = 8;
14270     break;
14271   }
14272   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
14273                                     Op.getOperand(2), SDValue());
14274   SDValue Ops[] = { cpIn.getValue(0),
14275                     Op.getOperand(1),
14276                     Op.getOperand(3),
14277                     DAG.getTargetConstant(size, MVT::i8),
14278                     cpIn.getValue(1) };
14279   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14280   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
14281   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
14282                                            Ops, T, MMO);
14283   SDValue cpOut =
14284     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
14285   return cpOut;
14286 }
14287
14288 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
14289                             SelectionDAG &DAG) {
14290   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
14291   MVT DstVT = Op.getSimpleValueType();
14292
14293   if (SrcVT == MVT::v2i32 || SrcVT == MVT::v4i16 || SrcVT == MVT::v8i8) {
14294     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
14295     if (DstVT != MVT::f64)
14296       // This conversion needs to be expanded.
14297       return SDValue();
14298
14299     SDValue InVec = Op->getOperand(0);
14300     SDLoc dl(Op);
14301     unsigned NumElts = SrcVT.getVectorNumElements();
14302     EVT SVT = SrcVT.getVectorElementType();
14303
14304     // Widen the vector in input in the case of MVT::v2i32.
14305     // Example: from MVT::v2i32 to MVT::v4i32.
14306     SmallVector<SDValue, 16> Elts;
14307     for (unsigned i = 0, e = NumElts; i != e; ++i)
14308       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT, InVec,
14309                                  DAG.getIntPtrConstant(i)));
14310
14311     // Explicitly mark the extra elements as Undef.
14312     SDValue Undef = DAG.getUNDEF(SVT);
14313     for (unsigned i = NumElts, e = NumElts * 2; i != e; ++i)
14314       Elts.push_back(Undef);
14315
14316     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
14317     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Elts);
14318     SDValue ToV2F64 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, BV);
14319     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
14320                        DAG.getIntPtrConstant(0));
14321   }
14322
14323   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
14324          Subtarget->hasMMX() && "Unexpected custom BITCAST");
14325   assert((DstVT == MVT::i64 ||
14326           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
14327          "Unexpected custom BITCAST");
14328   // i64 <=> MMX conversions are Legal.
14329   if (SrcVT==MVT::i64 && DstVT.isVector())
14330     return Op;
14331   if (DstVT==MVT::i64 && SrcVT.isVector())
14332     return Op;
14333   // MMX <=> MMX conversions are Legal.
14334   if (SrcVT.isVector() && DstVT.isVector())
14335     return Op;
14336   // All other conversions need to be expanded.
14337   return SDValue();
14338 }
14339
14340 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
14341   SDNode *Node = Op.getNode();
14342   SDLoc dl(Node);
14343   EVT T = Node->getValueType(0);
14344   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
14345                               DAG.getConstant(0, T), Node->getOperand(2));
14346   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
14347                        cast<AtomicSDNode>(Node)->getMemoryVT(),
14348                        Node->getOperand(0),
14349                        Node->getOperand(1), negOp,
14350                        cast<AtomicSDNode>(Node)->getMemOperand(),
14351                        cast<AtomicSDNode>(Node)->getOrdering(),
14352                        cast<AtomicSDNode>(Node)->getSynchScope());
14353 }
14354
14355 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
14356   SDNode *Node = Op.getNode();
14357   SDLoc dl(Node);
14358   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
14359
14360   // Convert seq_cst store -> xchg
14361   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
14362   // FIXME: On 32-bit, store -> fist or movq would be more efficient
14363   //        (The only way to get a 16-byte store is cmpxchg16b)
14364   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
14365   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
14366       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
14367     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
14368                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
14369                                  Node->getOperand(0),
14370                                  Node->getOperand(1), Node->getOperand(2),
14371                                  cast<AtomicSDNode>(Node)->getMemOperand(),
14372                                  cast<AtomicSDNode>(Node)->getOrdering(),
14373                                  cast<AtomicSDNode>(Node)->getSynchScope());
14374     return Swap.getValue(1);
14375   }
14376   // Other atomic stores have a simple pattern.
14377   return Op;
14378 }
14379
14380 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
14381   EVT VT = Op.getNode()->getSimpleValueType(0);
14382
14383   // Let legalize expand this if it isn't a legal type yet.
14384   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
14385     return SDValue();
14386
14387   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
14388
14389   unsigned Opc;
14390   bool ExtraOp = false;
14391   switch (Op.getOpcode()) {
14392   default: llvm_unreachable("Invalid code");
14393   case ISD::ADDC: Opc = X86ISD::ADD; break;
14394   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
14395   case ISD::SUBC: Opc = X86ISD::SUB; break;
14396   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
14397   }
14398
14399   if (!ExtraOp)
14400     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
14401                        Op.getOperand(1));
14402   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
14403                      Op.getOperand(1), Op.getOperand(2));
14404 }
14405
14406 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
14407                             SelectionDAG &DAG) {
14408   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
14409
14410   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
14411   // which returns the values as { float, float } (in XMM0) or
14412   // { double, double } (which is returned in XMM0, XMM1).
14413   SDLoc dl(Op);
14414   SDValue Arg = Op.getOperand(0);
14415   EVT ArgVT = Arg.getValueType();
14416   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
14417
14418   TargetLowering::ArgListTy Args;
14419   TargetLowering::ArgListEntry Entry;
14420
14421   Entry.Node = Arg;
14422   Entry.Ty = ArgTy;
14423   Entry.isSExt = false;
14424   Entry.isZExt = false;
14425   Args.push_back(Entry);
14426
14427   bool isF64 = ArgVT == MVT::f64;
14428   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
14429   // the small struct {f32, f32} is returned in (eax, edx). For f64,
14430   // the results are returned via SRet in memory.
14431   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
14432   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14433   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
14434
14435   Type *RetTy = isF64
14436     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
14437     : (Type*)VectorType::get(ArgTy, 4);
14438
14439   TargetLowering::CallLoweringInfo CLI(DAG);
14440   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
14441     .setCallee(CallingConv::C, RetTy, Callee, &Args, 0);
14442
14443   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
14444
14445   if (isF64)
14446     // Returned in xmm0 and xmm1.
14447     return CallResult.first;
14448
14449   // Returned in bits 0:31 and 32:64 xmm0.
14450   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
14451                                CallResult.first, DAG.getIntPtrConstant(0));
14452   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
14453                                CallResult.first, DAG.getIntPtrConstant(1));
14454   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
14455   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
14456 }
14457
14458 /// LowerOperation - Provide custom lowering hooks for some operations.
14459 ///
14460 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
14461   switch (Op.getOpcode()) {
14462   default: llvm_unreachable("Should not custom lower this!");
14463   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
14464   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
14465   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
14466   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
14467   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
14468   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
14469   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
14470   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
14471   case ISD::VSELECT:            return LowerVSELECT(Op, DAG);
14472   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
14473   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
14474   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
14475   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
14476   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
14477   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
14478   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
14479   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
14480   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
14481   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
14482   case ISD::SHL_PARTS:
14483   case ISD::SRA_PARTS:
14484   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
14485   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
14486   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
14487   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
14488   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
14489   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
14490   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
14491   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
14492   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
14493   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
14494   case ISD::FABS:               return LowerFABS(Op, DAG);
14495   case ISD::FNEG:               return LowerFNEG(Op, DAG);
14496   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
14497   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
14498   case ISD::SETCC:              return LowerSETCC(Op, DAG);
14499   case ISD::SELECT:             return LowerSELECT(Op, DAG);
14500   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
14501   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
14502   case ISD::VASTART:            return LowerVASTART(Op, DAG);
14503   case ISD::VAARG:              return LowerVAARG(Op, DAG);
14504   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
14505   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
14506   case ISD::INTRINSIC_VOID:
14507   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
14508   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
14509   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
14510   case ISD::FRAME_TO_ARGS_OFFSET:
14511                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
14512   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
14513   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
14514   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
14515   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
14516   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
14517   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
14518   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
14519   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
14520   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
14521   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
14522   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
14523   case ISD::UMUL_LOHI:
14524   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
14525   case ISD::SRA:
14526   case ISD::SRL:
14527   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
14528   case ISD::SADDO:
14529   case ISD::UADDO:
14530   case ISD::SSUBO:
14531   case ISD::USUBO:
14532   case ISD::SMULO:
14533   case ISD::UMULO:              return LowerXALUO(Op, DAG);
14534   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
14535   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
14536   case ISD::ADDC:
14537   case ISD::ADDE:
14538   case ISD::SUBC:
14539   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
14540   case ISD::ADD:                return LowerADD(Op, DAG);
14541   case ISD::SUB:                return LowerSUB(Op, DAG);
14542   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
14543   }
14544 }
14545
14546 static void ReplaceATOMIC_LOAD(SDNode *Node,
14547                                   SmallVectorImpl<SDValue> &Results,
14548                                   SelectionDAG &DAG) {
14549   SDLoc dl(Node);
14550   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
14551
14552   // Convert wide load -> cmpxchg8b/cmpxchg16b
14553   // FIXME: On 32-bit, load -> fild or movq would be more efficient
14554   //        (The only way to get a 16-byte load is cmpxchg16b)
14555   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
14556   SDValue Zero = DAG.getConstant(0, VT);
14557   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
14558                                Node->getOperand(0),
14559                                Node->getOperand(1), Zero, Zero,
14560                                cast<AtomicSDNode>(Node)->getMemOperand(),
14561                                cast<AtomicSDNode>(Node)->getOrdering(),
14562                                cast<AtomicSDNode>(Node)->getOrdering(),
14563                                cast<AtomicSDNode>(Node)->getSynchScope());
14564   Results.push_back(Swap.getValue(0));
14565   Results.push_back(Swap.getValue(1));
14566 }
14567
14568 static void
14569 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
14570                         SelectionDAG &DAG, unsigned NewOp) {
14571   SDLoc dl(Node);
14572   assert (Node->getValueType(0) == MVT::i64 &&
14573           "Only know how to expand i64 atomics");
14574
14575   SDValue Chain = Node->getOperand(0);
14576   SDValue In1 = Node->getOperand(1);
14577   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
14578                              Node->getOperand(2), DAG.getIntPtrConstant(0));
14579   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
14580                              Node->getOperand(2), DAG.getIntPtrConstant(1));
14581   SDValue Ops[] = { Chain, In1, In2L, In2H };
14582   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
14583   SDValue Result =
14584     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, MVT::i64,
14585                             cast<MemSDNode>(Node)->getMemOperand());
14586   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
14587   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF));
14588   Results.push_back(Result.getValue(2));
14589 }
14590
14591 /// ReplaceNodeResults - Replace a node with an illegal result type
14592 /// with a new node built out of custom code.
14593 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
14594                                            SmallVectorImpl<SDValue>&Results,
14595                                            SelectionDAG &DAG) const {
14596   SDLoc dl(N);
14597   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14598   switch (N->getOpcode()) {
14599   default:
14600     llvm_unreachable("Do not know how to custom type legalize this operation!");
14601   case ISD::SIGN_EXTEND_INREG:
14602   case ISD::ADDC:
14603   case ISD::ADDE:
14604   case ISD::SUBC:
14605   case ISD::SUBE:
14606     // We don't want to expand or promote these.
14607     return;
14608   case ISD::SDIV:
14609   case ISD::UDIV:
14610   case ISD::SREM:
14611   case ISD::UREM:
14612   case ISD::SDIVREM:
14613   case ISD::UDIVREM: {
14614     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
14615     Results.push_back(V);
14616     return;
14617   }
14618   case ISD::FP_TO_SINT:
14619   case ISD::FP_TO_UINT: {
14620     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
14621
14622     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
14623       return;
14624
14625     std::pair<SDValue,SDValue> Vals =
14626         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
14627     SDValue FIST = Vals.first, StackSlot = Vals.second;
14628     if (FIST.getNode()) {
14629       EVT VT = N->getValueType(0);
14630       // Return a load from the stack slot.
14631       if (StackSlot.getNode())
14632         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
14633                                       MachinePointerInfo(),
14634                                       false, false, false, 0));
14635       else
14636         Results.push_back(FIST);
14637     }
14638     return;
14639   }
14640   case ISD::UINT_TO_FP: {
14641     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
14642     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
14643         N->getValueType(0) != MVT::v2f32)
14644       return;
14645     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
14646                                  N->getOperand(0));
14647     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
14648                                      MVT::f64);
14649     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
14650     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
14651                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
14652     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
14653     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
14654     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
14655     return;
14656   }
14657   case ISD::FP_ROUND: {
14658     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
14659         return;
14660     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
14661     Results.push_back(V);
14662     return;
14663   }
14664   case ISD::INTRINSIC_W_CHAIN: {
14665     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
14666     switch (IntNo) {
14667     default : llvm_unreachable("Do not know how to custom type "
14668                                "legalize this intrinsic operation!");
14669     case Intrinsic::x86_rdtsc:
14670       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
14671                                      Results);
14672     case Intrinsic::x86_rdtscp:
14673       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
14674                                      Results);
14675     }
14676   }
14677   case ISD::READCYCLECOUNTER: {
14678     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
14679                                    Results);
14680   }
14681   case ISD::ATOMIC_CMP_SWAP: {
14682     EVT T = N->getValueType(0);
14683     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
14684     bool Regs64bit = T == MVT::i128;
14685     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
14686     SDValue cpInL, cpInH;
14687     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
14688                         DAG.getConstant(0, HalfT));
14689     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
14690                         DAG.getConstant(1, HalfT));
14691     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
14692                              Regs64bit ? X86::RAX : X86::EAX,
14693                              cpInL, SDValue());
14694     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
14695                              Regs64bit ? X86::RDX : X86::EDX,
14696                              cpInH, cpInL.getValue(1));
14697     SDValue swapInL, swapInH;
14698     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
14699                           DAG.getConstant(0, HalfT));
14700     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
14701                           DAG.getConstant(1, HalfT));
14702     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
14703                                Regs64bit ? X86::RBX : X86::EBX,
14704                                swapInL, cpInH.getValue(1));
14705     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
14706                                Regs64bit ? X86::RCX : X86::ECX,
14707                                swapInH, swapInL.getValue(1));
14708     SDValue Ops[] = { swapInH.getValue(0),
14709                       N->getOperand(1),
14710                       swapInH.getValue(1) };
14711     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
14712     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
14713     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
14714                                   X86ISD::LCMPXCHG8_DAG;
14715     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
14716     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
14717                                         Regs64bit ? X86::RAX : X86::EAX,
14718                                         HalfT, Result.getValue(1));
14719     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
14720                                         Regs64bit ? X86::RDX : X86::EDX,
14721                                         HalfT, cpOutL.getValue(2));
14722     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
14723     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
14724     Results.push_back(cpOutH.getValue(1));
14725     return;
14726   }
14727   case ISD::ATOMIC_LOAD_ADD:
14728   case ISD::ATOMIC_LOAD_AND:
14729   case ISD::ATOMIC_LOAD_NAND:
14730   case ISD::ATOMIC_LOAD_OR:
14731   case ISD::ATOMIC_LOAD_SUB:
14732   case ISD::ATOMIC_LOAD_XOR:
14733   case ISD::ATOMIC_LOAD_MAX:
14734   case ISD::ATOMIC_LOAD_MIN:
14735   case ISD::ATOMIC_LOAD_UMAX:
14736   case ISD::ATOMIC_LOAD_UMIN:
14737   case ISD::ATOMIC_SWAP: {
14738     unsigned Opc;
14739     switch (N->getOpcode()) {
14740     default: llvm_unreachable("Unexpected opcode");
14741     case ISD::ATOMIC_LOAD_ADD:
14742       Opc = X86ISD::ATOMADD64_DAG;
14743       break;
14744     case ISD::ATOMIC_LOAD_AND:
14745       Opc = X86ISD::ATOMAND64_DAG;
14746       break;
14747     case ISD::ATOMIC_LOAD_NAND:
14748       Opc = X86ISD::ATOMNAND64_DAG;
14749       break;
14750     case ISD::ATOMIC_LOAD_OR:
14751       Opc = X86ISD::ATOMOR64_DAG;
14752       break;
14753     case ISD::ATOMIC_LOAD_SUB:
14754       Opc = X86ISD::ATOMSUB64_DAG;
14755       break;
14756     case ISD::ATOMIC_LOAD_XOR:
14757       Opc = X86ISD::ATOMXOR64_DAG;
14758       break;
14759     case ISD::ATOMIC_LOAD_MAX:
14760       Opc = X86ISD::ATOMMAX64_DAG;
14761       break;
14762     case ISD::ATOMIC_LOAD_MIN:
14763       Opc = X86ISD::ATOMMIN64_DAG;
14764       break;
14765     case ISD::ATOMIC_LOAD_UMAX:
14766       Opc = X86ISD::ATOMUMAX64_DAG;
14767       break;
14768     case ISD::ATOMIC_LOAD_UMIN:
14769       Opc = X86ISD::ATOMUMIN64_DAG;
14770       break;
14771     case ISD::ATOMIC_SWAP:
14772       Opc = X86ISD::ATOMSWAP64_DAG;
14773       break;
14774     }
14775     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
14776     return;
14777   }
14778   case ISD::ATOMIC_LOAD: {
14779     ReplaceATOMIC_LOAD(N, Results, DAG);
14780     return;
14781   }
14782   case ISD::BITCAST: {
14783     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
14784     EVT DstVT = N->getValueType(0);
14785     EVT SrcVT = N->getOperand(0)->getValueType(0);
14786
14787     if (SrcVT != MVT::f64 ||
14788         (DstVT != MVT::v2i32 && DstVT != MVT::v4i16 && DstVT != MVT::v8i8))
14789       return;
14790
14791     unsigned NumElts = DstVT.getVectorNumElements();
14792     EVT SVT = DstVT.getVectorElementType();
14793     EVT WiderVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
14794     SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
14795                                    MVT::v2f64, N->getOperand(0));
14796     SDValue ToVecInt = DAG.getNode(ISD::BITCAST, dl, WiderVT, Expanded);
14797
14798     SmallVector<SDValue, 8> Elts;
14799     for (unsigned i = 0, e = NumElts; i != e; ++i)
14800       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT,
14801                                    ToVecInt, DAG.getIntPtrConstant(i)));
14802
14803     Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, DstVT, Elts));
14804   }
14805   }
14806 }
14807
14808 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
14809   switch (Opcode) {
14810   default: return nullptr;
14811   case X86ISD::BSF:                return "X86ISD::BSF";
14812   case X86ISD::BSR:                return "X86ISD::BSR";
14813   case X86ISD::SHLD:               return "X86ISD::SHLD";
14814   case X86ISD::SHRD:               return "X86ISD::SHRD";
14815   case X86ISD::FAND:               return "X86ISD::FAND";
14816   case X86ISD::FANDN:              return "X86ISD::FANDN";
14817   case X86ISD::FOR:                return "X86ISD::FOR";
14818   case X86ISD::FXOR:               return "X86ISD::FXOR";
14819   case X86ISD::FSRL:               return "X86ISD::FSRL";
14820   case X86ISD::FILD:               return "X86ISD::FILD";
14821   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
14822   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
14823   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
14824   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
14825   case X86ISD::FLD:                return "X86ISD::FLD";
14826   case X86ISD::FST:                return "X86ISD::FST";
14827   case X86ISD::CALL:               return "X86ISD::CALL";
14828   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
14829   case X86ISD::BT:                 return "X86ISD::BT";
14830   case X86ISD::CMP:                return "X86ISD::CMP";
14831   case X86ISD::COMI:               return "X86ISD::COMI";
14832   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
14833   case X86ISD::CMPM:               return "X86ISD::CMPM";
14834   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
14835   case X86ISD::SETCC:              return "X86ISD::SETCC";
14836   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
14837   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
14838   case X86ISD::CMOV:               return "X86ISD::CMOV";
14839   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
14840   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
14841   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
14842   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
14843   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
14844   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
14845   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
14846   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
14847   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
14848   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
14849   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
14850   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
14851   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
14852   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
14853   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
14854   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
14855   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
14856   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
14857   case X86ISD::HADD:               return "X86ISD::HADD";
14858   case X86ISD::HSUB:               return "X86ISD::HSUB";
14859   case X86ISD::FHADD:              return "X86ISD::FHADD";
14860   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
14861   case X86ISD::UMAX:               return "X86ISD::UMAX";
14862   case X86ISD::UMIN:               return "X86ISD::UMIN";
14863   case X86ISD::SMAX:               return "X86ISD::SMAX";
14864   case X86ISD::SMIN:               return "X86ISD::SMIN";
14865   case X86ISD::FMAX:               return "X86ISD::FMAX";
14866   case X86ISD::FMIN:               return "X86ISD::FMIN";
14867   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
14868   case X86ISD::FMINC:              return "X86ISD::FMINC";
14869   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
14870   case X86ISD::FRCP:               return "X86ISD::FRCP";
14871   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
14872   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
14873   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
14874   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
14875   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
14876   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
14877   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
14878   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
14879   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
14880   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
14881   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
14882   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
14883   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
14884   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
14885   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
14886   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
14887   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
14888   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
14889   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
14890   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
14891   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
14892   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
14893   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
14894   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
14895   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
14896   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
14897   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
14898   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
14899   case X86ISD::VSHL:               return "X86ISD::VSHL";
14900   case X86ISD::VSRL:               return "X86ISD::VSRL";
14901   case X86ISD::VSRA:               return "X86ISD::VSRA";
14902   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
14903   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
14904   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
14905   case X86ISD::CMPP:               return "X86ISD::CMPP";
14906   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
14907   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
14908   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
14909   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
14910   case X86ISD::ADD:                return "X86ISD::ADD";
14911   case X86ISD::SUB:                return "X86ISD::SUB";
14912   case X86ISD::ADC:                return "X86ISD::ADC";
14913   case X86ISD::SBB:                return "X86ISD::SBB";
14914   case X86ISD::SMUL:               return "X86ISD::SMUL";
14915   case X86ISD::UMUL:               return "X86ISD::UMUL";
14916   case X86ISD::INC:                return "X86ISD::INC";
14917   case X86ISD::DEC:                return "X86ISD::DEC";
14918   case X86ISD::OR:                 return "X86ISD::OR";
14919   case X86ISD::XOR:                return "X86ISD::XOR";
14920   case X86ISD::AND:                return "X86ISD::AND";
14921   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
14922   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
14923   case X86ISD::PTEST:              return "X86ISD::PTEST";
14924   case X86ISD::TESTP:              return "X86ISD::TESTP";
14925   case X86ISD::TESTM:              return "X86ISD::TESTM";
14926   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
14927   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
14928   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14929   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14930   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14931   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14932   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14933   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14934   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14935   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14936   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14937   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14938   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14939   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14940   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14941   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14942   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14943   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14944   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14945   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14946   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14947   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
14948   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14949   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14950   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14951   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14952   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
14953   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14954   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14955   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
14956   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14957   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14958   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14959   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14960   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14961   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14962   case X86ISD::SAHF:               return "X86ISD::SAHF";
14963   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14964   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14965   case X86ISD::FMADD:              return "X86ISD::FMADD";
14966   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14967   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14968   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14969   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14970   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14971   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14972   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14973   case X86ISD::XTEST:              return "X86ISD::XTEST";
14974   }
14975 }
14976
14977 // isLegalAddressingMode - Return true if the addressing mode represented
14978 // by AM is legal for this target, for a load/store of the specified type.
14979 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14980                                               Type *Ty) const {
14981   // X86 supports extremely general addressing modes.
14982   CodeModel::Model M = getTargetMachine().getCodeModel();
14983   Reloc::Model R = getTargetMachine().getRelocationModel();
14984
14985   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14986   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
14987     return false;
14988
14989   if (AM.BaseGV) {
14990     unsigned GVFlags =
14991       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14992
14993     // If a reference to this global requires an extra load, we can't fold it.
14994     if (isGlobalStubReference(GVFlags))
14995       return false;
14996
14997     // If BaseGV requires a register for the PIC base, we cannot also have a
14998     // BaseReg specified.
14999     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
15000       return false;
15001
15002     // If lower 4G is not available, then we must use rip-relative addressing.
15003     if ((M != CodeModel::Small || R != Reloc::Static) &&
15004         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
15005       return false;
15006   }
15007
15008   switch (AM.Scale) {
15009   case 0:
15010   case 1:
15011   case 2:
15012   case 4:
15013   case 8:
15014     // These scales always work.
15015     break;
15016   case 3:
15017   case 5:
15018   case 9:
15019     // These scales are formed with basereg+scalereg.  Only accept if there is
15020     // no basereg yet.
15021     if (AM.HasBaseReg)
15022       return false;
15023     break;
15024   default:  // Other stuff never works.
15025     return false;
15026   }
15027
15028   return true;
15029 }
15030
15031 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
15032   unsigned Bits = Ty->getScalarSizeInBits();
15033
15034   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
15035   // particularly cheaper than those without.
15036   if (Bits == 8)
15037     return false;
15038
15039   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
15040   // variable shifts just as cheap as scalar ones.
15041   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
15042     return false;
15043
15044   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
15045   // fully general vector.
15046   return true;
15047 }
15048
15049 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
15050   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
15051     return false;
15052   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
15053   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
15054   return NumBits1 > NumBits2;
15055 }
15056
15057 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
15058   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
15059     return false;
15060
15061   if (!isTypeLegal(EVT::getEVT(Ty1)))
15062     return false;
15063
15064   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
15065
15066   // Assuming the caller doesn't have a zeroext or signext return parameter,
15067   // truncation all the way down to i1 is valid.
15068   return true;
15069 }
15070
15071 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
15072   return isInt<32>(Imm);
15073 }
15074
15075 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
15076   // Can also use sub to handle negated immediates.
15077   return isInt<32>(Imm);
15078 }
15079
15080 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
15081   if (!VT1.isInteger() || !VT2.isInteger())
15082     return false;
15083   unsigned NumBits1 = VT1.getSizeInBits();
15084   unsigned NumBits2 = VT2.getSizeInBits();
15085   return NumBits1 > NumBits2;
15086 }
15087
15088 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
15089   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
15090   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
15091 }
15092
15093 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
15094   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
15095   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
15096 }
15097
15098 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
15099   EVT VT1 = Val.getValueType();
15100   if (isZExtFree(VT1, VT2))
15101     return true;
15102
15103   if (Val.getOpcode() != ISD::LOAD)
15104     return false;
15105
15106   if (!VT1.isSimple() || !VT1.isInteger() ||
15107       !VT2.isSimple() || !VT2.isInteger())
15108     return false;
15109
15110   switch (VT1.getSimpleVT().SimpleTy) {
15111   default: break;
15112   case MVT::i8:
15113   case MVT::i16:
15114   case MVT::i32:
15115     // X86 has 8, 16, and 32-bit zero-extending loads.
15116     return true;
15117   }
15118
15119   return false;
15120 }
15121
15122 bool
15123 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
15124   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
15125     return false;
15126
15127   VT = VT.getScalarType();
15128
15129   if (!VT.isSimple())
15130     return false;
15131
15132   switch (VT.getSimpleVT().SimpleTy) {
15133   case MVT::f32:
15134   case MVT::f64:
15135     return true;
15136   default:
15137     break;
15138   }
15139
15140   return false;
15141 }
15142
15143 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
15144   // i16 instructions are longer (0x66 prefix) and potentially slower.
15145   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
15146 }
15147
15148 /// isShuffleMaskLegal - Targets can use this to indicate that they only
15149 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
15150 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
15151 /// are assumed to be legal.
15152 bool
15153 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
15154                                       EVT VT) const {
15155   if (!VT.isSimple())
15156     return false;
15157
15158   MVT SVT = VT.getSimpleVT();
15159
15160   // Very little shuffling can be done for 64-bit vectors right now.
15161   if (VT.getSizeInBits() == 64)
15162     return false;
15163
15164   // If this is a single-input shuffle with no 128 bit lane crossings we can
15165   // lower it into pshufb.
15166   if ((SVT.is128BitVector() && Subtarget->hasSSSE3()) ||
15167       (SVT.is256BitVector() && Subtarget->hasInt256())) {
15168     bool isLegal = true;
15169     for (unsigned I = 0, E = M.size(); I != E; ++I) {
15170       if (M[I] >= (int)SVT.getVectorNumElements() ||
15171           ShuffleCrosses128bitLane(SVT, I, M[I])) {
15172         isLegal = false;
15173         break;
15174       }
15175     }
15176     if (isLegal)
15177       return true;
15178   }
15179
15180   // FIXME: blends, shifts.
15181   return (SVT.getVectorNumElements() == 2 ||
15182           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
15183           isMOVLMask(M, SVT) ||
15184           isSHUFPMask(M, SVT) ||
15185           isPSHUFDMask(M, SVT) ||
15186           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
15187           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
15188           isPALIGNRMask(M, SVT, Subtarget) ||
15189           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
15190           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
15191           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
15192           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
15193           isBlendMask(M, SVT, Subtarget->hasSSE41(), Subtarget->hasInt256()));
15194 }
15195
15196 bool
15197 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
15198                                           EVT VT) const {
15199   if (!VT.isSimple())
15200     return false;
15201
15202   MVT SVT = VT.getSimpleVT();
15203   unsigned NumElts = SVT.getVectorNumElements();
15204   // FIXME: This collection of masks seems suspect.
15205   if (NumElts == 2)
15206     return true;
15207   if (NumElts == 4 && SVT.is128BitVector()) {
15208     return (isMOVLMask(Mask, SVT)  ||
15209             isCommutedMOVLMask(Mask, SVT, true) ||
15210             isSHUFPMask(Mask, SVT) ||
15211             isSHUFPMask(Mask, SVT, /* Commuted */ true));
15212   }
15213   return false;
15214 }
15215
15216 //===----------------------------------------------------------------------===//
15217 //                           X86 Scheduler Hooks
15218 //===----------------------------------------------------------------------===//
15219
15220 /// Utility function to emit xbegin specifying the start of an RTM region.
15221 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
15222                                      const TargetInstrInfo *TII) {
15223   DebugLoc DL = MI->getDebugLoc();
15224
15225   const BasicBlock *BB = MBB->getBasicBlock();
15226   MachineFunction::iterator I = MBB;
15227   ++I;
15228
15229   // For the v = xbegin(), we generate
15230   //
15231   // thisMBB:
15232   //  xbegin sinkMBB
15233   //
15234   // mainMBB:
15235   //  eax = -1
15236   //
15237   // sinkMBB:
15238   //  v = eax
15239
15240   MachineBasicBlock *thisMBB = MBB;
15241   MachineFunction *MF = MBB->getParent();
15242   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15243   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15244   MF->insert(I, mainMBB);
15245   MF->insert(I, sinkMBB);
15246
15247   // Transfer the remainder of BB and its successor edges to sinkMBB.
15248   sinkMBB->splice(sinkMBB->begin(), MBB,
15249                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
15250   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15251
15252   // thisMBB:
15253   //  xbegin sinkMBB
15254   //  # fallthrough to mainMBB
15255   //  # abortion to sinkMBB
15256   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
15257   thisMBB->addSuccessor(mainMBB);
15258   thisMBB->addSuccessor(sinkMBB);
15259
15260   // mainMBB:
15261   //  EAX = -1
15262   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
15263   mainMBB->addSuccessor(sinkMBB);
15264
15265   // sinkMBB:
15266   // EAX is live into the sinkMBB
15267   sinkMBB->addLiveIn(X86::EAX);
15268   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15269           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15270     .addReg(X86::EAX);
15271
15272   MI->eraseFromParent();
15273   return sinkMBB;
15274 }
15275
15276 // Get CMPXCHG opcode for the specified data type.
15277 static unsigned getCmpXChgOpcode(EVT VT) {
15278   switch (VT.getSimpleVT().SimpleTy) {
15279   case MVT::i8:  return X86::LCMPXCHG8;
15280   case MVT::i16: return X86::LCMPXCHG16;
15281   case MVT::i32: return X86::LCMPXCHG32;
15282   case MVT::i64: return X86::LCMPXCHG64;
15283   default:
15284     break;
15285   }
15286   llvm_unreachable("Invalid operand size!");
15287 }
15288
15289 // Get LOAD opcode for the specified data type.
15290 static unsigned getLoadOpcode(EVT VT) {
15291   switch (VT.getSimpleVT().SimpleTy) {
15292   case MVT::i8:  return X86::MOV8rm;
15293   case MVT::i16: return X86::MOV16rm;
15294   case MVT::i32: return X86::MOV32rm;
15295   case MVT::i64: return X86::MOV64rm;
15296   default:
15297     break;
15298   }
15299   llvm_unreachable("Invalid operand size!");
15300 }
15301
15302 // Get opcode of the non-atomic one from the specified atomic instruction.
15303 static unsigned getNonAtomicOpcode(unsigned Opc) {
15304   switch (Opc) {
15305   case X86::ATOMAND8:  return X86::AND8rr;
15306   case X86::ATOMAND16: return X86::AND16rr;
15307   case X86::ATOMAND32: return X86::AND32rr;
15308   case X86::ATOMAND64: return X86::AND64rr;
15309   case X86::ATOMOR8:   return X86::OR8rr;
15310   case X86::ATOMOR16:  return X86::OR16rr;
15311   case X86::ATOMOR32:  return X86::OR32rr;
15312   case X86::ATOMOR64:  return X86::OR64rr;
15313   case X86::ATOMXOR8:  return X86::XOR8rr;
15314   case X86::ATOMXOR16: return X86::XOR16rr;
15315   case X86::ATOMXOR32: return X86::XOR32rr;
15316   case X86::ATOMXOR64: return X86::XOR64rr;
15317   }
15318   llvm_unreachable("Unhandled atomic-load-op opcode!");
15319 }
15320
15321 // Get opcode of the non-atomic one from the specified atomic instruction with
15322 // extra opcode.
15323 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
15324                                                unsigned &ExtraOpc) {
15325   switch (Opc) {
15326   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
15327   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
15328   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
15329   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
15330   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
15331   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
15332   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
15333   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
15334   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
15335   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
15336   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
15337   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
15338   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
15339   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
15340   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
15341   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
15342   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
15343   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
15344   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
15345   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
15346   }
15347   llvm_unreachable("Unhandled atomic-load-op opcode!");
15348 }
15349
15350 // Get opcode of the non-atomic one from the specified atomic instruction for
15351 // 64-bit data type on 32-bit target.
15352 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
15353   switch (Opc) {
15354   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
15355   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
15356   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
15357   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
15358   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
15359   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
15360   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
15361   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
15362   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
15363   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
15364   }
15365   llvm_unreachable("Unhandled atomic-load-op opcode!");
15366 }
15367
15368 // Get opcode of the non-atomic one from the specified atomic instruction for
15369 // 64-bit data type on 32-bit target with extra opcode.
15370 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
15371                                                    unsigned &HiOpc,
15372                                                    unsigned &ExtraOpc) {
15373   switch (Opc) {
15374   case X86::ATOMNAND6432:
15375     ExtraOpc = X86::NOT32r;
15376     HiOpc = X86::AND32rr;
15377     return X86::AND32rr;
15378   }
15379   llvm_unreachable("Unhandled atomic-load-op opcode!");
15380 }
15381
15382 // Get pseudo CMOV opcode from the specified data type.
15383 static unsigned getPseudoCMOVOpc(EVT VT) {
15384   switch (VT.getSimpleVT().SimpleTy) {
15385   case MVT::i8:  return X86::CMOV_GR8;
15386   case MVT::i16: return X86::CMOV_GR16;
15387   case MVT::i32: return X86::CMOV_GR32;
15388   default:
15389     break;
15390   }
15391   llvm_unreachable("Unknown CMOV opcode!");
15392 }
15393
15394 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
15395 // They will be translated into a spin-loop or compare-exchange loop from
15396 //
15397 //    ...
15398 //    dst = atomic-fetch-op MI.addr, MI.val
15399 //    ...
15400 //
15401 // to
15402 //
15403 //    ...
15404 //    t1 = LOAD MI.addr
15405 // loop:
15406 //    t4 = phi(t1, t3 / loop)
15407 //    t2 = OP MI.val, t4
15408 //    EAX = t4
15409 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
15410 //    t3 = EAX
15411 //    JNE loop
15412 // sink:
15413 //    dst = t3
15414 //    ...
15415 MachineBasicBlock *
15416 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
15417                                        MachineBasicBlock *MBB) const {
15418   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15419   DebugLoc DL = MI->getDebugLoc();
15420
15421   MachineFunction *MF = MBB->getParent();
15422   MachineRegisterInfo &MRI = MF->getRegInfo();
15423
15424   const BasicBlock *BB = MBB->getBasicBlock();
15425   MachineFunction::iterator I = MBB;
15426   ++I;
15427
15428   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
15429          "Unexpected number of operands");
15430
15431   assert(MI->hasOneMemOperand() &&
15432          "Expected atomic-load-op to have one memoperand");
15433
15434   // Memory Reference
15435   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15436   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15437
15438   unsigned DstReg, SrcReg;
15439   unsigned MemOpndSlot;
15440
15441   unsigned CurOp = 0;
15442
15443   DstReg = MI->getOperand(CurOp++).getReg();
15444   MemOpndSlot = CurOp;
15445   CurOp += X86::AddrNumOperands;
15446   SrcReg = MI->getOperand(CurOp++).getReg();
15447
15448   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15449   MVT::SimpleValueType VT = *RC->vt_begin();
15450   unsigned t1 = MRI.createVirtualRegister(RC);
15451   unsigned t2 = MRI.createVirtualRegister(RC);
15452   unsigned t3 = MRI.createVirtualRegister(RC);
15453   unsigned t4 = MRI.createVirtualRegister(RC);
15454   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
15455
15456   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
15457   unsigned LOADOpc = getLoadOpcode(VT);
15458
15459   // For the atomic load-arith operator, we generate
15460   //
15461   //  thisMBB:
15462   //    t1 = LOAD [MI.addr]
15463   //  mainMBB:
15464   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
15465   //    t1 = OP MI.val, EAX
15466   //    EAX = t4
15467   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
15468   //    t3 = EAX
15469   //    JNE mainMBB
15470   //  sinkMBB:
15471   //    dst = t3
15472
15473   MachineBasicBlock *thisMBB = MBB;
15474   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15475   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15476   MF->insert(I, mainMBB);
15477   MF->insert(I, sinkMBB);
15478
15479   MachineInstrBuilder MIB;
15480
15481   // Transfer the remainder of BB and its successor edges to sinkMBB.
15482   sinkMBB->splice(sinkMBB->begin(), MBB,
15483                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
15484   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15485
15486   // thisMBB:
15487   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
15488   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15489     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15490     if (NewMO.isReg())
15491       NewMO.setIsKill(false);
15492     MIB.addOperand(NewMO);
15493   }
15494   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
15495     unsigned flags = (*MMOI)->getFlags();
15496     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
15497     MachineMemOperand *MMO =
15498       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
15499                                (*MMOI)->getSize(),
15500                                (*MMOI)->getBaseAlignment(),
15501                                (*MMOI)->getTBAAInfo(),
15502                                (*MMOI)->getRanges());
15503     MIB.addMemOperand(MMO);
15504   }
15505
15506   thisMBB->addSuccessor(mainMBB);
15507
15508   // mainMBB:
15509   MachineBasicBlock *origMainMBB = mainMBB;
15510
15511   // Add a PHI.
15512   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
15513                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
15514
15515   unsigned Opc = MI->getOpcode();
15516   switch (Opc) {
15517   default:
15518     llvm_unreachable("Unhandled atomic-load-op opcode!");
15519   case X86::ATOMAND8:
15520   case X86::ATOMAND16:
15521   case X86::ATOMAND32:
15522   case X86::ATOMAND64:
15523   case X86::ATOMOR8:
15524   case X86::ATOMOR16:
15525   case X86::ATOMOR32:
15526   case X86::ATOMOR64:
15527   case X86::ATOMXOR8:
15528   case X86::ATOMXOR16:
15529   case X86::ATOMXOR32:
15530   case X86::ATOMXOR64: {
15531     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
15532     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
15533       .addReg(t4);
15534     break;
15535   }
15536   case X86::ATOMNAND8:
15537   case X86::ATOMNAND16:
15538   case X86::ATOMNAND32:
15539   case X86::ATOMNAND64: {
15540     unsigned Tmp = MRI.createVirtualRegister(RC);
15541     unsigned NOTOpc;
15542     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
15543     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
15544       .addReg(t4);
15545     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
15546     break;
15547   }
15548   case X86::ATOMMAX8:
15549   case X86::ATOMMAX16:
15550   case X86::ATOMMAX32:
15551   case X86::ATOMMAX64:
15552   case X86::ATOMMIN8:
15553   case X86::ATOMMIN16:
15554   case X86::ATOMMIN32:
15555   case X86::ATOMMIN64:
15556   case X86::ATOMUMAX8:
15557   case X86::ATOMUMAX16:
15558   case X86::ATOMUMAX32:
15559   case X86::ATOMUMAX64:
15560   case X86::ATOMUMIN8:
15561   case X86::ATOMUMIN16:
15562   case X86::ATOMUMIN32:
15563   case X86::ATOMUMIN64: {
15564     unsigned CMPOpc;
15565     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
15566
15567     BuildMI(mainMBB, DL, TII->get(CMPOpc))
15568       .addReg(SrcReg)
15569       .addReg(t4);
15570
15571     if (Subtarget->hasCMov()) {
15572       if (VT != MVT::i8) {
15573         // Native support
15574         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
15575           .addReg(SrcReg)
15576           .addReg(t4);
15577       } else {
15578         // Promote i8 to i32 to use CMOV32
15579         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15580         const TargetRegisterClass *RC32 =
15581           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
15582         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
15583         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
15584         unsigned Tmp = MRI.createVirtualRegister(RC32);
15585
15586         unsigned Undef = MRI.createVirtualRegister(RC32);
15587         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
15588
15589         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
15590           .addReg(Undef)
15591           .addReg(SrcReg)
15592           .addImm(X86::sub_8bit);
15593         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
15594           .addReg(Undef)
15595           .addReg(t4)
15596           .addImm(X86::sub_8bit);
15597
15598         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
15599           .addReg(SrcReg32)
15600           .addReg(AccReg32);
15601
15602         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
15603           .addReg(Tmp, 0, X86::sub_8bit);
15604       }
15605     } else {
15606       // Use pseudo select and lower them.
15607       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
15608              "Invalid atomic-load-op transformation!");
15609       unsigned SelOpc = getPseudoCMOVOpc(VT);
15610       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
15611       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
15612       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
15613               .addReg(SrcReg).addReg(t4)
15614               .addImm(CC);
15615       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15616       // Replace the original PHI node as mainMBB is changed after CMOV
15617       // lowering.
15618       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
15619         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
15620       Phi->eraseFromParent();
15621     }
15622     break;
15623   }
15624   }
15625
15626   // Copy PhyReg back from virtual register.
15627   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
15628     .addReg(t4);
15629
15630   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
15631   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15632     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15633     if (NewMO.isReg())
15634       NewMO.setIsKill(false);
15635     MIB.addOperand(NewMO);
15636   }
15637   MIB.addReg(t2);
15638   MIB.setMemRefs(MMOBegin, MMOEnd);
15639
15640   // Copy PhyReg back to virtual register.
15641   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
15642     .addReg(PhyReg);
15643
15644   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
15645
15646   mainMBB->addSuccessor(origMainMBB);
15647   mainMBB->addSuccessor(sinkMBB);
15648
15649   // sinkMBB:
15650   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15651           TII->get(TargetOpcode::COPY), DstReg)
15652     .addReg(t3);
15653
15654   MI->eraseFromParent();
15655   return sinkMBB;
15656 }
15657
15658 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
15659 // instructions. They will be translated into a spin-loop or compare-exchange
15660 // loop from
15661 //
15662 //    ...
15663 //    dst = atomic-fetch-op MI.addr, MI.val
15664 //    ...
15665 //
15666 // to
15667 //
15668 //    ...
15669 //    t1L = LOAD [MI.addr + 0]
15670 //    t1H = LOAD [MI.addr + 4]
15671 // loop:
15672 //    t4L = phi(t1L, t3L / loop)
15673 //    t4H = phi(t1H, t3H / loop)
15674 //    t2L = OP MI.val.lo, t4L
15675 //    t2H = OP MI.val.hi, t4H
15676 //    EAX = t4L
15677 //    EDX = t4H
15678 //    EBX = t2L
15679 //    ECX = t2H
15680 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
15681 //    t3L = EAX
15682 //    t3H = EDX
15683 //    JNE loop
15684 // sink:
15685 //    dstL = t3L
15686 //    dstH = t3H
15687 //    ...
15688 MachineBasicBlock *
15689 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
15690                                            MachineBasicBlock *MBB) const {
15691   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15692   DebugLoc DL = MI->getDebugLoc();
15693
15694   MachineFunction *MF = MBB->getParent();
15695   MachineRegisterInfo &MRI = MF->getRegInfo();
15696
15697   const BasicBlock *BB = MBB->getBasicBlock();
15698   MachineFunction::iterator I = MBB;
15699   ++I;
15700
15701   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
15702          "Unexpected number of operands");
15703
15704   assert(MI->hasOneMemOperand() &&
15705          "Expected atomic-load-op32 to have one memoperand");
15706
15707   // Memory Reference
15708   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15709   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15710
15711   unsigned DstLoReg, DstHiReg;
15712   unsigned SrcLoReg, SrcHiReg;
15713   unsigned MemOpndSlot;
15714
15715   unsigned CurOp = 0;
15716
15717   DstLoReg = MI->getOperand(CurOp++).getReg();
15718   DstHiReg = MI->getOperand(CurOp++).getReg();
15719   MemOpndSlot = CurOp;
15720   CurOp += X86::AddrNumOperands;
15721   SrcLoReg = MI->getOperand(CurOp++).getReg();
15722   SrcHiReg = MI->getOperand(CurOp++).getReg();
15723
15724   const TargetRegisterClass *RC = &X86::GR32RegClass;
15725   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
15726
15727   unsigned t1L = MRI.createVirtualRegister(RC);
15728   unsigned t1H = MRI.createVirtualRegister(RC);
15729   unsigned t2L = MRI.createVirtualRegister(RC);
15730   unsigned t2H = MRI.createVirtualRegister(RC);
15731   unsigned t3L = MRI.createVirtualRegister(RC);
15732   unsigned t3H = MRI.createVirtualRegister(RC);
15733   unsigned t4L = MRI.createVirtualRegister(RC);
15734   unsigned t4H = MRI.createVirtualRegister(RC);
15735
15736   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
15737   unsigned LOADOpc = X86::MOV32rm;
15738
15739   // For the atomic load-arith operator, we generate
15740   //
15741   //  thisMBB:
15742   //    t1L = LOAD [MI.addr + 0]
15743   //    t1H = LOAD [MI.addr + 4]
15744   //  mainMBB:
15745   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
15746   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
15747   //    t2L = OP MI.val.lo, t4L
15748   //    t2H = OP MI.val.hi, t4H
15749   //    EBX = t2L
15750   //    ECX = t2H
15751   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
15752   //    t3L = EAX
15753   //    t3H = EDX
15754   //    JNE loop
15755   //  sinkMBB:
15756   //    dstL = t3L
15757   //    dstH = t3H
15758
15759   MachineBasicBlock *thisMBB = MBB;
15760   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15761   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15762   MF->insert(I, mainMBB);
15763   MF->insert(I, sinkMBB);
15764
15765   MachineInstrBuilder MIB;
15766
15767   // Transfer the remainder of BB and its successor edges to sinkMBB.
15768   sinkMBB->splice(sinkMBB->begin(), MBB,
15769                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
15770   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15771
15772   // thisMBB:
15773   // Lo
15774   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
15775   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15776     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15777     if (NewMO.isReg())
15778       NewMO.setIsKill(false);
15779     MIB.addOperand(NewMO);
15780   }
15781   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
15782     unsigned flags = (*MMOI)->getFlags();
15783     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
15784     MachineMemOperand *MMO =
15785       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
15786                                (*MMOI)->getSize(),
15787                                (*MMOI)->getBaseAlignment(),
15788                                (*MMOI)->getTBAAInfo(),
15789                                (*MMOI)->getRanges());
15790     MIB.addMemOperand(MMO);
15791   };
15792   MachineInstr *LowMI = MIB;
15793
15794   // Hi
15795   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
15796   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15797     if (i == X86::AddrDisp) {
15798       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
15799     } else {
15800       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15801       if (NewMO.isReg())
15802         NewMO.setIsKill(false);
15803       MIB.addOperand(NewMO);
15804     }
15805   }
15806   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
15807
15808   thisMBB->addSuccessor(mainMBB);
15809
15810   // mainMBB:
15811   MachineBasicBlock *origMainMBB = mainMBB;
15812
15813   // Add PHIs.
15814   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
15815                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
15816   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
15817                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15818
15819   unsigned Opc = MI->getOpcode();
15820   switch (Opc) {
15821   default:
15822     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
15823   case X86::ATOMAND6432:
15824   case X86::ATOMOR6432:
15825   case X86::ATOMXOR6432:
15826   case X86::ATOMADD6432:
15827   case X86::ATOMSUB6432: {
15828     unsigned HiOpc;
15829     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15830     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
15831       .addReg(SrcLoReg);
15832     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
15833       .addReg(SrcHiReg);
15834     break;
15835   }
15836   case X86::ATOMNAND6432: {
15837     unsigned HiOpc, NOTOpc;
15838     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
15839     unsigned TmpL = MRI.createVirtualRegister(RC);
15840     unsigned TmpH = MRI.createVirtualRegister(RC);
15841     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
15842       .addReg(t4L);
15843     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
15844       .addReg(t4H);
15845     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
15846     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
15847     break;
15848   }
15849   case X86::ATOMMAX6432:
15850   case X86::ATOMMIN6432:
15851   case X86::ATOMUMAX6432:
15852   case X86::ATOMUMIN6432: {
15853     unsigned HiOpc;
15854     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15855     unsigned cL = MRI.createVirtualRegister(RC8);
15856     unsigned cH = MRI.createVirtualRegister(RC8);
15857     unsigned cL32 = MRI.createVirtualRegister(RC);
15858     unsigned cH32 = MRI.createVirtualRegister(RC);
15859     unsigned cc = MRI.createVirtualRegister(RC);
15860     // cl := cmp src_lo, lo
15861     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
15862       .addReg(SrcLoReg).addReg(t4L);
15863     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
15864     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
15865     // ch := cmp src_hi, hi
15866     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
15867       .addReg(SrcHiReg).addReg(t4H);
15868     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
15869     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
15870     // cc := if (src_hi == hi) ? cl : ch;
15871     if (Subtarget->hasCMov()) {
15872       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
15873         .addReg(cH32).addReg(cL32);
15874     } else {
15875       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
15876               .addReg(cH32).addReg(cL32)
15877               .addImm(X86::COND_E);
15878       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15879     }
15880     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
15881     if (Subtarget->hasCMov()) {
15882       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
15883         .addReg(SrcLoReg).addReg(t4L);
15884       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
15885         .addReg(SrcHiReg).addReg(t4H);
15886     } else {
15887       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
15888               .addReg(SrcLoReg).addReg(t4L)
15889               .addImm(X86::COND_NE);
15890       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15891       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
15892       // 2nd CMOV lowering.
15893       mainMBB->addLiveIn(X86::EFLAGS);
15894       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
15895               .addReg(SrcHiReg).addReg(t4H)
15896               .addImm(X86::COND_NE);
15897       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15898       // Replace the original PHI node as mainMBB is changed after CMOV
15899       // lowering.
15900       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
15901         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
15902       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
15903         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15904       PhiL->eraseFromParent();
15905       PhiH->eraseFromParent();
15906     }
15907     break;
15908   }
15909   case X86::ATOMSWAP6432: {
15910     unsigned HiOpc;
15911     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15912     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
15913     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
15914     break;
15915   }
15916   }
15917
15918   // Copy EDX:EAX back from HiReg:LoReg
15919   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
15920   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
15921   // Copy ECX:EBX from t1H:t1L
15922   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
15923   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
15924
15925   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
15926   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15927     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15928     if (NewMO.isReg())
15929       NewMO.setIsKill(false);
15930     MIB.addOperand(NewMO);
15931   }
15932   MIB.setMemRefs(MMOBegin, MMOEnd);
15933
15934   // Copy EDX:EAX back to t3H:t3L
15935   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
15936   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
15937
15938   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
15939
15940   mainMBB->addSuccessor(origMainMBB);
15941   mainMBB->addSuccessor(sinkMBB);
15942
15943   // sinkMBB:
15944   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15945           TII->get(TargetOpcode::COPY), DstLoReg)
15946     .addReg(t3L);
15947   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15948           TII->get(TargetOpcode::COPY), DstHiReg)
15949     .addReg(t3H);
15950
15951   MI->eraseFromParent();
15952   return sinkMBB;
15953 }
15954
15955 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
15956 // or XMM0_V32I8 in AVX all of this code can be replaced with that
15957 // in the .td file.
15958 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
15959                                        const TargetInstrInfo *TII) {
15960   unsigned Opc;
15961   switch (MI->getOpcode()) {
15962   default: llvm_unreachable("illegal opcode!");
15963   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
15964   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
15965   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
15966   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15967   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15968   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15969   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15970   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15971   }
15972
15973   DebugLoc dl = MI->getDebugLoc();
15974   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15975
15976   unsigned NumArgs = MI->getNumOperands();
15977   for (unsigned i = 1; i < NumArgs; ++i) {
15978     MachineOperand &Op = MI->getOperand(i);
15979     if (!(Op.isReg() && Op.isImplicit()))
15980       MIB.addOperand(Op);
15981   }
15982   if (MI->hasOneMemOperand())
15983     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15984
15985   BuildMI(*BB, MI, dl,
15986     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15987     .addReg(X86::XMM0);
15988
15989   MI->eraseFromParent();
15990   return BB;
15991 }
15992
15993 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15994 // defs in an instruction pattern
15995 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15996                                        const TargetInstrInfo *TII) {
15997   unsigned Opc;
15998   switch (MI->getOpcode()) {
15999   default: llvm_unreachable("illegal opcode!");
16000   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
16001   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
16002   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
16003   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
16004   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
16005   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
16006   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
16007   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
16008   }
16009
16010   DebugLoc dl = MI->getDebugLoc();
16011   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
16012
16013   unsigned NumArgs = MI->getNumOperands(); // remove the results
16014   for (unsigned i = 1; i < NumArgs; ++i) {
16015     MachineOperand &Op = MI->getOperand(i);
16016     if (!(Op.isReg() && Op.isImplicit()))
16017       MIB.addOperand(Op);
16018   }
16019   if (MI->hasOneMemOperand())
16020     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
16021
16022   BuildMI(*BB, MI, dl,
16023     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
16024     .addReg(X86::ECX);
16025
16026   MI->eraseFromParent();
16027   return BB;
16028 }
16029
16030 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
16031                                        const TargetInstrInfo *TII,
16032                                        const X86Subtarget* Subtarget) {
16033   DebugLoc dl = MI->getDebugLoc();
16034
16035   // Address into RAX/EAX, other two args into ECX, EDX.
16036   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
16037   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
16038   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
16039   for (int i = 0; i < X86::AddrNumOperands; ++i)
16040     MIB.addOperand(MI->getOperand(i));
16041
16042   unsigned ValOps = X86::AddrNumOperands;
16043   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
16044     .addReg(MI->getOperand(ValOps).getReg());
16045   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
16046     .addReg(MI->getOperand(ValOps+1).getReg());
16047
16048   // The instruction doesn't actually take any operands though.
16049   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
16050
16051   MI->eraseFromParent(); // The pseudo is gone now.
16052   return BB;
16053 }
16054
16055 MachineBasicBlock *
16056 X86TargetLowering::EmitVAARG64WithCustomInserter(
16057                    MachineInstr *MI,
16058                    MachineBasicBlock *MBB) const {
16059   // Emit va_arg instruction on X86-64.
16060
16061   // Operands to this pseudo-instruction:
16062   // 0  ) Output        : destination address (reg)
16063   // 1-5) Input         : va_list address (addr, i64mem)
16064   // 6  ) ArgSize       : Size (in bytes) of vararg type
16065   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
16066   // 8  ) Align         : Alignment of type
16067   // 9  ) EFLAGS (implicit-def)
16068
16069   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
16070   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
16071
16072   unsigned DestReg = MI->getOperand(0).getReg();
16073   MachineOperand &Base = MI->getOperand(1);
16074   MachineOperand &Scale = MI->getOperand(2);
16075   MachineOperand &Index = MI->getOperand(3);
16076   MachineOperand &Disp = MI->getOperand(4);
16077   MachineOperand &Segment = MI->getOperand(5);
16078   unsigned ArgSize = MI->getOperand(6).getImm();
16079   unsigned ArgMode = MI->getOperand(7).getImm();
16080   unsigned Align = MI->getOperand(8).getImm();
16081
16082   // Memory Reference
16083   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
16084   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
16085   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
16086
16087   // Machine Information
16088   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16089   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
16090   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
16091   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
16092   DebugLoc DL = MI->getDebugLoc();
16093
16094   // struct va_list {
16095   //   i32   gp_offset
16096   //   i32   fp_offset
16097   //   i64   overflow_area (address)
16098   //   i64   reg_save_area (address)
16099   // }
16100   // sizeof(va_list) = 24
16101   // alignment(va_list) = 8
16102
16103   unsigned TotalNumIntRegs = 6;
16104   unsigned TotalNumXMMRegs = 8;
16105   bool UseGPOffset = (ArgMode == 1);
16106   bool UseFPOffset = (ArgMode == 2);
16107   unsigned MaxOffset = TotalNumIntRegs * 8 +
16108                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
16109
16110   /* Align ArgSize to a multiple of 8 */
16111   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
16112   bool NeedsAlign = (Align > 8);
16113
16114   MachineBasicBlock *thisMBB = MBB;
16115   MachineBasicBlock *overflowMBB;
16116   MachineBasicBlock *offsetMBB;
16117   MachineBasicBlock *endMBB;
16118
16119   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
16120   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
16121   unsigned OffsetReg = 0;
16122
16123   if (!UseGPOffset && !UseFPOffset) {
16124     // If we only pull from the overflow region, we don't create a branch.
16125     // We don't need to alter control flow.
16126     OffsetDestReg = 0; // unused
16127     OverflowDestReg = DestReg;
16128
16129     offsetMBB = nullptr;
16130     overflowMBB = thisMBB;
16131     endMBB = thisMBB;
16132   } else {
16133     // First emit code to check if gp_offset (or fp_offset) is below the bound.
16134     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
16135     // If not, pull from overflow_area. (branch to overflowMBB)
16136     //
16137     //       thisMBB
16138     //         |     .
16139     //         |        .
16140     //     offsetMBB   overflowMBB
16141     //         |        .
16142     //         |     .
16143     //        endMBB
16144
16145     // Registers for the PHI in endMBB
16146     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
16147     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
16148
16149     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
16150     MachineFunction *MF = MBB->getParent();
16151     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16152     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16153     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16154
16155     MachineFunction::iterator MBBIter = MBB;
16156     ++MBBIter;
16157
16158     // Insert the new basic blocks
16159     MF->insert(MBBIter, offsetMBB);
16160     MF->insert(MBBIter, overflowMBB);
16161     MF->insert(MBBIter, endMBB);
16162
16163     // Transfer the remainder of MBB and its successor edges to endMBB.
16164     endMBB->splice(endMBB->begin(), thisMBB,
16165                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
16166     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
16167
16168     // Make offsetMBB and overflowMBB successors of thisMBB
16169     thisMBB->addSuccessor(offsetMBB);
16170     thisMBB->addSuccessor(overflowMBB);
16171
16172     // endMBB is a successor of both offsetMBB and overflowMBB
16173     offsetMBB->addSuccessor(endMBB);
16174     overflowMBB->addSuccessor(endMBB);
16175
16176     // Load the offset value into a register
16177     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
16178     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
16179       .addOperand(Base)
16180       .addOperand(Scale)
16181       .addOperand(Index)
16182       .addDisp(Disp, UseFPOffset ? 4 : 0)
16183       .addOperand(Segment)
16184       .setMemRefs(MMOBegin, MMOEnd);
16185
16186     // Check if there is enough room left to pull this argument.
16187     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
16188       .addReg(OffsetReg)
16189       .addImm(MaxOffset + 8 - ArgSizeA8);
16190
16191     // Branch to "overflowMBB" if offset >= max
16192     // Fall through to "offsetMBB" otherwise
16193     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
16194       .addMBB(overflowMBB);
16195   }
16196
16197   // In offsetMBB, emit code to use the reg_save_area.
16198   if (offsetMBB) {
16199     assert(OffsetReg != 0);
16200
16201     // Read the reg_save_area address.
16202     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
16203     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
16204       .addOperand(Base)
16205       .addOperand(Scale)
16206       .addOperand(Index)
16207       .addDisp(Disp, 16)
16208       .addOperand(Segment)
16209       .setMemRefs(MMOBegin, MMOEnd);
16210
16211     // Zero-extend the offset
16212     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
16213       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
16214         .addImm(0)
16215         .addReg(OffsetReg)
16216         .addImm(X86::sub_32bit);
16217
16218     // Add the offset to the reg_save_area to get the final address.
16219     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
16220       .addReg(OffsetReg64)
16221       .addReg(RegSaveReg);
16222
16223     // Compute the offset for the next argument
16224     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
16225     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
16226       .addReg(OffsetReg)
16227       .addImm(UseFPOffset ? 16 : 8);
16228
16229     // Store it back into the va_list.
16230     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
16231       .addOperand(Base)
16232       .addOperand(Scale)
16233       .addOperand(Index)
16234       .addDisp(Disp, UseFPOffset ? 4 : 0)
16235       .addOperand(Segment)
16236       .addReg(NextOffsetReg)
16237       .setMemRefs(MMOBegin, MMOEnd);
16238
16239     // Jump to endMBB
16240     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
16241       .addMBB(endMBB);
16242   }
16243
16244   //
16245   // Emit code to use overflow area
16246   //
16247
16248   // Load the overflow_area address into a register.
16249   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
16250   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
16251     .addOperand(Base)
16252     .addOperand(Scale)
16253     .addOperand(Index)
16254     .addDisp(Disp, 8)
16255     .addOperand(Segment)
16256     .setMemRefs(MMOBegin, MMOEnd);
16257
16258   // If we need to align it, do so. Otherwise, just copy the address
16259   // to OverflowDestReg.
16260   if (NeedsAlign) {
16261     // Align the overflow address
16262     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
16263     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
16264
16265     // aligned_addr = (addr + (align-1)) & ~(align-1)
16266     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
16267       .addReg(OverflowAddrReg)
16268       .addImm(Align-1);
16269
16270     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
16271       .addReg(TmpReg)
16272       .addImm(~(uint64_t)(Align-1));
16273   } else {
16274     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
16275       .addReg(OverflowAddrReg);
16276   }
16277
16278   // Compute the next overflow address after this argument.
16279   // (the overflow address should be kept 8-byte aligned)
16280   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
16281   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
16282     .addReg(OverflowDestReg)
16283     .addImm(ArgSizeA8);
16284
16285   // Store the new overflow address.
16286   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
16287     .addOperand(Base)
16288     .addOperand(Scale)
16289     .addOperand(Index)
16290     .addDisp(Disp, 8)
16291     .addOperand(Segment)
16292     .addReg(NextAddrReg)
16293     .setMemRefs(MMOBegin, MMOEnd);
16294
16295   // If we branched, emit the PHI to the front of endMBB.
16296   if (offsetMBB) {
16297     BuildMI(*endMBB, endMBB->begin(), DL,
16298             TII->get(X86::PHI), DestReg)
16299       .addReg(OffsetDestReg).addMBB(offsetMBB)
16300       .addReg(OverflowDestReg).addMBB(overflowMBB);
16301   }
16302
16303   // Erase the pseudo instruction
16304   MI->eraseFromParent();
16305
16306   return endMBB;
16307 }
16308
16309 MachineBasicBlock *
16310 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
16311                                                  MachineInstr *MI,
16312                                                  MachineBasicBlock *MBB) const {
16313   // Emit code to save XMM registers to the stack. The ABI says that the
16314   // number of registers to save is given in %al, so it's theoretically
16315   // possible to do an indirect jump trick to avoid saving all of them,
16316   // however this code takes a simpler approach and just executes all
16317   // of the stores if %al is non-zero. It's less code, and it's probably
16318   // easier on the hardware branch predictor, and stores aren't all that
16319   // expensive anyway.
16320
16321   // Create the new basic blocks. One block contains all the XMM stores,
16322   // and one block is the final destination regardless of whether any
16323   // stores were performed.
16324   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
16325   MachineFunction *F = MBB->getParent();
16326   MachineFunction::iterator MBBIter = MBB;
16327   ++MBBIter;
16328   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
16329   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
16330   F->insert(MBBIter, XMMSaveMBB);
16331   F->insert(MBBIter, EndMBB);
16332
16333   // Transfer the remainder of MBB and its successor edges to EndMBB.
16334   EndMBB->splice(EndMBB->begin(), MBB,
16335                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
16336   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
16337
16338   // The original block will now fall through to the XMM save block.
16339   MBB->addSuccessor(XMMSaveMBB);
16340   // The XMMSaveMBB will fall through to the end block.
16341   XMMSaveMBB->addSuccessor(EndMBB);
16342
16343   // Now add the instructions.
16344   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16345   DebugLoc DL = MI->getDebugLoc();
16346
16347   unsigned CountReg = MI->getOperand(0).getReg();
16348   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
16349   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
16350
16351   if (!Subtarget->isTargetWin64()) {
16352     // If %al is 0, branch around the XMM save block.
16353     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
16354     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
16355     MBB->addSuccessor(EndMBB);
16356   }
16357
16358   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
16359   // that was just emitted, but clearly shouldn't be "saved".
16360   assert((MI->getNumOperands() <= 3 ||
16361           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
16362           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
16363          && "Expected last argument to be EFLAGS");
16364   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
16365   // In the XMM save block, save all the XMM argument registers.
16366   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
16367     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
16368     MachineMemOperand *MMO =
16369       F->getMachineMemOperand(
16370           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
16371         MachineMemOperand::MOStore,
16372         /*Size=*/16, /*Align=*/16);
16373     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
16374       .addFrameIndex(RegSaveFrameIndex)
16375       .addImm(/*Scale=*/1)
16376       .addReg(/*IndexReg=*/0)
16377       .addImm(/*Disp=*/Offset)
16378       .addReg(/*Segment=*/0)
16379       .addReg(MI->getOperand(i).getReg())
16380       .addMemOperand(MMO);
16381   }
16382
16383   MI->eraseFromParent();   // The pseudo instruction is gone now.
16384
16385   return EndMBB;
16386 }
16387
16388 // The EFLAGS operand of SelectItr might be missing a kill marker
16389 // because there were multiple uses of EFLAGS, and ISel didn't know
16390 // which to mark. Figure out whether SelectItr should have had a
16391 // kill marker, and set it if it should. Returns the correct kill
16392 // marker value.
16393 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
16394                                      MachineBasicBlock* BB,
16395                                      const TargetRegisterInfo* TRI) {
16396   // Scan forward through BB for a use/def of EFLAGS.
16397   MachineBasicBlock::iterator miI(std::next(SelectItr));
16398   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
16399     const MachineInstr& mi = *miI;
16400     if (mi.readsRegister(X86::EFLAGS))
16401       return false;
16402     if (mi.definesRegister(X86::EFLAGS))
16403       break; // Should have kill-flag - update below.
16404   }
16405
16406   // If we hit the end of the block, check whether EFLAGS is live into a
16407   // successor.
16408   if (miI == BB->end()) {
16409     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
16410                                           sEnd = BB->succ_end();
16411          sItr != sEnd; ++sItr) {
16412       MachineBasicBlock* succ = *sItr;
16413       if (succ->isLiveIn(X86::EFLAGS))
16414         return false;
16415     }
16416   }
16417
16418   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
16419   // out. SelectMI should have a kill flag on EFLAGS.
16420   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
16421   return true;
16422 }
16423
16424 MachineBasicBlock *
16425 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
16426                                      MachineBasicBlock *BB) const {
16427   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16428   DebugLoc DL = MI->getDebugLoc();
16429
16430   // To "insert" a SELECT_CC instruction, we actually have to insert the
16431   // diamond control-flow pattern.  The incoming instruction knows the
16432   // destination vreg to set, the condition code register to branch on, the
16433   // true/false values to select between, and a branch opcode to use.
16434   const BasicBlock *LLVM_BB = BB->getBasicBlock();
16435   MachineFunction::iterator It = BB;
16436   ++It;
16437
16438   //  thisMBB:
16439   //  ...
16440   //   TrueVal = ...
16441   //   cmpTY ccX, r1, r2
16442   //   bCC copy1MBB
16443   //   fallthrough --> copy0MBB
16444   MachineBasicBlock *thisMBB = BB;
16445   MachineFunction *F = BB->getParent();
16446   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
16447   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
16448   F->insert(It, copy0MBB);
16449   F->insert(It, sinkMBB);
16450
16451   // If the EFLAGS register isn't dead in the terminator, then claim that it's
16452   // live into the sink and copy blocks.
16453   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
16454   if (!MI->killsRegister(X86::EFLAGS) &&
16455       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
16456     copy0MBB->addLiveIn(X86::EFLAGS);
16457     sinkMBB->addLiveIn(X86::EFLAGS);
16458   }
16459
16460   // Transfer the remainder of BB and its successor edges to sinkMBB.
16461   sinkMBB->splice(sinkMBB->begin(), BB,
16462                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
16463   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
16464
16465   // Add the true and fallthrough blocks as its successors.
16466   BB->addSuccessor(copy0MBB);
16467   BB->addSuccessor(sinkMBB);
16468
16469   // Create the conditional branch instruction.
16470   unsigned Opc =
16471     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
16472   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
16473
16474   //  copy0MBB:
16475   //   %FalseValue = ...
16476   //   # fallthrough to sinkMBB
16477   copy0MBB->addSuccessor(sinkMBB);
16478
16479   //  sinkMBB:
16480   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
16481   //  ...
16482   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
16483           TII->get(X86::PHI), MI->getOperand(0).getReg())
16484     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
16485     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
16486
16487   MI->eraseFromParent();   // The pseudo instruction is gone now.
16488   return sinkMBB;
16489 }
16490
16491 MachineBasicBlock *
16492 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
16493                                         bool Is64Bit) const {
16494   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16495   DebugLoc DL = MI->getDebugLoc();
16496   MachineFunction *MF = BB->getParent();
16497   const BasicBlock *LLVM_BB = BB->getBasicBlock();
16498
16499   assert(MF->shouldSplitStack());
16500
16501   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
16502   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
16503
16504   // BB:
16505   //  ... [Till the alloca]
16506   // If stacklet is not large enough, jump to mallocMBB
16507   //
16508   // bumpMBB:
16509   //  Allocate by subtracting from RSP
16510   //  Jump to continueMBB
16511   //
16512   // mallocMBB:
16513   //  Allocate by call to runtime
16514   //
16515   // continueMBB:
16516   //  ...
16517   //  [rest of original BB]
16518   //
16519
16520   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16521   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16522   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
16523
16524   MachineRegisterInfo &MRI = MF->getRegInfo();
16525   const TargetRegisterClass *AddrRegClass =
16526     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
16527
16528   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
16529     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
16530     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
16531     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
16532     sizeVReg = MI->getOperand(1).getReg(),
16533     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
16534
16535   MachineFunction::iterator MBBIter = BB;
16536   ++MBBIter;
16537
16538   MF->insert(MBBIter, bumpMBB);
16539   MF->insert(MBBIter, mallocMBB);
16540   MF->insert(MBBIter, continueMBB);
16541
16542   continueMBB->splice(continueMBB->begin(), BB,
16543                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
16544   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
16545
16546   // Add code to the main basic block to check if the stack limit has been hit,
16547   // and if so, jump to mallocMBB otherwise to bumpMBB.
16548   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
16549   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
16550     .addReg(tmpSPVReg).addReg(sizeVReg);
16551   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
16552     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
16553     .addReg(SPLimitVReg);
16554   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
16555
16556   // bumpMBB simply decreases the stack pointer, since we know the current
16557   // stacklet has enough space.
16558   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
16559     .addReg(SPLimitVReg);
16560   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
16561     .addReg(SPLimitVReg);
16562   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
16563
16564   // Calls into a routine in libgcc to allocate more space from the heap.
16565   const uint32_t *RegMask =
16566     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
16567   if (Is64Bit) {
16568     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
16569       .addReg(sizeVReg);
16570     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
16571       .addExternalSymbol("__morestack_allocate_stack_space")
16572       .addRegMask(RegMask)
16573       .addReg(X86::RDI, RegState::Implicit)
16574       .addReg(X86::RAX, RegState::ImplicitDefine);
16575   } else {
16576     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
16577       .addImm(12);
16578     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
16579     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
16580       .addExternalSymbol("__morestack_allocate_stack_space")
16581       .addRegMask(RegMask)
16582       .addReg(X86::EAX, RegState::ImplicitDefine);
16583   }
16584
16585   if (!Is64Bit)
16586     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
16587       .addImm(16);
16588
16589   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
16590     .addReg(Is64Bit ? X86::RAX : X86::EAX);
16591   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
16592
16593   // Set up the CFG correctly.
16594   BB->addSuccessor(bumpMBB);
16595   BB->addSuccessor(mallocMBB);
16596   mallocMBB->addSuccessor(continueMBB);
16597   bumpMBB->addSuccessor(continueMBB);
16598
16599   // Take care of the PHI nodes.
16600   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
16601           MI->getOperand(0).getReg())
16602     .addReg(mallocPtrVReg).addMBB(mallocMBB)
16603     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
16604
16605   // Delete the original pseudo instruction.
16606   MI->eraseFromParent();
16607
16608   // And we're done.
16609   return continueMBB;
16610 }
16611
16612 MachineBasicBlock *
16613 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
16614                                           MachineBasicBlock *BB) const {
16615   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16616   DebugLoc DL = MI->getDebugLoc();
16617
16618   assert(!Subtarget->isTargetMacho());
16619
16620   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
16621   // non-trivial part is impdef of ESP.
16622
16623   if (Subtarget->isTargetWin64()) {
16624     if (Subtarget->isTargetCygMing()) {
16625       // ___chkstk(Mingw64):
16626       // Clobbers R10, R11, RAX and EFLAGS.
16627       // Updates RSP.
16628       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
16629         .addExternalSymbol("___chkstk")
16630         .addReg(X86::RAX, RegState::Implicit)
16631         .addReg(X86::RSP, RegState::Implicit)
16632         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
16633         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
16634         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
16635     } else {
16636       // __chkstk(MSVCRT): does not update stack pointer.
16637       // Clobbers R10, R11 and EFLAGS.
16638       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
16639         .addExternalSymbol("__chkstk")
16640         .addReg(X86::RAX, RegState::Implicit)
16641         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
16642       // RAX has the offset to be subtracted from RSP.
16643       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
16644         .addReg(X86::RSP)
16645         .addReg(X86::RAX);
16646     }
16647   } else {
16648     const char *StackProbeSymbol =
16649       Subtarget->isTargetKnownWindowsMSVC() ? "_chkstk" : "_alloca";
16650
16651     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
16652       .addExternalSymbol(StackProbeSymbol)
16653       .addReg(X86::EAX, RegState::Implicit)
16654       .addReg(X86::ESP, RegState::Implicit)
16655       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
16656       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
16657       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
16658   }
16659
16660   MI->eraseFromParent();   // The pseudo instruction is gone now.
16661   return BB;
16662 }
16663
16664 MachineBasicBlock *
16665 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
16666                                       MachineBasicBlock *BB) const {
16667   // This is pretty easy.  We're taking the value that we received from
16668   // our load from the relocation, sticking it in either RDI (x86-64)
16669   // or EAX and doing an indirect call.  The return value will then
16670   // be in the normal return register.
16671   const X86InstrInfo *TII
16672     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
16673   DebugLoc DL = MI->getDebugLoc();
16674   MachineFunction *F = BB->getParent();
16675
16676   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
16677   assert(MI->getOperand(3).isGlobal() && "This should be a global");
16678
16679   // Get a register mask for the lowered call.
16680   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
16681   // proper register mask.
16682   const uint32_t *RegMask =
16683     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
16684   if (Subtarget->is64Bit()) {
16685     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
16686                                       TII->get(X86::MOV64rm), X86::RDI)
16687     .addReg(X86::RIP)
16688     .addImm(0).addReg(0)
16689     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
16690                       MI->getOperand(3).getTargetFlags())
16691     .addReg(0);
16692     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
16693     addDirectMem(MIB, X86::RDI);
16694     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
16695   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
16696     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
16697                                       TII->get(X86::MOV32rm), X86::EAX)
16698     .addReg(0)
16699     .addImm(0).addReg(0)
16700     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
16701                       MI->getOperand(3).getTargetFlags())
16702     .addReg(0);
16703     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
16704     addDirectMem(MIB, X86::EAX);
16705     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
16706   } else {
16707     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
16708                                       TII->get(X86::MOV32rm), X86::EAX)
16709     .addReg(TII->getGlobalBaseReg(F))
16710     .addImm(0).addReg(0)
16711     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
16712                       MI->getOperand(3).getTargetFlags())
16713     .addReg(0);
16714     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
16715     addDirectMem(MIB, X86::EAX);
16716     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
16717   }
16718
16719   MI->eraseFromParent(); // The pseudo instruction is gone now.
16720   return BB;
16721 }
16722
16723 MachineBasicBlock *
16724 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
16725                                     MachineBasicBlock *MBB) const {
16726   DebugLoc DL = MI->getDebugLoc();
16727   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16728
16729   MachineFunction *MF = MBB->getParent();
16730   MachineRegisterInfo &MRI = MF->getRegInfo();
16731
16732   const BasicBlock *BB = MBB->getBasicBlock();
16733   MachineFunction::iterator I = MBB;
16734   ++I;
16735
16736   // Memory Reference
16737   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
16738   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
16739
16740   unsigned DstReg;
16741   unsigned MemOpndSlot = 0;
16742
16743   unsigned CurOp = 0;
16744
16745   DstReg = MI->getOperand(CurOp++).getReg();
16746   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
16747   assert(RC->hasType(MVT::i32) && "Invalid destination!");
16748   unsigned mainDstReg = MRI.createVirtualRegister(RC);
16749   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
16750
16751   MemOpndSlot = CurOp;
16752
16753   MVT PVT = getPointerTy();
16754   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
16755          "Invalid Pointer Size!");
16756
16757   // For v = setjmp(buf), we generate
16758   //
16759   // thisMBB:
16760   //  buf[LabelOffset] = restoreMBB
16761   //  SjLjSetup restoreMBB
16762   //
16763   // mainMBB:
16764   //  v_main = 0
16765   //
16766   // sinkMBB:
16767   //  v = phi(main, restore)
16768   //
16769   // restoreMBB:
16770   //  v_restore = 1
16771
16772   MachineBasicBlock *thisMBB = MBB;
16773   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
16774   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
16775   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
16776   MF->insert(I, mainMBB);
16777   MF->insert(I, sinkMBB);
16778   MF->push_back(restoreMBB);
16779
16780   MachineInstrBuilder MIB;
16781
16782   // Transfer the remainder of BB and its successor edges to sinkMBB.
16783   sinkMBB->splice(sinkMBB->begin(), MBB,
16784                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
16785   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
16786
16787   // thisMBB:
16788   unsigned PtrStoreOpc = 0;
16789   unsigned LabelReg = 0;
16790   const int64_t LabelOffset = 1 * PVT.getStoreSize();
16791   Reloc::Model RM = getTargetMachine().getRelocationModel();
16792   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
16793                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
16794
16795   // Prepare IP either in reg or imm.
16796   if (!UseImmLabel) {
16797     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
16798     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
16799     LabelReg = MRI.createVirtualRegister(PtrRC);
16800     if (Subtarget->is64Bit()) {
16801       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
16802               .addReg(X86::RIP)
16803               .addImm(0)
16804               .addReg(0)
16805               .addMBB(restoreMBB)
16806               .addReg(0);
16807     } else {
16808       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
16809       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
16810               .addReg(XII->getGlobalBaseReg(MF))
16811               .addImm(0)
16812               .addReg(0)
16813               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
16814               .addReg(0);
16815     }
16816   } else
16817     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
16818   // Store IP
16819   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
16820   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16821     if (i == X86::AddrDisp)
16822       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
16823     else
16824       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
16825   }
16826   if (!UseImmLabel)
16827     MIB.addReg(LabelReg);
16828   else
16829     MIB.addMBB(restoreMBB);
16830   MIB.setMemRefs(MMOBegin, MMOEnd);
16831   // Setup
16832   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
16833           .addMBB(restoreMBB);
16834
16835   const X86RegisterInfo *RegInfo =
16836     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
16837   MIB.addRegMask(RegInfo->getNoPreservedMask());
16838   thisMBB->addSuccessor(mainMBB);
16839   thisMBB->addSuccessor(restoreMBB);
16840
16841   // mainMBB:
16842   //  EAX = 0
16843   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
16844   mainMBB->addSuccessor(sinkMBB);
16845
16846   // sinkMBB:
16847   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
16848           TII->get(X86::PHI), DstReg)
16849     .addReg(mainDstReg).addMBB(mainMBB)
16850     .addReg(restoreDstReg).addMBB(restoreMBB);
16851
16852   // restoreMBB:
16853   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
16854   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
16855   restoreMBB->addSuccessor(sinkMBB);
16856
16857   MI->eraseFromParent();
16858   return sinkMBB;
16859 }
16860
16861 MachineBasicBlock *
16862 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
16863                                      MachineBasicBlock *MBB) const {
16864   DebugLoc DL = MI->getDebugLoc();
16865   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16866
16867   MachineFunction *MF = MBB->getParent();
16868   MachineRegisterInfo &MRI = MF->getRegInfo();
16869
16870   // Memory Reference
16871   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
16872   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
16873
16874   MVT PVT = getPointerTy();
16875   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
16876          "Invalid Pointer Size!");
16877
16878   const TargetRegisterClass *RC =
16879     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
16880   unsigned Tmp = MRI.createVirtualRegister(RC);
16881   // Since FP is only updated here but NOT referenced, it's treated as GPR.
16882   const X86RegisterInfo *RegInfo =
16883     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
16884   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
16885   unsigned SP = RegInfo->getStackRegister();
16886
16887   MachineInstrBuilder MIB;
16888
16889   const int64_t LabelOffset = 1 * PVT.getStoreSize();
16890   const int64_t SPOffset = 2 * PVT.getStoreSize();
16891
16892   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
16893   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
16894
16895   // Reload FP
16896   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
16897   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
16898     MIB.addOperand(MI->getOperand(i));
16899   MIB.setMemRefs(MMOBegin, MMOEnd);
16900   // Reload IP
16901   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
16902   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16903     if (i == X86::AddrDisp)
16904       MIB.addDisp(MI->getOperand(i), LabelOffset);
16905     else
16906       MIB.addOperand(MI->getOperand(i));
16907   }
16908   MIB.setMemRefs(MMOBegin, MMOEnd);
16909   // Reload SP
16910   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
16911   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16912     if (i == X86::AddrDisp)
16913       MIB.addDisp(MI->getOperand(i), SPOffset);
16914     else
16915       MIB.addOperand(MI->getOperand(i));
16916   }
16917   MIB.setMemRefs(MMOBegin, MMOEnd);
16918   // Jump
16919   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
16920
16921   MI->eraseFromParent();
16922   return MBB;
16923 }
16924
16925 // Replace 213-type (isel default) FMA3 instructions with 231-type for
16926 // accumulator loops. Writing back to the accumulator allows the coalescer
16927 // to remove extra copies in the loop.   
16928 MachineBasicBlock *
16929 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
16930                                  MachineBasicBlock *MBB) const {
16931   MachineOperand &AddendOp = MI->getOperand(3);
16932
16933   // Bail out early if the addend isn't a register - we can't switch these.
16934   if (!AddendOp.isReg())
16935     return MBB;
16936
16937   MachineFunction &MF = *MBB->getParent();
16938   MachineRegisterInfo &MRI = MF.getRegInfo();
16939
16940   // Check whether the addend is defined by a PHI:
16941   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
16942   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
16943   if (!AddendDef.isPHI())
16944     return MBB;
16945
16946   // Look for the following pattern:
16947   // loop:
16948   //   %addend = phi [%entry, 0], [%loop, %result]
16949   //   ...
16950   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
16951
16952   // Replace with:
16953   //   loop:
16954   //   %addend = phi [%entry, 0], [%loop, %result]
16955   //   ...
16956   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
16957
16958   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
16959     assert(AddendDef.getOperand(i).isReg());
16960     MachineOperand PHISrcOp = AddendDef.getOperand(i);
16961     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
16962     if (&PHISrcInst == MI) {
16963       // Found a matching instruction.
16964       unsigned NewFMAOpc = 0;
16965       switch (MI->getOpcode()) {
16966         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
16967         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
16968         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
16969         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
16970         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
16971         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
16972         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
16973         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
16974         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
16975         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
16976         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
16977         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
16978         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
16979         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
16980         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
16981         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
16982         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
16983         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
16984         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
16985         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
16986         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
16987         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
16988         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
16989         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
16990         default: llvm_unreachable("Unrecognized FMA variant.");
16991       }
16992
16993       const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
16994       MachineInstrBuilder MIB =
16995         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
16996         .addOperand(MI->getOperand(0))
16997         .addOperand(MI->getOperand(3))
16998         .addOperand(MI->getOperand(2))
16999         .addOperand(MI->getOperand(1));
17000       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
17001       MI->eraseFromParent();
17002     }
17003   }
17004
17005   return MBB;
17006 }
17007
17008 MachineBasicBlock *
17009 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
17010                                                MachineBasicBlock *BB) const {
17011   switch (MI->getOpcode()) {
17012   default: llvm_unreachable("Unexpected instr type to insert");
17013   case X86::TAILJMPd64:
17014   case X86::TAILJMPr64:
17015   case X86::TAILJMPm64:
17016     llvm_unreachable("TAILJMP64 would not be touched here.");
17017   case X86::TCRETURNdi64:
17018   case X86::TCRETURNri64:
17019   case X86::TCRETURNmi64:
17020     return BB;
17021   case X86::WIN_ALLOCA:
17022     return EmitLoweredWinAlloca(MI, BB);
17023   case X86::SEG_ALLOCA_32:
17024     return EmitLoweredSegAlloca(MI, BB, false);
17025   case X86::SEG_ALLOCA_64:
17026     return EmitLoweredSegAlloca(MI, BB, true);
17027   case X86::TLSCall_32:
17028   case X86::TLSCall_64:
17029     return EmitLoweredTLSCall(MI, BB);
17030   case X86::CMOV_GR8:
17031   case X86::CMOV_FR32:
17032   case X86::CMOV_FR64:
17033   case X86::CMOV_V4F32:
17034   case X86::CMOV_V2F64:
17035   case X86::CMOV_V2I64:
17036   case X86::CMOV_V8F32:
17037   case X86::CMOV_V4F64:
17038   case X86::CMOV_V4I64:
17039   case X86::CMOV_V16F32:
17040   case X86::CMOV_V8F64:
17041   case X86::CMOV_V8I64:
17042   case X86::CMOV_GR16:
17043   case X86::CMOV_GR32:
17044   case X86::CMOV_RFP32:
17045   case X86::CMOV_RFP64:
17046   case X86::CMOV_RFP80:
17047     return EmitLoweredSelect(MI, BB);
17048
17049   case X86::FP32_TO_INT16_IN_MEM:
17050   case X86::FP32_TO_INT32_IN_MEM:
17051   case X86::FP32_TO_INT64_IN_MEM:
17052   case X86::FP64_TO_INT16_IN_MEM:
17053   case X86::FP64_TO_INT32_IN_MEM:
17054   case X86::FP64_TO_INT64_IN_MEM:
17055   case X86::FP80_TO_INT16_IN_MEM:
17056   case X86::FP80_TO_INT32_IN_MEM:
17057   case X86::FP80_TO_INT64_IN_MEM: {
17058     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
17059     DebugLoc DL = MI->getDebugLoc();
17060
17061     // Change the floating point control register to use "round towards zero"
17062     // mode when truncating to an integer value.
17063     MachineFunction *F = BB->getParent();
17064     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
17065     addFrameReference(BuildMI(*BB, MI, DL,
17066                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
17067
17068     // Load the old value of the high byte of the control word...
17069     unsigned OldCW =
17070       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
17071     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
17072                       CWFrameIdx);
17073
17074     // Set the high part to be round to zero...
17075     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
17076       .addImm(0xC7F);
17077
17078     // Reload the modified control word now...
17079     addFrameReference(BuildMI(*BB, MI, DL,
17080                               TII->get(X86::FLDCW16m)), CWFrameIdx);
17081
17082     // Restore the memory image of control word to original value
17083     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
17084       .addReg(OldCW);
17085
17086     // Get the X86 opcode to use.
17087     unsigned Opc;
17088     switch (MI->getOpcode()) {
17089     default: llvm_unreachable("illegal opcode!");
17090     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
17091     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
17092     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
17093     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
17094     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
17095     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
17096     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
17097     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
17098     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
17099     }
17100
17101     X86AddressMode AM;
17102     MachineOperand &Op = MI->getOperand(0);
17103     if (Op.isReg()) {
17104       AM.BaseType = X86AddressMode::RegBase;
17105       AM.Base.Reg = Op.getReg();
17106     } else {
17107       AM.BaseType = X86AddressMode::FrameIndexBase;
17108       AM.Base.FrameIndex = Op.getIndex();
17109     }
17110     Op = MI->getOperand(1);
17111     if (Op.isImm())
17112       AM.Scale = Op.getImm();
17113     Op = MI->getOperand(2);
17114     if (Op.isImm())
17115       AM.IndexReg = Op.getImm();
17116     Op = MI->getOperand(3);
17117     if (Op.isGlobal()) {
17118       AM.GV = Op.getGlobal();
17119     } else {
17120       AM.Disp = Op.getImm();
17121     }
17122     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
17123                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
17124
17125     // Reload the original control word now.
17126     addFrameReference(BuildMI(*BB, MI, DL,
17127                               TII->get(X86::FLDCW16m)), CWFrameIdx);
17128
17129     MI->eraseFromParent();   // The pseudo instruction is gone now.
17130     return BB;
17131   }
17132     // String/text processing lowering.
17133   case X86::PCMPISTRM128REG:
17134   case X86::VPCMPISTRM128REG:
17135   case X86::PCMPISTRM128MEM:
17136   case X86::VPCMPISTRM128MEM:
17137   case X86::PCMPESTRM128REG:
17138   case X86::VPCMPESTRM128REG:
17139   case X86::PCMPESTRM128MEM:
17140   case X86::VPCMPESTRM128MEM:
17141     assert(Subtarget->hasSSE42() &&
17142            "Target must have SSE4.2 or AVX features enabled");
17143     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
17144
17145   // String/text processing lowering.
17146   case X86::PCMPISTRIREG:
17147   case X86::VPCMPISTRIREG:
17148   case X86::PCMPISTRIMEM:
17149   case X86::VPCMPISTRIMEM:
17150   case X86::PCMPESTRIREG:
17151   case X86::VPCMPESTRIREG:
17152   case X86::PCMPESTRIMEM:
17153   case X86::VPCMPESTRIMEM:
17154     assert(Subtarget->hasSSE42() &&
17155            "Target must have SSE4.2 or AVX features enabled");
17156     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
17157
17158   // Thread synchronization.
17159   case X86::MONITOR:
17160     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
17161
17162   // xbegin
17163   case X86::XBEGIN:
17164     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
17165
17166   // Atomic Lowering.
17167   case X86::ATOMAND8:
17168   case X86::ATOMAND16:
17169   case X86::ATOMAND32:
17170   case X86::ATOMAND64:
17171     // Fall through
17172   case X86::ATOMOR8:
17173   case X86::ATOMOR16:
17174   case X86::ATOMOR32:
17175   case X86::ATOMOR64:
17176     // Fall through
17177   case X86::ATOMXOR16:
17178   case X86::ATOMXOR8:
17179   case X86::ATOMXOR32:
17180   case X86::ATOMXOR64:
17181     // Fall through
17182   case X86::ATOMNAND8:
17183   case X86::ATOMNAND16:
17184   case X86::ATOMNAND32:
17185   case X86::ATOMNAND64:
17186     // Fall through
17187   case X86::ATOMMAX8:
17188   case X86::ATOMMAX16:
17189   case X86::ATOMMAX32:
17190   case X86::ATOMMAX64:
17191     // Fall through
17192   case X86::ATOMMIN8:
17193   case X86::ATOMMIN16:
17194   case X86::ATOMMIN32:
17195   case X86::ATOMMIN64:
17196     // Fall through
17197   case X86::ATOMUMAX8:
17198   case X86::ATOMUMAX16:
17199   case X86::ATOMUMAX32:
17200   case X86::ATOMUMAX64:
17201     // Fall through
17202   case X86::ATOMUMIN8:
17203   case X86::ATOMUMIN16:
17204   case X86::ATOMUMIN32:
17205   case X86::ATOMUMIN64:
17206     return EmitAtomicLoadArith(MI, BB);
17207
17208   // This group does 64-bit operations on a 32-bit host.
17209   case X86::ATOMAND6432:
17210   case X86::ATOMOR6432:
17211   case X86::ATOMXOR6432:
17212   case X86::ATOMNAND6432:
17213   case X86::ATOMADD6432:
17214   case X86::ATOMSUB6432:
17215   case X86::ATOMMAX6432:
17216   case X86::ATOMMIN6432:
17217   case X86::ATOMUMAX6432:
17218   case X86::ATOMUMIN6432:
17219   case X86::ATOMSWAP6432:
17220     return EmitAtomicLoadArith6432(MI, BB);
17221
17222   case X86::VASTART_SAVE_XMM_REGS:
17223     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
17224
17225   case X86::VAARG_64:
17226     return EmitVAARG64WithCustomInserter(MI, BB);
17227
17228   case X86::EH_SjLj_SetJmp32:
17229   case X86::EH_SjLj_SetJmp64:
17230     return emitEHSjLjSetJmp(MI, BB);
17231
17232   case X86::EH_SjLj_LongJmp32:
17233   case X86::EH_SjLj_LongJmp64:
17234     return emitEHSjLjLongJmp(MI, BB);
17235
17236   case TargetOpcode::STACKMAP:
17237   case TargetOpcode::PATCHPOINT:
17238     return emitPatchPoint(MI, BB);
17239
17240   case X86::VFMADDPDr213r:
17241   case X86::VFMADDPSr213r:
17242   case X86::VFMADDSDr213r:
17243   case X86::VFMADDSSr213r:
17244   case X86::VFMSUBPDr213r:
17245   case X86::VFMSUBPSr213r:
17246   case X86::VFMSUBSDr213r:
17247   case X86::VFMSUBSSr213r:
17248   case X86::VFNMADDPDr213r:
17249   case X86::VFNMADDPSr213r:
17250   case X86::VFNMADDSDr213r:
17251   case X86::VFNMADDSSr213r:
17252   case X86::VFNMSUBPDr213r:
17253   case X86::VFNMSUBPSr213r:
17254   case X86::VFNMSUBSDr213r:
17255   case X86::VFNMSUBSSr213r:
17256   case X86::VFMADDPDr213rY:
17257   case X86::VFMADDPSr213rY:
17258   case X86::VFMSUBPDr213rY:
17259   case X86::VFMSUBPSr213rY:
17260   case X86::VFNMADDPDr213rY:
17261   case X86::VFNMADDPSr213rY:
17262   case X86::VFNMSUBPDr213rY:
17263   case X86::VFNMSUBPSr213rY:
17264     return emitFMA3Instr(MI, BB);
17265   }
17266 }
17267
17268 //===----------------------------------------------------------------------===//
17269 //                           X86 Optimization Hooks
17270 //===----------------------------------------------------------------------===//
17271
17272 void X86TargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
17273                                                       APInt &KnownZero,
17274                                                       APInt &KnownOne,
17275                                                       const SelectionDAG &DAG,
17276                                                       unsigned Depth) const {
17277   unsigned BitWidth = KnownZero.getBitWidth();
17278   unsigned Opc = Op.getOpcode();
17279   assert((Opc >= ISD::BUILTIN_OP_END ||
17280           Opc == ISD::INTRINSIC_WO_CHAIN ||
17281           Opc == ISD::INTRINSIC_W_CHAIN ||
17282           Opc == ISD::INTRINSIC_VOID) &&
17283          "Should use MaskedValueIsZero if you don't know whether Op"
17284          " is a target node!");
17285
17286   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
17287   switch (Opc) {
17288   default: break;
17289   case X86ISD::ADD:
17290   case X86ISD::SUB:
17291   case X86ISD::ADC:
17292   case X86ISD::SBB:
17293   case X86ISD::SMUL:
17294   case X86ISD::UMUL:
17295   case X86ISD::INC:
17296   case X86ISD::DEC:
17297   case X86ISD::OR:
17298   case X86ISD::XOR:
17299   case X86ISD::AND:
17300     // These nodes' second result is a boolean.
17301     if (Op.getResNo() == 0)
17302       break;
17303     // Fallthrough
17304   case X86ISD::SETCC:
17305     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
17306     break;
17307   case ISD::INTRINSIC_WO_CHAIN: {
17308     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
17309     unsigned NumLoBits = 0;
17310     switch (IntId) {
17311     default: break;
17312     case Intrinsic::x86_sse_movmsk_ps:
17313     case Intrinsic::x86_avx_movmsk_ps_256:
17314     case Intrinsic::x86_sse2_movmsk_pd:
17315     case Intrinsic::x86_avx_movmsk_pd_256:
17316     case Intrinsic::x86_mmx_pmovmskb:
17317     case Intrinsic::x86_sse2_pmovmskb_128:
17318     case Intrinsic::x86_avx2_pmovmskb: {
17319       // High bits of movmskp{s|d}, pmovmskb are known zero.
17320       switch (IntId) {
17321         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
17322         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
17323         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
17324         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
17325         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
17326         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
17327         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
17328         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
17329       }
17330       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
17331       break;
17332     }
17333     }
17334     break;
17335   }
17336   }
17337 }
17338
17339 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
17340   SDValue Op,
17341   const SelectionDAG &,
17342   unsigned Depth) const {
17343   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
17344   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
17345     return Op.getValueType().getScalarType().getSizeInBits();
17346
17347   // Fallback case.
17348   return 1;
17349 }
17350
17351 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
17352 /// node is a GlobalAddress + offset.
17353 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
17354                                        const GlobalValue* &GA,
17355                                        int64_t &Offset) const {
17356   if (N->getOpcode() == X86ISD::Wrapper) {
17357     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
17358       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
17359       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
17360       return true;
17361     }
17362   }
17363   return TargetLowering::isGAPlusOffset(N, GA, Offset);
17364 }
17365
17366 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
17367 /// same as extracting the high 128-bit part of 256-bit vector and then
17368 /// inserting the result into the low part of a new 256-bit vector
17369 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
17370   EVT VT = SVOp->getValueType(0);
17371   unsigned NumElems = VT.getVectorNumElements();
17372
17373   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
17374   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
17375     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
17376         SVOp->getMaskElt(j) >= 0)
17377       return false;
17378
17379   return true;
17380 }
17381
17382 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
17383 /// same as extracting the low 128-bit part of 256-bit vector and then
17384 /// inserting the result into the high part of a new 256-bit vector
17385 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
17386   EVT VT = SVOp->getValueType(0);
17387   unsigned NumElems = VT.getVectorNumElements();
17388
17389   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
17390   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
17391     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
17392         SVOp->getMaskElt(j) >= 0)
17393       return false;
17394
17395   return true;
17396 }
17397
17398 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
17399 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
17400                                         TargetLowering::DAGCombinerInfo &DCI,
17401                                         const X86Subtarget* Subtarget) {
17402   SDLoc dl(N);
17403   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
17404   SDValue V1 = SVOp->getOperand(0);
17405   SDValue V2 = SVOp->getOperand(1);
17406   EVT VT = SVOp->getValueType(0);
17407   unsigned NumElems = VT.getVectorNumElements();
17408
17409   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
17410       V2.getOpcode() == ISD::CONCAT_VECTORS) {
17411     //
17412     //                   0,0,0,...
17413     //                      |
17414     //    V      UNDEF    BUILD_VECTOR    UNDEF
17415     //     \      /           \           /
17416     //  CONCAT_VECTOR         CONCAT_VECTOR
17417     //         \                  /
17418     //          \                /
17419     //          RESULT: V + zero extended
17420     //
17421     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
17422         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
17423         V1.getOperand(1).getOpcode() != ISD::UNDEF)
17424       return SDValue();
17425
17426     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
17427       return SDValue();
17428
17429     // To match the shuffle mask, the first half of the mask should
17430     // be exactly the first vector, and all the rest a splat with the
17431     // first element of the second one.
17432     for (unsigned i = 0; i != NumElems/2; ++i)
17433       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
17434           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
17435         return SDValue();
17436
17437     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
17438     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
17439       if (Ld->hasNUsesOfValue(1, 0)) {
17440         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
17441         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
17442         SDValue ResNode =
17443           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
17444                                   Ld->getMemoryVT(),
17445                                   Ld->getPointerInfo(),
17446                                   Ld->getAlignment(),
17447                                   false/*isVolatile*/, true/*ReadMem*/,
17448                                   false/*WriteMem*/);
17449
17450         // Make sure the newly-created LOAD is in the same position as Ld in
17451         // terms of dependency. We create a TokenFactor for Ld and ResNode,
17452         // and update uses of Ld's output chain to use the TokenFactor.
17453         if (Ld->hasAnyUseOfValue(1)) {
17454           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17455                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
17456           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
17457           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
17458                                  SDValue(ResNode.getNode(), 1));
17459         }
17460
17461         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
17462       }
17463     }
17464
17465     // Emit a zeroed vector and insert the desired subvector on its
17466     // first half.
17467     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
17468     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
17469     return DCI.CombineTo(N, InsV);
17470   }
17471
17472   //===--------------------------------------------------------------------===//
17473   // Combine some shuffles into subvector extracts and inserts:
17474   //
17475
17476   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
17477   if (isShuffleHigh128VectorInsertLow(SVOp)) {
17478     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
17479     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
17480     return DCI.CombineTo(N, InsV);
17481   }
17482
17483   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
17484   if (isShuffleLow128VectorInsertHigh(SVOp)) {
17485     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
17486     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
17487     return DCI.CombineTo(N, InsV);
17488   }
17489
17490   return SDValue();
17491 }
17492
17493 /// PerformShuffleCombine - Performs several different shuffle combines.
17494 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
17495                                      TargetLowering::DAGCombinerInfo &DCI,
17496                                      const X86Subtarget *Subtarget) {
17497   SDLoc dl(N);
17498   EVT VT = N->getValueType(0);
17499
17500   // Don't create instructions with illegal types after legalize types has run.
17501   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17502   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
17503     return SDValue();
17504
17505   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
17506   if (Subtarget->hasFp256() && VT.is256BitVector() &&
17507       N->getOpcode() == ISD::VECTOR_SHUFFLE)
17508     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
17509
17510   // Only handle 128 wide vector from here on.
17511   if (!VT.is128BitVector())
17512     return SDValue();
17513
17514   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
17515   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
17516   // consecutive, non-overlapping, and in the right order.
17517   SmallVector<SDValue, 16> Elts;
17518   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
17519     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
17520
17521   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
17522 }
17523
17524 /// PerformTruncateCombine - Converts truncate operation to
17525 /// a sequence of vector shuffle operations.
17526 /// It is possible when we truncate 256-bit vector to 128-bit vector
17527 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
17528                                       TargetLowering::DAGCombinerInfo &DCI,
17529                                       const X86Subtarget *Subtarget)  {
17530   return SDValue();
17531 }
17532
17533 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
17534 /// specific shuffle of a load can be folded into a single element load.
17535 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
17536 /// shuffles have been customed lowered so we need to handle those here.
17537 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
17538                                          TargetLowering::DAGCombinerInfo &DCI) {
17539   if (DCI.isBeforeLegalizeOps())
17540     return SDValue();
17541
17542   SDValue InVec = N->getOperand(0);
17543   SDValue EltNo = N->getOperand(1);
17544
17545   if (!isa<ConstantSDNode>(EltNo))
17546     return SDValue();
17547
17548   EVT VT = InVec.getValueType();
17549
17550   bool HasShuffleIntoBitcast = false;
17551   if (InVec.getOpcode() == ISD::BITCAST) {
17552     // Don't duplicate a load with other uses.
17553     if (!InVec.hasOneUse())
17554       return SDValue();
17555     EVT BCVT = InVec.getOperand(0).getValueType();
17556     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
17557       return SDValue();
17558     InVec = InVec.getOperand(0);
17559     HasShuffleIntoBitcast = true;
17560   }
17561
17562   if (!isTargetShuffle(InVec.getOpcode()))
17563     return SDValue();
17564
17565   // Don't duplicate a load with other uses.
17566   if (!InVec.hasOneUse())
17567     return SDValue();
17568
17569   SmallVector<int, 16> ShuffleMask;
17570   bool UnaryShuffle;
17571   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
17572                             UnaryShuffle))
17573     return SDValue();
17574
17575   // Select the input vector, guarding against out of range extract vector.
17576   unsigned NumElems = VT.getVectorNumElements();
17577   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
17578   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
17579   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
17580                                          : InVec.getOperand(1);
17581
17582   // If inputs to shuffle are the same for both ops, then allow 2 uses
17583   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
17584
17585   if (LdNode.getOpcode() == ISD::BITCAST) {
17586     // Don't duplicate a load with other uses.
17587     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
17588       return SDValue();
17589
17590     AllowedUses = 1; // only allow 1 load use if we have a bitcast
17591     LdNode = LdNode.getOperand(0);
17592   }
17593
17594   if (!ISD::isNormalLoad(LdNode.getNode()))
17595     return SDValue();
17596
17597   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
17598
17599   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
17600     return SDValue();
17601
17602   if (HasShuffleIntoBitcast) {
17603     // If there's a bitcast before the shuffle, check if the load type and
17604     // alignment is valid.
17605     unsigned Align = LN0->getAlignment();
17606     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17607     unsigned NewAlign = TLI.getDataLayout()->
17608       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
17609
17610     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
17611       return SDValue();
17612   }
17613
17614   // All checks match so transform back to vector_shuffle so that DAG combiner
17615   // can finish the job
17616   SDLoc dl(N);
17617
17618   // Create shuffle node taking into account the case that its a unary shuffle
17619   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
17620   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
17621                                  InVec.getOperand(0), Shuffle,
17622                                  &ShuffleMask[0]);
17623   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
17624   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
17625                      EltNo);
17626 }
17627
17628 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
17629 /// generation and convert it from being a bunch of shuffles and extracts
17630 /// to a simple store and scalar loads to extract the elements.
17631 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
17632                                          TargetLowering::DAGCombinerInfo &DCI) {
17633   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
17634   if (NewOp.getNode())
17635     return NewOp;
17636
17637   SDValue InputVector = N->getOperand(0);
17638
17639   // Detect whether we are trying to convert from mmx to i32 and the bitcast
17640   // from mmx to v2i32 has a single usage.
17641   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
17642       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
17643       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
17644     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
17645                        N->getValueType(0),
17646                        InputVector.getNode()->getOperand(0));
17647
17648   // Only operate on vectors of 4 elements, where the alternative shuffling
17649   // gets to be more expensive.
17650   if (InputVector.getValueType() != MVT::v4i32)
17651     return SDValue();
17652
17653   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
17654   // single use which is a sign-extend or zero-extend, and all elements are
17655   // used.
17656   SmallVector<SDNode *, 4> Uses;
17657   unsigned ExtractedElements = 0;
17658   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
17659        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
17660     if (UI.getUse().getResNo() != InputVector.getResNo())
17661       return SDValue();
17662
17663     SDNode *Extract = *UI;
17664     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
17665       return SDValue();
17666
17667     if (Extract->getValueType(0) != MVT::i32)
17668       return SDValue();
17669     if (!Extract->hasOneUse())
17670       return SDValue();
17671     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
17672         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
17673       return SDValue();
17674     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
17675       return SDValue();
17676
17677     // Record which element was extracted.
17678     ExtractedElements |=
17679       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
17680
17681     Uses.push_back(Extract);
17682   }
17683
17684   // If not all the elements were used, this may not be worthwhile.
17685   if (ExtractedElements != 15)
17686     return SDValue();
17687
17688   // Ok, we've now decided to do the transformation.
17689   SDLoc dl(InputVector);
17690
17691   // Store the value to a temporary stack slot.
17692   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
17693   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
17694                             MachinePointerInfo(), false, false, 0);
17695
17696   // Replace each use (extract) with a load of the appropriate element.
17697   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
17698        UE = Uses.end(); UI != UE; ++UI) {
17699     SDNode *Extract = *UI;
17700
17701     // cOMpute the element's address.
17702     SDValue Idx = Extract->getOperand(1);
17703     unsigned EltSize =
17704         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
17705     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
17706     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17707     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
17708
17709     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
17710                                      StackPtr, OffsetVal);
17711
17712     // Load the scalar.
17713     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
17714                                      ScalarAddr, MachinePointerInfo(),
17715                                      false, false, false, 0);
17716
17717     // Replace the exact with the load.
17718     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
17719   }
17720
17721   // The replacement was made in place; don't return anything.
17722   return SDValue();
17723 }
17724
17725 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
17726 static std::pair<unsigned, bool>
17727 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
17728                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
17729   if (!VT.isVector())
17730     return std::make_pair(0, false);
17731
17732   bool NeedSplit = false;
17733   switch (VT.getSimpleVT().SimpleTy) {
17734   default: return std::make_pair(0, false);
17735   case MVT::v32i8:
17736   case MVT::v16i16:
17737   case MVT::v8i32:
17738     if (!Subtarget->hasAVX2())
17739       NeedSplit = true;
17740     if (!Subtarget->hasAVX())
17741       return std::make_pair(0, false);
17742     break;
17743   case MVT::v16i8:
17744   case MVT::v8i16:
17745   case MVT::v4i32:
17746     if (!Subtarget->hasSSE2())
17747       return std::make_pair(0, false);
17748   }
17749
17750   // SSE2 has only a small subset of the operations.
17751   bool hasUnsigned = Subtarget->hasSSE41() ||
17752                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
17753   bool hasSigned = Subtarget->hasSSE41() ||
17754                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
17755
17756   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17757
17758   unsigned Opc = 0;
17759   // Check for x CC y ? x : y.
17760   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17761       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17762     switch (CC) {
17763     default: break;
17764     case ISD::SETULT:
17765     case ISD::SETULE:
17766       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
17767     case ISD::SETUGT:
17768     case ISD::SETUGE:
17769       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
17770     case ISD::SETLT:
17771     case ISD::SETLE:
17772       Opc = hasSigned ? X86ISD::SMIN : 0; break;
17773     case ISD::SETGT:
17774     case ISD::SETGE:
17775       Opc = hasSigned ? X86ISD::SMAX : 0; break;
17776     }
17777   // Check for x CC y ? y : x -- a min/max with reversed arms.
17778   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
17779              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
17780     switch (CC) {
17781     default: break;
17782     case ISD::SETULT:
17783     case ISD::SETULE:
17784       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
17785     case ISD::SETUGT:
17786     case ISD::SETUGE:
17787       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
17788     case ISD::SETLT:
17789     case ISD::SETLE:
17790       Opc = hasSigned ? X86ISD::SMAX : 0; break;
17791     case ISD::SETGT:
17792     case ISD::SETGE:
17793       Opc = hasSigned ? X86ISD::SMIN : 0; break;
17794     }
17795   }
17796
17797   return std::make_pair(Opc, NeedSplit);
17798 }
17799
17800 static SDValue
17801 TransformVSELECTtoBlendVECTOR_SHUFFLE(SDNode *N, SelectionDAG &DAG,
17802                                       const X86Subtarget *Subtarget) {
17803   SDLoc dl(N);
17804   SDValue Cond = N->getOperand(0);
17805   SDValue LHS = N->getOperand(1);
17806   SDValue RHS = N->getOperand(2);
17807
17808   if (Cond.getOpcode() == ISD::SIGN_EXTEND) {
17809     SDValue CondSrc = Cond->getOperand(0);
17810     if (CondSrc->getOpcode() == ISD::SIGN_EXTEND_INREG)
17811       Cond = CondSrc->getOperand(0);
17812   }
17813
17814   MVT VT = N->getSimpleValueType(0);
17815   MVT EltVT = VT.getVectorElementType();
17816   unsigned NumElems = VT.getVectorNumElements();
17817   // There is no blend with immediate in AVX-512.
17818   if (VT.is512BitVector())
17819     return SDValue();
17820
17821   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
17822     return SDValue();
17823   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
17824     return SDValue();
17825
17826   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
17827     return SDValue();
17828
17829   unsigned MaskValue = 0;
17830   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
17831     return SDValue();
17832
17833   SmallVector<int, 8> ShuffleMask(NumElems, -1);
17834   for (unsigned i = 0; i < NumElems; ++i) {
17835     // Be sure we emit undef where we can.
17836     if (Cond.getOperand(i)->getOpcode() == ISD::UNDEF)
17837       ShuffleMask[i] = -1;
17838     else
17839       ShuffleMask[i] = i + NumElems * ((MaskValue >> i) & 1);
17840   }
17841
17842   return DAG.getVectorShuffle(VT, dl, LHS, RHS, &ShuffleMask[0]);
17843 }
17844
17845 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
17846 /// nodes.
17847 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
17848                                     TargetLowering::DAGCombinerInfo &DCI,
17849                                     const X86Subtarget *Subtarget) {
17850   SDLoc DL(N);
17851   SDValue Cond = N->getOperand(0);
17852   // Get the LHS/RHS of the select.
17853   SDValue LHS = N->getOperand(1);
17854   SDValue RHS = N->getOperand(2);
17855   EVT VT = LHS.getValueType();
17856   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17857
17858   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
17859   // instructions match the semantics of the common C idiom x<y?x:y but not
17860   // x<=y?x:y, because of how they handle negative zero (which can be
17861   // ignored in unsafe-math mode).
17862   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
17863       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
17864       (Subtarget->hasSSE2() ||
17865        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
17866     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17867
17868     unsigned Opcode = 0;
17869     // Check for x CC y ? x : y.
17870     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17871         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17872       switch (CC) {
17873       default: break;
17874       case ISD::SETULT:
17875         // Converting this to a min would handle NaNs incorrectly, and swapping
17876         // the operands would cause it to handle comparisons between positive
17877         // and negative zero incorrectly.
17878         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
17879           if (!DAG.getTarget().Options.UnsafeFPMath &&
17880               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
17881             break;
17882           std::swap(LHS, RHS);
17883         }
17884         Opcode = X86ISD::FMIN;
17885         break;
17886       case ISD::SETOLE:
17887         // Converting this to a min would handle comparisons between positive
17888         // and negative zero incorrectly.
17889         if (!DAG.getTarget().Options.UnsafeFPMath &&
17890             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
17891           break;
17892         Opcode = X86ISD::FMIN;
17893         break;
17894       case ISD::SETULE:
17895         // Converting this to a min would handle both negative zeros and NaNs
17896         // incorrectly, but we can swap the operands to fix both.
17897         std::swap(LHS, RHS);
17898       case ISD::SETOLT:
17899       case ISD::SETLT:
17900       case ISD::SETLE:
17901         Opcode = X86ISD::FMIN;
17902         break;
17903
17904       case ISD::SETOGE:
17905         // Converting this to a max would handle comparisons between positive
17906         // and negative zero incorrectly.
17907         if (!DAG.getTarget().Options.UnsafeFPMath &&
17908             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
17909           break;
17910         Opcode = X86ISD::FMAX;
17911         break;
17912       case ISD::SETUGT:
17913         // Converting this to a max would handle NaNs incorrectly, and swapping
17914         // the operands would cause it to handle comparisons between positive
17915         // and negative zero incorrectly.
17916         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
17917           if (!DAG.getTarget().Options.UnsafeFPMath &&
17918               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
17919             break;
17920           std::swap(LHS, RHS);
17921         }
17922         Opcode = X86ISD::FMAX;
17923         break;
17924       case ISD::SETUGE:
17925         // Converting this to a max would handle both negative zeros and NaNs
17926         // incorrectly, but we can swap the operands to fix both.
17927         std::swap(LHS, RHS);
17928       case ISD::SETOGT:
17929       case ISD::SETGT:
17930       case ISD::SETGE:
17931         Opcode = X86ISD::FMAX;
17932         break;
17933       }
17934     // Check for x CC y ? y : x -- a min/max with reversed arms.
17935     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
17936                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
17937       switch (CC) {
17938       default: break;
17939       case ISD::SETOGE:
17940         // Converting this to a min would handle comparisons between positive
17941         // and negative zero incorrectly, and swapping the operands would
17942         // cause it to handle NaNs incorrectly.
17943         if (!DAG.getTarget().Options.UnsafeFPMath &&
17944             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
17945           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17946             break;
17947           std::swap(LHS, RHS);
17948         }
17949         Opcode = X86ISD::FMIN;
17950         break;
17951       case ISD::SETUGT:
17952         // Converting this to a min would handle NaNs incorrectly.
17953         if (!DAG.getTarget().Options.UnsafeFPMath &&
17954             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
17955           break;
17956         Opcode = X86ISD::FMIN;
17957         break;
17958       case ISD::SETUGE:
17959         // Converting this to a min would handle both negative zeros and NaNs
17960         // incorrectly, but we can swap the operands to fix both.
17961         std::swap(LHS, RHS);
17962       case ISD::SETOGT:
17963       case ISD::SETGT:
17964       case ISD::SETGE:
17965         Opcode = X86ISD::FMIN;
17966         break;
17967
17968       case ISD::SETULT:
17969         // Converting this to a max would handle NaNs incorrectly.
17970         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17971           break;
17972         Opcode = X86ISD::FMAX;
17973         break;
17974       case ISD::SETOLE:
17975         // Converting this to a max would handle comparisons between positive
17976         // and negative zero incorrectly, and swapping the operands would
17977         // cause it to handle NaNs incorrectly.
17978         if (!DAG.getTarget().Options.UnsafeFPMath &&
17979             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
17980           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17981             break;
17982           std::swap(LHS, RHS);
17983         }
17984         Opcode = X86ISD::FMAX;
17985         break;
17986       case ISD::SETULE:
17987         // Converting this to a max would handle both negative zeros and NaNs
17988         // incorrectly, but we can swap the operands to fix both.
17989         std::swap(LHS, RHS);
17990       case ISD::SETOLT:
17991       case ISD::SETLT:
17992       case ISD::SETLE:
17993         Opcode = X86ISD::FMAX;
17994         break;
17995       }
17996     }
17997
17998     if (Opcode)
17999       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
18000   }
18001
18002   EVT CondVT = Cond.getValueType();
18003   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
18004       CondVT.getVectorElementType() == MVT::i1) {
18005     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
18006     // lowering on AVX-512. In this case we convert it to
18007     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
18008     // The same situation for all 128 and 256-bit vectors of i8 and i16
18009     EVT OpVT = LHS.getValueType();
18010     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
18011         (OpVT.getVectorElementType() == MVT::i8 ||
18012          OpVT.getVectorElementType() == MVT::i16)) {
18013       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
18014       DCI.AddToWorklist(Cond.getNode());
18015       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
18016     }
18017   }
18018   // If this is a select between two integer constants, try to do some
18019   // optimizations.
18020   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
18021     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
18022       // Don't do this for crazy integer types.
18023       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
18024         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
18025         // so that TrueC (the true value) is larger than FalseC.
18026         bool NeedsCondInvert = false;
18027
18028         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
18029             // Efficiently invertible.
18030             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
18031              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
18032               isa<ConstantSDNode>(Cond.getOperand(1))))) {
18033           NeedsCondInvert = true;
18034           std::swap(TrueC, FalseC);
18035         }
18036
18037         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
18038         if (FalseC->getAPIntValue() == 0 &&
18039             TrueC->getAPIntValue().isPowerOf2()) {
18040           if (NeedsCondInvert) // Invert the condition if needed.
18041             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
18042                                DAG.getConstant(1, Cond.getValueType()));
18043
18044           // Zero extend the condition if needed.
18045           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
18046
18047           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
18048           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
18049                              DAG.getConstant(ShAmt, MVT::i8));
18050         }
18051
18052         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
18053         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
18054           if (NeedsCondInvert) // Invert the condition if needed.
18055             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
18056                                DAG.getConstant(1, Cond.getValueType()));
18057
18058           // Zero extend the condition if needed.
18059           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
18060                              FalseC->getValueType(0), Cond);
18061           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
18062                              SDValue(FalseC, 0));
18063         }
18064
18065         // Optimize cases that will turn into an LEA instruction.  This requires
18066         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
18067         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
18068           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
18069           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
18070
18071           bool isFastMultiplier = false;
18072           if (Diff < 10) {
18073             switch ((unsigned char)Diff) {
18074               default: break;
18075               case 1:  // result = add base, cond
18076               case 2:  // result = lea base(    , cond*2)
18077               case 3:  // result = lea base(cond, cond*2)
18078               case 4:  // result = lea base(    , cond*4)
18079               case 5:  // result = lea base(cond, cond*4)
18080               case 8:  // result = lea base(    , cond*8)
18081               case 9:  // result = lea base(cond, cond*8)
18082                 isFastMultiplier = true;
18083                 break;
18084             }
18085           }
18086
18087           if (isFastMultiplier) {
18088             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
18089             if (NeedsCondInvert) // Invert the condition if needed.
18090               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
18091                                  DAG.getConstant(1, Cond.getValueType()));
18092
18093             // Zero extend the condition if needed.
18094             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
18095                                Cond);
18096             // Scale the condition by the difference.
18097             if (Diff != 1)
18098               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
18099                                  DAG.getConstant(Diff, Cond.getValueType()));
18100
18101             // Add the base if non-zero.
18102             if (FalseC->getAPIntValue() != 0)
18103               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
18104                                  SDValue(FalseC, 0));
18105             return Cond;
18106           }
18107         }
18108       }
18109   }
18110
18111   // Canonicalize max and min:
18112   // (x > y) ? x : y -> (x >= y) ? x : y
18113   // (x < y) ? x : y -> (x <= y) ? x : y
18114   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
18115   // the need for an extra compare
18116   // against zero. e.g.
18117   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
18118   // subl   %esi, %edi
18119   // testl  %edi, %edi
18120   // movl   $0, %eax
18121   // cmovgl %edi, %eax
18122   // =>
18123   // xorl   %eax, %eax
18124   // subl   %esi, $edi
18125   // cmovsl %eax, %edi
18126   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
18127       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
18128       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
18129     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
18130     switch (CC) {
18131     default: break;
18132     case ISD::SETLT:
18133     case ISD::SETGT: {
18134       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
18135       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
18136                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
18137       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
18138     }
18139     }
18140   }
18141
18142   // Early exit check
18143   if (!TLI.isTypeLegal(VT))
18144     return SDValue();
18145
18146   // Match VSELECTs into subs with unsigned saturation.
18147   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
18148       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
18149       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
18150        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
18151     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
18152
18153     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
18154     // left side invert the predicate to simplify logic below.
18155     SDValue Other;
18156     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
18157       Other = RHS;
18158       CC = ISD::getSetCCInverse(CC, true);
18159     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
18160       Other = LHS;
18161     }
18162
18163     if (Other.getNode() && Other->getNumOperands() == 2 &&
18164         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
18165       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
18166       SDValue CondRHS = Cond->getOperand(1);
18167
18168       // Look for a general sub with unsigned saturation first.
18169       // x >= y ? x-y : 0 --> subus x, y
18170       // x >  y ? x-y : 0 --> subus x, y
18171       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
18172           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
18173         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
18174
18175       // If the RHS is a constant we have to reverse the const canonicalization.
18176       // x > C-1 ? x+-C : 0 --> subus x, C
18177       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
18178           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
18179         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
18180         if (CondRHS.getConstantOperandVal(0) == -A-1)
18181           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
18182                              DAG.getConstant(-A, VT));
18183       }
18184
18185       // Another special case: If C was a sign bit, the sub has been
18186       // canonicalized into a xor.
18187       // FIXME: Would it be better to use computeKnownBits to determine whether
18188       //        it's safe to decanonicalize the xor?
18189       // x s< 0 ? x^C : 0 --> subus x, C
18190       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
18191           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
18192           isSplatVector(OpRHS.getNode())) {
18193         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
18194         if (A.isSignBit())
18195           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
18196       }
18197     }
18198   }
18199
18200   // Try to match a min/max vector operation.
18201   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
18202     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
18203     unsigned Opc = ret.first;
18204     bool NeedSplit = ret.second;
18205
18206     if (Opc && NeedSplit) {
18207       unsigned NumElems = VT.getVectorNumElements();
18208       // Extract the LHS vectors
18209       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
18210       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
18211
18212       // Extract the RHS vectors
18213       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
18214       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
18215
18216       // Create min/max for each subvector
18217       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
18218       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
18219
18220       // Merge the result
18221       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
18222     } else if (Opc)
18223       return DAG.getNode(Opc, DL, VT, LHS, RHS);
18224   }
18225
18226   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
18227   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
18228       // Check if SETCC has already been promoted
18229       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
18230       // Check that condition value type matches vselect operand type
18231       CondVT == VT) { 
18232
18233     assert(Cond.getValueType().isVector() &&
18234            "vector select expects a vector selector!");
18235
18236     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
18237     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
18238
18239     if (!TValIsAllOnes && !FValIsAllZeros) {
18240       // Try invert the condition if true value is not all 1s and false value
18241       // is not all 0s.
18242       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
18243       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
18244
18245       if (TValIsAllZeros || FValIsAllOnes) {
18246         SDValue CC = Cond.getOperand(2);
18247         ISD::CondCode NewCC =
18248           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
18249                                Cond.getOperand(0).getValueType().isInteger());
18250         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
18251         std::swap(LHS, RHS);
18252         TValIsAllOnes = FValIsAllOnes;
18253         FValIsAllZeros = TValIsAllZeros;
18254       }
18255     }
18256
18257     if (TValIsAllOnes || FValIsAllZeros) {
18258       SDValue Ret;
18259
18260       if (TValIsAllOnes && FValIsAllZeros)
18261         Ret = Cond;
18262       else if (TValIsAllOnes)
18263         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
18264                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
18265       else if (FValIsAllZeros)
18266         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
18267                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
18268
18269       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
18270     }
18271   }
18272
18273   // Try to fold this VSELECT into a MOVSS/MOVSD
18274   if (N->getOpcode() == ISD::VSELECT &&
18275       Cond.getOpcode() == ISD::BUILD_VECTOR && !DCI.isBeforeLegalize()) {
18276     if (VT == MVT::v4i32 || VT == MVT::v4f32 ||
18277         (Subtarget->hasSSE2() && (VT == MVT::v2i64 || VT == MVT::v2f64))) {
18278       bool CanFold = false;
18279       unsigned NumElems = Cond.getNumOperands();
18280       SDValue A = LHS;
18281       SDValue B = RHS;
18282       
18283       if (isZero(Cond.getOperand(0))) {
18284         CanFold = true;
18285
18286         // fold (vselect <0,-1,-1,-1>, A, B) -> (movss A, B)
18287         // fold (vselect <0,-1> -> (movsd A, B)
18288         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
18289           CanFold = isAllOnes(Cond.getOperand(i));
18290       } else if (isAllOnes(Cond.getOperand(0))) {
18291         CanFold = true;
18292         std::swap(A, B);
18293
18294         // fold (vselect <-1,0,0,0>, A, B) -> (movss B, A)
18295         // fold (vselect <-1,0> -> (movsd B, A)
18296         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
18297           CanFold = isZero(Cond.getOperand(i));
18298       }
18299
18300       if (CanFold) {
18301         if (VT == MVT::v4i32 || VT == MVT::v4f32)
18302           return getTargetShuffleNode(X86ISD::MOVSS, DL, VT, A, B, DAG);
18303         return getTargetShuffleNode(X86ISD::MOVSD, DL, VT, A, B, DAG);
18304       }
18305
18306       if (Subtarget->hasSSE2() && (VT == MVT::v4i32 || VT == MVT::v4f32)) {
18307         // fold (v4i32: vselect <0,0,-1,-1>, A, B) ->
18308         //      (v4i32 (bitcast (movsd (v2i64 (bitcast A)),
18309         //                             (v2i64 (bitcast B)))))
18310         //
18311         // fold (v4f32: vselect <0,0,-1,-1>, A, B) ->
18312         //      (v4f32 (bitcast (movsd (v2f64 (bitcast A)),
18313         //                             (v2f64 (bitcast B)))))
18314         //
18315         // fold (v4i32: vselect <-1,-1,0,0>, A, B) ->
18316         //      (v4i32 (bitcast (movsd (v2i64 (bitcast B)),
18317         //                             (v2i64 (bitcast A)))))
18318         //
18319         // fold (v4f32: vselect <-1,-1,0,0>, A, B) ->
18320         //      (v4f32 (bitcast (movsd (v2f64 (bitcast B)),
18321         //                             (v2f64 (bitcast A)))))
18322
18323         CanFold = (isZero(Cond.getOperand(0)) &&
18324                    isZero(Cond.getOperand(1)) &&
18325                    isAllOnes(Cond.getOperand(2)) &&
18326                    isAllOnes(Cond.getOperand(3)));
18327
18328         if (!CanFold && isAllOnes(Cond.getOperand(0)) &&
18329             isAllOnes(Cond.getOperand(1)) &&
18330             isZero(Cond.getOperand(2)) &&
18331             isZero(Cond.getOperand(3))) {
18332           CanFold = true;
18333           std::swap(LHS, RHS);
18334         }
18335
18336         if (CanFold) {
18337           EVT NVT = (VT == MVT::v4i32) ? MVT::v2i64 : MVT::v2f64;
18338           SDValue NewA = DAG.getNode(ISD::BITCAST, DL, NVT, LHS);
18339           SDValue NewB = DAG.getNode(ISD::BITCAST, DL, NVT, RHS);
18340           SDValue Select = getTargetShuffleNode(X86ISD::MOVSD, DL, NVT, NewA,
18341                                                 NewB, DAG);
18342           return DAG.getNode(ISD::BITCAST, DL, VT, Select);
18343         }
18344       }
18345     }
18346   }
18347
18348   // If we know that this node is legal then we know that it is going to be
18349   // matched by one of the SSE/AVX BLEND instructions. These instructions only
18350   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
18351   // to simplify previous instructions.
18352   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
18353       !DCI.isBeforeLegalize() &&
18354       // We explicitly check against v8i16 and v16i16 because, although
18355       // they're marked as Custom, they might only be legal when Cond is a
18356       // build_vector of constants. This will be taken care in a later
18357       // condition.
18358       (TLI.isOperationLegalOrCustom(ISD::VSELECT, VT) && VT != MVT::v16i16 &&
18359        VT != MVT::v8i16)) {
18360     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
18361
18362     // Don't optimize vector selects that map to mask-registers.
18363     if (BitWidth == 1)
18364       return SDValue();
18365
18366     // Check all uses of that condition operand to check whether it will be
18367     // consumed by non-BLEND instructions, which may depend on all bits are set
18368     // properly.
18369     for (SDNode::use_iterator I = Cond->use_begin(),
18370                               E = Cond->use_end(); I != E; ++I)
18371       if (I->getOpcode() != ISD::VSELECT)
18372         // TODO: Add other opcodes eventually lowered into BLEND.
18373         return SDValue();
18374
18375     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
18376     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
18377
18378     APInt KnownZero, KnownOne;
18379     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
18380                                           DCI.isBeforeLegalizeOps());
18381     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
18382         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
18383       DCI.CommitTargetLoweringOpt(TLO);
18384   }
18385
18386   // We should generate an X86ISD::BLENDI from a vselect if its argument
18387   // is a sign_extend_inreg of an any_extend of a BUILD_VECTOR of
18388   // constants. This specific pattern gets generated when we split a
18389   // selector for a 512 bit vector in a machine without AVX512 (but with
18390   // 256-bit vectors), during legalization:
18391   //
18392   // (vselect (sign_extend (any_extend (BUILD_VECTOR)) i1) LHS RHS)
18393   //
18394   // Iff we find this pattern and the build_vectors are built from
18395   // constants, we translate the vselect into a shuffle_vector that we
18396   // know will be matched by LowerVECTOR_SHUFFLEtoBlend.
18397   if (N->getOpcode() == ISD::VSELECT && !DCI.isBeforeLegalize()) {
18398     SDValue Shuffle = TransformVSELECTtoBlendVECTOR_SHUFFLE(N, DAG, Subtarget);
18399     if (Shuffle.getNode())
18400       return Shuffle;
18401   }
18402
18403   return SDValue();
18404 }
18405
18406 // Check whether a boolean test is testing a boolean value generated by
18407 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
18408 // code.
18409 //
18410 // Simplify the following patterns:
18411 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
18412 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
18413 // to (Op EFLAGS Cond)
18414 //
18415 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
18416 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
18417 // to (Op EFLAGS !Cond)
18418 //
18419 // where Op could be BRCOND or CMOV.
18420 //
18421 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
18422   // Quit if not CMP and SUB with its value result used.
18423   if (Cmp.getOpcode() != X86ISD::CMP &&
18424       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
18425       return SDValue();
18426
18427   // Quit if not used as a boolean value.
18428   if (CC != X86::COND_E && CC != X86::COND_NE)
18429     return SDValue();
18430
18431   // Check CMP operands. One of them should be 0 or 1 and the other should be
18432   // an SetCC or extended from it.
18433   SDValue Op1 = Cmp.getOperand(0);
18434   SDValue Op2 = Cmp.getOperand(1);
18435
18436   SDValue SetCC;
18437   const ConstantSDNode* C = nullptr;
18438   bool needOppositeCond = (CC == X86::COND_E);
18439   bool checkAgainstTrue = false; // Is it a comparison against 1?
18440
18441   if ((C = dyn_cast<ConstantSDNode>(Op1)))
18442     SetCC = Op2;
18443   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
18444     SetCC = Op1;
18445   else // Quit if all operands are not constants.
18446     return SDValue();
18447
18448   if (C->getZExtValue() == 1) {
18449     needOppositeCond = !needOppositeCond;
18450     checkAgainstTrue = true;
18451   } else if (C->getZExtValue() != 0)
18452     // Quit if the constant is neither 0 or 1.
18453     return SDValue();
18454
18455   bool truncatedToBoolWithAnd = false;
18456   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
18457   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
18458          SetCC.getOpcode() == ISD::TRUNCATE ||
18459          SetCC.getOpcode() == ISD::AND) {
18460     if (SetCC.getOpcode() == ISD::AND) {
18461       int OpIdx = -1;
18462       ConstantSDNode *CS;
18463       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
18464           CS->getZExtValue() == 1)
18465         OpIdx = 1;
18466       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
18467           CS->getZExtValue() == 1)
18468         OpIdx = 0;
18469       if (OpIdx == -1)
18470         break;
18471       SetCC = SetCC.getOperand(OpIdx);
18472       truncatedToBoolWithAnd = true;
18473     } else
18474       SetCC = SetCC.getOperand(0);
18475   }
18476
18477   switch (SetCC.getOpcode()) {
18478   case X86ISD::SETCC_CARRY:
18479     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
18480     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
18481     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
18482     // truncated to i1 using 'and'.
18483     if (checkAgainstTrue && !truncatedToBoolWithAnd)
18484       break;
18485     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
18486            "Invalid use of SETCC_CARRY!");
18487     // FALL THROUGH
18488   case X86ISD::SETCC:
18489     // Set the condition code or opposite one if necessary.
18490     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
18491     if (needOppositeCond)
18492       CC = X86::GetOppositeBranchCondition(CC);
18493     return SetCC.getOperand(1);
18494   case X86ISD::CMOV: {
18495     // Check whether false/true value has canonical one, i.e. 0 or 1.
18496     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
18497     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
18498     // Quit if true value is not a constant.
18499     if (!TVal)
18500       return SDValue();
18501     // Quit if false value is not a constant.
18502     if (!FVal) {
18503       SDValue Op = SetCC.getOperand(0);
18504       // Skip 'zext' or 'trunc' node.
18505       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
18506           Op.getOpcode() == ISD::TRUNCATE)
18507         Op = Op.getOperand(0);
18508       // A special case for rdrand/rdseed, where 0 is set if false cond is
18509       // found.
18510       if ((Op.getOpcode() != X86ISD::RDRAND &&
18511            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
18512         return SDValue();
18513     }
18514     // Quit if false value is not the constant 0 or 1.
18515     bool FValIsFalse = true;
18516     if (FVal && FVal->getZExtValue() != 0) {
18517       if (FVal->getZExtValue() != 1)
18518         return SDValue();
18519       // If FVal is 1, opposite cond is needed.
18520       needOppositeCond = !needOppositeCond;
18521       FValIsFalse = false;
18522     }
18523     // Quit if TVal is not the constant opposite of FVal.
18524     if (FValIsFalse && TVal->getZExtValue() != 1)
18525       return SDValue();
18526     if (!FValIsFalse && TVal->getZExtValue() != 0)
18527       return SDValue();
18528     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
18529     if (needOppositeCond)
18530       CC = X86::GetOppositeBranchCondition(CC);
18531     return SetCC.getOperand(3);
18532   }
18533   }
18534
18535   return SDValue();
18536 }
18537
18538 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
18539 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
18540                                   TargetLowering::DAGCombinerInfo &DCI,
18541                                   const X86Subtarget *Subtarget) {
18542   SDLoc DL(N);
18543
18544   // If the flag operand isn't dead, don't touch this CMOV.
18545   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
18546     return SDValue();
18547
18548   SDValue FalseOp = N->getOperand(0);
18549   SDValue TrueOp = N->getOperand(1);
18550   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
18551   SDValue Cond = N->getOperand(3);
18552
18553   if (CC == X86::COND_E || CC == X86::COND_NE) {
18554     switch (Cond.getOpcode()) {
18555     default: break;
18556     case X86ISD::BSR:
18557     case X86ISD::BSF:
18558       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
18559       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
18560         return (CC == X86::COND_E) ? FalseOp : TrueOp;
18561     }
18562   }
18563
18564   SDValue Flags;
18565
18566   Flags = checkBoolTestSetCCCombine(Cond, CC);
18567   if (Flags.getNode() &&
18568       // Extra check as FCMOV only supports a subset of X86 cond.
18569       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
18570     SDValue Ops[] = { FalseOp, TrueOp,
18571                       DAG.getConstant(CC, MVT::i8), Flags };
18572     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
18573   }
18574
18575   // If this is a select between two integer constants, try to do some
18576   // optimizations.  Note that the operands are ordered the opposite of SELECT
18577   // operands.
18578   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
18579     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
18580       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
18581       // larger than FalseC (the false value).
18582       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
18583         CC = X86::GetOppositeBranchCondition(CC);
18584         std::swap(TrueC, FalseC);
18585         std::swap(TrueOp, FalseOp);
18586       }
18587
18588       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
18589       // This is efficient for any integer data type (including i8/i16) and
18590       // shift amount.
18591       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
18592         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18593                            DAG.getConstant(CC, MVT::i8), Cond);
18594
18595         // Zero extend the condition if needed.
18596         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
18597
18598         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
18599         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
18600                            DAG.getConstant(ShAmt, MVT::i8));
18601         if (N->getNumValues() == 2)  // Dead flag value?
18602           return DCI.CombineTo(N, Cond, SDValue());
18603         return Cond;
18604       }
18605
18606       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
18607       // for any integer data type, including i8/i16.
18608       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
18609         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18610                            DAG.getConstant(CC, MVT::i8), Cond);
18611
18612         // Zero extend the condition if needed.
18613         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
18614                            FalseC->getValueType(0), Cond);
18615         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
18616                            SDValue(FalseC, 0));
18617
18618         if (N->getNumValues() == 2)  // Dead flag value?
18619           return DCI.CombineTo(N, Cond, SDValue());
18620         return Cond;
18621       }
18622
18623       // Optimize cases that will turn into an LEA instruction.  This requires
18624       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
18625       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
18626         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
18627         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
18628
18629         bool isFastMultiplier = false;
18630         if (Diff < 10) {
18631           switch ((unsigned char)Diff) {
18632           default: break;
18633           case 1:  // result = add base, cond
18634           case 2:  // result = lea base(    , cond*2)
18635           case 3:  // result = lea base(cond, cond*2)
18636           case 4:  // result = lea base(    , cond*4)
18637           case 5:  // result = lea base(cond, cond*4)
18638           case 8:  // result = lea base(    , cond*8)
18639           case 9:  // result = lea base(cond, cond*8)
18640             isFastMultiplier = true;
18641             break;
18642           }
18643         }
18644
18645         if (isFastMultiplier) {
18646           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
18647           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18648                              DAG.getConstant(CC, MVT::i8), Cond);
18649           // Zero extend the condition if needed.
18650           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
18651                              Cond);
18652           // Scale the condition by the difference.
18653           if (Diff != 1)
18654             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
18655                                DAG.getConstant(Diff, Cond.getValueType()));
18656
18657           // Add the base if non-zero.
18658           if (FalseC->getAPIntValue() != 0)
18659             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
18660                                SDValue(FalseC, 0));
18661           if (N->getNumValues() == 2)  // Dead flag value?
18662             return DCI.CombineTo(N, Cond, SDValue());
18663           return Cond;
18664         }
18665       }
18666     }
18667   }
18668
18669   // Handle these cases:
18670   //   (select (x != c), e, c) -> select (x != c), e, x),
18671   //   (select (x == c), c, e) -> select (x == c), x, e)
18672   // where the c is an integer constant, and the "select" is the combination
18673   // of CMOV and CMP.
18674   //
18675   // The rationale for this change is that the conditional-move from a constant
18676   // needs two instructions, however, conditional-move from a register needs
18677   // only one instruction.
18678   //
18679   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
18680   //  some instruction-combining opportunities. This opt needs to be
18681   //  postponed as late as possible.
18682   //
18683   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
18684     // the DCI.xxxx conditions are provided to postpone the optimization as
18685     // late as possible.
18686
18687     ConstantSDNode *CmpAgainst = nullptr;
18688     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
18689         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
18690         !isa<ConstantSDNode>(Cond.getOperand(0))) {
18691
18692       if (CC == X86::COND_NE &&
18693           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
18694         CC = X86::GetOppositeBranchCondition(CC);
18695         std::swap(TrueOp, FalseOp);
18696       }
18697
18698       if (CC == X86::COND_E &&
18699           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
18700         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
18701                           DAG.getConstant(CC, MVT::i8), Cond };
18702         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
18703       }
18704     }
18705   }
18706
18707   return SDValue();
18708 }
18709
18710 static SDValue PerformINTRINSIC_WO_CHAINCombine(SDNode *N, SelectionDAG &DAG,
18711                                                 const X86Subtarget *Subtarget) {
18712   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
18713   switch (IntNo) {
18714   default: return SDValue();
18715   // SSE/AVX/AVX2 blend intrinsics.
18716   case Intrinsic::x86_avx2_pblendvb:
18717   case Intrinsic::x86_avx2_pblendw:
18718   case Intrinsic::x86_avx2_pblendd_128:
18719   case Intrinsic::x86_avx2_pblendd_256:
18720     // Don't try to simplify this intrinsic if we don't have AVX2.
18721     if (!Subtarget->hasAVX2())
18722       return SDValue();
18723     // FALL-THROUGH
18724   case Intrinsic::x86_avx_blend_pd_256:
18725   case Intrinsic::x86_avx_blend_ps_256:
18726   case Intrinsic::x86_avx_blendv_pd_256:
18727   case Intrinsic::x86_avx_blendv_ps_256:
18728     // Don't try to simplify this intrinsic if we don't have AVX.
18729     if (!Subtarget->hasAVX())
18730       return SDValue();
18731     // FALL-THROUGH
18732   case Intrinsic::x86_sse41_pblendw:
18733   case Intrinsic::x86_sse41_blendpd:
18734   case Intrinsic::x86_sse41_blendps:
18735   case Intrinsic::x86_sse41_blendvps:
18736   case Intrinsic::x86_sse41_blendvpd:
18737   case Intrinsic::x86_sse41_pblendvb: {
18738     SDValue Op0 = N->getOperand(1);
18739     SDValue Op1 = N->getOperand(2);
18740     SDValue Mask = N->getOperand(3);
18741
18742     // Don't try to simplify this intrinsic if we don't have SSE4.1.
18743     if (!Subtarget->hasSSE41())
18744       return SDValue();
18745
18746     // fold (blend A, A, Mask) -> A
18747     if (Op0 == Op1)
18748       return Op0;
18749     // fold (blend A, B, allZeros) -> A
18750     if (ISD::isBuildVectorAllZeros(Mask.getNode()))
18751       return Op0;
18752     // fold (blend A, B, allOnes) -> B
18753     if (ISD::isBuildVectorAllOnes(Mask.getNode()))
18754       return Op1;
18755     
18756     // Simplify the case where the mask is a constant i32 value.
18757     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Mask)) {
18758       if (C->isNullValue())
18759         return Op0;
18760       if (C->isAllOnesValue())
18761         return Op1;
18762     }
18763   }
18764
18765   // Packed SSE2/AVX2 arithmetic shift immediate intrinsics.
18766   case Intrinsic::x86_sse2_psrai_w:
18767   case Intrinsic::x86_sse2_psrai_d:
18768   case Intrinsic::x86_avx2_psrai_w:
18769   case Intrinsic::x86_avx2_psrai_d:
18770   case Intrinsic::x86_sse2_psra_w:
18771   case Intrinsic::x86_sse2_psra_d:
18772   case Intrinsic::x86_avx2_psra_w:
18773   case Intrinsic::x86_avx2_psra_d: {
18774     SDValue Op0 = N->getOperand(1);
18775     SDValue Op1 = N->getOperand(2);
18776     EVT VT = Op0.getValueType();
18777     assert(VT.isVector() && "Expected a vector type!");
18778
18779     if (isa<BuildVectorSDNode>(Op1))
18780       Op1 = Op1.getOperand(0);
18781
18782     if (!isa<ConstantSDNode>(Op1))
18783       return SDValue();
18784
18785     EVT SVT = VT.getVectorElementType();
18786     unsigned SVTBits = SVT.getSizeInBits();
18787
18788     ConstantSDNode *CND = cast<ConstantSDNode>(Op1);
18789     const APInt &C = APInt(SVTBits, CND->getAPIntValue().getZExtValue());
18790     uint64_t ShAmt = C.getZExtValue();
18791
18792     // Don't try to convert this shift into a ISD::SRA if the shift
18793     // count is bigger than or equal to the element size.
18794     if (ShAmt >= SVTBits)
18795       return SDValue();
18796
18797     // Trivial case: if the shift count is zero, then fold this
18798     // into the first operand.
18799     if (ShAmt == 0)
18800       return Op0;
18801
18802     // Replace this packed shift intrinsic with a target independent
18803     // shift dag node.
18804     SDValue Splat = DAG.getConstant(C, VT);
18805     return DAG.getNode(ISD::SRA, SDLoc(N), VT, Op0, Splat);
18806   }
18807   }
18808 }
18809
18810 /// PerformMulCombine - Optimize a single multiply with constant into two
18811 /// in order to implement it with two cheaper instructions, e.g.
18812 /// LEA + SHL, LEA + LEA.
18813 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
18814                                  TargetLowering::DAGCombinerInfo &DCI) {
18815   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
18816     return SDValue();
18817
18818   EVT VT = N->getValueType(0);
18819   if (VT != MVT::i64)
18820     return SDValue();
18821
18822   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
18823   if (!C)
18824     return SDValue();
18825   uint64_t MulAmt = C->getZExtValue();
18826   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
18827     return SDValue();
18828
18829   uint64_t MulAmt1 = 0;
18830   uint64_t MulAmt2 = 0;
18831   if ((MulAmt % 9) == 0) {
18832     MulAmt1 = 9;
18833     MulAmt2 = MulAmt / 9;
18834   } else if ((MulAmt % 5) == 0) {
18835     MulAmt1 = 5;
18836     MulAmt2 = MulAmt / 5;
18837   } else if ((MulAmt % 3) == 0) {
18838     MulAmt1 = 3;
18839     MulAmt2 = MulAmt / 3;
18840   }
18841   if (MulAmt2 &&
18842       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
18843     SDLoc DL(N);
18844
18845     if (isPowerOf2_64(MulAmt2) &&
18846         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
18847       // If second multiplifer is pow2, issue it first. We want the multiply by
18848       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
18849       // is an add.
18850       std::swap(MulAmt1, MulAmt2);
18851
18852     SDValue NewMul;
18853     if (isPowerOf2_64(MulAmt1))
18854       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
18855                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
18856     else
18857       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
18858                            DAG.getConstant(MulAmt1, VT));
18859
18860     if (isPowerOf2_64(MulAmt2))
18861       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
18862                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
18863     else
18864       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
18865                            DAG.getConstant(MulAmt2, VT));
18866
18867     // Do not add new nodes to DAG combiner worklist.
18868     DCI.CombineTo(N, NewMul, false);
18869   }
18870   return SDValue();
18871 }
18872
18873 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
18874   SDValue N0 = N->getOperand(0);
18875   SDValue N1 = N->getOperand(1);
18876   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
18877   EVT VT = N0.getValueType();
18878
18879   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
18880   // since the result of setcc_c is all zero's or all ones.
18881   if (VT.isInteger() && !VT.isVector() &&
18882       N1C && N0.getOpcode() == ISD::AND &&
18883       N0.getOperand(1).getOpcode() == ISD::Constant) {
18884     SDValue N00 = N0.getOperand(0);
18885     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
18886         ((N00.getOpcode() == ISD::ANY_EXTEND ||
18887           N00.getOpcode() == ISD::ZERO_EXTEND) &&
18888          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
18889       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
18890       APInt ShAmt = N1C->getAPIntValue();
18891       Mask = Mask.shl(ShAmt);
18892       if (Mask != 0)
18893         return DAG.getNode(ISD::AND, SDLoc(N), VT,
18894                            N00, DAG.getConstant(Mask, VT));
18895     }
18896   }
18897
18898   // Hardware support for vector shifts is sparse which makes us scalarize the
18899   // vector operations in many cases. Also, on sandybridge ADD is faster than
18900   // shl.
18901   // (shl V, 1) -> add V,V
18902   if (isSplatVector(N1.getNode())) {
18903     assert(N0.getValueType().isVector() && "Invalid vector shift type");
18904     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
18905     // We shift all of the values by one. In many cases we do not have
18906     // hardware support for this operation. This is better expressed as an ADD
18907     // of two values.
18908     if (N1C && (1 == N1C->getZExtValue())) {
18909       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
18910     }
18911   }
18912
18913   return SDValue();
18914 }
18915
18916 /// \brief Returns a vector of 0s if the node in input is a vector logical
18917 /// shift by a constant amount which is known to be bigger than or equal
18918 /// to the vector element size in bits.
18919 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
18920                                       const X86Subtarget *Subtarget) {
18921   EVT VT = N->getValueType(0);
18922
18923   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
18924       (!Subtarget->hasInt256() ||
18925        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
18926     return SDValue();
18927
18928   SDValue Amt = N->getOperand(1);
18929   SDLoc DL(N);
18930   if (isSplatVector(Amt.getNode())) {
18931     SDValue SclrAmt = Amt->getOperand(0);
18932     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
18933       APInt ShiftAmt = C->getAPIntValue();
18934       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
18935
18936       // SSE2/AVX2 logical shifts always return a vector of 0s
18937       // if the shift amount is bigger than or equal to
18938       // the element size. The constant shift amount will be
18939       // encoded as a 8-bit immediate.
18940       if (ShiftAmt.trunc(8).uge(MaxAmount))
18941         return getZeroVector(VT, Subtarget, DAG, DL);
18942     }
18943   }
18944
18945   return SDValue();
18946 }
18947
18948 /// PerformShiftCombine - Combine shifts.
18949 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
18950                                    TargetLowering::DAGCombinerInfo &DCI,
18951                                    const X86Subtarget *Subtarget) {
18952   if (N->getOpcode() == ISD::SHL) {
18953     SDValue V = PerformSHLCombine(N, DAG);
18954     if (V.getNode()) return V;
18955   }
18956
18957   if (N->getOpcode() != ISD::SRA) {
18958     // Try to fold this logical shift into a zero vector.
18959     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
18960     if (V.getNode()) return V;
18961   }
18962
18963   return SDValue();
18964 }
18965
18966 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
18967 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
18968 // and friends.  Likewise for OR -> CMPNEQSS.
18969 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
18970                             TargetLowering::DAGCombinerInfo &DCI,
18971                             const X86Subtarget *Subtarget) {
18972   unsigned opcode;
18973
18974   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
18975   // we're requiring SSE2 for both.
18976   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
18977     SDValue N0 = N->getOperand(0);
18978     SDValue N1 = N->getOperand(1);
18979     SDValue CMP0 = N0->getOperand(1);
18980     SDValue CMP1 = N1->getOperand(1);
18981     SDLoc DL(N);
18982
18983     // The SETCCs should both refer to the same CMP.
18984     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
18985       return SDValue();
18986
18987     SDValue CMP00 = CMP0->getOperand(0);
18988     SDValue CMP01 = CMP0->getOperand(1);
18989     EVT     VT    = CMP00.getValueType();
18990
18991     if (VT == MVT::f32 || VT == MVT::f64) {
18992       bool ExpectingFlags = false;
18993       // Check for any users that want flags:
18994       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
18995            !ExpectingFlags && UI != UE; ++UI)
18996         switch (UI->getOpcode()) {
18997         default:
18998         case ISD::BR_CC:
18999         case ISD::BRCOND:
19000         case ISD::SELECT:
19001           ExpectingFlags = true;
19002           break;
19003         case ISD::CopyToReg:
19004         case ISD::SIGN_EXTEND:
19005         case ISD::ZERO_EXTEND:
19006         case ISD::ANY_EXTEND:
19007           break;
19008         }
19009
19010       if (!ExpectingFlags) {
19011         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
19012         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
19013
19014         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
19015           X86::CondCode tmp = cc0;
19016           cc0 = cc1;
19017           cc1 = tmp;
19018         }
19019
19020         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
19021             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
19022           // FIXME: need symbolic constants for these magic numbers.
19023           // See X86ATTInstPrinter.cpp:printSSECC().
19024           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
19025           if (Subtarget->hasAVX512()) {
19026             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
19027                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
19028             if (N->getValueType(0) != MVT::i1)
19029               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
19030                                  FSetCC);
19031             return FSetCC;
19032           }
19033           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
19034                                               CMP00.getValueType(), CMP00, CMP01,
19035                                               DAG.getConstant(x86cc, MVT::i8));
19036
19037           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
19038           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
19039
19040           if (is64BitFP && !Subtarget->is64Bit()) {
19041             // On a 32-bit target, we cannot bitcast the 64-bit float to a
19042             // 64-bit integer, since that's not a legal type. Since
19043             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
19044             // bits, but can do this little dance to extract the lowest 32 bits
19045             // and work with those going forward.
19046             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
19047                                            OnesOrZeroesF);
19048             SDValue Vector32 = DAG.getNode(ISD::BITCAST, DL, MVT::v4f32,
19049                                            Vector64);
19050             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
19051                                         Vector32, DAG.getIntPtrConstant(0));
19052             IntVT = MVT::i32;
19053           }
19054
19055           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT, OnesOrZeroesF);
19056           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
19057                                       DAG.getConstant(1, IntVT));
19058           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
19059           return OneBitOfTruth;
19060         }
19061       }
19062     }
19063   }
19064   return SDValue();
19065 }
19066
19067 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
19068 /// so it can be folded inside ANDNP.
19069 static bool CanFoldXORWithAllOnes(const SDNode *N) {
19070   EVT VT = N->getValueType(0);
19071
19072   // Match direct AllOnes for 128 and 256-bit vectors
19073   if (ISD::isBuildVectorAllOnes(N))
19074     return true;
19075
19076   // Look through a bit convert.
19077   if (N->getOpcode() == ISD::BITCAST)
19078     N = N->getOperand(0).getNode();
19079
19080   // Sometimes the operand may come from a insert_subvector building a 256-bit
19081   // allones vector
19082   if (VT.is256BitVector() &&
19083       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
19084     SDValue V1 = N->getOperand(0);
19085     SDValue V2 = N->getOperand(1);
19086
19087     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
19088         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
19089         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
19090         ISD::isBuildVectorAllOnes(V2.getNode()))
19091       return true;
19092   }
19093
19094   return false;
19095 }
19096
19097 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
19098 // register. In most cases we actually compare or select YMM-sized registers
19099 // and mixing the two types creates horrible code. This method optimizes
19100 // some of the transition sequences.
19101 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
19102                                  TargetLowering::DAGCombinerInfo &DCI,
19103                                  const X86Subtarget *Subtarget) {
19104   EVT VT = N->getValueType(0);
19105   if (!VT.is256BitVector())
19106     return SDValue();
19107
19108   assert((N->getOpcode() == ISD::ANY_EXTEND ||
19109           N->getOpcode() == ISD::ZERO_EXTEND ||
19110           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
19111
19112   SDValue Narrow = N->getOperand(0);
19113   EVT NarrowVT = Narrow->getValueType(0);
19114   if (!NarrowVT.is128BitVector())
19115     return SDValue();
19116
19117   if (Narrow->getOpcode() != ISD::XOR &&
19118       Narrow->getOpcode() != ISD::AND &&
19119       Narrow->getOpcode() != ISD::OR)
19120     return SDValue();
19121
19122   SDValue N0  = Narrow->getOperand(0);
19123   SDValue N1  = Narrow->getOperand(1);
19124   SDLoc DL(Narrow);
19125
19126   // The Left side has to be a trunc.
19127   if (N0.getOpcode() != ISD::TRUNCATE)
19128     return SDValue();
19129
19130   // The type of the truncated inputs.
19131   EVT WideVT = N0->getOperand(0)->getValueType(0);
19132   if (WideVT != VT)
19133     return SDValue();
19134
19135   // The right side has to be a 'trunc' or a constant vector.
19136   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
19137   bool RHSConst = (isSplatVector(N1.getNode()) &&
19138                    isa<ConstantSDNode>(N1->getOperand(0)));
19139   if (!RHSTrunc && !RHSConst)
19140     return SDValue();
19141
19142   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19143
19144   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
19145     return SDValue();
19146
19147   // Set N0 and N1 to hold the inputs to the new wide operation.
19148   N0 = N0->getOperand(0);
19149   if (RHSConst) {
19150     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
19151                      N1->getOperand(0));
19152     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
19153     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
19154   } else if (RHSTrunc) {
19155     N1 = N1->getOperand(0);
19156   }
19157
19158   // Generate the wide operation.
19159   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
19160   unsigned Opcode = N->getOpcode();
19161   switch (Opcode) {
19162   case ISD::ANY_EXTEND:
19163     return Op;
19164   case ISD::ZERO_EXTEND: {
19165     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
19166     APInt Mask = APInt::getAllOnesValue(InBits);
19167     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
19168     return DAG.getNode(ISD::AND, DL, VT,
19169                        Op, DAG.getConstant(Mask, VT));
19170   }
19171   case ISD::SIGN_EXTEND:
19172     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
19173                        Op, DAG.getValueType(NarrowVT));
19174   default:
19175     llvm_unreachable("Unexpected opcode");
19176   }
19177 }
19178
19179 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
19180                                  TargetLowering::DAGCombinerInfo &DCI,
19181                                  const X86Subtarget *Subtarget) {
19182   EVT VT = N->getValueType(0);
19183   if (DCI.isBeforeLegalizeOps())
19184     return SDValue();
19185
19186   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
19187   if (R.getNode())
19188     return R;
19189
19190   // Create BEXTR instructions
19191   // BEXTR is ((X >> imm) & (2**size-1))
19192   if (VT == MVT::i32 || VT == MVT::i64) {
19193     SDValue N0 = N->getOperand(0);
19194     SDValue N1 = N->getOperand(1);
19195     SDLoc DL(N);
19196
19197     // Check for BEXTR.
19198     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
19199         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
19200       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
19201       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
19202       if (MaskNode && ShiftNode) {
19203         uint64_t Mask = MaskNode->getZExtValue();
19204         uint64_t Shift = ShiftNode->getZExtValue();
19205         if (isMask_64(Mask)) {
19206           uint64_t MaskSize = CountPopulation_64(Mask);
19207           if (Shift + MaskSize <= VT.getSizeInBits())
19208             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
19209                                DAG.getConstant(Shift | (MaskSize << 8), VT));
19210         }
19211       }
19212     } // BEXTR
19213
19214     return SDValue();
19215   }
19216
19217   // Want to form ANDNP nodes:
19218   // 1) In the hopes of then easily combining them with OR and AND nodes
19219   //    to form PBLEND/PSIGN.
19220   // 2) To match ANDN packed intrinsics
19221   if (VT != MVT::v2i64 && VT != MVT::v4i64)
19222     return SDValue();
19223
19224   SDValue N0 = N->getOperand(0);
19225   SDValue N1 = N->getOperand(1);
19226   SDLoc DL(N);
19227
19228   // Check LHS for vnot
19229   if (N0.getOpcode() == ISD::XOR &&
19230       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
19231       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
19232     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
19233
19234   // Check RHS for vnot
19235   if (N1.getOpcode() == ISD::XOR &&
19236       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
19237       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
19238     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
19239
19240   return SDValue();
19241 }
19242
19243 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
19244                                 TargetLowering::DAGCombinerInfo &DCI,
19245                                 const X86Subtarget *Subtarget) {
19246   if (DCI.isBeforeLegalizeOps())
19247     return SDValue();
19248
19249   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
19250   if (R.getNode())
19251     return R;
19252
19253   SDValue N0 = N->getOperand(0);
19254   SDValue N1 = N->getOperand(1);
19255   EVT VT = N->getValueType(0);
19256
19257   // look for psign/blend
19258   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
19259     if (!Subtarget->hasSSSE3() ||
19260         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
19261       return SDValue();
19262
19263     // Canonicalize pandn to RHS
19264     if (N0.getOpcode() == X86ISD::ANDNP)
19265       std::swap(N0, N1);
19266     // or (and (m, y), (pandn m, x))
19267     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
19268       SDValue Mask = N1.getOperand(0);
19269       SDValue X    = N1.getOperand(1);
19270       SDValue Y;
19271       if (N0.getOperand(0) == Mask)
19272         Y = N0.getOperand(1);
19273       if (N0.getOperand(1) == Mask)
19274         Y = N0.getOperand(0);
19275
19276       // Check to see if the mask appeared in both the AND and ANDNP and
19277       if (!Y.getNode())
19278         return SDValue();
19279
19280       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
19281       // Look through mask bitcast.
19282       if (Mask.getOpcode() == ISD::BITCAST)
19283         Mask = Mask.getOperand(0);
19284       if (X.getOpcode() == ISD::BITCAST)
19285         X = X.getOperand(0);
19286       if (Y.getOpcode() == ISD::BITCAST)
19287         Y = Y.getOperand(0);
19288
19289       EVT MaskVT = Mask.getValueType();
19290
19291       // Validate that the Mask operand is a vector sra node.
19292       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
19293       // there is no psrai.b
19294       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
19295       unsigned SraAmt = ~0;
19296       if (Mask.getOpcode() == ISD::SRA) {
19297         SDValue Amt = Mask.getOperand(1);
19298         if (isSplatVector(Amt.getNode())) {
19299           SDValue SclrAmt = Amt->getOperand(0);
19300           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
19301             SraAmt = C->getZExtValue();
19302         }
19303       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
19304         SDValue SraC = Mask.getOperand(1);
19305         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
19306       }
19307       if ((SraAmt + 1) != EltBits)
19308         return SDValue();
19309
19310       SDLoc DL(N);
19311
19312       // Now we know we at least have a plendvb with the mask val.  See if
19313       // we can form a psignb/w/d.
19314       // psign = x.type == y.type == mask.type && y = sub(0, x);
19315       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
19316           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
19317           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
19318         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
19319                "Unsupported VT for PSIGN");
19320         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
19321         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
19322       }
19323       // PBLENDVB only available on SSE 4.1
19324       if (!Subtarget->hasSSE41())
19325         return SDValue();
19326
19327       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
19328
19329       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
19330       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
19331       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
19332       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
19333       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
19334     }
19335   }
19336
19337   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
19338     return SDValue();
19339
19340   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
19341   MachineFunction &MF = DAG.getMachineFunction();
19342   bool OptForSize = MF.getFunction()->getAttributes().
19343     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
19344
19345   // SHLD/SHRD instructions have lower register pressure, but on some
19346   // platforms they have higher latency than the equivalent
19347   // series of shifts/or that would otherwise be generated.
19348   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
19349   // have higher latencies and we are not optimizing for size.
19350   if (!OptForSize && Subtarget->isSHLDSlow())
19351     return SDValue();
19352
19353   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
19354     std::swap(N0, N1);
19355   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
19356     return SDValue();
19357   if (!N0.hasOneUse() || !N1.hasOneUse())
19358     return SDValue();
19359
19360   SDValue ShAmt0 = N0.getOperand(1);
19361   if (ShAmt0.getValueType() != MVT::i8)
19362     return SDValue();
19363   SDValue ShAmt1 = N1.getOperand(1);
19364   if (ShAmt1.getValueType() != MVT::i8)
19365     return SDValue();
19366   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
19367     ShAmt0 = ShAmt0.getOperand(0);
19368   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
19369     ShAmt1 = ShAmt1.getOperand(0);
19370
19371   SDLoc DL(N);
19372   unsigned Opc = X86ISD::SHLD;
19373   SDValue Op0 = N0.getOperand(0);
19374   SDValue Op1 = N1.getOperand(0);
19375   if (ShAmt0.getOpcode() == ISD::SUB) {
19376     Opc = X86ISD::SHRD;
19377     std::swap(Op0, Op1);
19378     std::swap(ShAmt0, ShAmt1);
19379   }
19380
19381   unsigned Bits = VT.getSizeInBits();
19382   if (ShAmt1.getOpcode() == ISD::SUB) {
19383     SDValue Sum = ShAmt1.getOperand(0);
19384     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
19385       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
19386       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
19387         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
19388       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
19389         return DAG.getNode(Opc, DL, VT,
19390                            Op0, Op1,
19391                            DAG.getNode(ISD::TRUNCATE, DL,
19392                                        MVT::i8, ShAmt0));
19393     }
19394   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
19395     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
19396     if (ShAmt0C &&
19397         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
19398       return DAG.getNode(Opc, DL, VT,
19399                          N0.getOperand(0), N1.getOperand(0),
19400                          DAG.getNode(ISD::TRUNCATE, DL,
19401                                        MVT::i8, ShAmt0));
19402   }
19403
19404   return SDValue();
19405 }
19406
19407 // Generate NEG and CMOV for integer abs.
19408 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
19409   EVT VT = N->getValueType(0);
19410
19411   // Since X86 does not have CMOV for 8-bit integer, we don't convert
19412   // 8-bit integer abs to NEG and CMOV.
19413   if (VT.isInteger() && VT.getSizeInBits() == 8)
19414     return SDValue();
19415
19416   SDValue N0 = N->getOperand(0);
19417   SDValue N1 = N->getOperand(1);
19418   SDLoc DL(N);
19419
19420   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
19421   // and change it to SUB and CMOV.
19422   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
19423       N0.getOpcode() == ISD::ADD &&
19424       N0.getOperand(1) == N1 &&
19425       N1.getOpcode() == ISD::SRA &&
19426       N1.getOperand(0) == N0.getOperand(0))
19427     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
19428       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
19429         // Generate SUB & CMOV.
19430         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
19431                                   DAG.getConstant(0, VT), N0.getOperand(0));
19432
19433         SDValue Ops[] = { N0.getOperand(0), Neg,
19434                           DAG.getConstant(X86::COND_GE, MVT::i8),
19435                           SDValue(Neg.getNode(), 1) };
19436         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
19437       }
19438   return SDValue();
19439 }
19440
19441 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
19442 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
19443                                  TargetLowering::DAGCombinerInfo &DCI,
19444                                  const X86Subtarget *Subtarget) {
19445   if (DCI.isBeforeLegalizeOps())
19446     return SDValue();
19447
19448   if (Subtarget->hasCMov()) {
19449     SDValue RV = performIntegerAbsCombine(N, DAG);
19450     if (RV.getNode())
19451       return RV;
19452   }
19453
19454   return SDValue();
19455 }
19456
19457 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
19458 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
19459                                   TargetLowering::DAGCombinerInfo &DCI,
19460                                   const X86Subtarget *Subtarget) {
19461   LoadSDNode *Ld = cast<LoadSDNode>(N);
19462   EVT RegVT = Ld->getValueType(0);
19463   EVT MemVT = Ld->getMemoryVT();
19464   SDLoc dl(Ld);
19465   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19466   unsigned RegSz = RegVT.getSizeInBits();
19467
19468   // On Sandybridge unaligned 256bit loads are inefficient.
19469   ISD::LoadExtType Ext = Ld->getExtensionType();
19470   unsigned Alignment = Ld->getAlignment();
19471   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
19472   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
19473       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
19474     unsigned NumElems = RegVT.getVectorNumElements();
19475     if (NumElems < 2)
19476       return SDValue();
19477
19478     SDValue Ptr = Ld->getBasePtr();
19479     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
19480
19481     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
19482                                   NumElems/2);
19483     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
19484                                 Ld->getPointerInfo(), Ld->isVolatile(),
19485                                 Ld->isNonTemporal(), Ld->isInvariant(),
19486                                 Alignment);
19487     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
19488     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
19489                                 Ld->getPointerInfo(), Ld->isVolatile(),
19490                                 Ld->isNonTemporal(), Ld->isInvariant(),
19491                                 std::min(16U, Alignment));
19492     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
19493                              Load1.getValue(1),
19494                              Load2.getValue(1));
19495
19496     SDValue NewVec = DAG.getUNDEF(RegVT);
19497     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
19498     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
19499     return DCI.CombineTo(N, NewVec, TF, true);
19500   }
19501
19502   // If this is a vector EXT Load then attempt to optimize it using a
19503   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
19504   // expansion is still better than scalar code.
19505   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
19506   // emit a shuffle and a arithmetic shift.
19507   // TODO: It is possible to support ZExt by zeroing the undef values
19508   // during the shuffle phase or after the shuffle.
19509   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
19510       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
19511     assert(MemVT != RegVT && "Cannot extend to the same type");
19512     assert(MemVT.isVector() && "Must load a vector from memory");
19513
19514     unsigned NumElems = RegVT.getVectorNumElements();
19515     unsigned MemSz = MemVT.getSizeInBits();
19516     assert(RegSz > MemSz && "Register size must be greater than the mem size");
19517
19518     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
19519       return SDValue();
19520
19521     // All sizes must be a power of two.
19522     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
19523       return SDValue();
19524
19525     // Attempt to load the original value using scalar loads.
19526     // Find the largest scalar type that divides the total loaded size.
19527     MVT SclrLoadTy = MVT::i8;
19528     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
19529          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
19530       MVT Tp = (MVT::SimpleValueType)tp;
19531       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
19532         SclrLoadTy = Tp;
19533       }
19534     }
19535
19536     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
19537     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
19538         (64 <= MemSz))
19539       SclrLoadTy = MVT::f64;
19540
19541     // Calculate the number of scalar loads that we need to perform
19542     // in order to load our vector from memory.
19543     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
19544     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
19545       return SDValue();
19546
19547     unsigned loadRegZize = RegSz;
19548     if (Ext == ISD::SEXTLOAD && RegSz == 256)
19549       loadRegZize /= 2;
19550
19551     // Represent our vector as a sequence of elements which are the
19552     // largest scalar that we can load.
19553     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
19554       loadRegZize/SclrLoadTy.getSizeInBits());
19555
19556     // Represent the data using the same element type that is stored in
19557     // memory. In practice, we ''widen'' MemVT.
19558     EVT WideVecVT =
19559           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
19560                        loadRegZize/MemVT.getScalarType().getSizeInBits());
19561
19562     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
19563       "Invalid vector type");
19564
19565     // We can't shuffle using an illegal type.
19566     if (!TLI.isTypeLegal(WideVecVT))
19567       return SDValue();
19568
19569     SmallVector<SDValue, 8> Chains;
19570     SDValue Ptr = Ld->getBasePtr();
19571     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
19572                                         TLI.getPointerTy());
19573     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
19574
19575     for (unsigned i = 0; i < NumLoads; ++i) {
19576       // Perform a single load.
19577       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
19578                                        Ptr, Ld->getPointerInfo(),
19579                                        Ld->isVolatile(), Ld->isNonTemporal(),
19580                                        Ld->isInvariant(), Ld->getAlignment());
19581       Chains.push_back(ScalarLoad.getValue(1));
19582       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
19583       // another round of DAGCombining.
19584       if (i == 0)
19585         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
19586       else
19587         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
19588                           ScalarLoad, DAG.getIntPtrConstant(i));
19589
19590       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
19591     }
19592
19593     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
19594
19595     // Bitcast the loaded value to a vector of the original element type, in
19596     // the size of the target vector type.
19597     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
19598     unsigned SizeRatio = RegSz/MemSz;
19599
19600     if (Ext == ISD::SEXTLOAD) {
19601       // If we have SSE4.1 we can directly emit a VSEXT node.
19602       if (Subtarget->hasSSE41()) {
19603         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
19604         return DCI.CombineTo(N, Sext, TF, true);
19605       }
19606
19607       // Otherwise we'll shuffle the small elements in the high bits of the
19608       // larger type and perform an arithmetic shift. If the shift is not legal
19609       // it's better to scalarize.
19610       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
19611         return SDValue();
19612
19613       // Redistribute the loaded elements into the different locations.
19614       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
19615       for (unsigned i = 0; i != NumElems; ++i)
19616         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
19617
19618       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
19619                                            DAG.getUNDEF(WideVecVT),
19620                                            &ShuffleVec[0]);
19621
19622       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
19623
19624       // Build the arithmetic shift.
19625       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
19626                      MemVT.getVectorElementType().getSizeInBits();
19627       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
19628                           DAG.getConstant(Amt, RegVT));
19629
19630       return DCI.CombineTo(N, Shuff, TF, true);
19631     }
19632
19633     // Redistribute the loaded elements into the different locations.
19634     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
19635     for (unsigned i = 0; i != NumElems; ++i)
19636       ShuffleVec[i*SizeRatio] = i;
19637
19638     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
19639                                          DAG.getUNDEF(WideVecVT),
19640                                          &ShuffleVec[0]);
19641
19642     // Bitcast to the requested type.
19643     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
19644     // Replace the original load with the new sequence
19645     // and return the new chain.
19646     return DCI.CombineTo(N, Shuff, TF, true);
19647   }
19648
19649   return SDValue();
19650 }
19651
19652 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
19653 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
19654                                    const X86Subtarget *Subtarget) {
19655   StoreSDNode *St = cast<StoreSDNode>(N);
19656   EVT VT = St->getValue().getValueType();
19657   EVT StVT = St->getMemoryVT();
19658   SDLoc dl(St);
19659   SDValue StoredVal = St->getOperand(1);
19660   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19661
19662   // If we are saving a concatenation of two XMM registers, perform two stores.
19663   // On Sandy Bridge, 256-bit memory operations are executed by two
19664   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
19665   // memory  operation.
19666   unsigned Alignment = St->getAlignment();
19667   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
19668   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
19669       StVT == VT && !IsAligned) {
19670     unsigned NumElems = VT.getVectorNumElements();
19671     if (NumElems < 2)
19672       return SDValue();
19673
19674     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
19675     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
19676
19677     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
19678     SDValue Ptr0 = St->getBasePtr();
19679     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
19680
19681     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
19682                                 St->getPointerInfo(), St->isVolatile(),
19683                                 St->isNonTemporal(), Alignment);
19684     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
19685                                 St->getPointerInfo(), St->isVolatile(),
19686                                 St->isNonTemporal(),
19687                                 std::min(16U, Alignment));
19688     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
19689   }
19690
19691   // Optimize trunc store (of multiple scalars) to shuffle and store.
19692   // First, pack all of the elements in one place. Next, store to memory
19693   // in fewer chunks.
19694   if (St->isTruncatingStore() && VT.isVector()) {
19695     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19696     unsigned NumElems = VT.getVectorNumElements();
19697     assert(StVT != VT && "Cannot truncate to the same type");
19698     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
19699     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
19700
19701     // From, To sizes and ElemCount must be pow of two
19702     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
19703     // We are going to use the original vector elt for storing.
19704     // Accumulated smaller vector elements must be a multiple of the store size.
19705     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
19706
19707     unsigned SizeRatio  = FromSz / ToSz;
19708
19709     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
19710
19711     // Create a type on which we perform the shuffle
19712     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
19713             StVT.getScalarType(), NumElems*SizeRatio);
19714
19715     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
19716
19717     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
19718     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
19719     for (unsigned i = 0; i != NumElems; ++i)
19720       ShuffleVec[i] = i * SizeRatio;
19721
19722     // Can't shuffle using an illegal type.
19723     if (!TLI.isTypeLegal(WideVecVT))
19724       return SDValue();
19725
19726     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
19727                                          DAG.getUNDEF(WideVecVT),
19728                                          &ShuffleVec[0]);
19729     // At this point all of the data is stored at the bottom of the
19730     // register. We now need to save it to mem.
19731
19732     // Find the largest store unit
19733     MVT StoreType = MVT::i8;
19734     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
19735          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
19736       MVT Tp = (MVT::SimpleValueType)tp;
19737       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
19738         StoreType = Tp;
19739     }
19740
19741     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
19742     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
19743         (64 <= NumElems * ToSz))
19744       StoreType = MVT::f64;
19745
19746     // Bitcast the original vector into a vector of store-size units
19747     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
19748             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
19749     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
19750     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
19751     SmallVector<SDValue, 8> Chains;
19752     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
19753                                         TLI.getPointerTy());
19754     SDValue Ptr = St->getBasePtr();
19755
19756     // Perform one or more big stores into memory.
19757     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
19758       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
19759                                    StoreType, ShuffWide,
19760                                    DAG.getIntPtrConstant(i));
19761       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
19762                                 St->getPointerInfo(), St->isVolatile(),
19763                                 St->isNonTemporal(), St->getAlignment());
19764       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
19765       Chains.push_back(Ch);
19766     }
19767
19768     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
19769   }
19770
19771   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
19772   // the FP state in cases where an emms may be missing.
19773   // A preferable solution to the general problem is to figure out the right
19774   // places to insert EMMS.  This qualifies as a quick hack.
19775
19776   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
19777   if (VT.getSizeInBits() != 64)
19778     return SDValue();
19779
19780   const Function *F = DAG.getMachineFunction().getFunction();
19781   bool NoImplicitFloatOps = F->getAttributes().
19782     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
19783   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
19784                      && Subtarget->hasSSE2();
19785   if ((VT.isVector() ||
19786        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
19787       isa<LoadSDNode>(St->getValue()) &&
19788       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
19789       St->getChain().hasOneUse() && !St->isVolatile()) {
19790     SDNode* LdVal = St->getValue().getNode();
19791     LoadSDNode *Ld = nullptr;
19792     int TokenFactorIndex = -1;
19793     SmallVector<SDValue, 8> Ops;
19794     SDNode* ChainVal = St->getChain().getNode();
19795     // Must be a store of a load.  We currently handle two cases:  the load
19796     // is a direct child, and it's under an intervening TokenFactor.  It is
19797     // possible to dig deeper under nested TokenFactors.
19798     if (ChainVal == LdVal)
19799       Ld = cast<LoadSDNode>(St->getChain());
19800     else if (St->getValue().hasOneUse() &&
19801              ChainVal->getOpcode() == ISD::TokenFactor) {
19802       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
19803         if (ChainVal->getOperand(i).getNode() == LdVal) {
19804           TokenFactorIndex = i;
19805           Ld = cast<LoadSDNode>(St->getValue());
19806         } else
19807           Ops.push_back(ChainVal->getOperand(i));
19808       }
19809     }
19810
19811     if (!Ld || !ISD::isNormalLoad(Ld))
19812       return SDValue();
19813
19814     // If this is not the MMX case, i.e. we are just turning i64 load/store
19815     // into f64 load/store, avoid the transformation if there are multiple
19816     // uses of the loaded value.
19817     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
19818       return SDValue();
19819
19820     SDLoc LdDL(Ld);
19821     SDLoc StDL(N);
19822     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
19823     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
19824     // pair instead.
19825     if (Subtarget->is64Bit() || F64IsLegal) {
19826       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
19827       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
19828                                   Ld->getPointerInfo(), Ld->isVolatile(),
19829                                   Ld->isNonTemporal(), Ld->isInvariant(),
19830                                   Ld->getAlignment());
19831       SDValue NewChain = NewLd.getValue(1);
19832       if (TokenFactorIndex != -1) {
19833         Ops.push_back(NewChain);
19834         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
19835       }
19836       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
19837                           St->getPointerInfo(),
19838                           St->isVolatile(), St->isNonTemporal(),
19839                           St->getAlignment());
19840     }
19841
19842     // Otherwise, lower to two pairs of 32-bit loads / stores.
19843     SDValue LoAddr = Ld->getBasePtr();
19844     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
19845                                  DAG.getConstant(4, MVT::i32));
19846
19847     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
19848                                Ld->getPointerInfo(),
19849                                Ld->isVolatile(), Ld->isNonTemporal(),
19850                                Ld->isInvariant(), Ld->getAlignment());
19851     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
19852                                Ld->getPointerInfo().getWithOffset(4),
19853                                Ld->isVolatile(), Ld->isNonTemporal(),
19854                                Ld->isInvariant(),
19855                                MinAlign(Ld->getAlignment(), 4));
19856
19857     SDValue NewChain = LoLd.getValue(1);
19858     if (TokenFactorIndex != -1) {
19859       Ops.push_back(LoLd);
19860       Ops.push_back(HiLd);
19861       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
19862     }
19863
19864     LoAddr = St->getBasePtr();
19865     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
19866                          DAG.getConstant(4, MVT::i32));
19867
19868     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
19869                                 St->getPointerInfo(),
19870                                 St->isVolatile(), St->isNonTemporal(),
19871                                 St->getAlignment());
19872     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
19873                                 St->getPointerInfo().getWithOffset(4),
19874                                 St->isVolatile(),
19875                                 St->isNonTemporal(),
19876                                 MinAlign(St->getAlignment(), 4));
19877     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
19878   }
19879   return SDValue();
19880 }
19881
19882 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
19883 /// and return the operands for the horizontal operation in LHS and RHS.  A
19884 /// horizontal operation performs the binary operation on successive elements
19885 /// of its first operand, then on successive elements of its second operand,
19886 /// returning the resulting values in a vector.  For example, if
19887 ///   A = < float a0, float a1, float a2, float a3 >
19888 /// and
19889 ///   B = < float b0, float b1, float b2, float b3 >
19890 /// then the result of doing a horizontal operation on A and B is
19891 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
19892 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
19893 /// A horizontal-op B, for some already available A and B, and if so then LHS is
19894 /// set to A, RHS to B, and the routine returns 'true'.
19895 /// Note that the binary operation should have the property that if one of the
19896 /// operands is UNDEF then the result is UNDEF.
19897 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
19898   // Look for the following pattern: if
19899   //   A = < float a0, float a1, float a2, float a3 >
19900   //   B = < float b0, float b1, float b2, float b3 >
19901   // and
19902   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
19903   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
19904   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
19905   // which is A horizontal-op B.
19906
19907   // At least one of the operands should be a vector shuffle.
19908   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
19909       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
19910     return false;
19911
19912   MVT VT = LHS.getSimpleValueType();
19913
19914   assert((VT.is128BitVector() || VT.is256BitVector()) &&
19915          "Unsupported vector type for horizontal add/sub");
19916
19917   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
19918   // operate independently on 128-bit lanes.
19919   unsigned NumElts = VT.getVectorNumElements();
19920   unsigned NumLanes = VT.getSizeInBits()/128;
19921   unsigned NumLaneElts = NumElts / NumLanes;
19922   assert((NumLaneElts % 2 == 0) &&
19923          "Vector type should have an even number of elements in each lane");
19924   unsigned HalfLaneElts = NumLaneElts/2;
19925
19926   // View LHS in the form
19927   //   LHS = VECTOR_SHUFFLE A, B, LMask
19928   // If LHS is not a shuffle then pretend it is the shuffle
19929   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
19930   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
19931   // type VT.
19932   SDValue A, B;
19933   SmallVector<int, 16> LMask(NumElts);
19934   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
19935     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
19936       A = LHS.getOperand(0);
19937     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
19938       B = LHS.getOperand(1);
19939     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
19940     std::copy(Mask.begin(), Mask.end(), LMask.begin());
19941   } else {
19942     if (LHS.getOpcode() != ISD::UNDEF)
19943       A = LHS;
19944     for (unsigned i = 0; i != NumElts; ++i)
19945       LMask[i] = i;
19946   }
19947
19948   // Likewise, view RHS in the form
19949   //   RHS = VECTOR_SHUFFLE C, D, RMask
19950   SDValue C, D;
19951   SmallVector<int, 16> RMask(NumElts);
19952   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
19953     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
19954       C = RHS.getOperand(0);
19955     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
19956       D = RHS.getOperand(1);
19957     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
19958     std::copy(Mask.begin(), Mask.end(), RMask.begin());
19959   } else {
19960     if (RHS.getOpcode() != ISD::UNDEF)
19961       C = RHS;
19962     for (unsigned i = 0; i != NumElts; ++i)
19963       RMask[i] = i;
19964   }
19965
19966   // Check that the shuffles are both shuffling the same vectors.
19967   if (!(A == C && B == D) && !(A == D && B == C))
19968     return false;
19969
19970   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
19971   if (!A.getNode() && !B.getNode())
19972     return false;
19973
19974   // If A and B occur in reverse order in RHS, then "swap" them (which means
19975   // rewriting the mask).
19976   if (A != C)
19977     CommuteVectorShuffleMask(RMask, NumElts);
19978
19979   // At this point LHS and RHS are equivalent to
19980   //   LHS = VECTOR_SHUFFLE A, B, LMask
19981   //   RHS = VECTOR_SHUFFLE A, B, RMask
19982   // Check that the masks correspond to performing a horizontal operation.
19983   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
19984     for (unsigned i = 0; i != NumLaneElts; ++i) {
19985       int LIdx = LMask[i+l], RIdx = RMask[i+l];
19986
19987       // Ignore any UNDEF components.
19988       if (LIdx < 0 || RIdx < 0 ||
19989           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
19990           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
19991         continue;
19992
19993       // Check that successive elements are being operated on.  If not, this is
19994       // not a horizontal operation.
19995       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
19996       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
19997       if (!(LIdx == Index && RIdx == Index + 1) &&
19998           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
19999         return false;
20000     }
20001   }
20002
20003   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
20004   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
20005   return true;
20006 }
20007
20008 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
20009 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
20010                                   const X86Subtarget *Subtarget) {
20011   EVT VT = N->getValueType(0);
20012   SDValue LHS = N->getOperand(0);
20013   SDValue RHS = N->getOperand(1);
20014
20015   // Try to synthesize horizontal adds from adds of shuffles.
20016   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
20017        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
20018       isHorizontalBinOp(LHS, RHS, true))
20019     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
20020   return SDValue();
20021 }
20022
20023 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
20024 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
20025                                   const X86Subtarget *Subtarget) {
20026   EVT VT = N->getValueType(0);
20027   SDValue LHS = N->getOperand(0);
20028   SDValue RHS = N->getOperand(1);
20029
20030   // Try to synthesize horizontal subs from subs of shuffles.
20031   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
20032        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
20033       isHorizontalBinOp(LHS, RHS, false))
20034     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
20035   return SDValue();
20036 }
20037
20038 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
20039 /// X86ISD::FXOR nodes.
20040 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
20041   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
20042   // F[X]OR(0.0, x) -> x
20043   // F[X]OR(x, 0.0) -> x
20044   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
20045     if (C->getValueAPF().isPosZero())
20046       return N->getOperand(1);
20047   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
20048     if (C->getValueAPF().isPosZero())
20049       return N->getOperand(0);
20050   return SDValue();
20051 }
20052
20053 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
20054 /// X86ISD::FMAX nodes.
20055 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
20056   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
20057
20058   // Only perform optimizations if UnsafeMath is used.
20059   if (!DAG.getTarget().Options.UnsafeFPMath)
20060     return SDValue();
20061
20062   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
20063   // into FMINC and FMAXC, which are Commutative operations.
20064   unsigned NewOp = 0;
20065   switch (N->getOpcode()) {
20066     default: llvm_unreachable("unknown opcode");
20067     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
20068     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
20069   }
20070
20071   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
20072                      N->getOperand(0), N->getOperand(1));
20073 }
20074
20075 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
20076 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
20077   // FAND(0.0, x) -> 0.0
20078   // FAND(x, 0.0) -> 0.0
20079   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
20080     if (C->getValueAPF().isPosZero())
20081       return N->getOperand(0);
20082   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
20083     if (C->getValueAPF().isPosZero())
20084       return N->getOperand(1);
20085   return SDValue();
20086 }
20087
20088 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
20089 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
20090   // FANDN(x, 0.0) -> 0.0
20091   // FANDN(0.0, x) -> x
20092   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
20093     if (C->getValueAPF().isPosZero())
20094       return N->getOperand(1);
20095   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
20096     if (C->getValueAPF().isPosZero())
20097       return N->getOperand(1);
20098   return SDValue();
20099 }
20100
20101 static SDValue PerformBTCombine(SDNode *N,
20102                                 SelectionDAG &DAG,
20103                                 TargetLowering::DAGCombinerInfo &DCI) {
20104   // BT ignores high bits in the bit index operand.
20105   SDValue Op1 = N->getOperand(1);
20106   if (Op1.hasOneUse()) {
20107     unsigned BitWidth = Op1.getValueSizeInBits();
20108     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
20109     APInt KnownZero, KnownOne;
20110     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
20111                                           !DCI.isBeforeLegalizeOps());
20112     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
20113     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
20114         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
20115       DCI.CommitTargetLoweringOpt(TLO);
20116   }
20117   return SDValue();
20118 }
20119
20120 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
20121   SDValue Op = N->getOperand(0);
20122   if (Op.getOpcode() == ISD::BITCAST)
20123     Op = Op.getOperand(0);
20124   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
20125   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
20126       VT.getVectorElementType().getSizeInBits() ==
20127       OpVT.getVectorElementType().getSizeInBits()) {
20128     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
20129   }
20130   return SDValue();
20131 }
20132
20133 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
20134                                                const X86Subtarget *Subtarget) {
20135   EVT VT = N->getValueType(0);
20136   if (!VT.isVector())
20137     return SDValue();
20138
20139   SDValue N0 = N->getOperand(0);
20140   SDValue N1 = N->getOperand(1);
20141   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
20142   SDLoc dl(N);
20143
20144   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
20145   // both SSE and AVX2 since there is no sign-extended shift right
20146   // operation on a vector with 64-bit elements.
20147   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
20148   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
20149   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
20150       N0.getOpcode() == ISD::SIGN_EXTEND)) {
20151     SDValue N00 = N0.getOperand(0);
20152
20153     // EXTLOAD has a better solution on AVX2,
20154     // it may be replaced with X86ISD::VSEXT node.
20155     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
20156       if (!ISD::isNormalLoad(N00.getNode()))
20157         return SDValue();
20158
20159     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
20160         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
20161                                   N00, N1);
20162       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
20163     }
20164   }
20165   return SDValue();
20166 }
20167
20168 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
20169                                   TargetLowering::DAGCombinerInfo &DCI,
20170                                   const X86Subtarget *Subtarget) {
20171   if (!DCI.isBeforeLegalizeOps())
20172     return SDValue();
20173
20174   if (!Subtarget->hasFp256())
20175     return SDValue();
20176
20177   EVT VT = N->getValueType(0);
20178   if (VT.isVector() && VT.getSizeInBits() == 256) {
20179     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
20180     if (R.getNode())
20181       return R;
20182   }
20183
20184   return SDValue();
20185 }
20186
20187 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
20188                                  const X86Subtarget* Subtarget) {
20189   SDLoc dl(N);
20190   EVT VT = N->getValueType(0);
20191
20192   // Let legalize expand this if it isn't a legal type yet.
20193   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
20194     return SDValue();
20195
20196   EVT ScalarVT = VT.getScalarType();
20197   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
20198       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
20199     return SDValue();
20200
20201   SDValue A = N->getOperand(0);
20202   SDValue B = N->getOperand(1);
20203   SDValue C = N->getOperand(2);
20204
20205   bool NegA = (A.getOpcode() == ISD::FNEG);
20206   bool NegB = (B.getOpcode() == ISD::FNEG);
20207   bool NegC = (C.getOpcode() == ISD::FNEG);
20208
20209   // Negative multiplication when NegA xor NegB
20210   bool NegMul = (NegA != NegB);
20211   if (NegA)
20212     A = A.getOperand(0);
20213   if (NegB)
20214     B = B.getOperand(0);
20215   if (NegC)
20216     C = C.getOperand(0);
20217
20218   unsigned Opcode;
20219   if (!NegMul)
20220     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
20221   else
20222     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
20223
20224   return DAG.getNode(Opcode, dl, VT, A, B, C);
20225 }
20226
20227 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
20228                                   TargetLowering::DAGCombinerInfo &DCI,
20229                                   const X86Subtarget *Subtarget) {
20230   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
20231   //           (and (i32 x86isd::setcc_carry), 1)
20232   // This eliminates the zext. This transformation is necessary because
20233   // ISD::SETCC is always legalized to i8.
20234   SDLoc dl(N);
20235   SDValue N0 = N->getOperand(0);
20236   EVT VT = N->getValueType(0);
20237
20238   if (N0.getOpcode() == ISD::AND &&
20239       N0.hasOneUse() &&
20240       N0.getOperand(0).hasOneUse()) {
20241     SDValue N00 = N0.getOperand(0);
20242     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
20243       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
20244       if (!C || C->getZExtValue() != 1)
20245         return SDValue();
20246       return DAG.getNode(ISD::AND, dl, VT,
20247                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
20248                                      N00.getOperand(0), N00.getOperand(1)),
20249                          DAG.getConstant(1, VT));
20250     }
20251   }
20252
20253   if (N0.getOpcode() == ISD::TRUNCATE &&
20254       N0.hasOneUse() &&
20255       N0.getOperand(0).hasOneUse()) {
20256     SDValue N00 = N0.getOperand(0);
20257     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
20258       return DAG.getNode(ISD::AND, dl, VT,
20259                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
20260                                      N00.getOperand(0), N00.getOperand(1)),
20261                          DAG.getConstant(1, VT));
20262     }
20263   }
20264   if (VT.is256BitVector()) {
20265     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
20266     if (R.getNode())
20267       return R;
20268   }
20269
20270   return SDValue();
20271 }
20272
20273 // Optimize x == -y --> x+y == 0
20274 //          x != -y --> x+y != 0
20275 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
20276                                       const X86Subtarget* Subtarget) {
20277   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
20278   SDValue LHS = N->getOperand(0);
20279   SDValue RHS = N->getOperand(1);
20280   EVT VT = N->getValueType(0);
20281   SDLoc DL(N);
20282
20283   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
20284     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
20285       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
20286         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
20287                                    LHS.getValueType(), RHS, LHS.getOperand(1));
20288         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
20289                             addV, DAG.getConstant(0, addV.getValueType()), CC);
20290       }
20291   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
20292     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
20293       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
20294         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
20295                                    RHS.getValueType(), LHS, RHS.getOperand(1));
20296         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
20297                             addV, DAG.getConstant(0, addV.getValueType()), CC);
20298       }
20299
20300   if (VT.getScalarType() == MVT::i1) {
20301     bool IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
20302       (LHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
20303     bool IsVZero0 = ISD::isBuildVectorAllZeros(LHS.getNode());
20304     if (!IsSEXT0 && !IsVZero0)
20305       return SDValue();
20306     bool IsSEXT1 = (RHS.getOpcode() == ISD::SIGN_EXTEND) &&
20307       (RHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
20308     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
20309
20310     if (!IsSEXT1 && !IsVZero1)
20311       return SDValue();
20312
20313     if (IsSEXT0 && IsVZero1) {
20314       assert(VT == LHS.getOperand(0).getValueType() && "Uexpected operand type");
20315       if (CC == ISD::SETEQ)
20316         return DAG.getNOT(DL, LHS.getOperand(0), VT);
20317       return LHS.getOperand(0);
20318     }
20319     if (IsSEXT1 && IsVZero0) {
20320       assert(VT == RHS.getOperand(0).getValueType() && "Uexpected operand type");
20321       if (CC == ISD::SETEQ)
20322         return DAG.getNOT(DL, RHS.getOperand(0), VT);
20323       return RHS.getOperand(0);
20324     }
20325   }
20326
20327   return SDValue();
20328 }
20329
20330 static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG,
20331                                       const X86Subtarget *Subtarget) {
20332   SDLoc dl(N);
20333   MVT VT = N->getOperand(1)->getSimpleValueType(0);
20334   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
20335          "X86insertps is only defined for v4x32");
20336
20337   SDValue Ld = N->getOperand(1);
20338   if (MayFoldLoad(Ld)) {
20339     // Extract the countS bits from the immediate so we can get the proper
20340     // address when narrowing the vector load to a specific element.
20341     // When the second source op is a memory address, interps doesn't use
20342     // countS and just gets an f32 from that address.
20343     unsigned DestIndex =
20344         cast<ConstantSDNode>(N->getOperand(2))->getZExtValue() >> 6;
20345     Ld = NarrowVectorLoadToElement(cast<LoadSDNode>(Ld), DestIndex, DAG);
20346   } else
20347     return SDValue();
20348
20349   // Create this as a scalar to vector to match the instruction pattern.
20350   SDValue LoadScalarToVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Ld);
20351   // countS bits are ignored when loading from memory on insertps, which
20352   // means we don't need to explicitly set them to 0.
20353   return DAG.getNode(X86ISD::INSERTPS, dl, VT, N->getOperand(0),
20354                      LoadScalarToVector, N->getOperand(2));
20355 }
20356
20357 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
20358 // as "sbb reg,reg", since it can be extended without zext and produces
20359 // an all-ones bit which is more useful than 0/1 in some cases.
20360 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
20361                                MVT VT) {
20362   if (VT == MVT::i8)
20363     return DAG.getNode(ISD::AND, DL, VT,
20364                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
20365                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
20366                        DAG.getConstant(1, VT));
20367   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
20368   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
20369                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
20370                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
20371 }
20372
20373 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
20374 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
20375                                    TargetLowering::DAGCombinerInfo &DCI,
20376                                    const X86Subtarget *Subtarget) {
20377   SDLoc DL(N);
20378   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
20379   SDValue EFLAGS = N->getOperand(1);
20380
20381   if (CC == X86::COND_A) {
20382     // Try to convert COND_A into COND_B in an attempt to facilitate
20383     // materializing "setb reg".
20384     //
20385     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
20386     // cannot take an immediate as its first operand.
20387     //
20388     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
20389         EFLAGS.getValueType().isInteger() &&
20390         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
20391       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
20392                                    EFLAGS.getNode()->getVTList(),
20393                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
20394       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
20395       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
20396     }
20397   }
20398
20399   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
20400   // a zext and produces an all-ones bit which is more useful than 0/1 in some
20401   // cases.
20402   if (CC == X86::COND_B)
20403     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
20404
20405   SDValue Flags;
20406
20407   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
20408   if (Flags.getNode()) {
20409     SDValue Cond = DAG.getConstant(CC, MVT::i8);
20410     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
20411   }
20412
20413   return SDValue();
20414 }
20415
20416 // Optimize branch condition evaluation.
20417 //
20418 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
20419                                     TargetLowering::DAGCombinerInfo &DCI,
20420                                     const X86Subtarget *Subtarget) {
20421   SDLoc DL(N);
20422   SDValue Chain = N->getOperand(0);
20423   SDValue Dest = N->getOperand(1);
20424   SDValue EFLAGS = N->getOperand(3);
20425   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
20426
20427   SDValue Flags;
20428
20429   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
20430   if (Flags.getNode()) {
20431     SDValue Cond = DAG.getConstant(CC, MVT::i8);
20432     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
20433                        Flags);
20434   }
20435
20436   return SDValue();
20437 }
20438
20439 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
20440                                         const X86TargetLowering *XTLI) {
20441   SDValue Op0 = N->getOperand(0);
20442   EVT InVT = Op0->getValueType(0);
20443
20444   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
20445   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
20446     SDLoc dl(N);
20447     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
20448     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
20449     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
20450   }
20451
20452   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
20453   // a 32-bit target where SSE doesn't support i64->FP operations.
20454   if (Op0.getOpcode() == ISD::LOAD) {
20455     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
20456     EVT VT = Ld->getValueType(0);
20457     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
20458         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
20459         !XTLI->getSubtarget()->is64Bit() &&
20460         VT == MVT::i64) {
20461       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
20462                                           Ld->getChain(), Op0, DAG);
20463       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
20464       return FILDChain;
20465     }
20466   }
20467   return SDValue();
20468 }
20469
20470 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
20471 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
20472                                  X86TargetLowering::DAGCombinerInfo &DCI) {
20473   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
20474   // the result is either zero or one (depending on the input carry bit).
20475   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
20476   if (X86::isZeroNode(N->getOperand(0)) &&
20477       X86::isZeroNode(N->getOperand(1)) &&
20478       // We don't have a good way to replace an EFLAGS use, so only do this when
20479       // dead right now.
20480       SDValue(N, 1).use_empty()) {
20481     SDLoc DL(N);
20482     EVT VT = N->getValueType(0);
20483     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
20484     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
20485                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
20486                                            DAG.getConstant(X86::COND_B,MVT::i8),
20487                                            N->getOperand(2)),
20488                                DAG.getConstant(1, VT));
20489     return DCI.CombineTo(N, Res1, CarryOut);
20490   }
20491
20492   return SDValue();
20493 }
20494
20495 // fold (add Y, (sete  X, 0)) -> adc  0, Y
20496 //      (add Y, (setne X, 0)) -> sbb -1, Y
20497 //      (sub (sete  X, 0), Y) -> sbb  0, Y
20498 //      (sub (setne X, 0), Y) -> adc -1, Y
20499 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
20500   SDLoc DL(N);
20501
20502   // Look through ZExts.
20503   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
20504   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
20505     return SDValue();
20506
20507   SDValue SetCC = Ext.getOperand(0);
20508   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
20509     return SDValue();
20510
20511   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
20512   if (CC != X86::COND_E && CC != X86::COND_NE)
20513     return SDValue();
20514
20515   SDValue Cmp = SetCC.getOperand(1);
20516   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
20517       !X86::isZeroNode(Cmp.getOperand(1)) ||
20518       !Cmp.getOperand(0).getValueType().isInteger())
20519     return SDValue();
20520
20521   SDValue CmpOp0 = Cmp.getOperand(0);
20522   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
20523                                DAG.getConstant(1, CmpOp0.getValueType()));
20524
20525   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
20526   if (CC == X86::COND_NE)
20527     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
20528                        DL, OtherVal.getValueType(), OtherVal,
20529                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
20530   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
20531                      DL, OtherVal.getValueType(), OtherVal,
20532                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
20533 }
20534
20535 /// PerformADDCombine - Do target-specific dag combines on integer adds.
20536 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
20537                                  const X86Subtarget *Subtarget) {
20538   EVT VT = N->getValueType(0);
20539   SDValue Op0 = N->getOperand(0);
20540   SDValue Op1 = N->getOperand(1);
20541
20542   // Try to synthesize horizontal adds from adds of shuffles.
20543   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
20544        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
20545       isHorizontalBinOp(Op0, Op1, true))
20546     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
20547
20548   return OptimizeConditionalInDecrement(N, DAG);
20549 }
20550
20551 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
20552                                  const X86Subtarget *Subtarget) {
20553   SDValue Op0 = N->getOperand(0);
20554   SDValue Op1 = N->getOperand(1);
20555
20556   // X86 can't encode an immediate LHS of a sub. See if we can push the
20557   // negation into a preceding instruction.
20558   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
20559     // If the RHS of the sub is a XOR with one use and a constant, invert the
20560     // immediate. Then add one to the LHS of the sub so we can turn
20561     // X-Y -> X+~Y+1, saving one register.
20562     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
20563         isa<ConstantSDNode>(Op1.getOperand(1))) {
20564       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
20565       EVT VT = Op0.getValueType();
20566       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
20567                                    Op1.getOperand(0),
20568                                    DAG.getConstant(~XorC, VT));
20569       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
20570                          DAG.getConstant(C->getAPIntValue()+1, VT));
20571     }
20572   }
20573
20574   // Try to synthesize horizontal adds from adds of shuffles.
20575   EVT VT = N->getValueType(0);
20576   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
20577        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
20578       isHorizontalBinOp(Op0, Op1, true))
20579     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
20580
20581   return OptimizeConditionalInDecrement(N, DAG);
20582 }
20583
20584 /// performVZEXTCombine - Performs build vector combines
20585 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
20586                                         TargetLowering::DAGCombinerInfo &DCI,
20587                                         const X86Subtarget *Subtarget) {
20588   // (vzext (bitcast (vzext (x)) -> (vzext x)
20589   SDValue In = N->getOperand(0);
20590   while (In.getOpcode() == ISD::BITCAST)
20591     In = In.getOperand(0);
20592
20593   if (In.getOpcode() != X86ISD::VZEXT)
20594     return SDValue();
20595
20596   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
20597                      In.getOperand(0));
20598 }
20599
20600 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
20601                                              DAGCombinerInfo &DCI) const {
20602   SelectionDAG &DAG = DCI.DAG;
20603   switch (N->getOpcode()) {
20604   default: break;
20605   case ISD::EXTRACT_VECTOR_ELT:
20606     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
20607   case ISD::VSELECT:
20608   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
20609   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
20610   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
20611   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
20612   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
20613   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
20614   case ISD::SHL:
20615   case ISD::SRA:
20616   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
20617   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
20618   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
20619   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
20620   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
20621   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
20622   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
20623   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
20624   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
20625   case X86ISD::FXOR:
20626   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
20627   case X86ISD::FMIN:
20628   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
20629   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
20630   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
20631   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
20632   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
20633   case ISD::ANY_EXTEND:
20634   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
20635   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
20636   case ISD::SIGN_EXTEND_INREG:
20637     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
20638   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
20639   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
20640   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
20641   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
20642   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
20643   case X86ISD::SHUFP:       // Handle all target specific shuffles
20644   case X86ISD::PALIGNR:
20645   case X86ISD::UNPCKH:
20646   case X86ISD::UNPCKL:
20647   case X86ISD::MOVHLPS:
20648   case X86ISD::MOVLHPS:
20649   case X86ISD::PSHUFD:
20650   case X86ISD::PSHUFHW:
20651   case X86ISD::PSHUFLW:
20652   case X86ISD::MOVSS:
20653   case X86ISD::MOVSD:
20654   case X86ISD::VPERMILP:
20655   case X86ISD::VPERM2X128:
20656   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
20657   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
20658   case ISD::INTRINSIC_WO_CHAIN:
20659     return PerformINTRINSIC_WO_CHAINCombine(N, DAG, Subtarget);
20660   case X86ISD::INSERTPS:
20661     return PerformINSERTPSCombine(N, DAG, Subtarget);
20662   }
20663
20664   return SDValue();
20665 }
20666
20667 /// isTypeDesirableForOp - Return true if the target has native support for
20668 /// the specified value type and it is 'desirable' to use the type for the
20669 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
20670 /// instruction encodings are longer and some i16 instructions are slow.
20671 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
20672   if (!isTypeLegal(VT))
20673     return false;
20674   if (VT != MVT::i16)
20675     return true;
20676
20677   switch (Opc) {
20678   default:
20679     return true;
20680   case ISD::LOAD:
20681   case ISD::SIGN_EXTEND:
20682   case ISD::ZERO_EXTEND:
20683   case ISD::ANY_EXTEND:
20684   case ISD::SHL:
20685   case ISD::SRL:
20686   case ISD::SUB:
20687   case ISD::ADD:
20688   case ISD::MUL:
20689   case ISD::AND:
20690   case ISD::OR:
20691   case ISD::XOR:
20692     return false;
20693   }
20694 }
20695
20696 /// IsDesirableToPromoteOp - This method query the target whether it is
20697 /// beneficial for dag combiner to promote the specified node. If true, it
20698 /// should return the desired promotion type by reference.
20699 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
20700   EVT VT = Op.getValueType();
20701   if (VT != MVT::i16)
20702     return false;
20703
20704   bool Promote = false;
20705   bool Commute = false;
20706   switch (Op.getOpcode()) {
20707   default: break;
20708   case ISD::LOAD: {
20709     LoadSDNode *LD = cast<LoadSDNode>(Op);
20710     // If the non-extending load has a single use and it's not live out, then it
20711     // might be folded.
20712     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
20713                                                      Op.hasOneUse()*/) {
20714       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
20715              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
20716         // The only case where we'd want to promote LOAD (rather then it being
20717         // promoted as an operand is when it's only use is liveout.
20718         if (UI->getOpcode() != ISD::CopyToReg)
20719           return false;
20720       }
20721     }
20722     Promote = true;
20723     break;
20724   }
20725   case ISD::SIGN_EXTEND:
20726   case ISD::ZERO_EXTEND:
20727   case ISD::ANY_EXTEND:
20728     Promote = true;
20729     break;
20730   case ISD::SHL:
20731   case ISD::SRL: {
20732     SDValue N0 = Op.getOperand(0);
20733     // Look out for (store (shl (load), x)).
20734     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
20735       return false;
20736     Promote = true;
20737     break;
20738   }
20739   case ISD::ADD:
20740   case ISD::MUL:
20741   case ISD::AND:
20742   case ISD::OR:
20743   case ISD::XOR:
20744     Commute = true;
20745     // fallthrough
20746   case ISD::SUB: {
20747     SDValue N0 = Op.getOperand(0);
20748     SDValue N1 = Op.getOperand(1);
20749     if (!Commute && MayFoldLoad(N1))
20750       return false;
20751     // Avoid disabling potential load folding opportunities.
20752     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
20753       return false;
20754     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
20755       return false;
20756     Promote = true;
20757   }
20758   }
20759
20760   PVT = MVT::i32;
20761   return Promote;
20762 }
20763
20764 //===----------------------------------------------------------------------===//
20765 //                           X86 Inline Assembly Support
20766 //===----------------------------------------------------------------------===//
20767
20768 namespace {
20769   // Helper to match a string separated by whitespace.
20770   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
20771     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
20772
20773     for (unsigned i = 0, e = args.size(); i != e; ++i) {
20774       StringRef piece(*args[i]);
20775       if (!s.startswith(piece)) // Check if the piece matches.
20776         return false;
20777
20778       s = s.substr(piece.size());
20779       StringRef::size_type pos = s.find_first_not_of(" \t");
20780       if (pos == 0) // We matched a prefix.
20781         return false;
20782
20783       s = s.substr(pos);
20784     }
20785
20786     return s.empty();
20787   }
20788   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
20789 }
20790
20791 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
20792
20793   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
20794     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
20795         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
20796         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
20797
20798       if (AsmPieces.size() == 3)
20799         return true;
20800       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
20801         return true;
20802     }
20803   }
20804   return false;
20805 }
20806
20807 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
20808   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
20809
20810   std::string AsmStr = IA->getAsmString();
20811
20812   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
20813   if (!Ty || Ty->getBitWidth() % 16 != 0)
20814     return false;
20815
20816   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
20817   SmallVector<StringRef, 4> AsmPieces;
20818   SplitString(AsmStr, AsmPieces, ";\n");
20819
20820   switch (AsmPieces.size()) {
20821   default: return false;
20822   case 1:
20823     // FIXME: this should verify that we are targeting a 486 or better.  If not,
20824     // we will turn this bswap into something that will be lowered to logical
20825     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
20826     // lower so don't worry about this.
20827     // bswap $0
20828     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
20829         matchAsm(AsmPieces[0], "bswapl", "$0") ||
20830         matchAsm(AsmPieces[0], "bswapq", "$0") ||
20831         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
20832         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
20833         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
20834       // No need to check constraints, nothing other than the equivalent of
20835       // "=r,0" would be valid here.
20836       return IntrinsicLowering::LowerToByteSwap(CI);
20837     }
20838
20839     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
20840     if (CI->getType()->isIntegerTy(16) &&
20841         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
20842         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
20843          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
20844       AsmPieces.clear();
20845       const std::string &ConstraintsStr = IA->getConstraintString();
20846       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
20847       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
20848       if (clobbersFlagRegisters(AsmPieces))
20849         return IntrinsicLowering::LowerToByteSwap(CI);
20850     }
20851     break;
20852   case 3:
20853     if (CI->getType()->isIntegerTy(32) &&
20854         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
20855         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
20856         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
20857         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
20858       AsmPieces.clear();
20859       const std::string &ConstraintsStr = IA->getConstraintString();
20860       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
20861       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
20862       if (clobbersFlagRegisters(AsmPieces))
20863         return IntrinsicLowering::LowerToByteSwap(CI);
20864     }
20865
20866     if (CI->getType()->isIntegerTy(64)) {
20867       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
20868       if (Constraints.size() >= 2 &&
20869           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
20870           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
20871         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
20872         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
20873             matchAsm(AsmPieces[1], "bswap", "%edx") &&
20874             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
20875           return IntrinsicLowering::LowerToByteSwap(CI);
20876       }
20877     }
20878     break;
20879   }
20880   return false;
20881 }
20882
20883 /// getConstraintType - Given a constraint letter, return the type of
20884 /// constraint it is for this target.
20885 X86TargetLowering::ConstraintType
20886 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
20887   if (Constraint.size() == 1) {
20888     switch (Constraint[0]) {
20889     case 'R':
20890     case 'q':
20891     case 'Q':
20892     case 'f':
20893     case 't':
20894     case 'u':
20895     case 'y':
20896     case 'x':
20897     case 'Y':
20898     case 'l':
20899       return C_RegisterClass;
20900     case 'a':
20901     case 'b':
20902     case 'c':
20903     case 'd':
20904     case 'S':
20905     case 'D':
20906     case 'A':
20907       return C_Register;
20908     case 'I':
20909     case 'J':
20910     case 'K':
20911     case 'L':
20912     case 'M':
20913     case 'N':
20914     case 'G':
20915     case 'C':
20916     case 'e':
20917     case 'Z':
20918       return C_Other;
20919     default:
20920       break;
20921     }
20922   }
20923   return TargetLowering::getConstraintType(Constraint);
20924 }
20925
20926 /// Examine constraint type and operand type and determine a weight value.
20927 /// This object must already have been set up with the operand type
20928 /// and the current alternative constraint selected.
20929 TargetLowering::ConstraintWeight
20930   X86TargetLowering::getSingleConstraintMatchWeight(
20931     AsmOperandInfo &info, const char *constraint) const {
20932   ConstraintWeight weight = CW_Invalid;
20933   Value *CallOperandVal = info.CallOperandVal;
20934     // If we don't have a value, we can't do a match,
20935     // but allow it at the lowest weight.
20936   if (!CallOperandVal)
20937     return CW_Default;
20938   Type *type = CallOperandVal->getType();
20939   // Look at the constraint type.
20940   switch (*constraint) {
20941   default:
20942     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
20943   case 'R':
20944   case 'q':
20945   case 'Q':
20946   case 'a':
20947   case 'b':
20948   case 'c':
20949   case 'd':
20950   case 'S':
20951   case 'D':
20952   case 'A':
20953     if (CallOperandVal->getType()->isIntegerTy())
20954       weight = CW_SpecificReg;
20955     break;
20956   case 'f':
20957   case 't':
20958   case 'u':
20959     if (type->isFloatingPointTy())
20960       weight = CW_SpecificReg;
20961     break;
20962   case 'y':
20963     if (type->isX86_MMXTy() && Subtarget->hasMMX())
20964       weight = CW_SpecificReg;
20965     break;
20966   case 'x':
20967   case 'Y':
20968     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
20969         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
20970       weight = CW_Register;
20971     break;
20972   case 'I':
20973     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
20974       if (C->getZExtValue() <= 31)
20975         weight = CW_Constant;
20976     }
20977     break;
20978   case 'J':
20979     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20980       if (C->getZExtValue() <= 63)
20981         weight = CW_Constant;
20982     }
20983     break;
20984   case 'K':
20985     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20986       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
20987         weight = CW_Constant;
20988     }
20989     break;
20990   case 'L':
20991     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20992       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
20993         weight = CW_Constant;
20994     }
20995     break;
20996   case 'M':
20997     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20998       if (C->getZExtValue() <= 3)
20999         weight = CW_Constant;
21000     }
21001     break;
21002   case 'N':
21003     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
21004       if (C->getZExtValue() <= 0xff)
21005         weight = CW_Constant;
21006     }
21007     break;
21008   case 'G':
21009   case 'C':
21010     if (dyn_cast<ConstantFP>(CallOperandVal)) {
21011       weight = CW_Constant;
21012     }
21013     break;
21014   case 'e':
21015     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
21016       if ((C->getSExtValue() >= -0x80000000LL) &&
21017           (C->getSExtValue() <= 0x7fffffffLL))
21018         weight = CW_Constant;
21019     }
21020     break;
21021   case 'Z':
21022     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
21023       if (C->getZExtValue() <= 0xffffffff)
21024         weight = CW_Constant;
21025     }
21026     break;
21027   }
21028   return weight;
21029 }
21030
21031 /// LowerXConstraint - try to replace an X constraint, which matches anything,
21032 /// with another that has more specific requirements based on the type of the
21033 /// corresponding operand.
21034 const char *X86TargetLowering::
21035 LowerXConstraint(EVT ConstraintVT) const {
21036   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
21037   // 'f' like normal targets.
21038   if (ConstraintVT.isFloatingPoint()) {
21039     if (Subtarget->hasSSE2())
21040       return "Y";
21041     if (Subtarget->hasSSE1())
21042       return "x";
21043   }
21044
21045   return TargetLowering::LowerXConstraint(ConstraintVT);
21046 }
21047
21048 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
21049 /// vector.  If it is invalid, don't add anything to Ops.
21050 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
21051                                                      std::string &Constraint,
21052                                                      std::vector<SDValue>&Ops,
21053                                                      SelectionDAG &DAG) const {
21054   SDValue Result;
21055
21056   // Only support length 1 constraints for now.
21057   if (Constraint.length() > 1) return;
21058
21059   char ConstraintLetter = Constraint[0];
21060   switch (ConstraintLetter) {
21061   default: break;
21062   case 'I':
21063     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
21064       if (C->getZExtValue() <= 31) {
21065         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
21066         break;
21067       }
21068     }
21069     return;
21070   case 'J':
21071     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
21072       if (C->getZExtValue() <= 63) {
21073         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
21074         break;
21075       }
21076     }
21077     return;
21078   case 'K':
21079     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
21080       if (isInt<8>(C->getSExtValue())) {
21081         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
21082         break;
21083       }
21084     }
21085     return;
21086   case 'N':
21087     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
21088       if (C->getZExtValue() <= 255) {
21089         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
21090         break;
21091       }
21092     }
21093     return;
21094   case 'e': {
21095     // 32-bit signed value
21096     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
21097       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
21098                                            C->getSExtValue())) {
21099         // Widen to 64 bits here to get it sign extended.
21100         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
21101         break;
21102       }
21103     // FIXME gcc accepts some relocatable values here too, but only in certain
21104     // memory models; it's complicated.
21105     }
21106     return;
21107   }
21108   case 'Z': {
21109     // 32-bit unsigned value
21110     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
21111       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
21112                                            C->getZExtValue())) {
21113         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
21114         break;
21115       }
21116     }
21117     // FIXME gcc accepts some relocatable values here too, but only in certain
21118     // memory models; it's complicated.
21119     return;
21120   }
21121   case 'i': {
21122     // Literal immediates are always ok.
21123     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
21124       // Widen to 64 bits here to get it sign extended.
21125       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
21126       break;
21127     }
21128
21129     // In any sort of PIC mode addresses need to be computed at runtime by
21130     // adding in a register or some sort of table lookup.  These can't
21131     // be used as immediates.
21132     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
21133       return;
21134
21135     // If we are in non-pic codegen mode, we allow the address of a global (with
21136     // an optional displacement) to be used with 'i'.
21137     GlobalAddressSDNode *GA = nullptr;
21138     int64_t Offset = 0;
21139
21140     // Match either (GA), (GA+C), (GA+C1+C2), etc.
21141     while (1) {
21142       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
21143         Offset += GA->getOffset();
21144         break;
21145       } else if (Op.getOpcode() == ISD::ADD) {
21146         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
21147           Offset += C->getZExtValue();
21148           Op = Op.getOperand(0);
21149           continue;
21150         }
21151       } else if (Op.getOpcode() == ISD::SUB) {
21152         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
21153           Offset += -C->getZExtValue();
21154           Op = Op.getOperand(0);
21155           continue;
21156         }
21157       }
21158
21159       // Otherwise, this isn't something we can handle, reject it.
21160       return;
21161     }
21162
21163     const GlobalValue *GV = GA->getGlobal();
21164     // If we require an extra load to get this address, as in PIC mode, we
21165     // can't accept it.
21166     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
21167                                                         getTargetMachine())))
21168       return;
21169
21170     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
21171                                         GA->getValueType(0), Offset);
21172     break;
21173   }
21174   }
21175
21176   if (Result.getNode()) {
21177     Ops.push_back(Result);
21178     return;
21179   }
21180   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
21181 }
21182
21183 std::pair<unsigned, const TargetRegisterClass*>
21184 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
21185                                                 MVT VT) const {
21186   // First, see if this is a constraint that directly corresponds to an LLVM
21187   // register class.
21188   if (Constraint.size() == 1) {
21189     // GCC Constraint Letters
21190     switch (Constraint[0]) {
21191     default: break;
21192       // TODO: Slight differences here in allocation order and leaving
21193       // RIP in the class. Do they matter any more here than they do
21194       // in the normal allocation?
21195     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
21196       if (Subtarget->is64Bit()) {
21197         if (VT == MVT::i32 || VT == MVT::f32)
21198           return std::make_pair(0U, &X86::GR32RegClass);
21199         if (VT == MVT::i16)
21200           return std::make_pair(0U, &X86::GR16RegClass);
21201         if (VT == MVT::i8 || VT == MVT::i1)
21202           return std::make_pair(0U, &X86::GR8RegClass);
21203         if (VT == MVT::i64 || VT == MVT::f64)
21204           return std::make_pair(0U, &X86::GR64RegClass);
21205         break;
21206       }
21207       // 32-bit fallthrough
21208     case 'Q':   // Q_REGS
21209       if (VT == MVT::i32 || VT == MVT::f32)
21210         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
21211       if (VT == MVT::i16)
21212         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
21213       if (VT == MVT::i8 || VT == MVT::i1)
21214         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
21215       if (VT == MVT::i64)
21216         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
21217       break;
21218     case 'r':   // GENERAL_REGS
21219     case 'l':   // INDEX_REGS
21220       if (VT == MVT::i8 || VT == MVT::i1)
21221         return std::make_pair(0U, &X86::GR8RegClass);
21222       if (VT == MVT::i16)
21223         return std::make_pair(0U, &X86::GR16RegClass);
21224       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
21225         return std::make_pair(0U, &X86::GR32RegClass);
21226       return std::make_pair(0U, &X86::GR64RegClass);
21227     case 'R':   // LEGACY_REGS
21228       if (VT == MVT::i8 || VT == MVT::i1)
21229         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
21230       if (VT == MVT::i16)
21231         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
21232       if (VT == MVT::i32 || !Subtarget->is64Bit())
21233         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
21234       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
21235     case 'f':  // FP Stack registers.
21236       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
21237       // value to the correct fpstack register class.
21238       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
21239         return std::make_pair(0U, &X86::RFP32RegClass);
21240       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
21241         return std::make_pair(0U, &X86::RFP64RegClass);
21242       return std::make_pair(0U, &X86::RFP80RegClass);
21243     case 'y':   // MMX_REGS if MMX allowed.
21244       if (!Subtarget->hasMMX()) break;
21245       return std::make_pair(0U, &X86::VR64RegClass);
21246     case 'Y':   // SSE_REGS if SSE2 allowed
21247       if (!Subtarget->hasSSE2()) break;
21248       // FALL THROUGH.
21249     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
21250       if (!Subtarget->hasSSE1()) break;
21251
21252       switch (VT.SimpleTy) {
21253       default: break;
21254       // Scalar SSE types.
21255       case MVT::f32:
21256       case MVT::i32:
21257         return std::make_pair(0U, &X86::FR32RegClass);
21258       case MVT::f64:
21259       case MVT::i64:
21260         return std::make_pair(0U, &X86::FR64RegClass);
21261       // Vector types.
21262       case MVT::v16i8:
21263       case MVT::v8i16:
21264       case MVT::v4i32:
21265       case MVT::v2i64:
21266       case MVT::v4f32:
21267       case MVT::v2f64:
21268         return std::make_pair(0U, &X86::VR128RegClass);
21269       // AVX types.
21270       case MVT::v32i8:
21271       case MVT::v16i16:
21272       case MVT::v8i32:
21273       case MVT::v4i64:
21274       case MVT::v8f32:
21275       case MVT::v4f64:
21276         return std::make_pair(0U, &X86::VR256RegClass);
21277       case MVT::v8f64:
21278       case MVT::v16f32:
21279       case MVT::v16i32:
21280       case MVT::v8i64:
21281         return std::make_pair(0U, &X86::VR512RegClass);
21282       }
21283       break;
21284     }
21285   }
21286
21287   // Use the default implementation in TargetLowering to convert the register
21288   // constraint into a member of a register class.
21289   std::pair<unsigned, const TargetRegisterClass*> Res;
21290   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
21291
21292   // Not found as a standard register?
21293   if (!Res.second) {
21294     // Map st(0) -> st(7) -> ST0
21295     if (Constraint.size() == 7 && Constraint[0] == '{' &&
21296         tolower(Constraint[1]) == 's' &&
21297         tolower(Constraint[2]) == 't' &&
21298         Constraint[3] == '(' &&
21299         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
21300         Constraint[5] == ')' &&
21301         Constraint[6] == '}') {
21302
21303       Res.first = X86::ST0+Constraint[4]-'0';
21304       Res.second = &X86::RFP80RegClass;
21305       return Res;
21306     }
21307
21308     // GCC allows "st(0)" to be called just plain "st".
21309     if (StringRef("{st}").equals_lower(Constraint)) {
21310       Res.first = X86::ST0;
21311       Res.second = &X86::RFP80RegClass;
21312       return Res;
21313     }
21314
21315     // flags -> EFLAGS
21316     if (StringRef("{flags}").equals_lower(Constraint)) {
21317       Res.first = X86::EFLAGS;
21318       Res.second = &X86::CCRRegClass;
21319       return Res;
21320     }
21321
21322     // 'A' means EAX + EDX.
21323     if (Constraint == "A") {
21324       Res.first = X86::EAX;
21325       Res.second = &X86::GR32_ADRegClass;
21326       return Res;
21327     }
21328     return Res;
21329   }
21330
21331   // Otherwise, check to see if this is a register class of the wrong value
21332   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
21333   // turn into {ax},{dx}.
21334   if (Res.second->hasType(VT))
21335     return Res;   // Correct type already, nothing to do.
21336
21337   // All of the single-register GCC register classes map their values onto
21338   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
21339   // really want an 8-bit or 32-bit register, map to the appropriate register
21340   // class and return the appropriate register.
21341   if (Res.second == &X86::GR16RegClass) {
21342     if (VT == MVT::i8 || VT == MVT::i1) {
21343       unsigned DestReg = 0;
21344       switch (Res.first) {
21345       default: break;
21346       case X86::AX: DestReg = X86::AL; break;
21347       case X86::DX: DestReg = X86::DL; break;
21348       case X86::CX: DestReg = X86::CL; break;
21349       case X86::BX: DestReg = X86::BL; break;
21350       }
21351       if (DestReg) {
21352         Res.first = DestReg;
21353         Res.second = &X86::GR8RegClass;
21354       }
21355     } else if (VT == MVT::i32 || VT == MVT::f32) {
21356       unsigned DestReg = 0;
21357       switch (Res.first) {
21358       default: break;
21359       case X86::AX: DestReg = X86::EAX; break;
21360       case X86::DX: DestReg = X86::EDX; break;
21361       case X86::CX: DestReg = X86::ECX; break;
21362       case X86::BX: DestReg = X86::EBX; break;
21363       case X86::SI: DestReg = X86::ESI; break;
21364       case X86::DI: DestReg = X86::EDI; break;
21365       case X86::BP: DestReg = X86::EBP; break;
21366       case X86::SP: DestReg = X86::ESP; break;
21367       }
21368       if (DestReg) {
21369         Res.first = DestReg;
21370         Res.second = &X86::GR32RegClass;
21371       }
21372     } else if (VT == MVT::i64 || VT == MVT::f64) {
21373       unsigned DestReg = 0;
21374       switch (Res.first) {
21375       default: break;
21376       case X86::AX: DestReg = X86::RAX; break;
21377       case X86::DX: DestReg = X86::RDX; break;
21378       case X86::CX: DestReg = X86::RCX; break;
21379       case X86::BX: DestReg = X86::RBX; break;
21380       case X86::SI: DestReg = X86::RSI; break;
21381       case X86::DI: DestReg = X86::RDI; break;
21382       case X86::BP: DestReg = X86::RBP; break;
21383       case X86::SP: DestReg = X86::RSP; break;
21384       }
21385       if (DestReg) {
21386         Res.first = DestReg;
21387         Res.second = &X86::GR64RegClass;
21388       }
21389     }
21390   } else if (Res.second == &X86::FR32RegClass ||
21391              Res.second == &X86::FR64RegClass ||
21392              Res.second == &X86::VR128RegClass ||
21393              Res.second == &X86::VR256RegClass ||
21394              Res.second == &X86::FR32XRegClass ||
21395              Res.second == &X86::FR64XRegClass ||
21396              Res.second == &X86::VR128XRegClass ||
21397              Res.second == &X86::VR256XRegClass ||
21398              Res.second == &X86::VR512RegClass) {
21399     // Handle references to XMM physical registers that got mapped into the
21400     // wrong class.  This can happen with constraints like {xmm0} where the
21401     // target independent register mapper will just pick the first match it can
21402     // find, ignoring the required type.
21403
21404     if (VT == MVT::f32 || VT == MVT::i32)
21405       Res.second = &X86::FR32RegClass;
21406     else if (VT == MVT::f64 || VT == MVT::i64)
21407       Res.second = &X86::FR64RegClass;
21408     else if (X86::VR128RegClass.hasType(VT))
21409       Res.second = &X86::VR128RegClass;
21410     else if (X86::VR256RegClass.hasType(VT))
21411       Res.second = &X86::VR256RegClass;
21412     else if (X86::VR512RegClass.hasType(VT))
21413       Res.second = &X86::VR512RegClass;
21414   }
21415
21416   return Res;
21417 }
21418
21419 int X86TargetLowering::getScalingFactorCost(const AddrMode &AM,
21420                                             Type *Ty) const {
21421   // Scaling factors are not free at all.
21422   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
21423   // will take 2 allocations in the out of order engine instead of 1
21424   // for plain addressing mode, i.e. inst (reg1).
21425   // E.g.,
21426   // vaddps (%rsi,%drx), %ymm0, %ymm1
21427   // Requires two allocations (one for the load, one for the computation)
21428   // whereas:
21429   // vaddps (%rsi), %ymm0, %ymm1
21430   // Requires just 1 allocation, i.e., freeing allocations for other operations
21431   // and having less micro operations to execute.
21432   //
21433   // For some X86 architectures, this is even worse because for instance for
21434   // stores, the complex addressing mode forces the instruction to use the
21435   // "load" ports instead of the dedicated "store" port.
21436   // E.g., on Haswell:
21437   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
21438   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.   
21439   if (isLegalAddressingMode(AM, Ty))
21440     // Scale represents reg2 * scale, thus account for 1
21441     // as soon as we use a second register.
21442     return AM.Scale != 0;
21443   return -1;
21444 }