3ae4147a7946a2a64109e11c2f51fc27cab8f68e
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86CallingConv.h"
20 #include "X86InstrBuilder.h"
21 #include "X86TargetMachine.h"
22 #include "X86TargetObjectFile.h"
23 #include "llvm/ADT/SmallSet.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/ADT/StringExtras.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/CallingConv.h"
35 #include "llvm/IR/Constants.h"
36 #include "llvm/IR/DerivedTypes.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/IR/GlobalAlias.h"
39 #include "llvm/IR/GlobalVariable.h"
40 #include "llvm/IR/Instructions.h"
41 #include "llvm/IR/Intrinsics.h"
42 #include "llvm/MC/MCAsmInfo.h"
43 #include "llvm/MC/MCContext.h"
44 #include "llvm/MC/MCExpr.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/CallSite.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 STATISTIC(NumTailCalls, "Number of tail calls");
56
57 // Forward declarations.
58 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62                                 SelectionDAG &DAG, SDLoc dl,
63                                 unsigned vectorWidth) {
64   assert((vectorWidth == 128 || vectorWidth == 256) &&
65          "Unsupported vector width");
66   EVT VT = Vec.getValueType();
67   EVT ElVT = VT.getVectorElementType();
68   unsigned Factor = VT.getSizeInBits()/vectorWidth;
69   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70                                   VT.getVectorNumElements()/Factor);
71
72   // Extract from UNDEF is UNDEF.
73   if (Vec.getOpcode() == ISD::UNDEF)
74     return DAG.getUNDEF(ResultVT);
75
76   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
77   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
78
79   // This is the index of the first element of the vectorWidth-bit chunk
80   // we want.
81   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
82                                * ElemsPerChunk);
83
84   // If the input is a buildvector just emit a smaller one.
85   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
89   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
90   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91                                VecIdx);
92
93   return Result;
94
95 }
96 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
97 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99 /// instructions or a simple subregister reference. Idx is an index in the
100 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
101 /// lowering EXTRACT_VECTOR_ELT operations easier.
102 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103                                    SelectionDAG &DAG, SDLoc dl) {
104   assert((Vec.getValueType().is256BitVector() ||
105           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
106   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
107 }
108
109 /// Generate a DAG to grab 256-bits from a 512-bit vector.
110 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111                                    SelectionDAG &DAG, SDLoc dl) {
112   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114 }
115
116 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117                                unsigned IdxVal, SelectionDAG &DAG,
118                                SDLoc dl, unsigned vectorWidth) {
119   assert((vectorWidth == 128 || vectorWidth == 256) &&
120          "Unsupported vector width");
121   // Inserting UNDEF is Result
122   if (Vec.getOpcode() == ISD::UNDEF)
123     return Result;
124   EVT VT = Vec.getValueType();
125   EVT ElVT = VT.getVectorElementType();
126   EVT ResultVT = Result.getValueType();
127
128   // Insert the relevant vectorWidth bits.
129   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131   // This is the index of the first element of the vectorWidth-bit chunk
132   // we want.
133   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134                                * ElemsPerChunk);
135
136   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138                      VecIdx);
139 }
140 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
141 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
143 /// simple superregister reference.  Idx is an index in the 128 bits
144 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
145 /// lowering INSERT_VECTOR_ELT operations easier.
146 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147                                   unsigned IdxVal, SelectionDAG &DAG,
148                                   SDLoc dl) {
149   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151 }
152
153 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154                                   unsigned IdxVal, SelectionDAG &DAG,
155                                   SDLoc dl) {
156   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
158 }
159
160 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161 /// instructions. This is used because creating CONCAT_VECTOR nodes of
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163 /// large BUILD_VECTORS.
164 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165                                    unsigned NumElems, SelectionDAG &DAG,
166                                    SDLoc dl) {
167   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
169 }
170
171 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172                                    unsigned NumElems, SelectionDAG &DAG,
173                                    SDLoc dl) {
174   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176 }
177
178 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
179   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180   bool is64Bit = Subtarget->is64Bit();
181
182   if (Subtarget->isTargetMacho()) {
183     if (is64Bit)
184       return new X86_64MachoTargetObjectFile();
185     return new TargetLoweringObjectFileMachO();
186   }
187
188   if (Subtarget->isTargetLinux())
189     return new X86LinuxTargetObjectFile();
190   if (Subtarget->isTargetELF())
191     return new TargetLoweringObjectFileELF();
192   if (Subtarget->isTargetWindows())
193     return new X86WindowsTargetObjectFile();
194   if (Subtarget->isTargetCOFF())
195     return new TargetLoweringObjectFileCOFF();
196   llvm_unreachable("unknown subtarget type");
197 }
198
199 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
200   : TargetLowering(TM, createTLOF(TM)) {
201   Subtarget = &TM.getSubtarget<X86Subtarget>();
202   X86ScalarSSEf64 = Subtarget->hasSSE2();
203   X86ScalarSSEf32 = Subtarget->hasSSE1();
204   TD = getDataLayout();
205
206   resetOperationActions();
207 }
208
209 void X86TargetLowering::resetOperationActions() {
210   const TargetMachine &TM = getTargetMachine();
211   static bool FirstTimeThrough = true;
212
213   // If none of the target options have changed, then we don't need to reset the
214   // operation actions.
215   if (!FirstTimeThrough && TO == TM.Options) return;
216
217   if (!FirstTimeThrough) {
218     // Reinitialize the actions.
219     initActions();
220     FirstTimeThrough = false;
221   }
222
223   TO = TM.Options;
224
225   // Set up the TargetLowering object.
226   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
227
228   // X86 is weird, it always uses i8 for shift amounts and setcc results.
229   setBooleanContents(ZeroOrOneBooleanContent);
230   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
231   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
232
233   // For 64-bit since we have so many registers use the ILP scheduler, for
234   // 32-bit code use the register pressure specific scheduling.
235   // For Atom, always use ILP scheduling.
236   if (Subtarget->isAtom())
237     setSchedulingPreference(Sched::ILP);
238   else if (Subtarget->is64Bit())
239     setSchedulingPreference(Sched::ILP);
240   else
241     setSchedulingPreference(Sched::RegPressure);
242   const X86RegisterInfo *RegInfo =
243     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
244   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
245
246   // Bypass expensive divides on Atom when compiling with O2
247   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
248     addBypassSlowDiv(32, 8);
249     if (Subtarget->is64Bit())
250       addBypassSlowDiv(64, 16);
251   }
252
253   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
254     // Setup Windows compiler runtime calls.
255     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
256     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
257     setLibcallName(RTLIB::SREM_I64, "_allrem");
258     setLibcallName(RTLIB::UREM_I64, "_aullrem");
259     setLibcallName(RTLIB::MUL_I64, "_allmul");
260     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
263     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
264     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
265
266     // The _ftol2 runtime function has an unusual calling conv, which
267     // is modeled by a special pseudo-instruction.
268     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
270     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
271     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
272   }
273
274   if (Subtarget->isTargetDarwin()) {
275     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
276     setUseUnderscoreSetJmp(false);
277     setUseUnderscoreLongJmp(false);
278   } else if (Subtarget->isTargetMingw()) {
279     // MS runtime is weird: it exports _setjmp, but longjmp!
280     setUseUnderscoreSetJmp(true);
281     setUseUnderscoreLongJmp(false);
282   } else {
283     setUseUnderscoreSetJmp(true);
284     setUseUnderscoreLongJmp(true);
285   }
286
287   // Set up the register classes.
288   addRegisterClass(MVT::i8, &X86::GR8RegClass);
289   addRegisterClass(MVT::i16, &X86::GR16RegClass);
290   addRegisterClass(MVT::i32, &X86::GR32RegClass);
291   if (Subtarget->is64Bit())
292     addRegisterClass(MVT::i64, &X86::GR64RegClass);
293
294   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
295
296   // We don't accept any truncstore of integer registers.
297   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
298   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
301   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
302   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
303
304   // SETOEQ and SETUNE require checking two conditions.
305   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
306   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
307   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
309   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
310   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
311
312   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
313   // operation.
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
315   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
316   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
317
318   if (Subtarget->is64Bit()) {
319     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
320     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
321   } else if (!TM.Options.UseSoftFloat) {
322     // We have an algorithm for SSE2->double, and we turn this into a
323     // 64-bit FILD followed by conditional FADD for other targets.
324     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
325     // We have an algorithm for SSE2, and we turn this into a 64-bit
326     // FILD for other targets.
327     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
328   }
329
330   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
331   // this operation.
332   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
333   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
334
335   if (!TM.Options.UseSoftFloat) {
336     // SSE has no i16 to fp conversion, only i32
337     if (X86ScalarSSEf32) {
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
339       // f32 and f64 cases are Legal, f80 case is not
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
341     } else {
342       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
343       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
344     }
345   } else {
346     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
347     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
348   }
349
350   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
351   // are Legal, f80 is custom lowered.
352   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
353   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
354
355   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
356   // this operation.
357   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
358   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
359
360   if (X86ScalarSSEf32) {
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
362     // f32 and f64 cases are Legal, f80 case is not
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
364   } else {
365     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
366     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
367   }
368
369   // Handle FP_TO_UINT by promoting the destination to a larger signed
370   // conversion.
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
372   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
373   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
374
375   if (Subtarget->is64Bit()) {
376     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
377     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
378   } else if (!TM.Options.UseSoftFloat) {
379     // Since AVX is a superset of SSE3, only check for SSE here.
380     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
381       // Expand FP_TO_UINT into a select.
382       // FIXME: We would like to use a Custom expander here eventually to do
383       // the optimal thing for SSE vs. the default expansion in the legalizer.
384       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
385     else
386       // With SSE3 we can use fisttpll to convert to a signed i64; without
387       // SSE, we're stuck with a fistpll.
388       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
389   }
390
391   if (isTargetFTOL()) {
392     // Use the _ftol2 runtime function, which has a pseudo-instruction
393     // to handle its weird calling convention.
394     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
395   }
396
397   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
398   if (!X86ScalarSSEf64) {
399     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
400     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
401     if (Subtarget->is64Bit()) {
402       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
403       // Without SSE, i64->f64 goes through memory.
404       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
405     }
406   }
407
408   // Scalar integer divide and remainder are lowered to use operations that
409   // produce two results, to match the available instructions. This exposes
410   // the two-result form to trivial CSE, which is able to combine x/y and x%y
411   // into a single instruction.
412   //
413   // Scalar integer multiply-high is also lowered to use two-result
414   // operations, to match the available instructions. However, plain multiply
415   // (low) operations are left as Legal, as there are single-result
416   // instructions for this in x86. Using the two-result multiply instructions
417   // when both high and low results are needed must be arranged by dagcombine.
418   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
419     MVT VT = IntVTs[i];
420     setOperationAction(ISD::MULHS, VT, Expand);
421     setOperationAction(ISD::MULHU, VT, Expand);
422     setOperationAction(ISD::SDIV, VT, Expand);
423     setOperationAction(ISD::UDIV, VT, Expand);
424     setOperationAction(ISD::SREM, VT, Expand);
425     setOperationAction(ISD::UREM, VT, Expand);
426
427     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
428     setOperationAction(ISD::ADDC, VT, Custom);
429     setOperationAction(ISD::ADDE, VT, Custom);
430     setOperationAction(ISD::SUBC, VT, Custom);
431     setOperationAction(ISD::SUBE, VT, Custom);
432   }
433
434   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
435   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
436   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
438   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
441   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
442   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
443   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
444   if (Subtarget->is64Bit())
445     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
447   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
448   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
449   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
451   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
452   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
453   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
454
455   // Promote the i8 variants and force them on up to i32 which has a shorter
456   // encoding.
457   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
459   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
460   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
461   if (Subtarget->hasBMI()) {
462     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
463     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
464     if (Subtarget->is64Bit())
465       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
466   } else {
467     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
468     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
469     if (Subtarget->is64Bit())
470       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
471   }
472
473   if (Subtarget->hasLZCNT()) {
474     // When promoting the i8 variants, force them to i32 for a shorter
475     // encoding.
476     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
479     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
480     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
481     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
482     if (Subtarget->is64Bit())
483       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
484   } else {
485     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
486     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
487     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
489     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
490     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
491     if (Subtarget->is64Bit()) {
492       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
493       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
494     }
495   }
496
497   if (Subtarget->hasPOPCNT()) {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
499   } else {
500     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
501     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
502     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
503     if (Subtarget->is64Bit())
504       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
505   }
506
507   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
508   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
509
510   // These should be promoted to a larger select which is supported.
511   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
512   // X86 wants to expand cmov itself.
513   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
514   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
517   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
518   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
520   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
523   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
524   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
525   if (Subtarget->is64Bit()) {
526     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
527     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
528   }
529   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
530   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
531   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
532   // support continuation, user-level threading, and etc.. As a result, no
533   // other SjLj exception interfaces are implemented and please don't build
534   // your own exception handling based on them.
535   // LLVM/Clang supports zero-cost DWARF exception handling.
536   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
537   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
538
539   // Darwin ABI issue.
540   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
541   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
542   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
543   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
544   if (Subtarget->is64Bit())
545     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
546   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
547   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
548   if (Subtarget->is64Bit()) {
549     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
550     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
551     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
552     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
553     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
554   }
555   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
556   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
557   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
558   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
559   if (Subtarget->is64Bit()) {
560     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
561     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
562     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
563   }
564
565   if (Subtarget->hasSSE1())
566     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
567
568   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
569
570   // Expand certain atomics
571   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
572     MVT VT = IntVTs[i];
573     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
574     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
575     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
576   }
577
578   if (!Subtarget->is64Bit()) {
579     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
589     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
590     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
591   }
592
593   if (Subtarget->hasCmpxchg16b()) {
594     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
595   }
596
597   // FIXME - use subtarget debug flags
598   if (!Subtarget->isTargetDarwin() &&
599       !Subtarget->isTargetELF() &&
600       !Subtarget->isTargetCygMing()) {
601     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
602   }
603
604   if (Subtarget->is64Bit()) {
605     setExceptionPointerRegister(X86::RAX);
606     setExceptionSelectorRegister(X86::RDX);
607   } else {
608     setExceptionPointerRegister(X86::EAX);
609     setExceptionSelectorRegister(X86::EDX);
610   }
611   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
612   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
613
614   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
615   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
616
617   setOperationAction(ISD::TRAP, MVT::Other, Legal);
618   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
619
620   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
621   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
622   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
623   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
624     // TargetInfo::X86_64ABIBuiltinVaList
625     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
626     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
627   } else {
628     // TargetInfo::CharPtrBuiltinVaList
629     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
630     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
631   }
632
633   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
634   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
635
636   if (Subtarget->isOSWindows() && !Subtarget->isTargetMacho())
637     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
638                        MVT::i64 : MVT::i32, Custom);
639   else if (TM.Options.EnableSegmentedStacks)
640     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
641                        MVT::i64 : MVT::i32, Custom);
642   else
643     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
644                        MVT::i64 : MVT::i32, Expand);
645
646   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
647     // f32 and f64 use SSE.
648     // Set up the FP register classes.
649     addRegisterClass(MVT::f32, &X86::FR32RegClass);
650     addRegisterClass(MVT::f64, &X86::FR64RegClass);
651
652     // Use ANDPD to simulate FABS.
653     setOperationAction(ISD::FABS , MVT::f64, Custom);
654     setOperationAction(ISD::FABS , MVT::f32, Custom);
655
656     // Use XORP to simulate FNEG.
657     setOperationAction(ISD::FNEG , MVT::f64, Custom);
658     setOperationAction(ISD::FNEG , MVT::f32, Custom);
659
660     // Use ANDPD and ORPD to simulate FCOPYSIGN.
661     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
662     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
663
664     // Lower this to FGETSIGNx86 plus an AND.
665     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
666     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
667
668     // We don't support sin/cos/fmod
669     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
670     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
671     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
672     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
673     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
674     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
675
676     // Expand FP immediates into loads from the stack, except for the special
677     // cases we handle.
678     addLegalFPImmediate(APFloat(+0.0)); // xorpd
679     addLegalFPImmediate(APFloat(+0.0f)); // xorps
680   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
681     // Use SSE for f32, x87 for f64.
682     // Set up the FP register classes.
683     addRegisterClass(MVT::f32, &X86::FR32RegClass);
684     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
685
686     // Use ANDPS to simulate FABS.
687     setOperationAction(ISD::FABS , MVT::f32, Custom);
688
689     // Use XORP to simulate FNEG.
690     setOperationAction(ISD::FNEG , MVT::f32, Custom);
691
692     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
693
694     // Use ANDPS and ORPS to simulate FCOPYSIGN.
695     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
696     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
697
698     // We don't support sin/cos/fmod
699     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
700     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
701     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
702
703     // Special cases we handle for FP constants.
704     addLegalFPImmediate(APFloat(+0.0f)); // xorps
705     addLegalFPImmediate(APFloat(+0.0)); // FLD0
706     addLegalFPImmediate(APFloat(+1.0)); // FLD1
707     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
708     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
709
710     if (!TM.Options.UnsafeFPMath) {
711       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
712       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
713       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
714     }
715   } else if (!TM.Options.UseSoftFloat) {
716     // f32 and f64 in x87.
717     // Set up the FP register classes.
718     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
719     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
720
721     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
722     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
723     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
724     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
725
726     if (!TM.Options.UnsafeFPMath) {
727       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
728       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
729       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
730       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
731       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
732       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
733     }
734     addLegalFPImmediate(APFloat(+0.0)); // FLD0
735     addLegalFPImmediate(APFloat(+1.0)); // FLD1
736     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
737     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
738     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
739     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
740     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
741     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
742   }
743
744   // We don't support FMA.
745   setOperationAction(ISD::FMA, MVT::f64, Expand);
746   setOperationAction(ISD::FMA, MVT::f32, Expand);
747
748   // Long double always uses X87.
749   if (!TM.Options.UseSoftFloat) {
750     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
751     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
752     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
753     {
754       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
755       addLegalFPImmediate(TmpFlt);  // FLD0
756       TmpFlt.changeSign();
757       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
758
759       bool ignored;
760       APFloat TmpFlt2(+1.0);
761       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
762                       &ignored);
763       addLegalFPImmediate(TmpFlt2);  // FLD1
764       TmpFlt2.changeSign();
765       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
766     }
767
768     if (!TM.Options.UnsafeFPMath) {
769       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
770       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
771       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
772     }
773
774     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
775     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
776     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
777     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
778     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
779     setOperationAction(ISD::FMA, MVT::f80, Expand);
780   }
781
782   // Always use a library call for pow.
783   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
784   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
785   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
786
787   setOperationAction(ISD::FLOG, MVT::f80, Expand);
788   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
789   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
790   setOperationAction(ISD::FEXP, MVT::f80, Expand);
791   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
792
793   // First set operation action for all vector types to either promote
794   // (for widening) or expand (for scalarization). Then we will selectively
795   // turn on ones that can be effectively codegen'd.
796   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
797            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
798     MVT VT = (MVT::SimpleValueType)i;
799     setOperationAction(ISD::ADD , VT, Expand);
800     setOperationAction(ISD::SUB , VT, Expand);
801     setOperationAction(ISD::FADD, VT, Expand);
802     setOperationAction(ISD::FNEG, VT, Expand);
803     setOperationAction(ISD::FSUB, VT, Expand);
804     setOperationAction(ISD::MUL , VT, Expand);
805     setOperationAction(ISD::FMUL, VT, Expand);
806     setOperationAction(ISD::SDIV, VT, Expand);
807     setOperationAction(ISD::UDIV, VT, Expand);
808     setOperationAction(ISD::FDIV, VT, Expand);
809     setOperationAction(ISD::SREM, VT, Expand);
810     setOperationAction(ISD::UREM, VT, Expand);
811     setOperationAction(ISD::LOAD, VT, Expand);
812     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
813     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
814     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
815     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
816     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
817     setOperationAction(ISD::FABS, VT, Expand);
818     setOperationAction(ISD::FSIN, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FCOS, VT, Expand);
821     setOperationAction(ISD::FSINCOS, VT, Expand);
822     setOperationAction(ISD::FREM, VT, Expand);
823     setOperationAction(ISD::FMA,  VT, Expand);
824     setOperationAction(ISD::FPOWI, VT, Expand);
825     setOperationAction(ISD::FSQRT, VT, Expand);
826     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
827     setOperationAction(ISD::FFLOOR, VT, Expand);
828     setOperationAction(ISD::FCEIL, VT, Expand);
829     setOperationAction(ISD::FTRUNC, VT, Expand);
830     setOperationAction(ISD::FRINT, VT, Expand);
831     setOperationAction(ISD::FNEARBYINT, VT, Expand);
832     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
833     setOperationAction(ISD::UMUL_LOHI, 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::SUB,                MVT::v16i8, Legal);
946     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
947     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
948     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
949     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
950     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
953     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
954     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
955     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
956     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
957
958     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
960     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
961     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
962
963     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
964     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
966     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
967     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
968
969     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
970     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
971       MVT VT = (MVT::SimpleValueType)i;
972       // Do not attempt to custom lower non-power-of-2 vectors
973       if (!isPowerOf2_32(VT.getVectorNumElements()))
974         continue;
975       // Do not attempt to custom lower non-128-bit vectors
976       if (!VT.is128BitVector())
977         continue;
978       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
979       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
980       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
981     }
982
983     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
984     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
985     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
986     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
987     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
988     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
989
990     if (Subtarget->is64Bit()) {
991       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
992       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
993     }
994
995     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
996     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
997       MVT VT = (MVT::SimpleValueType)i;
998
999       // Do not attempt to promote non-128-bit vectors
1000       if (!VT.is128BitVector())
1001         continue;
1002
1003       setOperationAction(ISD::AND,    VT, Promote);
1004       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1005       setOperationAction(ISD::OR,     VT, Promote);
1006       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1007       setOperationAction(ISD::XOR,    VT, Promote);
1008       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1009       setOperationAction(ISD::LOAD,   VT, Promote);
1010       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1011       setOperationAction(ISD::SELECT, VT, Promote);
1012       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1013     }
1014
1015     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1016
1017     // Custom lower v2i64 and v2f64 selects.
1018     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1019     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1020     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1021     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1022
1023     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1024     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1025
1026     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1027     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1028     // As there is no 64-bit GPR available, we need build a special custom
1029     // sequence to convert from v2i32 to v2f32.
1030     if (!Subtarget->is64Bit())
1031       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1032
1033     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1034     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1035
1036     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1037   }
1038
1039   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1040     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1043     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1044     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1045     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1048     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1049     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1050
1051     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1054     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1055     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1056     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1059     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1060     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1061
1062     // FIXME: Do we need to handle scalar-to-vector here?
1063     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1064
1065     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1068     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1069     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1070
1071     // i8 and i16 vectors are custom , because the source register and source
1072     // source memory operand types are not the same width.  f32 vectors are
1073     // custom since the immediate controlling the insert encodes additional
1074     // information.
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1077     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1078     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1079
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1082     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1083     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1084
1085     // FIXME: these should be Legal but thats only for the case where
1086     // the index is constant.  For now custom expand to deal with that.
1087     if (Subtarget->is64Bit()) {
1088       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1089       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1090     }
1091   }
1092
1093   if (Subtarget->hasSSE2()) {
1094     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1095     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1096
1097     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1098     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1099
1100     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1101     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1102
1103     // In the customized shift lowering, the legal cases in AVX2 will be
1104     // recognized.
1105     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1106     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1107
1108     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1109     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1112
1113     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1114     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1115   }
1116
1117   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1118     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1120     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1122     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1123     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1124
1125     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1126     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1127     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1128
1129     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1132     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1133     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1137     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1138     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1139     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1140     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1141
1142     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1145     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1146     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1150     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1151     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1152     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1153     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1154
1155     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1156
1157     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1158     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1159     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1160     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1161
1162     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1163     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1164
1165     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1166
1167     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1168     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1169
1170     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1171     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1172
1173     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1174     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1175
1176     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1177
1178     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1179     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1180     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1181     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1182
1183     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1184     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1185     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1186
1187     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1188     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1189     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1190     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1191
1192     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1193     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1194     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1195     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1197     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1200     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1201     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1202     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1203     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1204
1205     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1206       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1208       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1209       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1210       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1211       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1212     }
1213
1214     if (Subtarget->hasInt256()) {
1215       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1216       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1217       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1218       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1219
1220       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1221       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1222       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1223       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1224
1225       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1226       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1227       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1228       // Don't lower v32i8 because there is no 128-bit byte mul
1229
1230       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1231
1232       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1233     } else {
1234       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1235       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1236       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1237       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1238
1239       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1240       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1241       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1242       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1243
1244       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1245       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1246       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1247       // Don't lower v32i8 because there is no 128-bit byte mul
1248     }
1249
1250     // In the customized shift lowering, the legal cases in AVX2 will be
1251     // recognized.
1252     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1253     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1254
1255     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1256     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1257
1258     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1259
1260     // Custom lower several nodes for 256-bit types.
1261     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1262              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1263       MVT VT = (MVT::SimpleValueType)i;
1264
1265       // Extract subvector is special because the value type
1266       // (result) is 128-bit but the source is 256-bit wide.
1267       if (VT.is128BitVector())
1268         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1269
1270       // Do not attempt to custom lower other non-256-bit vectors
1271       if (!VT.is256BitVector())
1272         continue;
1273
1274       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1275       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1276       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1277       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1278       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1279       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1280       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1281     }
1282
1283     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1284     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1285       MVT VT = (MVT::SimpleValueType)i;
1286
1287       // Do not attempt to promote non-256-bit vectors
1288       if (!VT.is256BitVector())
1289         continue;
1290
1291       setOperationAction(ISD::AND,    VT, Promote);
1292       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1293       setOperationAction(ISD::OR,     VT, Promote);
1294       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1295       setOperationAction(ISD::XOR,    VT, Promote);
1296       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1297       setOperationAction(ISD::LOAD,   VT, Promote);
1298       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1299       setOperationAction(ISD::SELECT, VT, Promote);
1300       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1301     }
1302   }
1303
1304   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1305     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1306     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1307     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1308     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1309
1310     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1311     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1312     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1313
1314     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1315     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1316     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1317     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1318     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1319     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1320     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1321     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1322     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1323     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1324     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1325
1326     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1327     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1328     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1329     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1330     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1331     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1332
1333     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1334     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1335     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1336     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1337     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1338     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1339     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1340     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1341     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1342
1343     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1344     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1345     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1346     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1347     if (Subtarget->is64Bit()) {
1348       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1349       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1350       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1351       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1352     }
1353     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1354     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1355     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1356     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1357     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1358     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1359     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1360     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1361
1362     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1363     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1364     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1365     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1366     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1367     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1368     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1369     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1370     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1371     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1372     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1373     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1374     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1375
1376     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1377     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1378     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1379     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1380     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1381     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1382
1383     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1384     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1385
1386     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1387
1388     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1389     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1390     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1391     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1392     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1393     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1394     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1395
1396     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1397     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1398
1399     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1400     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1401
1402     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1403
1404     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1405     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1406
1407     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1408     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1409
1410     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1411     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1412
1413     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1414     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1415     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1416     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1417     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1418     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1419
1420     // Custom lower several nodes.
1421     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1422              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1423       MVT VT = (MVT::SimpleValueType)i;
1424
1425       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1426       // Extract subvector is special because the value type
1427       // (result) is 256/128-bit but the source is 512-bit wide.
1428       if (VT.is128BitVector() || VT.is256BitVector())
1429         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1430
1431       if (VT.getVectorElementType() == MVT::i1)
1432         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1433
1434       // Do not attempt to custom lower other non-512-bit vectors
1435       if (!VT.is512BitVector())
1436         continue;
1437
1438       if ( EltSize >= 32) {
1439         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1440         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1441         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1442         setOperationAction(ISD::VSELECT,             VT, Legal);
1443         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1444         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1445         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1446       }
1447     }
1448     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1449       MVT VT = (MVT::SimpleValueType)i;
1450
1451       // Do not attempt to promote non-256-bit vectors
1452       if (!VT.is512BitVector())
1453         continue;
1454
1455       setOperationAction(ISD::SELECT, VT, Promote);
1456       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1457     }
1458   }// has  AVX-512
1459
1460   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1461   // of this type with custom code.
1462   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1463            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1464     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1465                        Custom);
1466   }
1467
1468   // We want to custom lower some of our intrinsics.
1469   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1470   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1471   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1472
1473   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1474   // handle type legalization for these operations here.
1475   //
1476   // FIXME: We really should do custom legalization for addition and
1477   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1478   // than generic legalization for 64-bit multiplication-with-overflow, though.
1479   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1480     // Add/Sub/Mul with overflow operations are custom lowered.
1481     MVT VT = IntVTs[i];
1482     setOperationAction(ISD::SADDO, VT, Custom);
1483     setOperationAction(ISD::UADDO, VT, Custom);
1484     setOperationAction(ISD::SSUBO, VT, Custom);
1485     setOperationAction(ISD::USUBO, VT, Custom);
1486     setOperationAction(ISD::SMULO, VT, Custom);
1487     setOperationAction(ISD::UMULO, VT, Custom);
1488   }
1489
1490   // There are no 8-bit 3-address imul/mul instructions
1491   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1492   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1493
1494   if (!Subtarget->is64Bit()) {
1495     // These libcalls are not available in 32-bit.
1496     setLibcallName(RTLIB::SHL_I128, 0);
1497     setLibcallName(RTLIB::SRL_I128, 0);
1498     setLibcallName(RTLIB::SRA_I128, 0);
1499   }
1500
1501   // Combine sin / cos into one node or libcall if possible.
1502   if (Subtarget->hasSinCos()) {
1503     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1504     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1505     if (Subtarget->isTargetDarwin()) {
1506       // For MacOSX, we don't want to the normal expansion of a libcall to
1507       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1508       // traffic.
1509       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1510       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1511     }
1512   }
1513
1514   // We have target-specific dag combine patterns for the following nodes:
1515   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1516   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1517   setTargetDAGCombine(ISD::VSELECT);
1518   setTargetDAGCombine(ISD::SELECT);
1519   setTargetDAGCombine(ISD::SHL);
1520   setTargetDAGCombine(ISD::SRA);
1521   setTargetDAGCombine(ISD::SRL);
1522   setTargetDAGCombine(ISD::OR);
1523   setTargetDAGCombine(ISD::AND);
1524   setTargetDAGCombine(ISD::ADD);
1525   setTargetDAGCombine(ISD::FADD);
1526   setTargetDAGCombine(ISD::FSUB);
1527   setTargetDAGCombine(ISD::FMA);
1528   setTargetDAGCombine(ISD::SUB);
1529   setTargetDAGCombine(ISD::LOAD);
1530   setTargetDAGCombine(ISD::STORE);
1531   setTargetDAGCombine(ISD::ZERO_EXTEND);
1532   setTargetDAGCombine(ISD::ANY_EXTEND);
1533   setTargetDAGCombine(ISD::SIGN_EXTEND);
1534   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1535   setTargetDAGCombine(ISD::TRUNCATE);
1536   setTargetDAGCombine(ISD::SINT_TO_FP);
1537   setTargetDAGCombine(ISD::SETCC);
1538   if (Subtarget->is64Bit())
1539     setTargetDAGCombine(ISD::MUL);
1540   setTargetDAGCombine(ISD::XOR);
1541
1542   computeRegisterProperties();
1543
1544   // On Darwin, -Os means optimize for size without hurting performance,
1545   // do not reduce the limit.
1546   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1547   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1548   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1549   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1550   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1551   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1552   setPrefLoopAlignment(4); // 2^4 bytes.
1553
1554   // Predictable cmov don't hurt on atom because it's in-order.
1555   PredictableSelectIsExpensive = !Subtarget->isAtom();
1556
1557   setPrefFunctionAlignment(4); // 2^4 bytes.
1558 }
1559
1560 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1561   if (!VT.isVector())
1562     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1563
1564   if (Subtarget->hasAVX512())
1565     switch(VT.getVectorNumElements()) {
1566     case  8: return MVT::v8i1;
1567     case 16: return MVT::v16i1;
1568   }
1569
1570   return VT.changeVectorElementTypeToInteger();
1571 }
1572
1573 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1574 /// the desired ByVal argument alignment.
1575 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1576   if (MaxAlign == 16)
1577     return;
1578   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1579     if (VTy->getBitWidth() == 128)
1580       MaxAlign = 16;
1581   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1582     unsigned EltAlign = 0;
1583     getMaxByValAlign(ATy->getElementType(), EltAlign);
1584     if (EltAlign > MaxAlign)
1585       MaxAlign = EltAlign;
1586   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1587     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1588       unsigned EltAlign = 0;
1589       getMaxByValAlign(STy->getElementType(i), EltAlign);
1590       if (EltAlign > MaxAlign)
1591         MaxAlign = EltAlign;
1592       if (MaxAlign == 16)
1593         break;
1594     }
1595   }
1596 }
1597
1598 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1599 /// function arguments in the caller parameter area. For X86, aggregates
1600 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1601 /// are at 4-byte boundaries.
1602 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1603   if (Subtarget->is64Bit()) {
1604     // Max of 8 and alignment of type.
1605     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1606     if (TyAlign > 8)
1607       return TyAlign;
1608     return 8;
1609   }
1610
1611   unsigned Align = 4;
1612   if (Subtarget->hasSSE1())
1613     getMaxByValAlign(Ty, Align);
1614   return Align;
1615 }
1616
1617 /// getOptimalMemOpType - Returns the target specific optimal type for load
1618 /// and store operations as a result of memset, memcpy, and memmove
1619 /// lowering. If DstAlign is zero that means it's safe to destination
1620 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1621 /// means there isn't a need to check it against alignment requirement,
1622 /// probably because the source does not need to be loaded. If 'IsMemset' is
1623 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1624 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1625 /// source is constant so it does not need to be loaded.
1626 /// It returns EVT::Other if the type should be determined using generic
1627 /// target-independent logic.
1628 EVT
1629 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1630                                        unsigned DstAlign, unsigned SrcAlign,
1631                                        bool IsMemset, bool ZeroMemset,
1632                                        bool MemcpyStrSrc,
1633                                        MachineFunction &MF) const {
1634   const Function *F = MF.getFunction();
1635   if ((!IsMemset || ZeroMemset) &&
1636       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1637                                        Attribute::NoImplicitFloat)) {
1638     if (Size >= 16 &&
1639         (Subtarget->isUnalignedMemAccessFast() ||
1640          ((DstAlign == 0 || DstAlign >= 16) &&
1641           (SrcAlign == 0 || SrcAlign >= 16)))) {
1642       if (Size >= 32) {
1643         if (Subtarget->hasInt256())
1644           return MVT::v8i32;
1645         if (Subtarget->hasFp256())
1646           return MVT::v8f32;
1647       }
1648       if (Subtarget->hasSSE2())
1649         return MVT::v4i32;
1650       if (Subtarget->hasSSE1())
1651         return MVT::v4f32;
1652     } else if (!MemcpyStrSrc && Size >= 8 &&
1653                !Subtarget->is64Bit() &&
1654                Subtarget->hasSSE2()) {
1655       // Do not use f64 to lower memcpy if source is string constant. It's
1656       // better to use i32 to avoid the loads.
1657       return MVT::f64;
1658     }
1659   }
1660   if (Subtarget->is64Bit() && Size >= 8)
1661     return MVT::i64;
1662   return MVT::i32;
1663 }
1664
1665 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1666   if (VT == MVT::f32)
1667     return X86ScalarSSEf32;
1668   else if (VT == MVT::f64)
1669     return X86ScalarSSEf64;
1670   return true;
1671 }
1672
1673 bool
1674 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
1675                                                  unsigned,
1676                                                  bool *Fast) const {
1677   if (Fast)
1678     *Fast = Subtarget->isUnalignedMemAccessFast();
1679   return true;
1680 }
1681
1682 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1683 /// current function.  The returned value is a member of the
1684 /// MachineJumpTableInfo::JTEntryKind enum.
1685 unsigned X86TargetLowering::getJumpTableEncoding() const {
1686   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1687   // symbol.
1688   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1689       Subtarget->isPICStyleGOT())
1690     return MachineJumpTableInfo::EK_Custom32;
1691
1692   // Otherwise, use the normal jump table encoding heuristics.
1693   return TargetLowering::getJumpTableEncoding();
1694 }
1695
1696 const MCExpr *
1697 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1698                                              const MachineBasicBlock *MBB,
1699                                              unsigned uid,MCContext &Ctx) const{
1700   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1701          Subtarget->isPICStyleGOT());
1702   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1703   // entries.
1704   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1705                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1706 }
1707
1708 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1709 /// jumptable.
1710 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1711                                                     SelectionDAG &DAG) const {
1712   if (!Subtarget->is64Bit())
1713     // This doesn't have SDLoc associated with it, but is not really the
1714     // same as a Register.
1715     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1716   return Table;
1717 }
1718
1719 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1720 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1721 /// MCExpr.
1722 const MCExpr *X86TargetLowering::
1723 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1724                              MCContext &Ctx) const {
1725   // X86-64 uses RIP relative addressing based on the jump table label.
1726   if (Subtarget->isPICStyleRIPRel())
1727     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1728
1729   // Otherwise, the reference is relative to the PIC base.
1730   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1731 }
1732
1733 // FIXME: Why this routine is here? Move to RegInfo!
1734 std::pair<const TargetRegisterClass*, uint8_t>
1735 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1736   const TargetRegisterClass *RRC = 0;
1737   uint8_t Cost = 1;
1738   switch (VT.SimpleTy) {
1739   default:
1740     return TargetLowering::findRepresentativeClass(VT);
1741   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1742     RRC = Subtarget->is64Bit() ?
1743       (const TargetRegisterClass*)&X86::GR64RegClass :
1744       (const TargetRegisterClass*)&X86::GR32RegClass;
1745     break;
1746   case MVT::x86mmx:
1747     RRC = &X86::VR64RegClass;
1748     break;
1749   case MVT::f32: case MVT::f64:
1750   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1751   case MVT::v4f32: case MVT::v2f64:
1752   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1753   case MVT::v4f64:
1754     RRC = &X86::VR128RegClass;
1755     break;
1756   }
1757   return std::make_pair(RRC, Cost);
1758 }
1759
1760 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1761                                                unsigned &Offset) const {
1762   if (!Subtarget->isTargetLinux())
1763     return false;
1764
1765   if (Subtarget->is64Bit()) {
1766     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1767     Offset = 0x28;
1768     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1769       AddressSpace = 256;
1770     else
1771       AddressSpace = 257;
1772   } else {
1773     // %gs:0x14 on i386
1774     Offset = 0x14;
1775     AddressSpace = 256;
1776   }
1777   return true;
1778 }
1779
1780 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1781                                             unsigned DestAS) const {
1782   assert(SrcAS != DestAS && "Expected different address spaces!");
1783
1784   return SrcAS < 256 && DestAS < 256;
1785 }
1786
1787 //===----------------------------------------------------------------------===//
1788 //               Return Value Calling Convention Implementation
1789 //===----------------------------------------------------------------------===//
1790
1791 #include "X86GenCallingConv.inc"
1792
1793 bool
1794 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1795                                   MachineFunction &MF, bool isVarArg,
1796                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1797                         LLVMContext &Context) const {
1798   SmallVector<CCValAssign, 16> RVLocs;
1799   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1800                  RVLocs, Context);
1801   return CCInfo.CheckReturn(Outs, RetCC_X86);
1802 }
1803
1804 const uint16_t *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1805   static const uint16_t ScratchRegs[] = { X86::R11, 0 };
1806   return ScratchRegs;
1807 }
1808
1809 SDValue
1810 X86TargetLowering::LowerReturn(SDValue Chain,
1811                                CallingConv::ID CallConv, bool isVarArg,
1812                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1813                                const SmallVectorImpl<SDValue> &OutVals,
1814                                SDLoc dl, SelectionDAG &DAG) const {
1815   MachineFunction &MF = DAG.getMachineFunction();
1816   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1817
1818   SmallVector<CCValAssign, 16> RVLocs;
1819   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1820                  RVLocs, *DAG.getContext());
1821   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1822
1823   SDValue Flag;
1824   SmallVector<SDValue, 6> RetOps;
1825   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1826   // Operand #1 = Bytes To Pop
1827   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1828                    MVT::i16));
1829
1830   // Copy the result values into the output registers.
1831   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1832     CCValAssign &VA = RVLocs[i];
1833     assert(VA.isRegLoc() && "Can only return in registers!");
1834     SDValue ValToCopy = OutVals[i];
1835     EVT ValVT = ValToCopy.getValueType();
1836
1837     // Promote values to the appropriate types
1838     if (VA.getLocInfo() == CCValAssign::SExt)
1839       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1840     else if (VA.getLocInfo() == CCValAssign::ZExt)
1841       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1842     else if (VA.getLocInfo() == CCValAssign::AExt)
1843       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1844     else if (VA.getLocInfo() == CCValAssign::BCvt)
1845       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1846
1847     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1848            "Unexpected FP-extend for return value.");  
1849
1850     // If this is x86-64, and we disabled SSE, we can't return FP values,
1851     // or SSE or MMX vectors.
1852     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1853          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1854           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1855       report_fatal_error("SSE register return with SSE disabled");
1856     }
1857     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1858     // llvm-gcc has never done it right and no one has noticed, so this
1859     // should be OK for now.
1860     if (ValVT == MVT::f64 &&
1861         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1862       report_fatal_error("SSE2 register return with SSE2 disabled");
1863
1864     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1865     // the RET instruction and handled by the FP Stackifier.
1866     if (VA.getLocReg() == X86::ST0 ||
1867         VA.getLocReg() == X86::ST1) {
1868       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1869       // change the value to the FP stack register class.
1870       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1871         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1872       RetOps.push_back(ValToCopy);
1873       // Don't emit a copytoreg.
1874       continue;
1875     }
1876
1877     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1878     // which is returned in RAX / RDX.
1879     if (Subtarget->is64Bit()) {
1880       if (ValVT == MVT::x86mmx) {
1881         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1882           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1883           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1884                                   ValToCopy);
1885           // If we don't have SSE2 available, convert to v4f32 so the generated
1886           // register is legal.
1887           if (!Subtarget->hasSSE2())
1888             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1889         }
1890       }
1891     }
1892
1893     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1894     Flag = Chain.getValue(1);
1895     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1896   }
1897
1898   // The x86-64 ABIs require that for returning structs by value we copy
1899   // the sret argument into %rax/%eax (depending on ABI) for the return.
1900   // Win32 requires us to put the sret argument to %eax as well.
1901   // We saved the argument into a virtual register in the entry block,
1902   // so now we copy the value out and into %rax/%eax.
1903   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1904       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1905     MachineFunction &MF = DAG.getMachineFunction();
1906     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1907     unsigned Reg = FuncInfo->getSRetReturnReg();
1908     assert(Reg &&
1909            "SRetReturnReg should have been set in LowerFormalArguments().");
1910     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1911
1912     unsigned RetValReg
1913         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1914           X86::RAX : X86::EAX;
1915     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1916     Flag = Chain.getValue(1);
1917
1918     // RAX/EAX now acts like a return value.
1919     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1920   }
1921
1922   RetOps[0] = Chain;  // Update chain.
1923
1924   // Add the flag if we have it.
1925   if (Flag.getNode())
1926     RetOps.push_back(Flag);
1927
1928   return DAG.getNode(X86ISD::RET_FLAG, dl,
1929                      MVT::Other, &RetOps[0], RetOps.size());
1930 }
1931
1932 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1933   if (N->getNumValues() != 1)
1934     return false;
1935   if (!N->hasNUsesOfValue(1, 0))
1936     return false;
1937
1938   SDValue TCChain = Chain;
1939   SDNode *Copy = *N->use_begin();
1940   if (Copy->getOpcode() == ISD::CopyToReg) {
1941     // If the copy has a glue operand, we conservatively assume it isn't safe to
1942     // perform a tail call.
1943     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1944       return false;
1945     TCChain = Copy->getOperand(0);
1946   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1947     return false;
1948
1949   bool HasRet = false;
1950   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1951        UI != UE; ++UI) {
1952     if (UI->getOpcode() != X86ISD::RET_FLAG)
1953       return false;
1954     HasRet = true;
1955   }
1956
1957   if (!HasRet)
1958     return false;
1959
1960   Chain = TCChain;
1961   return true;
1962 }
1963
1964 MVT
1965 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1966                                             ISD::NodeType ExtendKind) const {
1967   MVT ReturnMVT;
1968   // TODO: Is this also valid on 32-bit?
1969   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1970     ReturnMVT = MVT::i8;
1971   else
1972     ReturnMVT = MVT::i32;
1973
1974   MVT MinVT = getRegisterType(ReturnMVT);
1975   return VT.bitsLT(MinVT) ? MinVT : VT;
1976 }
1977
1978 /// LowerCallResult - Lower the result values of a call into the
1979 /// appropriate copies out of appropriate physical registers.
1980 ///
1981 SDValue
1982 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1983                                    CallingConv::ID CallConv, bool isVarArg,
1984                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1985                                    SDLoc dl, SelectionDAG &DAG,
1986                                    SmallVectorImpl<SDValue> &InVals) const {
1987
1988   // Assign locations to each value returned by this call.
1989   SmallVector<CCValAssign, 16> RVLocs;
1990   bool Is64Bit = Subtarget->is64Bit();
1991   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1992                  getTargetMachine(), RVLocs, *DAG.getContext());
1993   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1994
1995   // Copy all of the result registers out of their specified physreg.
1996   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1997     CCValAssign &VA = RVLocs[i];
1998     EVT CopyVT = VA.getValVT();
1999
2000     // If this is x86-64, and we disabled SSE, we can't return FP values
2001     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2002         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2003       report_fatal_error("SSE register return with SSE disabled");
2004     }
2005
2006     SDValue Val;
2007
2008     // If this is a call to a function that returns an fp value on the floating
2009     // point stack, we must guarantee the value is popped from the stack, so
2010     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2011     // if the return value is not used. We use the FpPOP_RETVAL instruction
2012     // instead.
2013     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2014       // If we prefer to use the value in xmm registers, copy it out as f80 and
2015       // use a truncate to move it from fp stack reg to xmm reg.
2016       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2017       SDValue Ops[] = { Chain, InFlag };
2018       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2019                                          MVT::Other, MVT::Glue, Ops), 1);
2020       Val = Chain.getValue(0);
2021
2022       // Round the f80 to the right size, which also moves it to the appropriate
2023       // xmm register.
2024       if (CopyVT != VA.getValVT())
2025         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2026                           // This truncation won't change the value.
2027                           DAG.getIntPtrConstant(1));
2028     } else {
2029       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2030                                  CopyVT, InFlag).getValue(1);
2031       Val = Chain.getValue(0);
2032     }
2033     InFlag = Chain.getValue(2);
2034     InVals.push_back(Val);
2035   }
2036
2037   return Chain;
2038 }
2039
2040 //===----------------------------------------------------------------------===//
2041 //                C & StdCall & Fast Calling Convention implementation
2042 //===----------------------------------------------------------------------===//
2043 //  StdCall calling convention seems to be standard for many Windows' API
2044 //  routines and around. It differs from C calling convention just a little:
2045 //  callee should clean up the stack, not caller. Symbols should be also
2046 //  decorated in some fancy way :) It doesn't support any vector arguments.
2047 //  For info on fast calling convention see Fast Calling Convention (tail call)
2048 //  implementation LowerX86_32FastCCCallTo.
2049
2050 /// CallIsStructReturn - Determines whether a call uses struct return
2051 /// semantics.
2052 enum StructReturnType {
2053   NotStructReturn,
2054   RegStructReturn,
2055   StackStructReturn
2056 };
2057 static StructReturnType
2058 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2059   if (Outs.empty())
2060     return NotStructReturn;
2061
2062   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2063   if (!Flags.isSRet())
2064     return NotStructReturn;
2065   if (Flags.isInReg())
2066     return RegStructReturn;
2067   return StackStructReturn;
2068 }
2069
2070 /// ArgsAreStructReturn - Determines whether a function uses struct
2071 /// return semantics.
2072 static StructReturnType
2073 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2074   if (Ins.empty())
2075     return NotStructReturn;
2076
2077   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2078   if (!Flags.isSRet())
2079     return NotStructReturn;
2080   if (Flags.isInReg())
2081     return RegStructReturn;
2082   return StackStructReturn;
2083 }
2084
2085 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2086 /// by "Src" to address "Dst" with size and alignment information specified by
2087 /// the specific parameter attribute. The copy will be passed as a byval
2088 /// function parameter.
2089 static SDValue
2090 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2091                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2092                           SDLoc dl) {
2093   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2094
2095   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2096                        /*isVolatile*/false, /*AlwaysInline=*/true,
2097                        MachinePointerInfo(), MachinePointerInfo());
2098 }
2099
2100 /// IsTailCallConvention - Return true if the calling convention is one that
2101 /// supports tail call optimization.
2102 static bool IsTailCallConvention(CallingConv::ID CC) {
2103   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2104           CC == CallingConv::HiPE);
2105 }
2106
2107 /// \brief Return true if the calling convention is a C calling convention.
2108 static bool IsCCallConvention(CallingConv::ID CC) {
2109   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2110           CC == CallingConv::X86_64_SysV);
2111 }
2112
2113 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2114   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2115     return false;
2116
2117   CallSite CS(CI);
2118   CallingConv::ID CalleeCC = CS.getCallingConv();
2119   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2120     return false;
2121
2122   return true;
2123 }
2124
2125 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2126 /// a tailcall target by changing its ABI.
2127 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2128                                    bool GuaranteedTailCallOpt) {
2129   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2130 }
2131
2132 SDValue
2133 X86TargetLowering::LowerMemArgument(SDValue Chain,
2134                                     CallingConv::ID CallConv,
2135                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2136                                     SDLoc dl, SelectionDAG &DAG,
2137                                     const CCValAssign &VA,
2138                                     MachineFrameInfo *MFI,
2139                                     unsigned i) const {
2140   // Create the nodes corresponding to a load from this parameter slot.
2141   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2142   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2143                               getTargetMachine().Options.GuaranteedTailCallOpt);
2144   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2145   EVT ValVT;
2146
2147   // If value is passed by pointer we have address passed instead of the value
2148   // itself.
2149   if (VA.getLocInfo() == CCValAssign::Indirect)
2150     ValVT = VA.getLocVT();
2151   else
2152     ValVT = VA.getValVT();
2153
2154   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2155   // changed with more analysis.
2156   // In case of tail call optimization mark all arguments mutable. Since they
2157   // could be overwritten by lowering of arguments in case of a tail call.
2158   if (Flags.isByVal()) {
2159     unsigned Bytes = Flags.getByValSize();
2160     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2161     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2162     return DAG.getFrameIndex(FI, getPointerTy());
2163   } else {
2164     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2165                                     VA.getLocMemOffset(), isImmutable);
2166     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2167     return DAG.getLoad(ValVT, dl, Chain, FIN,
2168                        MachinePointerInfo::getFixedStack(FI),
2169                        false, false, false, 0);
2170   }
2171 }
2172
2173 SDValue
2174 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2175                                         CallingConv::ID CallConv,
2176                                         bool isVarArg,
2177                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2178                                         SDLoc dl,
2179                                         SelectionDAG &DAG,
2180                                         SmallVectorImpl<SDValue> &InVals)
2181                                           const {
2182   MachineFunction &MF = DAG.getMachineFunction();
2183   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2184
2185   const Function* Fn = MF.getFunction();
2186   if (Fn->hasExternalLinkage() &&
2187       Subtarget->isTargetCygMing() &&
2188       Fn->getName() == "main")
2189     FuncInfo->setForceFramePointer(true);
2190
2191   MachineFrameInfo *MFI = MF.getFrameInfo();
2192   bool Is64Bit = Subtarget->is64Bit();
2193   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2194
2195   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2196          "Var args not supported with calling convention fastcc, ghc or hipe");
2197
2198   // Assign locations to all of the incoming arguments.
2199   SmallVector<CCValAssign, 16> ArgLocs;
2200   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2201                  ArgLocs, *DAG.getContext());
2202
2203   // Allocate shadow area for Win64
2204   if (IsWin64)
2205     CCInfo.AllocateStack(32, 8);
2206
2207   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2208
2209   unsigned LastVal = ~0U;
2210   SDValue ArgValue;
2211   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2212     CCValAssign &VA = ArgLocs[i];
2213     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2214     // places.
2215     assert(VA.getValNo() != LastVal &&
2216            "Don't support value assigned to multiple locs yet");
2217     (void)LastVal;
2218     LastVal = VA.getValNo();
2219
2220     if (VA.isRegLoc()) {
2221       EVT RegVT = VA.getLocVT();
2222       const TargetRegisterClass *RC;
2223       if (RegVT == MVT::i32)
2224         RC = &X86::GR32RegClass;
2225       else if (Is64Bit && RegVT == MVT::i64)
2226         RC = &X86::GR64RegClass;
2227       else if (RegVT == MVT::f32)
2228         RC = &X86::FR32RegClass;
2229       else if (RegVT == MVT::f64)
2230         RC = &X86::FR64RegClass;
2231       else if (RegVT.is512BitVector())
2232         RC = &X86::VR512RegClass;
2233       else if (RegVT.is256BitVector())
2234         RC = &X86::VR256RegClass;
2235       else if (RegVT.is128BitVector())
2236         RC = &X86::VR128RegClass;
2237       else if (RegVT == MVT::x86mmx)
2238         RC = &X86::VR64RegClass;
2239       else if (RegVT == MVT::i1)
2240         RC = &X86::VK1RegClass;
2241       else if (RegVT == MVT::v8i1)
2242         RC = &X86::VK8RegClass;
2243       else if (RegVT == MVT::v16i1)
2244         RC = &X86::VK16RegClass;
2245       else
2246         llvm_unreachable("Unknown argument type!");
2247
2248       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2249       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2250
2251       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2252       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2253       // right size.
2254       if (VA.getLocInfo() == CCValAssign::SExt)
2255         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2256                                DAG.getValueType(VA.getValVT()));
2257       else if (VA.getLocInfo() == CCValAssign::ZExt)
2258         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2259                                DAG.getValueType(VA.getValVT()));
2260       else if (VA.getLocInfo() == CCValAssign::BCvt)
2261         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2262
2263       if (VA.isExtInLoc()) {
2264         // Handle MMX values passed in XMM regs.
2265         if (RegVT.isVector())
2266           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2267         else
2268           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2269       }
2270     } else {
2271       assert(VA.isMemLoc());
2272       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2273     }
2274
2275     // If value is passed via pointer - do a load.
2276     if (VA.getLocInfo() == CCValAssign::Indirect)
2277       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2278                              MachinePointerInfo(), false, false, false, 0);
2279
2280     InVals.push_back(ArgValue);
2281   }
2282
2283   // The x86-64 ABIs require that for returning structs by value we copy
2284   // the sret argument into %rax/%eax (depending on ABI) for the return.
2285   // Win32 requires us to put the sret argument to %eax as well.
2286   // Save the argument into a virtual register so that we can access it
2287   // from the return points.
2288   if (MF.getFunction()->hasStructRetAttr() &&
2289       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2290     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2291     unsigned Reg = FuncInfo->getSRetReturnReg();
2292     if (!Reg) {
2293       MVT PtrTy = getPointerTy();
2294       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2295       FuncInfo->setSRetReturnReg(Reg);
2296     }
2297     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2298     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2299   }
2300
2301   unsigned StackSize = CCInfo.getNextStackOffset();
2302   // Align stack specially for tail calls.
2303   if (FuncIsMadeTailCallSafe(CallConv,
2304                              MF.getTarget().Options.GuaranteedTailCallOpt))
2305     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2306
2307   // If the function takes variable number of arguments, make a frame index for
2308   // the start of the first vararg value... for expansion of llvm.va_start.
2309   if (isVarArg) {
2310     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2311                     CallConv != CallingConv::X86_ThisCall)) {
2312       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2313     }
2314     if (Is64Bit) {
2315       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2316
2317       // FIXME: We should really autogenerate these arrays
2318       static const uint16_t GPR64ArgRegsWin64[] = {
2319         X86::RCX, X86::RDX, X86::R8,  X86::R9
2320       };
2321       static const uint16_t GPR64ArgRegs64Bit[] = {
2322         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2323       };
2324       static const uint16_t XMMArgRegs64Bit[] = {
2325         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2326         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2327       };
2328       const uint16_t *GPR64ArgRegs;
2329       unsigned NumXMMRegs = 0;
2330
2331       if (IsWin64) {
2332         // The XMM registers which might contain var arg parameters are shadowed
2333         // in their paired GPR.  So we only need to save the GPR to their home
2334         // slots.
2335         TotalNumIntRegs = 4;
2336         GPR64ArgRegs = GPR64ArgRegsWin64;
2337       } else {
2338         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2339         GPR64ArgRegs = GPR64ArgRegs64Bit;
2340
2341         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2342                                                 TotalNumXMMRegs);
2343       }
2344       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2345                                                        TotalNumIntRegs);
2346
2347       bool NoImplicitFloatOps = Fn->getAttributes().
2348         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2349       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2350              "SSE register cannot be used when SSE is disabled!");
2351       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2352                NoImplicitFloatOps) &&
2353              "SSE register cannot be used when SSE is disabled!");
2354       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2355           !Subtarget->hasSSE1())
2356         // Kernel mode asks for SSE to be disabled, so don't push them
2357         // on the stack.
2358         TotalNumXMMRegs = 0;
2359
2360       if (IsWin64) {
2361         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2362         // Get to the caller-allocated home save location.  Add 8 to account
2363         // for the return address.
2364         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2365         FuncInfo->setRegSaveFrameIndex(
2366           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2367         // Fixup to set vararg frame on shadow area (4 x i64).
2368         if (NumIntRegs < 4)
2369           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2370       } else {
2371         // For X86-64, if there are vararg parameters that are passed via
2372         // registers, then we must store them to their spots on the stack so
2373         // they may be loaded by deferencing the result of va_next.
2374         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2375         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2376         FuncInfo->setRegSaveFrameIndex(
2377           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2378                                false));
2379       }
2380
2381       // Store the integer parameter registers.
2382       SmallVector<SDValue, 8> MemOps;
2383       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2384                                         getPointerTy());
2385       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2386       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2387         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2388                                   DAG.getIntPtrConstant(Offset));
2389         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2390                                      &X86::GR64RegClass);
2391         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2392         SDValue Store =
2393           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2394                        MachinePointerInfo::getFixedStack(
2395                          FuncInfo->getRegSaveFrameIndex(), Offset),
2396                        false, false, 0);
2397         MemOps.push_back(Store);
2398         Offset += 8;
2399       }
2400
2401       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2402         // Now store the XMM (fp + vector) parameter registers.
2403         SmallVector<SDValue, 11> SaveXMMOps;
2404         SaveXMMOps.push_back(Chain);
2405
2406         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2407         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2408         SaveXMMOps.push_back(ALVal);
2409
2410         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2411                                FuncInfo->getRegSaveFrameIndex()));
2412         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2413                                FuncInfo->getVarArgsFPOffset()));
2414
2415         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2416           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2417                                        &X86::VR128RegClass);
2418           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2419           SaveXMMOps.push_back(Val);
2420         }
2421         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2422                                      MVT::Other,
2423                                      &SaveXMMOps[0], SaveXMMOps.size()));
2424       }
2425
2426       if (!MemOps.empty())
2427         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2428                             &MemOps[0], MemOps.size());
2429     }
2430   }
2431
2432   // Some CCs need callee pop.
2433   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2434                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2435     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2436   } else {
2437     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2438     // If this is an sret function, the return should pop the hidden pointer.
2439     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2440         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2441         argsAreStructReturn(Ins) == StackStructReturn)
2442       FuncInfo->setBytesToPopOnReturn(4);
2443   }
2444
2445   if (!Is64Bit) {
2446     // RegSaveFrameIndex is X86-64 only.
2447     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2448     if (CallConv == CallingConv::X86_FastCall ||
2449         CallConv == CallingConv::X86_ThisCall)
2450       // fastcc functions can't have varargs.
2451       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2452   }
2453
2454   FuncInfo->setArgumentStackSize(StackSize);
2455
2456   return Chain;
2457 }
2458
2459 SDValue
2460 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2461                                     SDValue StackPtr, SDValue Arg,
2462                                     SDLoc dl, SelectionDAG &DAG,
2463                                     const CCValAssign &VA,
2464                                     ISD::ArgFlagsTy Flags) const {
2465   unsigned LocMemOffset = VA.getLocMemOffset();
2466   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2467   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2468   if (Flags.isByVal())
2469     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2470
2471   return DAG.getStore(Chain, dl, Arg, PtrOff,
2472                       MachinePointerInfo::getStack(LocMemOffset),
2473                       false, false, 0);
2474 }
2475
2476 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2477 /// optimization is performed and it is required.
2478 SDValue
2479 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2480                                            SDValue &OutRetAddr, SDValue Chain,
2481                                            bool IsTailCall, bool Is64Bit,
2482                                            int FPDiff, SDLoc dl) const {
2483   // Adjust the Return address stack slot.
2484   EVT VT = getPointerTy();
2485   OutRetAddr = getReturnAddressFrameIndex(DAG);
2486
2487   // Load the "old" Return address.
2488   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2489                            false, false, false, 0);
2490   return SDValue(OutRetAddr.getNode(), 1);
2491 }
2492
2493 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2494 /// optimization is performed and it is required (FPDiff!=0).
2495 static SDValue
2496 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2497                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2498                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2499   // Store the return address to the appropriate stack slot.
2500   if (!FPDiff) return Chain;
2501   // Calculate the new stack slot for the return address.
2502   int NewReturnAddrFI =
2503     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2504                                          false);
2505   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2506   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2507                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2508                        false, false, 0);
2509   return Chain;
2510 }
2511
2512 SDValue
2513 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2514                              SmallVectorImpl<SDValue> &InVals) const {
2515   SelectionDAG &DAG                     = CLI.DAG;
2516   SDLoc &dl                             = CLI.DL;
2517   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2518   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2519   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2520   SDValue Chain                         = CLI.Chain;
2521   SDValue Callee                        = CLI.Callee;
2522   CallingConv::ID CallConv              = CLI.CallConv;
2523   bool &isTailCall                      = CLI.IsTailCall;
2524   bool isVarArg                         = CLI.IsVarArg;
2525
2526   MachineFunction &MF = DAG.getMachineFunction();
2527   bool Is64Bit        = Subtarget->is64Bit();
2528   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2529   StructReturnType SR = callIsStructReturn(Outs);
2530   bool IsSibcall      = false;
2531
2532   if (MF.getTarget().Options.DisableTailCalls)
2533     isTailCall = false;
2534
2535   if (isTailCall) {
2536     // Check if it's really possible to do a tail call.
2537     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2538                     isVarArg, SR != NotStructReturn,
2539                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2540                     Outs, OutVals, Ins, DAG);
2541
2542     // Sibcalls are automatically detected tailcalls which do not require
2543     // ABI changes.
2544     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2545       IsSibcall = true;
2546
2547     if (isTailCall)
2548       ++NumTailCalls;
2549   }
2550
2551   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2552          "Var args not supported with calling convention fastcc, ghc or hipe");
2553
2554   // Analyze operands of the call, assigning locations to each operand.
2555   SmallVector<CCValAssign, 16> ArgLocs;
2556   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2557                  ArgLocs, *DAG.getContext());
2558
2559   // Allocate shadow area for Win64
2560   if (IsWin64)
2561     CCInfo.AllocateStack(32, 8);
2562
2563   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2564
2565   // Get a count of how many bytes are to be pushed on the stack.
2566   unsigned NumBytes = CCInfo.getNextStackOffset();
2567   if (IsSibcall)
2568     // This is a sibcall. The memory operands are available in caller's
2569     // own caller's stack.
2570     NumBytes = 0;
2571   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2572            IsTailCallConvention(CallConv))
2573     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2574
2575   int FPDiff = 0;
2576   if (isTailCall && !IsSibcall) {
2577     // Lower arguments at fp - stackoffset + fpdiff.
2578     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2579     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2580
2581     FPDiff = NumBytesCallerPushed - NumBytes;
2582
2583     // Set the delta of movement of the returnaddr stackslot.
2584     // But only set if delta is greater than previous delta.
2585     if (FPDiff < X86Info->getTCReturnAddrDelta())
2586       X86Info->setTCReturnAddrDelta(FPDiff);
2587   }
2588
2589   unsigned NumBytesToPush = NumBytes;
2590   unsigned NumBytesToPop = NumBytes;
2591
2592   // If we have an inalloca argument, all stack space has already been allocated
2593   // for us and be right at the top of the stack.  We don't support multiple
2594   // arguments passed in memory when using inalloca.
2595   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2596     NumBytesToPush = 0;
2597     assert(ArgLocs.back().getLocMemOffset() == 0 &&
2598            "an inalloca argument must be the only memory argument");
2599   }
2600
2601   if (!IsSibcall)
2602     Chain = DAG.getCALLSEQ_START(
2603         Chain, DAG.getIntPtrConstant(NumBytesToPush, true), dl);
2604
2605   SDValue RetAddrFrIdx;
2606   // Load return address for tail calls.
2607   if (isTailCall && FPDiff)
2608     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2609                                     Is64Bit, FPDiff, dl);
2610
2611   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2612   SmallVector<SDValue, 8> MemOpChains;
2613   SDValue StackPtr;
2614
2615   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2616   // of tail call optimization arguments are handle later.
2617   const X86RegisterInfo *RegInfo =
2618     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2619   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2620     // Skip inalloca arguments, they have already been written.
2621     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2622     if (Flags.isInAlloca())
2623       continue;
2624
2625     CCValAssign &VA = ArgLocs[i];
2626     EVT RegVT = VA.getLocVT();
2627     SDValue Arg = OutVals[i];
2628     bool isByVal = Flags.isByVal();
2629
2630     // Promote the value if needed.
2631     switch (VA.getLocInfo()) {
2632     default: llvm_unreachable("Unknown loc info!");
2633     case CCValAssign::Full: break;
2634     case CCValAssign::SExt:
2635       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2636       break;
2637     case CCValAssign::ZExt:
2638       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2639       break;
2640     case CCValAssign::AExt:
2641       if (RegVT.is128BitVector()) {
2642         // Special case: passing MMX values in XMM registers.
2643         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2644         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2645         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2646       } else
2647         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2648       break;
2649     case CCValAssign::BCvt:
2650       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2651       break;
2652     case CCValAssign::Indirect: {
2653       // Store the argument.
2654       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2655       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2656       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2657                            MachinePointerInfo::getFixedStack(FI),
2658                            false, false, 0);
2659       Arg = SpillSlot;
2660       break;
2661     }
2662     }
2663
2664     if (VA.isRegLoc()) {
2665       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2666       if (isVarArg && IsWin64) {
2667         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2668         // shadow reg if callee is a varargs function.
2669         unsigned ShadowReg = 0;
2670         switch (VA.getLocReg()) {
2671         case X86::XMM0: ShadowReg = X86::RCX; break;
2672         case X86::XMM1: ShadowReg = X86::RDX; break;
2673         case X86::XMM2: ShadowReg = X86::R8; break;
2674         case X86::XMM3: ShadowReg = X86::R9; break;
2675         }
2676         if (ShadowReg)
2677           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2678       }
2679     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2680       assert(VA.isMemLoc());
2681       if (StackPtr.getNode() == 0)
2682         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2683                                       getPointerTy());
2684       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2685                                              dl, DAG, VA, Flags));
2686     }
2687   }
2688
2689   if (!MemOpChains.empty())
2690     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2691                         &MemOpChains[0], MemOpChains.size());
2692
2693   if (Subtarget->isPICStyleGOT()) {
2694     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2695     // GOT pointer.
2696     if (!isTailCall) {
2697       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2698                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2699     } else {
2700       // If we are tail calling and generating PIC/GOT style code load the
2701       // address of the callee into ECX. The value in ecx is used as target of
2702       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2703       // for tail calls on PIC/GOT architectures. Normally we would just put the
2704       // address of GOT into ebx and then call target@PLT. But for tail calls
2705       // ebx would be restored (since ebx is callee saved) before jumping to the
2706       // target@PLT.
2707
2708       // Note: The actual moving to ECX is done further down.
2709       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2710       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2711           !G->getGlobal()->hasProtectedVisibility())
2712         Callee = LowerGlobalAddress(Callee, DAG);
2713       else if (isa<ExternalSymbolSDNode>(Callee))
2714         Callee = LowerExternalSymbol(Callee, DAG);
2715     }
2716   }
2717
2718   if (Is64Bit && isVarArg && !IsWin64) {
2719     // From AMD64 ABI document:
2720     // For calls that may call functions that use varargs or stdargs
2721     // (prototype-less calls or calls to functions containing ellipsis (...) in
2722     // the declaration) %al is used as hidden argument to specify the number
2723     // of SSE registers used. The contents of %al do not need to match exactly
2724     // the number of registers, but must be an ubound on the number of SSE
2725     // registers used and is in the range 0 - 8 inclusive.
2726
2727     // Count the number of XMM registers allocated.
2728     static const uint16_t XMMArgRegs[] = {
2729       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2730       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2731     };
2732     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2733     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2734            && "SSE registers cannot be used when SSE is disabled");
2735
2736     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2737                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2738   }
2739
2740   // For tail calls lower the arguments to the 'real' stack slot.
2741   if (isTailCall) {
2742     // Force all the incoming stack arguments to be loaded from the stack
2743     // before any new outgoing arguments are stored to the stack, because the
2744     // outgoing stack slots may alias the incoming argument stack slots, and
2745     // the alias isn't otherwise explicit. This is slightly more conservative
2746     // than necessary, because it means that each store effectively depends
2747     // on every argument instead of just those arguments it would clobber.
2748     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2749
2750     SmallVector<SDValue, 8> MemOpChains2;
2751     SDValue FIN;
2752     int FI = 0;
2753     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2754       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2755         CCValAssign &VA = ArgLocs[i];
2756         if (VA.isRegLoc())
2757           continue;
2758         assert(VA.isMemLoc());
2759         SDValue Arg = OutVals[i];
2760         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2761         // Create frame index.
2762         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2763         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2764         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2765         FIN = DAG.getFrameIndex(FI, getPointerTy());
2766
2767         if (Flags.isByVal()) {
2768           // Copy relative to framepointer.
2769           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2770           if (StackPtr.getNode() == 0)
2771             StackPtr = DAG.getCopyFromReg(Chain, dl,
2772                                           RegInfo->getStackRegister(),
2773                                           getPointerTy());
2774           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2775
2776           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2777                                                            ArgChain,
2778                                                            Flags, DAG, dl));
2779         } else {
2780           // Store relative to framepointer.
2781           MemOpChains2.push_back(
2782             DAG.getStore(ArgChain, dl, Arg, FIN,
2783                          MachinePointerInfo::getFixedStack(FI),
2784                          false, false, 0));
2785         }
2786       }
2787     }
2788
2789     if (!MemOpChains2.empty())
2790       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2791                           &MemOpChains2[0], MemOpChains2.size());
2792
2793     // Store the return address to the appropriate stack slot.
2794     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2795                                      getPointerTy(), RegInfo->getSlotSize(),
2796                                      FPDiff, dl);
2797   }
2798
2799   // Build a sequence of copy-to-reg nodes chained together with token chain
2800   // and flag operands which copy the outgoing args into registers.
2801   SDValue InFlag;
2802   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2803     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2804                              RegsToPass[i].second, InFlag);
2805     InFlag = Chain.getValue(1);
2806   }
2807
2808   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2809     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2810     // In the 64-bit large code model, we have to make all calls
2811     // through a register, since the call instruction's 32-bit
2812     // pc-relative offset may not be large enough to hold the whole
2813     // address.
2814   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2815     // If the callee is a GlobalAddress node (quite common, every direct call
2816     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2817     // it.
2818
2819     // We should use extra load for direct calls to dllimported functions in
2820     // non-JIT mode.
2821     const GlobalValue *GV = G->getGlobal();
2822     if (!GV->hasDLLImportStorageClass()) {
2823       unsigned char OpFlags = 0;
2824       bool ExtraLoad = false;
2825       unsigned WrapperKind = ISD::DELETED_NODE;
2826
2827       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2828       // external symbols most go through the PLT in PIC mode.  If the symbol
2829       // has hidden or protected visibility, or if it is static or local, then
2830       // we don't need to use the PLT - we can directly call it.
2831       if (Subtarget->isTargetELF() &&
2832           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2833           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2834         OpFlags = X86II::MO_PLT;
2835       } else if (Subtarget->isPICStyleStubAny() &&
2836                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2837                  (!Subtarget->getTargetTriple().isMacOSX() ||
2838                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2839         // PC-relative references to external symbols should go through $stub,
2840         // unless we're building with the leopard linker or later, which
2841         // automatically synthesizes these stubs.
2842         OpFlags = X86II::MO_DARWIN_STUB;
2843       } else if (Subtarget->isPICStyleRIPRel() &&
2844                  isa<Function>(GV) &&
2845                  cast<Function>(GV)->getAttributes().
2846                    hasAttribute(AttributeSet::FunctionIndex,
2847                                 Attribute::NonLazyBind)) {
2848         // If the function is marked as non-lazy, generate an indirect call
2849         // which loads from the GOT directly. This avoids runtime overhead
2850         // at the cost of eager binding (and one extra byte of encoding).
2851         OpFlags = X86II::MO_GOTPCREL;
2852         WrapperKind = X86ISD::WrapperRIP;
2853         ExtraLoad = true;
2854       }
2855
2856       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2857                                           G->getOffset(), OpFlags);
2858
2859       // Add a wrapper if needed.
2860       if (WrapperKind != ISD::DELETED_NODE)
2861         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2862       // Add extra indirection if needed.
2863       if (ExtraLoad)
2864         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2865                              MachinePointerInfo::getGOT(),
2866                              false, false, false, 0);
2867     }
2868   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2869     unsigned char OpFlags = 0;
2870
2871     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2872     // external symbols should go through the PLT.
2873     if (Subtarget->isTargetELF() &&
2874         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2875       OpFlags = X86II::MO_PLT;
2876     } else if (Subtarget->isPICStyleStubAny() &&
2877                (!Subtarget->getTargetTriple().isMacOSX() ||
2878                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2879       // PC-relative references to external symbols should go through $stub,
2880       // unless we're building with the leopard linker or later, which
2881       // automatically synthesizes these stubs.
2882       OpFlags = X86II::MO_DARWIN_STUB;
2883     }
2884
2885     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2886                                          OpFlags);
2887   }
2888
2889   // Returns a chain & a flag for retval copy to use.
2890   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2891   SmallVector<SDValue, 8> Ops;
2892
2893   if (!IsSibcall && isTailCall) {
2894     Chain = DAG.getCALLSEQ_END(Chain,
2895                                DAG.getIntPtrConstant(NumBytesToPop, true),
2896                                DAG.getIntPtrConstant(0, true), InFlag, dl);
2897     InFlag = Chain.getValue(1);
2898   }
2899
2900   Ops.push_back(Chain);
2901   Ops.push_back(Callee);
2902
2903   if (isTailCall)
2904     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2905
2906   // Add argument registers to the end of the list so that they are known live
2907   // into the call.
2908   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2909     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2910                                   RegsToPass[i].second.getValueType()));
2911
2912   // Add a register mask operand representing the call-preserved registers.
2913   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2914   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2915   assert(Mask && "Missing call preserved mask for calling convention");
2916   Ops.push_back(DAG.getRegisterMask(Mask));
2917
2918   if (InFlag.getNode())
2919     Ops.push_back(InFlag);
2920
2921   if (isTailCall) {
2922     // We used to do:
2923     //// If this is the first return lowered for this function, add the regs
2924     //// to the liveout set for the function.
2925     // This isn't right, although it's probably harmless on x86; liveouts
2926     // should be computed from returns not tail calls.  Consider a void
2927     // function making a tail call to a function returning int.
2928     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2929   }
2930
2931   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2932   InFlag = Chain.getValue(1);
2933
2934   // Create the CALLSEQ_END node.
2935   unsigned NumBytesForCalleeToPop;
2936   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2937                        getTargetMachine().Options.GuaranteedTailCallOpt))
2938     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
2939   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2940            !Subtarget->getTargetTriple().isOSMSVCRT() &&
2941            SR == StackStructReturn)
2942     // If this is a call to a struct-return function, the callee
2943     // pops the hidden struct pointer, so we have to push it back.
2944     // This is common for Darwin/X86, Linux & Mingw32 targets.
2945     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2946     NumBytesForCalleeToPop = 4;
2947   else
2948     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
2949
2950   // Returns a flag for retval copy to use.
2951   if (!IsSibcall) {
2952     Chain = DAG.getCALLSEQ_END(Chain,
2953                                DAG.getIntPtrConstant(NumBytesToPop, true),
2954                                DAG.getIntPtrConstant(NumBytesForCalleeToPop,
2955                                                      true),
2956                                InFlag, dl);
2957     InFlag = Chain.getValue(1);
2958   }
2959
2960   // Handle result values, copying them out of physregs into vregs that we
2961   // return.
2962   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2963                          Ins, dl, DAG, InVals);
2964 }
2965
2966 //===----------------------------------------------------------------------===//
2967 //                Fast Calling Convention (tail call) implementation
2968 //===----------------------------------------------------------------------===//
2969
2970 //  Like std call, callee cleans arguments, convention except that ECX is
2971 //  reserved for storing the tail called function address. Only 2 registers are
2972 //  free for argument passing (inreg). Tail call optimization is performed
2973 //  provided:
2974 //                * tailcallopt is enabled
2975 //                * caller/callee are fastcc
2976 //  On X86_64 architecture with GOT-style position independent code only local
2977 //  (within module) calls are supported at the moment.
2978 //  To keep the stack aligned according to platform abi the function
2979 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2980 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2981 //  If a tail called function callee has more arguments than the caller the
2982 //  caller needs to make sure that there is room to move the RETADDR to. This is
2983 //  achieved by reserving an area the size of the argument delta right after the
2984 //  original REtADDR, but before the saved framepointer or the spilled registers
2985 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2986 //  stack layout:
2987 //    arg1
2988 //    arg2
2989 //    RETADDR
2990 //    [ new RETADDR
2991 //      move area ]
2992 //    (possible EBP)
2993 //    ESI
2994 //    EDI
2995 //    local1 ..
2996
2997 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2998 /// for a 16 byte align requirement.
2999 unsigned
3000 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3001                                                SelectionDAG& DAG) const {
3002   MachineFunction &MF = DAG.getMachineFunction();
3003   const TargetMachine &TM = MF.getTarget();
3004   const X86RegisterInfo *RegInfo =
3005     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
3006   const TargetFrameLowering &TFI = *TM.getFrameLowering();
3007   unsigned StackAlignment = TFI.getStackAlignment();
3008   uint64_t AlignMask = StackAlignment - 1;
3009   int64_t Offset = StackSize;
3010   unsigned SlotSize = RegInfo->getSlotSize();
3011   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3012     // Number smaller than 12 so just add the difference.
3013     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3014   } else {
3015     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3016     Offset = ((~AlignMask) & Offset) + StackAlignment +
3017       (StackAlignment-SlotSize);
3018   }
3019   return Offset;
3020 }
3021
3022 /// MatchingStackOffset - Return true if the given stack call argument is
3023 /// already available in the same position (relatively) of the caller's
3024 /// incoming argument stack.
3025 static
3026 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3027                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3028                          const X86InstrInfo *TII) {
3029   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3030   int FI = INT_MAX;
3031   if (Arg.getOpcode() == ISD::CopyFromReg) {
3032     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3033     if (!TargetRegisterInfo::isVirtualRegister(VR))
3034       return false;
3035     MachineInstr *Def = MRI->getVRegDef(VR);
3036     if (!Def)
3037       return false;
3038     if (!Flags.isByVal()) {
3039       if (!TII->isLoadFromStackSlot(Def, FI))
3040         return false;
3041     } else {
3042       unsigned Opcode = Def->getOpcode();
3043       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3044           Def->getOperand(1).isFI()) {
3045         FI = Def->getOperand(1).getIndex();
3046         Bytes = Flags.getByValSize();
3047       } else
3048         return false;
3049     }
3050   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3051     if (Flags.isByVal())
3052       // ByVal argument is passed in as a pointer but it's now being
3053       // dereferenced. e.g.
3054       // define @foo(%struct.X* %A) {
3055       //   tail call @bar(%struct.X* byval %A)
3056       // }
3057       return false;
3058     SDValue Ptr = Ld->getBasePtr();
3059     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3060     if (!FINode)
3061       return false;
3062     FI = FINode->getIndex();
3063   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3064     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3065     FI = FINode->getIndex();
3066     Bytes = Flags.getByValSize();
3067   } else
3068     return false;
3069
3070   assert(FI != INT_MAX);
3071   if (!MFI->isFixedObjectIndex(FI))
3072     return false;
3073   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3074 }
3075
3076 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3077 /// for tail call optimization. Targets which want to do tail call
3078 /// optimization should implement this function.
3079 bool
3080 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3081                                                      CallingConv::ID CalleeCC,
3082                                                      bool isVarArg,
3083                                                      bool isCalleeStructRet,
3084                                                      bool isCallerStructRet,
3085                                                      Type *RetTy,
3086                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3087                                     const SmallVectorImpl<SDValue> &OutVals,
3088                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3089                                                      SelectionDAG &DAG) const {
3090   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3091     return false;
3092
3093   // If -tailcallopt is specified, make fastcc functions tail-callable.
3094   const MachineFunction &MF = DAG.getMachineFunction();
3095   const Function *CallerF = MF.getFunction();
3096
3097   // If the function return type is x86_fp80 and the callee return type is not,
3098   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3099   // perform a tailcall optimization here.
3100   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3101     return false;
3102
3103   CallingConv::ID CallerCC = CallerF->getCallingConv();
3104   bool CCMatch = CallerCC == CalleeCC;
3105   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3106   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3107
3108   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3109     if (IsTailCallConvention(CalleeCC) && CCMatch)
3110       return true;
3111     return false;
3112   }
3113
3114   // Look for obvious safe cases to perform tail call optimization that do not
3115   // require ABI changes. This is what gcc calls sibcall.
3116
3117   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3118   // emit a special epilogue.
3119   const X86RegisterInfo *RegInfo =
3120     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3121   if (RegInfo->needsStackRealignment(MF))
3122     return false;
3123
3124   // Also avoid sibcall optimization if either caller or callee uses struct
3125   // return semantics.
3126   if (isCalleeStructRet || isCallerStructRet)
3127     return false;
3128
3129   // An stdcall/thiscall caller is expected to clean up its arguments; the
3130   // callee isn't going to do that.
3131   // FIXME: this is more restrictive than needed. We could produce a tailcall
3132   // when the stack adjustment matches. For example, with a thiscall that takes
3133   // only one argument.
3134   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3135                    CallerCC == CallingConv::X86_ThisCall))
3136     return false;
3137
3138   // Do not sibcall optimize vararg calls unless all arguments are passed via
3139   // registers.
3140   if (isVarArg && !Outs.empty()) {
3141
3142     // Optimizing for varargs on Win64 is unlikely to be safe without
3143     // additional testing.
3144     if (IsCalleeWin64 || IsCallerWin64)
3145       return false;
3146
3147     SmallVector<CCValAssign, 16> ArgLocs;
3148     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3149                    getTargetMachine(), ArgLocs, *DAG.getContext());
3150
3151     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3152     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3153       if (!ArgLocs[i].isRegLoc())
3154         return false;
3155   }
3156
3157   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3158   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3159   // this into a sibcall.
3160   bool Unused = false;
3161   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3162     if (!Ins[i].Used) {
3163       Unused = true;
3164       break;
3165     }
3166   }
3167   if (Unused) {
3168     SmallVector<CCValAssign, 16> RVLocs;
3169     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3170                    getTargetMachine(), RVLocs, *DAG.getContext());
3171     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3172     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3173       CCValAssign &VA = RVLocs[i];
3174       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3175         return false;
3176     }
3177   }
3178
3179   // If the calling conventions do not match, then we'd better make sure the
3180   // results are returned in the same way as what the caller expects.
3181   if (!CCMatch) {
3182     SmallVector<CCValAssign, 16> RVLocs1;
3183     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3184                     getTargetMachine(), RVLocs1, *DAG.getContext());
3185     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3186
3187     SmallVector<CCValAssign, 16> RVLocs2;
3188     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3189                     getTargetMachine(), RVLocs2, *DAG.getContext());
3190     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3191
3192     if (RVLocs1.size() != RVLocs2.size())
3193       return false;
3194     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3195       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3196         return false;
3197       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3198         return false;
3199       if (RVLocs1[i].isRegLoc()) {
3200         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3201           return false;
3202       } else {
3203         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3204           return false;
3205       }
3206     }
3207   }
3208
3209   // If the callee takes no arguments then go on to check the results of the
3210   // call.
3211   if (!Outs.empty()) {
3212     // Check if stack adjustment is needed. For now, do not do this if any
3213     // argument is passed on the stack.
3214     SmallVector<CCValAssign, 16> ArgLocs;
3215     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3216                    getTargetMachine(), ArgLocs, *DAG.getContext());
3217
3218     // Allocate shadow area for Win64
3219     if (IsCalleeWin64)
3220       CCInfo.AllocateStack(32, 8);
3221
3222     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3223     if (CCInfo.getNextStackOffset()) {
3224       MachineFunction &MF = DAG.getMachineFunction();
3225       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3226         return false;
3227
3228       // Check if the arguments are already laid out in the right way as
3229       // the caller's fixed stack objects.
3230       MachineFrameInfo *MFI = MF.getFrameInfo();
3231       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3232       const X86InstrInfo *TII =
3233         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3234       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3235         CCValAssign &VA = ArgLocs[i];
3236         SDValue Arg = OutVals[i];
3237         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3238         if (VA.getLocInfo() == CCValAssign::Indirect)
3239           return false;
3240         if (!VA.isRegLoc()) {
3241           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3242                                    MFI, MRI, TII))
3243             return false;
3244         }
3245       }
3246     }
3247
3248     // If the tailcall address may be in a register, then make sure it's
3249     // possible to register allocate for it. In 32-bit, the call address can
3250     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3251     // callee-saved registers are restored. These happen to be the same
3252     // registers used to pass 'inreg' arguments so watch out for those.
3253     if (!Subtarget->is64Bit() &&
3254         ((!isa<GlobalAddressSDNode>(Callee) &&
3255           !isa<ExternalSymbolSDNode>(Callee)) ||
3256          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3257       unsigned NumInRegs = 0;
3258       // In PIC we need an extra register to formulate the address computation
3259       // for the callee.
3260       unsigned MaxInRegs =
3261           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3262
3263       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3264         CCValAssign &VA = ArgLocs[i];
3265         if (!VA.isRegLoc())
3266           continue;
3267         unsigned Reg = VA.getLocReg();
3268         switch (Reg) {
3269         default: break;
3270         case X86::EAX: case X86::EDX: case X86::ECX:
3271           if (++NumInRegs == MaxInRegs)
3272             return false;
3273           break;
3274         }
3275       }
3276     }
3277   }
3278
3279   return true;
3280 }
3281
3282 FastISel *
3283 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3284                                   const TargetLibraryInfo *libInfo) const {
3285   return X86::createFastISel(funcInfo, libInfo);
3286 }
3287
3288 //===----------------------------------------------------------------------===//
3289 //                           Other Lowering Hooks
3290 //===----------------------------------------------------------------------===//
3291
3292 static bool MayFoldLoad(SDValue Op) {
3293   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3294 }
3295
3296 static bool MayFoldIntoStore(SDValue Op) {
3297   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3298 }
3299
3300 static bool isTargetShuffle(unsigned Opcode) {
3301   switch(Opcode) {
3302   default: return false;
3303   case X86ISD::PSHUFD:
3304   case X86ISD::PSHUFHW:
3305   case X86ISD::PSHUFLW:
3306   case X86ISD::SHUFP:
3307   case X86ISD::PALIGNR:
3308   case X86ISD::MOVLHPS:
3309   case X86ISD::MOVLHPD:
3310   case X86ISD::MOVHLPS:
3311   case X86ISD::MOVLPS:
3312   case X86ISD::MOVLPD:
3313   case X86ISD::MOVSHDUP:
3314   case X86ISD::MOVSLDUP:
3315   case X86ISD::MOVDDUP:
3316   case X86ISD::MOVSS:
3317   case X86ISD::MOVSD:
3318   case X86ISD::UNPCKL:
3319   case X86ISD::UNPCKH:
3320   case X86ISD::VPERMILP:
3321   case X86ISD::VPERM2X128:
3322   case X86ISD::VPERMI:
3323     return true;
3324   }
3325 }
3326
3327 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3328                                     SDValue V1, SelectionDAG &DAG) {
3329   switch(Opc) {
3330   default: llvm_unreachable("Unknown x86 shuffle node");
3331   case X86ISD::MOVSHDUP:
3332   case X86ISD::MOVSLDUP:
3333   case X86ISD::MOVDDUP:
3334     return DAG.getNode(Opc, dl, VT, V1);
3335   }
3336 }
3337
3338 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3339                                     SDValue V1, unsigned TargetMask,
3340                                     SelectionDAG &DAG) {
3341   switch(Opc) {
3342   default: llvm_unreachable("Unknown x86 shuffle node");
3343   case X86ISD::PSHUFD:
3344   case X86ISD::PSHUFHW:
3345   case X86ISD::PSHUFLW:
3346   case X86ISD::VPERMILP:
3347   case X86ISD::VPERMI:
3348     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3349   }
3350 }
3351
3352 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3353                                     SDValue V1, SDValue V2, unsigned TargetMask,
3354                                     SelectionDAG &DAG) {
3355   switch(Opc) {
3356   default: llvm_unreachable("Unknown x86 shuffle node");
3357   case X86ISD::PALIGNR:
3358   case X86ISD::SHUFP:
3359   case X86ISD::VPERM2X128:
3360     return DAG.getNode(Opc, dl, VT, V1, V2,
3361                        DAG.getConstant(TargetMask, MVT::i8));
3362   }
3363 }
3364
3365 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3366                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3367   switch(Opc) {
3368   default: llvm_unreachable("Unknown x86 shuffle node");
3369   case X86ISD::MOVLHPS:
3370   case X86ISD::MOVLHPD:
3371   case X86ISD::MOVHLPS:
3372   case X86ISD::MOVLPS:
3373   case X86ISD::MOVLPD:
3374   case X86ISD::MOVSS:
3375   case X86ISD::MOVSD:
3376   case X86ISD::UNPCKL:
3377   case X86ISD::UNPCKH:
3378     return DAG.getNode(Opc, dl, VT, V1, V2);
3379   }
3380 }
3381
3382 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3383   MachineFunction &MF = DAG.getMachineFunction();
3384   const X86RegisterInfo *RegInfo =
3385     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3386   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3387   int ReturnAddrIndex = FuncInfo->getRAIndex();
3388
3389   if (ReturnAddrIndex == 0) {
3390     // Set up a frame object for the return address.
3391     unsigned SlotSize = RegInfo->getSlotSize();
3392     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3393                                                            -(int64_t)SlotSize,
3394                                                            false);
3395     FuncInfo->setRAIndex(ReturnAddrIndex);
3396   }
3397
3398   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3399 }
3400
3401 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3402                                        bool hasSymbolicDisplacement) {
3403   // Offset should fit into 32 bit immediate field.
3404   if (!isInt<32>(Offset))
3405     return false;
3406
3407   // If we don't have a symbolic displacement - we don't have any extra
3408   // restrictions.
3409   if (!hasSymbolicDisplacement)
3410     return true;
3411
3412   // FIXME: Some tweaks might be needed for medium code model.
3413   if (M != CodeModel::Small && M != CodeModel::Kernel)
3414     return false;
3415
3416   // For small code model we assume that latest object is 16MB before end of 31
3417   // bits boundary. We may also accept pretty large negative constants knowing
3418   // that all objects are in the positive half of address space.
3419   if (M == CodeModel::Small && Offset < 16*1024*1024)
3420     return true;
3421
3422   // For kernel code model we know that all object resist in the negative half
3423   // of 32bits address space. We may not accept negative offsets, since they may
3424   // be just off and we may accept pretty large positive ones.
3425   if (M == CodeModel::Kernel && Offset > 0)
3426     return true;
3427
3428   return false;
3429 }
3430
3431 /// isCalleePop - Determines whether the callee is required to pop its
3432 /// own arguments. Callee pop is necessary to support tail calls.
3433 bool X86::isCalleePop(CallingConv::ID CallingConv,
3434                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3435   if (IsVarArg)
3436     return false;
3437
3438   switch (CallingConv) {
3439   default:
3440     return false;
3441   case CallingConv::X86_StdCall:
3442     return !is64Bit;
3443   case CallingConv::X86_FastCall:
3444     return !is64Bit;
3445   case CallingConv::X86_ThisCall:
3446     return !is64Bit;
3447   case CallingConv::Fast:
3448     return TailCallOpt;
3449   case CallingConv::GHC:
3450     return TailCallOpt;
3451   case CallingConv::HiPE:
3452     return TailCallOpt;
3453   }
3454 }
3455
3456 /// \brief Return true if the condition is an unsigned comparison operation.
3457 static bool isX86CCUnsigned(unsigned X86CC) {
3458   switch (X86CC) {
3459   default: llvm_unreachable("Invalid integer condition!");
3460   case X86::COND_E:     return true;
3461   case X86::COND_G:     return false;
3462   case X86::COND_GE:    return false;
3463   case X86::COND_L:     return false;
3464   case X86::COND_LE:    return false;
3465   case X86::COND_NE:    return true;
3466   case X86::COND_B:     return true;
3467   case X86::COND_A:     return true;
3468   case X86::COND_BE:    return true;
3469   case X86::COND_AE:    return true;
3470   }
3471   llvm_unreachable("covered switch fell through?!");
3472 }
3473
3474 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3475 /// specific condition code, returning the condition code and the LHS/RHS of the
3476 /// comparison to make.
3477 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3478                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3479   if (!isFP) {
3480     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3481       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3482         // X > -1   -> X == 0, jump !sign.
3483         RHS = DAG.getConstant(0, RHS.getValueType());
3484         return X86::COND_NS;
3485       }
3486       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3487         // X < 0   -> X == 0, jump on sign.
3488         return X86::COND_S;
3489       }
3490       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3491         // X < 1   -> X <= 0
3492         RHS = DAG.getConstant(0, RHS.getValueType());
3493         return X86::COND_LE;
3494       }
3495     }
3496
3497     switch (SetCCOpcode) {
3498     default: llvm_unreachable("Invalid integer condition!");
3499     case ISD::SETEQ:  return X86::COND_E;
3500     case ISD::SETGT:  return X86::COND_G;
3501     case ISD::SETGE:  return X86::COND_GE;
3502     case ISD::SETLT:  return X86::COND_L;
3503     case ISD::SETLE:  return X86::COND_LE;
3504     case ISD::SETNE:  return X86::COND_NE;
3505     case ISD::SETULT: return X86::COND_B;
3506     case ISD::SETUGT: return X86::COND_A;
3507     case ISD::SETULE: return X86::COND_BE;
3508     case ISD::SETUGE: return X86::COND_AE;
3509     }
3510   }
3511
3512   // First determine if it is required or is profitable to flip the operands.
3513
3514   // If LHS is a foldable load, but RHS is not, flip the condition.
3515   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3516       !ISD::isNON_EXTLoad(RHS.getNode())) {
3517     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3518     std::swap(LHS, RHS);
3519   }
3520
3521   switch (SetCCOpcode) {
3522   default: break;
3523   case ISD::SETOLT:
3524   case ISD::SETOLE:
3525   case ISD::SETUGT:
3526   case ISD::SETUGE:
3527     std::swap(LHS, RHS);
3528     break;
3529   }
3530
3531   // On a floating point condition, the flags are set as follows:
3532   // ZF  PF  CF   op
3533   //  0 | 0 | 0 | X > Y
3534   //  0 | 0 | 1 | X < Y
3535   //  1 | 0 | 0 | X == Y
3536   //  1 | 1 | 1 | unordered
3537   switch (SetCCOpcode) {
3538   default: llvm_unreachable("Condcode should be pre-legalized away");
3539   case ISD::SETUEQ:
3540   case ISD::SETEQ:   return X86::COND_E;
3541   case ISD::SETOLT:              // flipped
3542   case ISD::SETOGT:
3543   case ISD::SETGT:   return X86::COND_A;
3544   case ISD::SETOLE:              // flipped
3545   case ISD::SETOGE:
3546   case ISD::SETGE:   return X86::COND_AE;
3547   case ISD::SETUGT:              // flipped
3548   case ISD::SETULT:
3549   case ISD::SETLT:   return X86::COND_B;
3550   case ISD::SETUGE:              // flipped
3551   case ISD::SETULE:
3552   case ISD::SETLE:   return X86::COND_BE;
3553   case ISD::SETONE:
3554   case ISD::SETNE:   return X86::COND_NE;
3555   case ISD::SETUO:   return X86::COND_P;
3556   case ISD::SETO:    return X86::COND_NP;
3557   case ISD::SETOEQ:
3558   case ISD::SETUNE:  return X86::COND_INVALID;
3559   }
3560 }
3561
3562 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3563 /// code. Current x86 isa includes the following FP cmov instructions:
3564 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3565 static bool hasFPCMov(unsigned X86CC) {
3566   switch (X86CC) {
3567   default:
3568     return false;
3569   case X86::COND_B:
3570   case X86::COND_BE:
3571   case X86::COND_E:
3572   case X86::COND_P:
3573   case X86::COND_A:
3574   case X86::COND_AE:
3575   case X86::COND_NE:
3576   case X86::COND_NP:
3577     return true;
3578   }
3579 }
3580
3581 /// isFPImmLegal - Returns true if the target can instruction select the
3582 /// specified FP immediate natively. If false, the legalizer will
3583 /// materialize the FP immediate as a load from a constant pool.
3584 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3585   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3586     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3587       return true;
3588   }
3589   return false;
3590 }
3591
3592 /// \brief Returns true if it is beneficial to convert a load of a constant
3593 /// to just the constant itself.
3594 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3595                                                           Type *Ty) const {
3596   assert(Ty->isIntegerTy());
3597
3598   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3599   if (BitSize == 0 || BitSize > 64)
3600     return false;
3601   return true;
3602 }
3603
3604 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3605 /// the specified range (L, H].
3606 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3607   return (Val < 0) || (Val >= Low && Val < Hi);
3608 }
3609
3610 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3611 /// specified value.
3612 static bool isUndefOrEqual(int Val, int CmpVal) {
3613   return (Val < 0 || Val == CmpVal);
3614 }
3615
3616 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3617 /// from position Pos and ending in Pos+Size, falls within the specified
3618 /// sequential range (L, L+Pos]. or is undef.
3619 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3620                                        unsigned Pos, unsigned Size, int Low) {
3621   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3622     if (!isUndefOrEqual(Mask[i], Low))
3623       return false;
3624   return true;
3625 }
3626
3627 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3628 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3629 /// the second operand.
3630 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3631   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3632     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3633   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3634     return (Mask[0] < 2 && Mask[1] < 2);
3635   return false;
3636 }
3637
3638 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3639 /// is suitable for input to PSHUFHW.
3640 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3641   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3642     return false;
3643
3644   // Lower quadword copied in order or undef.
3645   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3646     return false;
3647
3648   // Upper quadword shuffled.
3649   for (unsigned i = 4; i != 8; ++i)
3650     if (!isUndefOrInRange(Mask[i], 4, 8))
3651       return false;
3652
3653   if (VT == MVT::v16i16) {
3654     // Lower quadword copied in order or undef.
3655     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3656       return false;
3657
3658     // Upper quadword shuffled.
3659     for (unsigned i = 12; i != 16; ++i)
3660       if (!isUndefOrInRange(Mask[i], 12, 16))
3661         return false;
3662   }
3663
3664   return true;
3665 }
3666
3667 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3668 /// is suitable for input to PSHUFLW.
3669 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3670   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3671     return false;
3672
3673   // Upper quadword copied in order.
3674   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3675     return false;
3676
3677   // Lower quadword shuffled.
3678   for (unsigned i = 0; i != 4; ++i)
3679     if (!isUndefOrInRange(Mask[i], 0, 4))
3680       return false;
3681
3682   if (VT == MVT::v16i16) {
3683     // Upper quadword copied in order.
3684     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3685       return false;
3686
3687     // Lower quadword shuffled.
3688     for (unsigned i = 8; i != 12; ++i)
3689       if (!isUndefOrInRange(Mask[i], 8, 12))
3690         return false;
3691   }
3692
3693   return true;
3694 }
3695
3696 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3697 /// is suitable for input to PALIGNR.
3698 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3699                           const X86Subtarget *Subtarget) {
3700   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3701       (VT.is256BitVector() && !Subtarget->hasInt256()))
3702     return false;
3703
3704   unsigned NumElts = VT.getVectorNumElements();
3705   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3706   unsigned NumLaneElts = NumElts/NumLanes;
3707
3708   // Do not handle 64-bit element shuffles with palignr.
3709   if (NumLaneElts == 2)
3710     return false;
3711
3712   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3713     unsigned i;
3714     for (i = 0; i != NumLaneElts; ++i) {
3715       if (Mask[i+l] >= 0)
3716         break;
3717     }
3718
3719     // Lane is all undef, go to next lane
3720     if (i == NumLaneElts)
3721       continue;
3722
3723     int Start = Mask[i+l];
3724
3725     // Make sure its in this lane in one of the sources
3726     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3727         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3728       return false;
3729
3730     // If not lane 0, then we must match lane 0
3731     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3732       return false;
3733
3734     // Correct second source to be contiguous with first source
3735     if (Start >= (int)NumElts)
3736       Start -= NumElts - NumLaneElts;
3737
3738     // Make sure we're shifting in the right direction.
3739     if (Start <= (int)(i+l))
3740       return false;
3741
3742     Start -= i;
3743
3744     // Check the rest of the elements to see if they are consecutive.
3745     for (++i; i != NumLaneElts; ++i) {
3746       int Idx = Mask[i+l];
3747
3748       // Make sure its in this lane
3749       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3750           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3751         return false;
3752
3753       // If not lane 0, then we must match lane 0
3754       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3755         return false;
3756
3757       if (Idx >= (int)NumElts)
3758         Idx -= NumElts - NumLaneElts;
3759
3760       if (!isUndefOrEqual(Idx, Start+i))
3761         return false;
3762
3763     }
3764   }
3765
3766   return true;
3767 }
3768
3769 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3770 /// the two vector operands have swapped position.
3771 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3772                                      unsigned NumElems) {
3773   for (unsigned i = 0; i != NumElems; ++i) {
3774     int idx = Mask[i];
3775     if (idx < 0)
3776       continue;
3777     else if (idx < (int)NumElems)
3778       Mask[i] = idx + NumElems;
3779     else
3780       Mask[i] = idx - NumElems;
3781   }
3782 }
3783
3784 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3785 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3786 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3787 /// reverse of what x86 shuffles want.
3788 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3789
3790   unsigned NumElems = VT.getVectorNumElements();
3791   unsigned NumLanes = VT.getSizeInBits()/128;
3792   unsigned NumLaneElems = NumElems/NumLanes;
3793
3794   if (NumLaneElems != 2 && NumLaneElems != 4)
3795     return false;
3796
3797   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3798   bool symetricMaskRequired =
3799     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3800
3801   // VSHUFPSY divides the resulting vector into 4 chunks.
3802   // The sources are also splitted into 4 chunks, and each destination
3803   // chunk must come from a different source chunk.
3804   //
3805   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3806   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3807   //
3808   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3809   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3810   //
3811   // VSHUFPDY divides the resulting vector into 4 chunks.
3812   // The sources are also splitted into 4 chunks, and each destination
3813   // chunk must come from a different source chunk.
3814   //
3815   //  SRC1 =>      X3       X2       X1       X0
3816   //  SRC2 =>      Y3       Y2       Y1       Y0
3817   //
3818   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3819   //
3820   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3821   unsigned HalfLaneElems = NumLaneElems/2;
3822   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3823     for (unsigned i = 0; i != NumLaneElems; ++i) {
3824       int Idx = Mask[i+l];
3825       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3826       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3827         return false;
3828       // For VSHUFPSY, the mask of the second half must be the same as the
3829       // first but with the appropriate offsets. This works in the same way as
3830       // VPERMILPS works with masks.
3831       if (!symetricMaskRequired || Idx < 0)
3832         continue;
3833       if (MaskVal[i] < 0) {
3834         MaskVal[i] = Idx - l;
3835         continue;
3836       }
3837       if ((signed)(Idx - l) != MaskVal[i])
3838         return false;
3839     }
3840   }
3841
3842   return true;
3843 }
3844
3845 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3846 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3847 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3848   if (!VT.is128BitVector())
3849     return false;
3850
3851   unsigned NumElems = VT.getVectorNumElements();
3852
3853   if (NumElems != 4)
3854     return false;
3855
3856   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3857   return isUndefOrEqual(Mask[0], 6) &&
3858          isUndefOrEqual(Mask[1], 7) &&
3859          isUndefOrEqual(Mask[2], 2) &&
3860          isUndefOrEqual(Mask[3], 3);
3861 }
3862
3863 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3864 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3865 /// <2, 3, 2, 3>
3866 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3867   if (!VT.is128BitVector())
3868     return false;
3869
3870   unsigned NumElems = VT.getVectorNumElements();
3871
3872   if (NumElems != 4)
3873     return false;
3874
3875   return isUndefOrEqual(Mask[0], 2) &&
3876          isUndefOrEqual(Mask[1], 3) &&
3877          isUndefOrEqual(Mask[2], 2) &&
3878          isUndefOrEqual(Mask[3], 3);
3879 }
3880
3881 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3882 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3883 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3884   if (!VT.is128BitVector())
3885     return false;
3886
3887   unsigned NumElems = VT.getVectorNumElements();
3888
3889   if (NumElems != 2 && NumElems != 4)
3890     return false;
3891
3892   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3893     if (!isUndefOrEqual(Mask[i], i + NumElems))
3894       return false;
3895
3896   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3897     if (!isUndefOrEqual(Mask[i], i))
3898       return false;
3899
3900   return true;
3901 }
3902
3903 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3904 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3905 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3906   if (!VT.is128BitVector())
3907     return false;
3908
3909   unsigned NumElems = VT.getVectorNumElements();
3910
3911   if (NumElems != 2 && NumElems != 4)
3912     return false;
3913
3914   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3915     if (!isUndefOrEqual(Mask[i], i))
3916       return false;
3917
3918   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3919     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3920       return false;
3921
3922   return true;
3923 }
3924
3925 //
3926 // Some special combinations that can be optimized.
3927 //
3928 static
3929 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3930                                SelectionDAG &DAG) {
3931   MVT VT = SVOp->getSimpleValueType(0);
3932   SDLoc dl(SVOp);
3933
3934   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3935     return SDValue();
3936
3937   ArrayRef<int> Mask = SVOp->getMask();
3938
3939   // These are the special masks that may be optimized.
3940   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3941   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3942   bool MatchEvenMask = true;
3943   bool MatchOddMask  = true;
3944   for (int i=0; i<8; ++i) {
3945     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3946       MatchEvenMask = false;
3947     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3948       MatchOddMask = false;
3949   }
3950
3951   if (!MatchEvenMask && !MatchOddMask)
3952     return SDValue();
3953
3954   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3955
3956   SDValue Op0 = SVOp->getOperand(0);
3957   SDValue Op1 = SVOp->getOperand(1);
3958
3959   if (MatchEvenMask) {
3960     // Shift the second operand right to 32 bits.
3961     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3962     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3963   } else {
3964     // Shift the first operand left to 32 bits.
3965     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3966     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3967   }
3968   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3969   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3970 }
3971
3972 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3973 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3974 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3975                          bool HasInt256, bool V2IsSplat = false) {
3976
3977   assert(VT.getSizeInBits() >= 128 &&
3978          "Unsupported vector type for unpckl");
3979
3980   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3981   unsigned NumLanes;
3982   unsigned NumOf256BitLanes;
3983   unsigned NumElts = VT.getVectorNumElements();
3984   if (VT.is256BitVector()) {
3985     if (NumElts != 4 && NumElts != 8 &&
3986         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3987     return false;
3988     NumLanes = 2;
3989     NumOf256BitLanes = 1;
3990   } else if (VT.is512BitVector()) {
3991     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3992            "Unsupported vector type for unpckh");
3993     NumLanes = 2;
3994     NumOf256BitLanes = 2;
3995   } else {
3996     NumLanes = 1;
3997     NumOf256BitLanes = 1;
3998   }
3999
4000   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4001   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4002
4003   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4004     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4005       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4006         int BitI  = Mask[l256*NumEltsInStride+l+i];
4007         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4008         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4009           return false;
4010         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4011           return false;
4012         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4013           return false;
4014       }
4015     }
4016   }
4017   return true;
4018 }
4019
4020 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
4021 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
4022 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
4023                          bool HasInt256, bool V2IsSplat = false) {
4024   assert(VT.getSizeInBits() >= 128 &&
4025          "Unsupported vector type for unpckh");
4026
4027   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4028   unsigned NumLanes;
4029   unsigned NumOf256BitLanes;
4030   unsigned NumElts = VT.getVectorNumElements();
4031   if (VT.is256BitVector()) {
4032     if (NumElts != 4 && NumElts != 8 &&
4033         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4034     return false;
4035     NumLanes = 2;
4036     NumOf256BitLanes = 1;
4037   } else if (VT.is512BitVector()) {
4038     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4039            "Unsupported vector type for unpckh");
4040     NumLanes = 2;
4041     NumOf256BitLanes = 2;
4042   } else {
4043     NumLanes = 1;
4044     NumOf256BitLanes = 1;
4045   }
4046
4047   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4048   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4049
4050   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4051     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4052       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4053         int BitI  = Mask[l256*NumEltsInStride+l+i];
4054         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4055         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4056           return false;
4057         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4058           return false;
4059         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4060           return false;
4061       }
4062     }
4063   }
4064   return true;
4065 }
4066
4067 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4068 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4069 /// <0, 0, 1, 1>
4070 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4071   unsigned NumElts = VT.getVectorNumElements();
4072   bool Is256BitVec = VT.is256BitVector();
4073
4074   if (VT.is512BitVector())
4075     return false;
4076   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4077          "Unsupported vector type for unpckh");
4078
4079   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4080       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4081     return false;
4082
4083   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4084   // FIXME: Need a better way to get rid of this, there's no latency difference
4085   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4086   // the former later. We should also remove the "_undef" special mask.
4087   if (NumElts == 4 && Is256BitVec)
4088     return false;
4089
4090   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4091   // independently on 128-bit lanes.
4092   unsigned NumLanes = VT.getSizeInBits()/128;
4093   unsigned NumLaneElts = NumElts/NumLanes;
4094
4095   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4096     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4097       int BitI  = Mask[l+i];
4098       int BitI1 = Mask[l+i+1];
4099
4100       if (!isUndefOrEqual(BitI, j))
4101         return false;
4102       if (!isUndefOrEqual(BitI1, j))
4103         return false;
4104     }
4105   }
4106
4107   return true;
4108 }
4109
4110 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4111 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4112 /// <2, 2, 3, 3>
4113 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4114   unsigned NumElts = VT.getVectorNumElements();
4115
4116   if (VT.is512BitVector())
4117     return false;
4118
4119   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4120          "Unsupported vector type for unpckh");
4121
4122   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4123       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4124     return false;
4125
4126   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4127   // independently on 128-bit lanes.
4128   unsigned NumLanes = VT.getSizeInBits()/128;
4129   unsigned NumLaneElts = NumElts/NumLanes;
4130
4131   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4132     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4133       int BitI  = Mask[l+i];
4134       int BitI1 = Mask[l+i+1];
4135       if (!isUndefOrEqual(BitI, j))
4136         return false;
4137       if (!isUndefOrEqual(BitI1, j))
4138         return false;
4139     }
4140   }
4141   return true;
4142 }
4143
4144 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4145 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4146 /// MOVSD, and MOVD, i.e. setting the lowest element.
4147 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4148   if (VT.getVectorElementType().getSizeInBits() < 32)
4149     return false;
4150   if (!VT.is128BitVector())
4151     return false;
4152
4153   unsigned NumElts = VT.getVectorNumElements();
4154
4155   if (!isUndefOrEqual(Mask[0], NumElts))
4156     return false;
4157
4158   for (unsigned i = 1; i != NumElts; ++i)
4159     if (!isUndefOrEqual(Mask[i], i))
4160       return false;
4161
4162   return true;
4163 }
4164
4165 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4166 /// as permutations between 128-bit chunks or halves. As an example: this
4167 /// shuffle bellow:
4168 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4169 /// The first half comes from the second half of V1 and the second half from the
4170 /// the second half of V2.
4171 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4172   if (!HasFp256 || !VT.is256BitVector())
4173     return false;
4174
4175   // The shuffle result is divided into half A and half B. In total the two
4176   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4177   // B must come from C, D, E or F.
4178   unsigned HalfSize = VT.getVectorNumElements()/2;
4179   bool MatchA = false, MatchB = false;
4180
4181   // Check if A comes from one of C, D, E, F.
4182   for (unsigned Half = 0; Half != 4; ++Half) {
4183     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4184       MatchA = true;
4185       break;
4186     }
4187   }
4188
4189   // Check if B comes from one of C, D, E, F.
4190   for (unsigned Half = 0; Half != 4; ++Half) {
4191     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4192       MatchB = true;
4193       break;
4194     }
4195   }
4196
4197   return MatchA && MatchB;
4198 }
4199
4200 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4201 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4202 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4203   MVT VT = SVOp->getSimpleValueType(0);
4204
4205   unsigned HalfSize = VT.getVectorNumElements()/2;
4206
4207   unsigned FstHalf = 0, SndHalf = 0;
4208   for (unsigned i = 0; i < HalfSize; ++i) {
4209     if (SVOp->getMaskElt(i) > 0) {
4210       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4211       break;
4212     }
4213   }
4214   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4215     if (SVOp->getMaskElt(i) > 0) {
4216       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4217       break;
4218     }
4219   }
4220
4221   return (FstHalf | (SndHalf << 4));
4222 }
4223
4224 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4225 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4226   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4227   if (EltSize < 32)
4228     return false;
4229
4230   unsigned NumElts = VT.getVectorNumElements();
4231   Imm8 = 0;
4232   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4233     for (unsigned i = 0; i != NumElts; ++i) {
4234       if (Mask[i] < 0)
4235         continue;
4236       Imm8 |= Mask[i] << (i*2);
4237     }
4238     return true;
4239   }
4240
4241   unsigned LaneSize = 4;
4242   SmallVector<int, 4> MaskVal(LaneSize, -1);
4243
4244   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4245     for (unsigned i = 0; i != LaneSize; ++i) {
4246       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4247         return false;
4248       if (Mask[i+l] < 0)
4249         continue;
4250       if (MaskVal[i] < 0) {
4251         MaskVal[i] = Mask[i+l] - l;
4252         Imm8 |= MaskVal[i] << (i*2);
4253         continue;
4254       }
4255       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4256         return false;
4257     }
4258   }
4259   return true;
4260 }
4261
4262 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4263 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4264 /// Note that VPERMIL mask matching is different depending whether theunderlying
4265 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4266 /// to the same elements of the low, but to the higher half of the source.
4267 /// In VPERMILPD the two lanes could be shuffled independently of each other
4268 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4269 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4270   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4271   if (VT.getSizeInBits() < 256 || EltSize < 32)
4272     return false;
4273   bool symetricMaskRequired = (EltSize == 32);
4274   unsigned NumElts = VT.getVectorNumElements();
4275
4276   unsigned NumLanes = VT.getSizeInBits()/128;
4277   unsigned LaneSize = NumElts/NumLanes;
4278   // 2 or 4 elements in one lane
4279
4280   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4281   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4282     for (unsigned i = 0; i != LaneSize; ++i) {
4283       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4284         return false;
4285       if (symetricMaskRequired) {
4286         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4287           ExpectedMaskVal[i] = Mask[i+l] - l;
4288           continue;
4289         }
4290         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4291           return false;
4292       }
4293     }
4294   }
4295   return true;
4296 }
4297
4298 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4299 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4300 /// element of vector 2 and the other elements to come from vector 1 in order.
4301 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4302                                bool V2IsSplat = false, bool V2IsUndef = false) {
4303   if (!VT.is128BitVector())
4304     return false;
4305
4306   unsigned NumOps = VT.getVectorNumElements();
4307   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4308     return false;
4309
4310   if (!isUndefOrEqual(Mask[0], 0))
4311     return false;
4312
4313   for (unsigned i = 1; i != NumOps; ++i)
4314     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4315           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4316           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4317       return false;
4318
4319   return true;
4320 }
4321
4322 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4323 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4324 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4325 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4326                            const X86Subtarget *Subtarget) {
4327   if (!Subtarget->hasSSE3())
4328     return false;
4329
4330   unsigned NumElems = VT.getVectorNumElements();
4331
4332   if ((VT.is128BitVector() && NumElems != 4) ||
4333       (VT.is256BitVector() && NumElems != 8) ||
4334       (VT.is512BitVector() && NumElems != 16))
4335     return false;
4336
4337   // "i+1" is the value the indexed mask element must have
4338   for (unsigned i = 0; i != NumElems; i += 2)
4339     if (!isUndefOrEqual(Mask[i], i+1) ||
4340         !isUndefOrEqual(Mask[i+1], i+1))
4341       return false;
4342
4343   return true;
4344 }
4345
4346 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4347 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4348 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4349 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4350                            const X86Subtarget *Subtarget) {
4351   if (!Subtarget->hasSSE3())
4352     return false;
4353
4354   unsigned NumElems = VT.getVectorNumElements();
4355
4356   if ((VT.is128BitVector() && NumElems != 4) ||
4357       (VT.is256BitVector() && NumElems != 8) ||
4358       (VT.is512BitVector() && NumElems != 16))
4359     return false;
4360
4361   // "i" is the value the indexed mask element must have
4362   for (unsigned i = 0; i != NumElems; i += 2)
4363     if (!isUndefOrEqual(Mask[i], i) ||
4364         !isUndefOrEqual(Mask[i+1], i))
4365       return false;
4366
4367   return true;
4368 }
4369
4370 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4371 /// specifies a shuffle of elements that is suitable for input to 256-bit
4372 /// version of MOVDDUP.
4373 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4374   if (!HasFp256 || !VT.is256BitVector())
4375     return false;
4376
4377   unsigned NumElts = VT.getVectorNumElements();
4378   if (NumElts != 4)
4379     return false;
4380
4381   for (unsigned i = 0; i != NumElts/2; ++i)
4382     if (!isUndefOrEqual(Mask[i], 0))
4383       return false;
4384   for (unsigned i = NumElts/2; i != NumElts; ++i)
4385     if (!isUndefOrEqual(Mask[i], NumElts/2))
4386       return false;
4387   return true;
4388 }
4389
4390 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4391 /// specifies a shuffle of elements that is suitable for input to 128-bit
4392 /// version of MOVDDUP.
4393 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4394   if (!VT.is128BitVector())
4395     return false;
4396
4397   unsigned e = VT.getVectorNumElements() / 2;
4398   for (unsigned i = 0; i != e; ++i)
4399     if (!isUndefOrEqual(Mask[i], i))
4400       return false;
4401   for (unsigned i = 0; i != e; ++i)
4402     if (!isUndefOrEqual(Mask[e+i], i))
4403       return false;
4404   return true;
4405 }
4406
4407 /// isVEXTRACTIndex - Return true if the specified
4408 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4409 /// suitable for instruction that extract 128 or 256 bit vectors
4410 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4411   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4412   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4413     return false;
4414
4415   // The index should be aligned on a vecWidth-bit boundary.
4416   uint64_t Index =
4417     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4418
4419   MVT VT = N->getSimpleValueType(0);
4420   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4421   bool Result = (Index * ElSize) % vecWidth == 0;
4422
4423   return Result;
4424 }
4425
4426 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4427 /// operand specifies a subvector insert that is suitable for input to
4428 /// insertion of 128 or 256-bit subvectors
4429 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4430   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4431   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4432     return false;
4433   // The index should be aligned on a vecWidth-bit boundary.
4434   uint64_t Index =
4435     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4436
4437   MVT VT = N->getSimpleValueType(0);
4438   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4439   bool Result = (Index * ElSize) % vecWidth == 0;
4440
4441   return Result;
4442 }
4443
4444 bool X86::isVINSERT128Index(SDNode *N) {
4445   return isVINSERTIndex(N, 128);
4446 }
4447
4448 bool X86::isVINSERT256Index(SDNode *N) {
4449   return isVINSERTIndex(N, 256);
4450 }
4451
4452 bool X86::isVEXTRACT128Index(SDNode *N) {
4453   return isVEXTRACTIndex(N, 128);
4454 }
4455
4456 bool X86::isVEXTRACT256Index(SDNode *N) {
4457   return isVEXTRACTIndex(N, 256);
4458 }
4459
4460 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4461 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4462 /// Handles 128-bit and 256-bit.
4463 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4464   MVT VT = N->getSimpleValueType(0);
4465
4466   assert((VT.getSizeInBits() >= 128) &&
4467          "Unsupported vector type for PSHUF/SHUFP");
4468
4469   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4470   // independently on 128-bit lanes.
4471   unsigned NumElts = VT.getVectorNumElements();
4472   unsigned NumLanes = VT.getSizeInBits()/128;
4473   unsigned NumLaneElts = NumElts/NumLanes;
4474
4475   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4476          "Only supports 2, 4 or 8 elements per lane");
4477
4478   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4479   unsigned Mask = 0;
4480   for (unsigned i = 0; i != NumElts; ++i) {
4481     int Elt = N->getMaskElt(i);
4482     if (Elt < 0) continue;
4483     Elt &= NumLaneElts - 1;
4484     unsigned ShAmt = (i << Shift) % 8;
4485     Mask |= Elt << ShAmt;
4486   }
4487
4488   return Mask;
4489 }
4490
4491 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4492 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4493 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4494   MVT VT = N->getSimpleValueType(0);
4495
4496   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4497          "Unsupported vector type for PSHUFHW");
4498
4499   unsigned NumElts = VT.getVectorNumElements();
4500
4501   unsigned Mask = 0;
4502   for (unsigned l = 0; l != NumElts; l += 8) {
4503     // 8 nodes per lane, but we only care about the last 4.
4504     for (unsigned i = 0; i < 4; ++i) {
4505       int Elt = N->getMaskElt(l+i+4);
4506       if (Elt < 0) continue;
4507       Elt &= 0x3; // only 2-bits.
4508       Mask |= Elt << (i * 2);
4509     }
4510   }
4511
4512   return Mask;
4513 }
4514
4515 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4516 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4517 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4518   MVT VT = N->getSimpleValueType(0);
4519
4520   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4521          "Unsupported vector type for PSHUFHW");
4522
4523   unsigned NumElts = VT.getVectorNumElements();
4524
4525   unsigned Mask = 0;
4526   for (unsigned l = 0; l != NumElts; l += 8) {
4527     // 8 nodes per lane, but we only care about the first 4.
4528     for (unsigned i = 0; i < 4; ++i) {
4529       int Elt = N->getMaskElt(l+i);
4530       if (Elt < 0) continue;
4531       Elt &= 0x3; // only 2-bits
4532       Mask |= Elt << (i * 2);
4533     }
4534   }
4535
4536   return Mask;
4537 }
4538
4539 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4540 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4541 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4542   MVT VT = SVOp->getSimpleValueType(0);
4543   unsigned EltSize = VT.is512BitVector() ? 1 :
4544     VT.getVectorElementType().getSizeInBits() >> 3;
4545
4546   unsigned NumElts = VT.getVectorNumElements();
4547   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4548   unsigned NumLaneElts = NumElts/NumLanes;
4549
4550   int Val = 0;
4551   unsigned i;
4552   for (i = 0; i != NumElts; ++i) {
4553     Val = SVOp->getMaskElt(i);
4554     if (Val >= 0)
4555       break;
4556   }
4557   if (Val >= (int)NumElts)
4558     Val -= NumElts - NumLaneElts;
4559
4560   assert(Val - i > 0 && "PALIGNR imm should be positive");
4561   return (Val - i) * EltSize;
4562 }
4563
4564 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4565   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4566   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4567     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4568
4569   uint64_t Index =
4570     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4571
4572   MVT VecVT = N->getOperand(0).getSimpleValueType();
4573   MVT ElVT = VecVT.getVectorElementType();
4574
4575   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4576   return Index / NumElemsPerChunk;
4577 }
4578
4579 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4580   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4581   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4582     llvm_unreachable("Illegal insert subvector for VINSERT");
4583
4584   uint64_t Index =
4585     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4586
4587   MVT VecVT = N->getSimpleValueType(0);
4588   MVT ElVT = VecVT.getVectorElementType();
4589
4590   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4591   return Index / NumElemsPerChunk;
4592 }
4593
4594 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4595 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4596 /// and VINSERTI128 instructions.
4597 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4598   return getExtractVEXTRACTImmediate(N, 128);
4599 }
4600
4601 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4602 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4603 /// and VINSERTI64x4 instructions.
4604 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4605   return getExtractVEXTRACTImmediate(N, 256);
4606 }
4607
4608 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4609 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4610 /// and VINSERTI128 instructions.
4611 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4612   return getInsertVINSERTImmediate(N, 128);
4613 }
4614
4615 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4616 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4617 /// and VINSERTI64x4 instructions.
4618 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4619   return getInsertVINSERTImmediate(N, 256);
4620 }
4621
4622 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4623 /// constant +0.0.
4624 bool X86::isZeroNode(SDValue Elt) {
4625   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4626     return CN->isNullValue();
4627   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4628     return CFP->getValueAPF().isPosZero();
4629   return false;
4630 }
4631
4632 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4633 /// their permute mask.
4634 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4635                                     SelectionDAG &DAG) {
4636   MVT VT = SVOp->getSimpleValueType(0);
4637   unsigned NumElems = VT.getVectorNumElements();
4638   SmallVector<int, 8> MaskVec;
4639
4640   for (unsigned i = 0; i != NumElems; ++i) {
4641     int Idx = SVOp->getMaskElt(i);
4642     if (Idx >= 0) {
4643       if (Idx < (int)NumElems)
4644         Idx += NumElems;
4645       else
4646         Idx -= NumElems;
4647     }
4648     MaskVec.push_back(Idx);
4649   }
4650   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4651                               SVOp->getOperand(0), &MaskVec[0]);
4652 }
4653
4654 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4655 /// match movhlps. The lower half elements should come from upper half of
4656 /// V1 (and in order), and the upper half elements should come from the upper
4657 /// half of V2 (and in order).
4658 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4659   if (!VT.is128BitVector())
4660     return false;
4661   if (VT.getVectorNumElements() != 4)
4662     return false;
4663   for (unsigned i = 0, e = 2; i != e; ++i)
4664     if (!isUndefOrEqual(Mask[i], i+2))
4665       return false;
4666   for (unsigned i = 2; i != 4; ++i)
4667     if (!isUndefOrEqual(Mask[i], i+4))
4668       return false;
4669   return true;
4670 }
4671
4672 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4673 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4674 /// required.
4675 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4676   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4677     return false;
4678   N = N->getOperand(0).getNode();
4679   if (!ISD::isNON_EXTLoad(N))
4680     return false;
4681   if (LD)
4682     *LD = cast<LoadSDNode>(N);
4683   return true;
4684 }
4685
4686 // Test whether the given value is a vector value which will be legalized
4687 // into a load.
4688 static bool WillBeConstantPoolLoad(SDNode *N) {
4689   if (N->getOpcode() != ISD::BUILD_VECTOR)
4690     return false;
4691
4692   // Check for any non-constant elements.
4693   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4694     switch (N->getOperand(i).getNode()->getOpcode()) {
4695     case ISD::UNDEF:
4696     case ISD::ConstantFP:
4697     case ISD::Constant:
4698       break;
4699     default:
4700       return false;
4701     }
4702
4703   // Vectors of all-zeros and all-ones are materialized with special
4704   // instructions rather than being loaded.
4705   return !ISD::isBuildVectorAllZeros(N) &&
4706          !ISD::isBuildVectorAllOnes(N);
4707 }
4708
4709 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4710 /// match movlp{s|d}. The lower half elements should come from lower half of
4711 /// V1 (and in order), and the upper half elements should come from the upper
4712 /// half of V2 (and in order). And since V1 will become the source of the
4713 /// MOVLP, it must be either a vector load or a scalar load to vector.
4714 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4715                                ArrayRef<int> Mask, MVT VT) {
4716   if (!VT.is128BitVector())
4717     return false;
4718
4719   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4720     return false;
4721   // Is V2 is a vector load, don't do this transformation. We will try to use
4722   // load folding shufps op.
4723   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4724     return false;
4725
4726   unsigned NumElems = VT.getVectorNumElements();
4727
4728   if (NumElems != 2 && NumElems != 4)
4729     return false;
4730   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4731     if (!isUndefOrEqual(Mask[i], i))
4732       return false;
4733   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4734     if (!isUndefOrEqual(Mask[i], i+NumElems))
4735       return false;
4736   return true;
4737 }
4738
4739 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4740 /// all the same.
4741 static bool isSplatVector(SDNode *N) {
4742   if (N->getOpcode() != ISD::BUILD_VECTOR)
4743     return false;
4744
4745   SDValue SplatValue = N->getOperand(0);
4746   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4747     if (N->getOperand(i) != SplatValue)
4748       return false;
4749   return true;
4750 }
4751
4752 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4753 /// to an zero vector.
4754 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4755 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4756   SDValue V1 = N->getOperand(0);
4757   SDValue V2 = N->getOperand(1);
4758   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4759   for (unsigned i = 0; i != NumElems; ++i) {
4760     int Idx = N->getMaskElt(i);
4761     if (Idx >= (int)NumElems) {
4762       unsigned Opc = V2.getOpcode();
4763       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4764         continue;
4765       if (Opc != ISD::BUILD_VECTOR ||
4766           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4767         return false;
4768     } else if (Idx >= 0) {
4769       unsigned Opc = V1.getOpcode();
4770       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4771         continue;
4772       if (Opc != ISD::BUILD_VECTOR ||
4773           !X86::isZeroNode(V1.getOperand(Idx)))
4774         return false;
4775     }
4776   }
4777   return true;
4778 }
4779
4780 /// getZeroVector - Returns a vector of specified type with all zero elements.
4781 ///
4782 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4783                              SelectionDAG &DAG, SDLoc dl) {
4784   assert(VT.isVector() && "Expected a vector type");
4785
4786   // Always build SSE zero vectors as <4 x i32> bitcasted
4787   // to their dest type. This ensures they get CSE'd.
4788   SDValue Vec;
4789   if (VT.is128BitVector()) {  // SSE
4790     if (Subtarget->hasSSE2()) {  // SSE2
4791       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4792       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4793     } else { // SSE1
4794       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4795       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4796     }
4797   } else if (VT.is256BitVector()) { // AVX
4798     if (Subtarget->hasInt256()) { // AVX2
4799       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4800       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4801       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4802                         array_lengthof(Ops));
4803     } else {
4804       // 256-bit logic and arithmetic instructions in AVX are all
4805       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4806       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4807       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4808       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4809                         array_lengthof(Ops));
4810     }
4811   } else if (VT.is512BitVector()) { // AVX-512
4812       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4813       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4814                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4815       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4816   } else if (VT.getScalarType() == MVT::i1) {
4817     assert(VT.getVectorNumElements() <= 16 && "Unexpected vector type");
4818     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
4819     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4820                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4821     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
4822                        Ops, VT.getVectorNumElements());
4823   } else
4824     llvm_unreachable("Unexpected vector type");
4825
4826   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4827 }
4828
4829 /// getOnesVector - Returns a vector of specified type with all bits set.
4830 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4831 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4832 /// Then bitcast to their original type, ensuring they get CSE'd.
4833 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4834                              SDLoc dl) {
4835   assert(VT.isVector() && "Expected a vector type");
4836
4837   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4838   SDValue Vec;
4839   if (VT.is256BitVector()) {
4840     if (HasInt256) { // AVX2
4841       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4842       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4843                         array_lengthof(Ops));
4844     } else { // AVX
4845       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4846       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4847     }
4848   } else if (VT.is128BitVector()) {
4849     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4850   } else
4851     llvm_unreachable("Unexpected vector type");
4852
4853   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4854 }
4855
4856 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4857 /// that point to V2 points to its first element.
4858 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4859   for (unsigned i = 0; i != NumElems; ++i) {
4860     if (Mask[i] > (int)NumElems) {
4861       Mask[i] = NumElems;
4862     }
4863   }
4864 }
4865
4866 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4867 /// operation of specified width.
4868 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4869                        SDValue V2) {
4870   unsigned NumElems = VT.getVectorNumElements();
4871   SmallVector<int, 8> Mask;
4872   Mask.push_back(NumElems);
4873   for (unsigned i = 1; i != NumElems; ++i)
4874     Mask.push_back(i);
4875   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4876 }
4877
4878 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4879 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4880                           SDValue V2) {
4881   unsigned NumElems = VT.getVectorNumElements();
4882   SmallVector<int, 8> Mask;
4883   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4884     Mask.push_back(i);
4885     Mask.push_back(i + NumElems);
4886   }
4887   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4888 }
4889
4890 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4891 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4892                           SDValue V2) {
4893   unsigned NumElems = VT.getVectorNumElements();
4894   SmallVector<int, 8> Mask;
4895   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4896     Mask.push_back(i + Half);
4897     Mask.push_back(i + NumElems + Half);
4898   }
4899   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4900 }
4901
4902 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4903 // a generic shuffle instruction because the target has no such instructions.
4904 // Generate shuffles which repeat i16 and i8 several times until they can be
4905 // represented by v4f32 and then be manipulated by target suported shuffles.
4906 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4907   MVT VT = V.getSimpleValueType();
4908   int NumElems = VT.getVectorNumElements();
4909   SDLoc dl(V);
4910
4911   while (NumElems > 4) {
4912     if (EltNo < NumElems/2) {
4913       V = getUnpackl(DAG, dl, VT, V, V);
4914     } else {
4915       V = getUnpackh(DAG, dl, VT, V, V);
4916       EltNo -= NumElems/2;
4917     }
4918     NumElems >>= 1;
4919   }
4920   return V;
4921 }
4922
4923 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4924 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4925   MVT VT = V.getSimpleValueType();
4926   SDLoc dl(V);
4927
4928   if (VT.is128BitVector()) {
4929     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4930     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4931     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4932                              &SplatMask[0]);
4933   } else if (VT.is256BitVector()) {
4934     // To use VPERMILPS to splat scalars, the second half of indicies must
4935     // refer to the higher part, which is a duplication of the lower one,
4936     // because VPERMILPS can only handle in-lane permutations.
4937     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4938                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4939
4940     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4941     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4942                              &SplatMask[0]);
4943   } else
4944     llvm_unreachable("Vector size not supported");
4945
4946   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4947 }
4948
4949 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4950 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4951   MVT SrcVT = SV->getSimpleValueType(0);
4952   SDValue V1 = SV->getOperand(0);
4953   SDLoc dl(SV);
4954
4955   int EltNo = SV->getSplatIndex();
4956   int NumElems = SrcVT.getVectorNumElements();
4957   bool Is256BitVec = SrcVT.is256BitVector();
4958
4959   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4960          "Unknown how to promote splat for type");
4961
4962   // Extract the 128-bit part containing the splat element and update
4963   // the splat element index when it refers to the higher register.
4964   if (Is256BitVec) {
4965     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4966     if (EltNo >= NumElems/2)
4967       EltNo -= NumElems/2;
4968   }
4969
4970   // All i16 and i8 vector types can't be used directly by a generic shuffle
4971   // instruction because the target has no such instruction. Generate shuffles
4972   // which repeat i16 and i8 several times until they fit in i32, and then can
4973   // be manipulated by target suported shuffles.
4974   MVT EltVT = SrcVT.getVectorElementType();
4975   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4976     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4977
4978   // Recreate the 256-bit vector and place the same 128-bit vector
4979   // into the low and high part. This is necessary because we want
4980   // to use VPERM* to shuffle the vectors
4981   if (Is256BitVec) {
4982     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4983   }
4984
4985   return getLegalSplat(DAG, V1, EltNo);
4986 }
4987
4988 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4989 /// vector of zero or undef vector.  This produces a shuffle where the low
4990 /// element of V2 is swizzled into the zero/undef vector, landing at element
4991 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4992 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4993                                            bool IsZero,
4994                                            const X86Subtarget *Subtarget,
4995                                            SelectionDAG &DAG) {
4996   MVT VT = V2.getSimpleValueType();
4997   SDValue V1 = IsZero
4998     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4999   unsigned NumElems = VT.getVectorNumElements();
5000   SmallVector<int, 16> MaskVec;
5001   for (unsigned i = 0; i != NumElems; ++i)
5002     // If this is the insertion idx, put the low elt of V2 here.
5003     MaskVec.push_back(i == Idx ? NumElems : i);
5004   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
5005 }
5006
5007 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
5008 /// target specific opcode. Returns true if the Mask could be calculated.
5009 /// Sets IsUnary to true if only uses one source.
5010 static bool getTargetShuffleMask(SDNode *N, MVT VT,
5011                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
5012   unsigned NumElems = VT.getVectorNumElements();
5013   SDValue ImmN;
5014
5015   IsUnary = false;
5016   switch(N->getOpcode()) {
5017   case X86ISD::SHUFP:
5018     ImmN = N->getOperand(N->getNumOperands()-1);
5019     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5020     break;
5021   case X86ISD::UNPCKH:
5022     DecodeUNPCKHMask(VT, Mask);
5023     break;
5024   case X86ISD::UNPCKL:
5025     DecodeUNPCKLMask(VT, Mask);
5026     break;
5027   case X86ISD::MOVHLPS:
5028     DecodeMOVHLPSMask(NumElems, Mask);
5029     break;
5030   case X86ISD::MOVLHPS:
5031     DecodeMOVLHPSMask(NumElems, Mask);
5032     break;
5033   case X86ISD::PALIGNR:
5034     ImmN = N->getOperand(N->getNumOperands()-1);
5035     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5036     break;
5037   case X86ISD::PSHUFD:
5038   case X86ISD::VPERMILP:
5039     ImmN = N->getOperand(N->getNumOperands()-1);
5040     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5041     IsUnary = true;
5042     break;
5043   case X86ISD::PSHUFHW:
5044     ImmN = N->getOperand(N->getNumOperands()-1);
5045     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5046     IsUnary = true;
5047     break;
5048   case X86ISD::PSHUFLW:
5049     ImmN = N->getOperand(N->getNumOperands()-1);
5050     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5051     IsUnary = true;
5052     break;
5053   case X86ISD::VPERMI:
5054     ImmN = N->getOperand(N->getNumOperands()-1);
5055     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5056     IsUnary = true;
5057     break;
5058   case X86ISD::MOVSS:
5059   case X86ISD::MOVSD: {
5060     // The index 0 always comes from the first element of the second source,
5061     // this is why MOVSS and MOVSD are used in the first place. The other
5062     // elements come from the other positions of the first source vector
5063     Mask.push_back(NumElems);
5064     for (unsigned i = 1; i != NumElems; ++i) {
5065       Mask.push_back(i);
5066     }
5067     break;
5068   }
5069   case X86ISD::VPERM2X128:
5070     ImmN = N->getOperand(N->getNumOperands()-1);
5071     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5072     if (Mask.empty()) return false;
5073     break;
5074   case X86ISD::MOVDDUP:
5075   case X86ISD::MOVLHPD:
5076   case X86ISD::MOVLPD:
5077   case X86ISD::MOVLPS:
5078   case X86ISD::MOVSHDUP:
5079   case X86ISD::MOVSLDUP:
5080     // Not yet implemented
5081     return false;
5082   default: llvm_unreachable("unknown target shuffle node");
5083   }
5084
5085   return true;
5086 }
5087
5088 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5089 /// element of the result of the vector shuffle.
5090 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5091                                    unsigned Depth) {
5092   if (Depth == 6)
5093     return SDValue();  // Limit search depth.
5094
5095   SDValue V = SDValue(N, 0);
5096   EVT VT = V.getValueType();
5097   unsigned Opcode = V.getOpcode();
5098
5099   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5100   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5101     int Elt = SV->getMaskElt(Index);
5102
5103     if (Elt < 0)
5104       return DAG.getUNDEF(VT.getVectorElementType());
5105
5106     unsigned NumElems = VT.getVectorNumElements();
5107     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5108                                          : SV->getOperand(1);
5109     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5110   }
5111
5112   // Recurse into target specific vector shuffles to find scalars.
5113   if (isTargetShuffle(Opcode)) {
5114     MVT ShufVT = V.getSimpleValueType();
5115     unsigned NumElems = ShufVT.getVectorNumElements();
5116     SmallVector<int, 16> ShuffleMask;
5117     bool IsUnary;
5118
5119     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5120       return SDValue();
5121
5122     int Elt = ShuffleMask[Index];
5123     if (Elt < 0)
5124       return DAG.getUNDEF(ShufVT.getVectorElementType());
5125
5126     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5127                                          : N->getOperand(1);
5128     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5129                                Depth+1);
5130   }
5131
5132   // Actual nodes that may contain scalar elements
5133   if (Opcode == ISD::BITCAST) {
5134     V = V.getOperand(0);
5135     EVT SrcVT = V.getValueType();
5136     unsigned NumElems = VT.getVectorNumElements();
5137
5138     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5139       return SDValue();
5140   }
5141
5142   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5143     return (Index == 0) ? V.getOperand(0)
5144                         : DAG.getUNDEF(VT.getVectorElementType());
5145
5146   if (V.getOpcode() == ISD::BUILD_VECTOR)
5147     return V.getOperand(Index);
5148
5149   return SDValue();
5150 }
5151
5152 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5153 /// shuffle operation which come from a consecutively from a zero. The
5154 /// search can start in two different directions, from left or right.
5155 /// We count undefs as zeros until PreferredNum is reached.
5156 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5157                                          unsigned NumElems, bool ZerosFromLeft,
5158                                          SelectionDAG &DAG,
5159                                          unsigned PreferredNum = -1U) {
5160   unsigned NumZeros = 0;
5161   for (unsigned i = 0; i != NumElems; ++i) {
5162     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5163     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5164     if (!Elt.getNode())
5165       break;
5166
5167     if (X86::isZeroNode(Elt))
5168       ++NumZeros;
5169     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5170       NumZeros = std::min(NumZeros + 1, PreferredNum);
5171     else
5172       break;
5173   }
5174
5175   return NumZeros;
5176 }
5177
5178 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5179 /// correspond consecutively to elements from one of the vector operands,
5180 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5181 static
5182 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5183                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5184                               unsigned NumElems, unsigned &OpNum) {
5185   bool SeenV1 = false;
5186   bool SeenV2 = false;
5187
5188   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5189     int Idx = SVOp->getMaskElt(i);
5190     // Ignore undef indicies
5191     if (Idx < 0)
5192       continue;
5193
5194     if (Idx < (int)NumElems)
5195       SeenV1 = true;
5196     else
5197       SeenV2 = true;
5198
5199     // Only accept consecutive elements from the same vector
5200     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5201       return false;
5202   }
5203
5204   OpNum = SeenV1 ? 0 : 1;
5205   return true;
5206 }
5207
5208 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5209 /// logical left shift of a vector.
5210 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5211                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5212   unsigned NumElems =
5213     SVOp->getSimpleValueType(0).getVectorNumElements();
5214   unsigned NumZeros = getNumOfConsecutiveZeros(
5215       SVOp, NumElems, false /* check zeros from right */, DAG,
5216       SVOp->getMaskElt(0));
5217   unsigned OpSrc;
5218
5219   if (!NumZeros)
5220     return false;
5221
5222   // Considering the elements in the mask that are not consecutive zeros,
5223   // check if they consecutively come from only one of the source vectors.
5224   //
5225   //               V1 = {X, A, B, C}     0
5226   //                         \  \  \    /
5227   //   vector_shuffle V1, V2 <1, 2, 3, X>
5228   //
5229   if (!isShuffleMaskConsecutive(SVOp,
5230             0,                   // Mask Start Index
5231             NumElems-NumZeros,   // Mask End Index(exclusive)
5232             NumZeros,            // Where to start looking in the src vector
5233             NumElems,            // Number of elements in vector
5234             OpSrc))              // Which source operand ?
5235     return false;
5236
5237   isLeft = false;
5238   ShAmt = NumZeros;
5239   ShVal = SVOp->getOperand(OpSrc);
5240   return true;
5241 }
5242
5243 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5244 /// logical left shift of a vector.
5245 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5246                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5247   unsigned NumElems =
5248     SVOp->getSimpleValueType(0).getVectorNumElements();
5249   unsigned NumZeros = getNumOfConsecutiveZeros(
5250       SVOp, NumElems, true /* check zeros from left */, DAG,
5251       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5252   unsigned OpSrc;
5253
5254   if (!NumZeros)
5255     return false;
5256
5257   // Considering the elements in the mask that are not consecutive zeros,
5258   // check if they consecutively come from only one of the source vectors.
5259   //
5260   //                           0    { A, B, X, X } = V2
5261   //                          / \    /  /
5262   //   vector_shuffle V1, V2 <X, X, 4, 5>
5263   //
5264   if (!isShuffleMaskConsecutive(SVOp,
5265             NumZeros,     // Mask Start Index
5266             NumElems,     // Mask End Index(exclusive)
5267             0,            // Where to start looking in the src vector
5268             NumElems,     // Number of elements in vector
5269             OpSrc))       // Which source operand ?
5270     return false;
5271
5272   isLeft = true;
5273   ShAmt = NumZeros;
5274   ShVal = SVOp->getOperand(OpSrc);
5275   return true;
5276 }
5277
5278 /// isVectorShift - Returns true if the shuffle can be implemented as a
5279 /// logical left or right shift of a vector.
5280 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5281                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5282   // Although the logic below support any bitwidth size, there are no
5283   // shift instructions which handle more than 128-bit vectors.
5284   if (!SVOp->getSimpleValueType(0).is128BitVector())
5285     return false;
5286
5287   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5288       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5289     return true;
5290
5291   return false;
5292 }
5293
5294 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5295 ///
5296 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5297                                        unsigned NumNonZero, unsigned NumZero,
5298                                        SelectionDAG &DAG,
5299                                        const X86Subtarget* Subtarget,
5300                                        const TargetLowering &TLI) {
5301   if (NumNonZero > 8)
5302     return SDValue();
5303
5304   SDLoc dl(Op);
5305   SDValue V(0, 0);
5306   bool First = true;
5307   for (unsigned i = 0; i < 16; ++i) {
5308     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5309     if (ThisIsNonZero && First) {
5310       if (NumZero)
5311         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5312       else
5313         V = DAG.getUNDEF(MVT::v8i16);
5314       First = false;
5315     }
5316
5317     if ((i & 1) != 0) {
5318       SDValue ThisElt(0, 0), LastElt(0, 0);
5319       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5320       if (LastIsNonZero) {
5321         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5322                               MVT::i16, Op.getOperand(i-1));
5323       }
5324       if (ThisIsNonZero) {
5325         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5326         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5327                               ThisElt, DAG.getConstant(8, MVT::i8));
5328         if (LastIsNonZero)
5329           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5330       } else
5331         ThisElt = LastElt;
5332
5333       if (ThisElt.getNode())
5334         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5335                         DAG.getIntPtrConstant(i/2));
5336     }
5337   }
5338
5339   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5340 }
5341
5342 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5343 ///
5344 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5345                                      unsigned NumNonZero, unsigned NumZero,
5346                                      SelectionDAG &DAG,
5347                                      const X86Subtarget* Subtarget,
5348                                      const TargetLowering &TLI) {
5349   if (NumNonZero > 4)
5350     return SDValue();
5351
5352   SDLoc dl(Op);
5353   SDValue V(0, 0);
5354   bool First = true;
5355   for (unsigned i = 0; i < 8; ++i) {
5356     bool isNonZero = (NonZeros & (1 << i)) != 0;
5357     if (isNonZero) {
5358       if (First) {
5359         if (NumZero)
5360           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5361         else
5362           V = DAG.getUNDEF(MVT::v8i16);
5363         First = false;
5364       }
5365       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5366                       MVT::v8i16, V, Op.getOperand(i),
5367                       DAG.getIntPtrConstant(i));
5368     }
5369   }
5370
5371   return V;
5372 }
5373
5374 /// getVShift - Return a vector logical shift node.
5375 ///
5376 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5377                          unsigned NumBits, SelectionDAG &DAG,
5378                          const TargetLowering &TLI, SDLoc dl) {
5379   assert(VT.is128BitVector() && "Unknown type for VShift");
5380   EVT ShVT = MVT::v2i64;
5381   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5382   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5383   return DAG.getNode(ISD::BITCAST, dl, VT,
5384                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5385                              DAG.getConstant(NumBits,
5386                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5387 }
5388
5389 static SDValue
5390 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5391
5392   // Check if the scalar load can be widened into a vector load. And if
5393   // the address is "base + cst" see if the cst can be "absorbed" into
5394   // the shuffle mask.
5395   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5396     SDValue Ptr = LD->getBasePtr();
5397     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5398       return SDValue();
5399     EVT PVT = LD->getValueType(0);
5400     if (PVT != MVT::i32 && PVT != MVT::f32)
5401       return SDValue();
5402
5403     int FI = -1;
5404     int64_t Offset = 0;
5405     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5406       FI = FINode->getIndex();
5407       Offset = 0;
5408     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5409                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5410       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5411       Offset = Ptr.getConstantOperandVal(1);
5412       Ptr = Ptr.getOperand(0);
5413     } else {
5414       return SDValue();
5415     }
5416
5417     // FIXME: 256-bit vector instructions don't require a strict alignment,
5418     // improve this code to support it better.
5419     unsigned RequiredAlign = VT.getSizeInBits()/8;
5420     SDValue Chain = LD->getChain();
5421     // Make sure the stack object alignment is at least 16 or 32.
5422     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5423     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5424       if (MFI->isFixedObjectIndex(FI)) {
5425         // Can't change the alignment. FIXME: It's possible to compute
5426         // the exact stack offset and reference FI + adjust offset instead.
5427         // If someone *really* cares about this. That's the way to implement it.
5428         return SDValue();
5429       } else {
5430         MFI->setObjectAlignment(FI, RequiredAlign);
5431       }
5432     }
5433
5434     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5435     // Ptr + (Offset & ~15).
5436     if (Offset < 0)
5437       return SDValue();
5438     if ((Offset % RequiredAlign) & 3)
5439       return SDValue();
5440     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5441     if (StartOffset)
5442       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5443                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5444
5445     int EltNo = (Offset - StartOffset) >> 2;
5446     unsigned NumElems = VT.getVectorNumElements();
5447
5448     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5449     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5450                              LD->getPointerInfo().getWithOffset(StartOffset),
5451                              false, false, false, 0);
5452
5453     SmallVector<int, 8> Mask;
5454     for (unsigned i = 0; i != NumElems; ++i)
5455       Mask.push_back(EltNo);
5456
5457     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5458   }
5459
5460   return SDValue();
5461 }
5462
5463 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5464 /// vector of type 'VT', see if the elements can be replaced by a single large
5465 /// load which has the same value as a build_vector whose operands are 'elts'.
5466 ///
5467 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5468 ///
5469 /// FIXME: we'd also like to handle the case where the last elements are zero
5470 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5471 /// There's even a handy isZeroNode for that purpose.
5472 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5473                                         SDLoc &DL, SelectionDAG &DAG,
5474                                         bool isAfterLegalize) {
5475   EVT EltVT = VT.getVectorElementType();
5476   unsigned NumElems = Elts.size();
5477
5478   LoadSDNode *LDBase = NULL;
5479   unsigned LastLoadedElt = -1U;
5480
5481   // For each element in the initializer, see if we've found a load or an undef.
5482   // If we don't find an initial load element, or later load elements are
5483   // non-consecutive, bail out.
5484   for (unsigned i = 0; i < NumElems; ++i) {
5485     SDValue Elt = Elts[i];
5486
5487     if (!Elt.getNode() ||
5488         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5489       return SDValue();
5490     if (!LDBase) {
5491       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5492         return SDValue();
5493       LDBase = cast<LoadSDNode>(Elt.getNode());
5494       LastLoadedElt = i;
5495       continue;
5496     }
5497     if (Elt.getOpcode() == ISD::UNDEF)
5498       continue;
5499
5500     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5501     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5502       return SDValue();
5503     LastLoadedElt = i;
5504   }
5505
5506   // If we have found an entire vector of loads and undefs, then return a large
5507   // load of the entire vector width starting at the base pointer.  If we found
5508   // consecutive loads for the low half, generate a vzext_load node.
5509   if (LastLoadedElt == NumElems - 1) {
5510
5511     if (isAfterLegalize &&
5512         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5513       return SDValue();
5514
5515     SDValue NewLd = SDValue();
5516
5517     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5518       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5519                           LDBase->getPointerInfo(),
5520                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5521                           LDBase->isInvariant(), 0);
5522     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5523                         LDBase->getPointerInfo(),
5524                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5525                         LDBase->isInvariant(), LDBase->getAlignment());
5526
5527     if (LDBase->hasAnyUseOfValue(1)) {
5528       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5529                                      SDValue(LDBase, 1),
5530                                      SDValue(NewLd.getNode(), 1));
5531       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5532       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5533                              SDValue(NewLd.getNode(), 1));
5534     }
5535
5536     return NewLd;
5537   }
5538   if (NumElems == 4 && LastLoadedElt == 1 &&
5539       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5540     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5541     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5542     SDValue ResNode =
5543         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5544                                 array_lengthof(Ops), MVT::i64,
5545                                 LDBase->getPointerInfo(),
5546                                 LDBase->getAlignment(),
5547                                 false/*isVolatile*/, true/*ReadMem*/,
5548                                 false/*WriteMem*/);
5549
5550     // Make sure the newly-created LOAD is in the same position as LDBase in
5551     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5552     // update uses of LDBase's output chain to use the TokenFactor.
5553     if (LDBase->hasAnyUseOfValue(1)) {
5554       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5555                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5556       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5557       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5558                              SDValue(ResNode.getNode(), 1));
5559     }
5560
5561     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5562   }
5563   return SDValue();
5564 }
5565
5566 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5567 /// to generate a splat value for the following cases:
5568 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5569 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5570 /// a scalar load, or a constant.
5571 /// The VBROADCAST node is returned when a pattern is found,
5572 /// or SDValue() otherwise.
5573 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5574                                     SelectionDAG &DAG) {
5575   if (!Subtarget->hasFp256())
5576     return SDValue();
5577
5578   MVT VT = Op.getSimpleValueType();
5579   SDLoc dl(Op);
5580
5581   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5582          "Unsupported vector type for broadcast.");
5583
5584   SDValue Ld;
5585   bool ConstSplatVal;
5586
5587   switch (Op.getOpcode()) {
5588     default:
5589       // Unknown pattern found.
5590       return SDValue();
5591
5592     case ISD::BUILD_VECTOR: {
5593       // The BUILD_VECTOR node must be a splat.
5594       if (!isSplatVector(Op.getNode()))
5595         return SDValue();
5596
5597       Ld = Op.getOperand(0);
5598       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5599                      Ld.getOpcode() == ISD::ConstantFP);
5600
5601       // The suspected load node has several users. Make sure that all
5602       // of its users are from the BUILD_VECTOR node.
5603       // Constants may have multiple users.
5604       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5605         return SDValue();
5606       break;
5607     }
5608
5609     case ISD::VECTOR_SHUFFLE: {
5610       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5611
5612       // Shuffles must have a splat mask where the first element is
5613       // broadcasted.
5614       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5615         return SDValue();
5616
5617       SDValue Sc = Op.getOperand(0);
5618       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5619           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5620
5621         if (!Subtarget->hasInt256())
5622           return SDValue();
5623
5624         // Use the register form of the broadcast instruction available on AVX2.
5625         if (VT.getSizeInBits() >= 256)
5626           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5627         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5628       }
5629
5630       Ld = Sc.getOperand(0);
5631       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5632                        Ld.getOpcode() == ISD::ConstantFP);
5633
5634       // The scalar_to_vector node and the suspected
5635       // load node must have exactly one user.
5636       // Constants may have multiple users.
5637
5638       // AVX-512 has register version of the broadcast
5639       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5640         Ld.getValueType().getSizeInBits() >= 32;
5641       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5642           !hasRegVer))
5643         return SDValue();
5644       break;
5645     }
5646   }
5647
5648   bool IsGE256 = (VT.getSizeInBits() >= 256);
5649
5650   // Handle the broadcasting a single constant scalar from the constant pool
5651   // into a vector. On Sandybridge it is still better to load a constant vector
5652   // from the constant pool and not to broadcast it from a scalar.
5653   if (ConstSplatVal && Subtarget->hasInt256()) {
5654     EVT CVT = Ld.getValueType();
5655     assert(!CVT.isVector() && "Must not broadcast a vector type");
5656     unsigned ScalarSize = CVT.getSizeInBits();
5657
5658     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5659       const Constant *C = 0;
5660       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5661         C = CI->getConstantIntValue();
5662       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5663         C = CF->getConstantFPValue();
5664
5665       assert(C && "Invalid constant type");
5666
5667       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5668       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5669       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5670       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5671                        MachinePointerInfo::getConstantPool(),
5672                        false, false, false, Alignment);
5673
5674       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5675     }
5676   }
5677
5678   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5679   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5680
5681   // Handle AVX2 in-register broadcasts.
5682   if (!IsLoad && Subtarget->hasInt256() &&
5683       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5684     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5685
5686   // The scalar source must be a normal load.
5687   if (!IsLoad)
5688     return SDValue();
5689
5690   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5691     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5692
5693   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5694   // double since there is no vbroadcastsd xmm
5695   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5696     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5697       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5698   }
5699
5700   // Unsupported broadcast.
5701   return SDValue();
5702 }
5703
5704 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5705   MVT VT = Op.getSimpleValueType();
5706
5707   // Skip if insert_vec_elt is not supported.
5708   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5709   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5710     return SDValue();
5711
5712   SDLoc DL(Op);
5713   unsigned NumElems = Op.getNumOperands();
5714
5715   SDValue VecIn1;
5716   SDValue VecIn2;
5717   SmallVector<unsigned, 4> InsertIndices;
5718   SmallVector<int, 8> Mask(NumElems, -1);
5719
5720   for (unsigned i = 0; i != NumElems; ++i) {
5721     unsigned Opc = Op.getOperand(i).getOpcode();
5722
5723     if (Opc == ISD::UNDEF)
5724       continue;
5725
5726     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5727       // Quit if more than 1 elements need inserting.
5728       if (InsertIndices.size() > 1)
5729         return SDValue();
5730
5731       InsertIndices.push_back(i);
5732       continue;
5733     }
5734
5735     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5736     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5737
5738     // Quit if extracted from vector of different type.
5739     if (ExtractedFromVec.getValueType() != VT)
5740       return SDValue();
5741
5742     // Quit if non-constant index.
5743     if (!isa<ConstantSDNode>(ExtIdx))
5744       return SDValue();
5745
5746     if (VecIn1.getNode() == 0)
5747       VecIn1 = ExtractedFromVec;
5748     else if (VecIn1 != ExtractedFromVec) {
5749       if (VecIn2.getNode() == 0)
5750         VecIn2 = ExtractedFromVec;
5751       else if (VecIn2 != ExtractedFromVec)
5752         // Quit if more than 2 vectors to shuffle
5753         return SDValue();
5754     }
5755
5756     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5757
5758     if (ExtractedFromVec == VecIn1)
5759       Mask[i] = Idx;
5760     else if (ExtractedFromVec == VecIn2)
5761       Mask[i] = Idx + NumElems;
5762   }
5763
5764   if (VecIn1.getNode() == 0)
5765     return SDValue();
5766
5767   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5768   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5769   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5770     unsigned Idx = InsertIndices[i];
5771     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5772                      DAG.getIntPtrConstant(Idx));
5773   }
5774
5775   return NV;
5776 }
5777
5778 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5779 SDValue
5780 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5781
5782   MVT VT = Op.getSimpleValueType();
5783   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5784          "Unexpected type in LowerBUILD_VECTORvXi1!");
5785
5786   SDLoc dl(Op);
5787   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5788     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5789     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5790                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5791     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5792                        Ops, VT.getVectorNumElements());
5793   }
5794
5795   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5796     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5797     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5798                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5799     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5800                        Ops, VT.getVectorNumElements());
5801   }
5802
5803   bool AllContants = true;
5804   uint64_t Immediate = 0;
5805   int NonConstIdx = -1;
5806   bool IsSplat = true;
5807   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5808     SDValue In = Op.getOperand(idx);
5809     if (In.getOpcode() == ISD::UNDEF)
5810       continue;
5811     if (!isa<ConstantSDNode>(In)) {
5812       AllContants = false;
5813       NonConstIdx = idx;
5814     }
5815     else if (cast<ConstantSDNode>(In)->getZExtValue())
5816       Immediate |= (1ULL << idx);
5817     if (In != Op.getOperand(0))
5818       IsSplat = false;
5819   }
5820
5821   if (AllContants) {
5822     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5823       DAG.getConstant(Immediate, MVT::i16));
5824     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5825                        DAG.getIntPtrConstant(0));
5826   }
5827
5828   if (!IsSplat && (NonConstIdx != 0))
5829     llvm_unreachable("Unsupported BUILD_VECTOR operation");
5830   MVT SelectVT = (VT == MVT::v16i1)? MVT::i16 : MVT::i8;
5831   SDValue Select;
5832   if (IsSplat)
5833     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
5834                           DAG.getConstant(-1, SelectVT),
5835                           DAG.getConstant(0, SelectVT));
5836   else
5837     Select = DAG.getNode(ISD::SELECT, dl, SelectVT, Op.getOperand(0),
5838                          DAG.getConstant((Immediate | 1), SelectVT),
5839                          DAG.getConstant(Immediate, SelectVT));
5840   return DAG.getNode(ISD::BITCAST, dl, VT, Select);
5841 }
5842
5843 SDValue
5844 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5845   SDLoc dl(Op);
5846
5847   MVT VT = Op.getSimpleValueType();
5848   MVT ExtVT = VT.getVectorElementType();
5849   unsigned NumElems = Op.getNumOperands();
5850
5851   // Generate vectors for predicate vectors.
5852   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5853     return LowerBUILD_VECTORvXi1(Op, DAG);
5854
5855   // Vectors containing all zeros can be matched by pxor and xorps later
5856   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5857     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5858     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5859     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5860       return Op;
5861
5862     return getZeroVector(VT, Subtarget, DAG, dl);
5863   }
5864
5865   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5866   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5867   // vpcmpeqd on 256-bit vectors.
5868   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5869     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5870       return Op;
5871
5872     if (!VT.is512BitVector())
5873       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5874   }
5875
5876   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5877   if (Broadcast.getNode())
5878     return Broadcast;
5879
5880   unsigned EVTBits = ExtVT.getSizeInBits();
5881
5882   unsigned NumZero  = 0;
5883   unsigned NumNonZero = 0;
5884   unsigned NonZeros = 0;
5885   bool IsAllConstants = true;
5886   SmallSet<SDValue, 8> Values;
5887   for (unsigned i = 0; i < NumElems; ++i) {
5888     SDValue Elt = Op.getOperand(i);
5889     if (Elt.getOpcode() == ISD::UNDEF)
5890       continue;
5891     Values.insert(Elt);
5892     if (Elt.getOpcode() != ISD::Constant &&
5893         Elt.getOpcode() != ISD::ConstantFP)
5894       IsAllConstants = false;
5895     if (X86::isZeroNode(Elt))
5896       NumZero++;
5897     else {
5898       NonZeros |= (1 << i);
5899       NumNonZero++;
5900     }
5901   }
5902
5903   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5904   if (NumNonZero == 0)
5905     return DAG.getUNDEF(VT);
5906
5907   // Special case for single non-zero, non-undef, element.
5908   if (NumNonZero == 1) {
5909     unsigned Idx = countTrailingZeros(NonZeros);
5910     SDValue Item = Op.getOperand(Idx);
5911
5912     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5913     // the value are obviously zero, truncate the value to i32 and do the
5914     // insertion that way.  Only do this if the value is non-constant or if the
5915     // value is a constant being inserted into element 0.  It is cheaper to do
5916     // a constant pool load than it is to do a movd + shuffle.
5917     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5918         (!IsAllConstants || Idx == 0)) {
5919       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5920         // Handle SSE only.
5921         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5922         EVT VecVT = MVT::v4i32;
5923         unsigned VecElts = 4;
5924
5925         // Truncate the value (which may itself be a constant) to i32, and
5926         // convert it to a vector with movd (S2V+shuffle to zero extend).
5927         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5928         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5929         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5930
5931         // Now we have our 32-bit value zero extended in the low element of
5932         // a vector.  If Idx != 0, swizzle it into place.
5933         if (Idx != 0) {
5934           SmallVector<int, 4> Mask;
5935           Mask.push_back(Idx);
5936           for (unsigned i = 1; i != VecElts; ++i)
5937             Mask.push_back(i);
5938           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5939                                       &Mask[0]);
5940         }
5941         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5942       }
5943     }
5944
5945     // If we have a constant or non-constant insertion into the low element of
5946     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5947     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5948     // depending on what the source datatype is.
5949     if (Idx == 0) {
5950       if (NumZero == 0)
5951         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5952
5953       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5954           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5955         if (VT.is256BitVector() || VT.is512BitVector()) {
5956           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5957           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5958                              Item, DAG.getIntPtrConstant(0));
5959         }
5960         assert(VT.is128BitVector() && "Expected an SSE value type!");
5961         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5962         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5963         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5964       }
5965
5966       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5967         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5968         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5969         if (VT.is256BitVector()) {
5970           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5971           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5972         } else {
5973           assert(VT.is128BitVector() && "Expected an SSE value type!");
5974           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5975         }
5976         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5977       }
5978     }
5979
5980     // Is it a vector logical left shift?
5981     if (NumElems == 2 && Idx == 1 &&
5982         X86::isZeroNode(Op.getOperand(0)) &&
5983         !X86::isZeroNode(Op.getOperand(1))) {
5984       unsigned NumBits = VT.getSizeInBits();
5985       return getVShift(true, VT,
5986                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5987                                    VT, Op.getOperand(1)),
5988                        NumBits/2, DAG, *this, dl);
5989     }
5990
5991     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5992       return SDValue();
5993
5994     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5995     // is a non-constant being inserted into an element other than the low one,
5996     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5997     // movd/movss) to move this into the low element, then shuffle it into
5998     // place.
5999     if (EVTBits == 32) {
6000       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6001
6002       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6003       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6004       SmallVector<int, 8> MaskVec;
6005       for (unsigned i = 0; i != NumElems; ++i)
6006         MaskVec.push_back(i == Idx ? 0 : 1);
6007       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6008     }
6009   }
6010
6011   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6012   if (Values.size() == 1) {
6013     if (EVTBits == 32) {
6014       // Instead of a shuffle like this:
6015       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6016       // Check if it's possible to issue this instead.
6017       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6018       unsigned Idx = countTrailingZeros(NonZeros);
6019       SDValue Item = Op.getOperand(Idx);
6020       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6021         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6022     }
6023     return SDValue();
6024   }
6025
6026   // A vector full of immediates; various special cases are already
6027   // handled, so this is best done with a single constant-pool load.
6028   if (IsAllConstants)
6029     return SDValue();
6030
6031   // For AVX-length vectors, build the individual 128-bit pieces and use
6032   // shuffles to put them in place.
6033   if (VT.is256BitVector() || VT.is512BitVector()) {
6034     SmallVector<SDValue, 64> V;
6035     for (unsigned i = 0; i != NumElems; ++i)
6036       V.push_back(Op.getOperand(i));
6037
6038     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6039
6040     // Build both the lower and upper subvector.
6041     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
6042     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
6043                                 NumElems/2);
6044
6045     // Recreate the wider vector with the lower and upper part.
6046     if (VT.is256BitVector())
6047       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6048     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6049   }
6050
6051   // Let legalizer expand 2-wide build_vectors.
6052   if (EVTBits == 64) {
6053     if (NumNonZero == 1) {
6054       // One half is zero or undef.
6055       unsigned Idx = countTrailingZeros(NonZeros);
6056       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6057                                  Op.getOperand(Idx));
6058       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6059     }
6060     return SDValue();
6061   }
6062
6063   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6064   if (EVTBits == 8 && NumElems == 16) {
6065     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6066                                         Subtarget, *this);
6067     if (V.getNode()) return V;
6068   }
6069
6070   if (EVTBits == 16 && NumElems == 8) {
6071     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6072                                       Subtarget, *this);
6073     if (V.getNode()) return V;
6074   }
6075
6076   // If element VT is == 32 bits, turn it into a number of shuffles.
6077   SmallVector<SDValue, 8> V(NumElems);
6078   if (NumElems == 4 && NumZero > 0) {
6079     for (unsigned i = 0; i < 4; ++i) {
6080       bool isZero = !(NonZeros & (1 << i));
6081       if (isZero)
6082         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6083       else
6084         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6085     }
6086
6087     for (unsigned i = 0; i < 2; ++i) {
6088       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6089         default: break;
6090         case 0:
6091           V[i] = V[i*2];  // Must be a zero vector.
6092           break;
6093         case 1:
6094           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6095           break;
6096         case 2:
6097           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6098           break;
6099         case 3:
6100           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6101           break;
6102       }
6103     }
6104
6105     bool Reverse1 = (NonZeros & 0x3) == 2;
6106     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6107     int MaskVec[] = {
6108       Reverse1 ? 1 : 0,
6109       Reverse1 ? 0 : 1,
6110       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6111       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6112     };
6113     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6114   }
6115
6116   if (Values.size() > 1 && VT.is128BitVector()) {
6117     // Check for a build vector of consecutive loads.
6118     for (unsigned i = 0; i < NumElems; ++i)
6119       V[i] = Op.getOperand(i);
6120
6121     // Check for elements which are consecutive loads.
6122     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6123     if (LD.getNode())
6124       return LD;
6125
6126     // Check for a build vector from mostly shuffle plus few inserting.
6127     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6128     if (Sh.getNode())
6129       return Sh;
6130
6131     // For SSE 4.1, use insertps to put the high elements into the low element.
6132     if (getSubtarget()->hasSSE41()) {
6133       SDValue Result;
6134       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6135         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6136       else
6137         Result = DAG.getUNDEF(VT);
6138
6139       for (unsigned i = 1; i < NumElems; ++i) {
6140         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6141         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6142                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6143       }
6144       return Result;
6145     }
6146
6147     // Otherwise, expand into a number of unpckl*, start by extending each of
6148     // our (non-undef) elements to the full vector width with the element in the
6149     // bottom slot of the vector (which generates no code for SSE).
6150     for (unsigned i = 0; i < NumElems; ++i) {
6151       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6152         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6153       else
6154         V[i] = DAG.getUNDEF(VT);
6155     }
6156
6157     // Next, we iteratively mix elements, e.g. for v4f32:
6158     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6159     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6160     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6161     unsigned EltStride = NumElems >> 1;
6162     while (EltStride != 0) {
6163       for (unsigned i = 0; i < EltStride; ++i) {
6164         // If V[i+EltStride] is undef and this is the first round of mixing,
6165         // then it is safe to just drop this shuffle: V[i] is already in the
6166         // right place, the one element (since it's the first round) being
6167         // inserted as undef can be dropped.  This isn't safe for successive
6168         // rounds because they will permute elements within both vectors.
6169         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6170             EltStride == NumElems/2)
6171           continue;
6172
6173         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6174       }
6175       EltStride >>= 1;
6176     }
6177     return V[0];
6178   }
6179   return SDValue();
6180 }
6181
6182 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6183 // to create 256-bit vectors from two other 128-bit ones.
6184 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6185   SDLoc dl(Op);
6186   MVT ResVT = Op.getSimpleValueType();
6187
6188   assert((ResVT.is256BitVector() ||
6189           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6190
6191   SDValue V1 = Op.getOperand(0);
6192   SDValue V2 = Op.getOperand(1);
6193   unsigned NumElems = ResVT.getVectorNumElements();
6194   if(ResVT.is256BitVector())
6195     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6196
6197   if (Op.getNumOperands() == 4) {
6198     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6199                                 ResVT.getVectorNumElements()/2);
6200     SDValue V3 = Op.getOperand(2);
6201     SDValue V4 = Op.getOperand(3);
6202     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6203       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6204   }
6205   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6206 }
6207
6208 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6209   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6210   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6211          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6212           Op.getNumOperands() == 4)));
6213
6214   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6215   // from two other 128-bit ones.
6216
6217   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6218   return LowerAVXCONCAT_VECTORS(Op, DAG);
6219 }
6220
6221 // Try to lower a shuffle node into a simple blend instruction.
6222 static SDValue
6223 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6224                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6225   SDValue V1 = SVOp->getOperand(0);
6226   SDValue V2 = SVOp->getOperand(1);
6227   SDLoc dl(SVOp);
6228   MVT VT = SVOp->getSimpleValueType(0);
6229   MVT EltVT = VT.getVectorElementType();
6230   unsigned NumElems = VT.getVectorNumElements();
6231
6232   // There is no blend with immediate in AVX-512.
6233   if (VT.is512BitVector())
6234     return SDValue();
6235
6236   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6237     return SDValue();
6238   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6239     return SDValue();
6240
6241   // Check the mask for BLEND and build the value.
6242   unsigned MaskValue = 0;
6243   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6244   unsigned NumLanes = (NumElems-1)/8 + 1;
6245   unsigned NumElemsInLane = NumElems / NumLanes;
6246
6247   // Blend for v16i16 should be symetric for the both lanes.
6248   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6249
6250     int SndLaneEltIdx = (NumLanes == 2) ?
6251       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6252     int EltIdx = SVOp->getMaskElt(i);
6253
6254     if ((EltIdx < 0 || EltIdx == (int)i) &&
6255         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6256       continue;
6257
6258     if (((unsigned)EltIdx == (i + NumElems)) &&
6259         (SndLaneEltIdx < 0 ||
6260          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6261       MaskValue |= (1<<i);
6262     else
6263       return SDValue();
6264   }
6265
6266   // Convert i32 vectors to floating point if it is not AVX2.
6267   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6268   MVT BlendVT = VT;
6269   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6270     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6271                                NumElems);
6272     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6273     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6274   }
6275
6276   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6277                             DAG.getConstant(MaskValue, MVT::i32));
6278   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6279 }
6280
6281 // v8i16 shuffles - Prefer shuffles in the following order:
6282 // 1. [all]   pshuflw, pshufhw, optional move
6283 // 2. [ssse3] 1 x pshufb
6284 // 3. [ssse3] 2 x pshufb + 1 x por
6285 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6286 static SDValue
6287 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6288                          SelectionDAG &DAG) {
6289   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6290   SDValue V1 = SVOp->getOperand(0);
6291   SDValue V2 = SVOp->getOperand(1);
6292   SDLoc dl(SVOp);
6293   SmallVector<int, 8> MaskVals;
6294
6295   // Determine if more than 1 of the words in each of the low and high quadwords
6296   // of the result come from the same quadword of one of the two inputs.  Undef
6297   // mask values count as coming from any quadword, for better codegen.
6298   unsigned LoQuad[] = { 0, 0, 0, 0 };
6299   unsigned HiQuad[] = { 0, 0, 0, 0 };
6300   std::bitset<4> InputQuads;
6301   for (unsigned i = 0; i < 8; ++i) {
6302     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6303     int EltIdx = SVOp->getMaskElt(i);
6304     MaskVals.push_back(EltIdx);
6305     if (EltIdx < 0) {
6306       ++Quad[0];
6307       ++Quad[1];
6308       ++Quad[2];
6309       ++Quad[3];
6310       continue;
6311     }
6312     ++Quad[EltIdx / 4];
6313     InputQuads.set(EltIdx / 4);
6314   }
6315
6316   int BestLoQuad = -1;
6317   unsigned MaxQuad = 1;
6318   for (unsigned i = 0; i < 4; ++i) {
6319     if (LoQuad[i] > MaxQuad) {
6320       BestLoQuad = i;
6321       MaxQuad = LoQuad[i];
6322     }
6323   }
6324
6325   int BestHiQuad = -1;
6326   MaxQuad = 1;
6327   for (unsigned i = 0; i < 4; ++i) {
6328     if (HiQuad[i] > MaxQuad) {
6329       BestHiQuad = i;
6330       MaxQuad = HiQuad[i];
6331     }
6332   }
6333
6334   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6335   // of the two input vectors, shuffle them into one input vector so only a
6336   // single pshufb instruction is necessary. If There are more than 2 input
6337   // quads, disable the next transformation since it does not help SSSE3.
6338   bool V1Used = InputQuads[0] || InputQuads[1];
6339   bool V2Used = InputQuads[2] || InputQuads[3];
6340   if (Subtarget->hasSSSE3()) {
6341     if (InputQuads.count() == 2 && V1Used && V2Used) {
6342       BestLoQuad = InputQuads[0] ? 0 : 1;
6343       BestHiQuad = InputQuads[2] ? 2 : 3;
6344     }
6345     if (InputQuads.count() > 2) {
6346       BestLoQuad = -1;
6347       BestHiQuad = -1;
6348     }
6349   }
6350
6351   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6352   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6353   // words from all 4 input quadwords.
6354   SDValue NewV;
6355   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6356     int MaskV[] = {
6357       BestLoQuad < 0 ? 0 : BestLoQuad,
6358       BestHiQuad < 0 ? 1 : BestHiQuad
6359     };
6360     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6361                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6362                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6363     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6364
6365     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6366     // source words for the shuffle, to aid later transformations.
6367     bool AllWordsInNewV = true;
6368     bool InOrder[2] = { true, true };
6369     for (unsigned i = 0; i != 8; ++i) {
6370       int idx = MaskVals[i];
6371       if (idx != (int)i)
6372         InOrder[i/4] = false;
6373       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6374         continue;
6375       AllWordsInNewV = false;
6376       break;
6377     }
6378
6379     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6380     if (AllWordsInNewV) {
6381       for (int i = 0; i != 8; ++i) {
6382         int idx = MaskVals[i];
6383         if (idx < 0)
6384           continue;
6385         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6386         if ((idx != i) && idx < 4)
6387           pshufhw = false;
6388         if ((idx != i) && idx > 3)
6389           pshuflw = false;
6390       }
6391       V1 = NewV;
6392       V2Used = false;
6393       BestLoQuad = 0;
6394       BestHiQuad = 1;
6395     }
6396
6397     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6398     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6399     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6400       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6401       unsigned TargetMask = 0;
6402       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6403                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6404       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6405       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6406                              getShufflePSHUFLWImmediate(SVOp);
6407       V1 = NewV.getOperand(0);
6408       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6409     }
6410   }
6411
6412   // Promote splats to a larger type which usually leads to more efficient code.
6413   // FIXME: Is this true if pshufb is available?
6414   if (SVOp->isSplat())
6415     return PromoteSplat(SVOp, DAG);
6416
6417   // If we have SSSE3, and all words of the result are from 1 input vector,
6418   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6419   // is present, fall back to case 4.
6420   if (Subtarget->hasSSSE3()) {
6421     SmallVector<SDValue,16> pshufbMask;
6422
6423     // If we have elements from both input vectors, set the high bit of the
6424     // shuffle mask element to zero out elements that come from V2 in the V1
6425     // mask, and elements that come from V1 in the V2 mask, so that the two
6426     // results can be OR'd together.
6427     bool TwoInputs = V1Used && V2Used;
6428     for (unsigned i = 0; i != 8; ++i) {
6429       int EltIdx = MaskVals[i] * 2;
6430       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6431       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6432       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6433       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6434     }
6435     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6436     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6437                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6438                                  MVT::v16i8, &pshufbMask[0], 16));
6439     if (!TwoInputs)
6440       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6441
6442     // Calculate the shuffle mask for the second input, shuffle it, and
6443     // OR it with the first shuffled input.
6444     pshufbMask.clear();
6445     for (unsigned i = 0; i != 8; ++i) {
6446       int EltIdx = MaskVals[i] * 2;
6447       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6448       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6449       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6450       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6451     }
6452     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6453     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6454                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6455                                  MVT::v16i8, &pshufbMask[0], 16));
6456     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6457     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6458   }
6459
6460   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6461   // and update MaskVals with new element order.
6462   std::bitset<8> InOrder;
6463   if (BestLoQuad >= 0) {
6464     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6465     for (int i = 0; i != 4; ++i) {
6466       int idx = MaskVals[i];
6467       if (idx < 0) {
6468         InOrder.set(i);
6469       } else if ((idx / 4) == BestLoQuad) {
6470         MaskV[i] = idx & 3;
6471         InOrder.set(i);
6472       }
6473     }
6474     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6475                                 &MaskV[0]);
6476
6477     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6478       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6479       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6480                                   NewV.getOperand(0),
6481                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6482     }
6483   }
6484
6485   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6486   // and update MaskVals with the new element order.
6487   if (BestHiQuad >= 0) {
6488     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6489     for (unsigned i = 4; i != 8; ++i) {
6490       int idx = MaskVals[i];
6491       if (idx < 0) {
6492         InOrder.set(i);
6493       } else if ((idx / 4) == BestHiQuad) {
6494         MaskV[i] = (idx & 3) + 4;
6495         InOrder.set(i);
6496       }
6497     }
6498     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6499                                 &MaskV[0]);
6500
6501     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6502       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6503       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6504                                   NewV.getOperand(0),
6505                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6506     }
6507   }
6508
6509   // In case BestHi & BestLo were both -1, which means each quadword has a word
6510   // from each of the four input quadwords, calculate the InOrder bitvector now
6511   // before falling through to the insert/extract cleanup.
6512   if (BestLoQuad == -1 && BestHiQuad == -1) {
6513     NewV = V1;
6514     for (int i = 0; i != 8; ++i)
6515       if (MaskVals[i] < 0 || MaskVals[i] == i)
6516         InOrder.set(i);
6517   }
6518
6519   // The other elements are put in the right place using pextrw and pinsrw.
6520   for (unsigned i = 0; i != 8; ++i) {
6521     if (InOrder[i])
6522       continue;
6523     int EltIdx = MaskVals[i];
6524     if (EltIdx < 0)
6525       continue;
6526     SDValue ExtOp = (EltIdx < 8) ?
6527       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6528                   DAG.getIntPtrConstant(EltIdx)) :
6529       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6530                   DAG.getIntPtrConstant(EltIdx - 8));
6531     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6532                        DAG.getIntPtrConstant(i));
6533   }
6534   return NewV;
6535 }
6536
6537 // v16i8 shuffles - Prefer shuffles in the following order:
6538 // 1. [ssse3] 1 x pshufb
6539 // 2. [ssse3] 2 x pshufb + 1 x por
6540 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6541 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6542                                         const X86Subtarget* Subtarget,
6543                                         SelectionDAG &DAG) {
6544   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6545   SDValue V1 = SVOp->getOperand(0);
6546   SDValue V2 = SVOp->getOperand(1);
6547   SDLoc dl(SVOp);
6548   ArrayRef<int> MaskVals = SVOp->getMask();
6549
6550   // Promote splats to a larger type which usually leads to more efficient code.
6551   // FIXME: Is this true if pshufb is available?
6552   if (SVOp->isSplat())
6553     return PromoteSplat(SVOp, DAG);
6554
6555   // If we have SSSE3, case 1 is generated when all result bytes come from
6556   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6557   // present, fall back to case 3.
6558
6559   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6560   if (Subtarget->hasSSSE3()) {
6561     SmallVector<SDValue,16> pshufbMask;
6562
6563     // If all result elements are from one input vector, then only translate
6564     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6565     //
6566     // Otherwise, we have elements from both input vectors, and must zero out
6567     // elements that come from V2 in the first mask, and V1 in the second mask
6568     // so that we can OR them together.
6569     for (unsigned i = 0; i != 16; ++i) {
6570       int EltIdx = MaskVals[i];
6571       if (EltIdx < 0 || EltIdx >= 16)
6572         EltIdx = 0x80;
6573       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6574     }
6575     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6576                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6577                                  MVT::v16i8, &pshufbMask[0], 16));
6578
6579     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6580     // the 2nd operand if it's undefined or zero.
6581     if (V2.getOpcode() == ISD::UNDEF ||
6582         ISD::isBuildVectorAllZeros(V2.getNode()))
6583       return V1;
6584
6585     // Calculate the shuffle mask for the second input, shuffle it, and
6586     // OR it with the first shuffled input.
6587     pshufbMask.clear();
6588     for (unsigned i = 0; i != 16; ++i) {
6589       int EltIdx = MaskVals[i];
6590       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6591       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6592     }
6593     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6594                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6595                                  MVT::v16i8, &pshufbMask[0], 16));
6596     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6597   }
6598
6599   // No SSSE3 - Calculate in place words and then fix all out of place words
6600   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6601   // the 16 different words that comprise the two doublequadword input vectors.
6602   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6603   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6604   SDValue NewV = V1;
6605   for (int i = 0; i != 8; ++i) {
6606     int Elt0 = MaskVals[i*2];
6607     int Elt1 = MaskVals[i*2+1];
6608
6609     // This word of the result is all undef, skip it.
6610     if (Elt0 < 0 && Elt1 < 0)
6611       continue;
6612
6613     // This word of the result is already in the correct place, skip it.
6614     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6615       continue;
6616
6617     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6618     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6619     SDValue InsElt;
6620
6621     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6622     // using a single extract together, load it and store it.
6623     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6624       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6625                            DAG.getIntPtrConstant(Elt1 / 2));
6626       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6627                         DAG.getIntPtrConstant(i));
6628       continue;
6629     }
6630
6631     // If Elt1 is defined, extract it from the appropriate source.  If the
6632     // source byte is not also odd, shift the extracted word left 8 bits
6633     // otherwise clear the bottom 8 bits if we need to do an or.
6634     if (Elt1 >= 0) {
6635       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6636                            DAG.getIntPtrConstant(Elt1 / 2));
6637       if ((Elt1 & 1) == 0)
6638         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6639                              DAG.getConstant(8,
6640                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6641       else if (Elt0 >= 0)
6642         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6643                              DAG.getConstant(0xFF00, MVT::i16));
6644     }
6645     // If Elt0 is defined, extract it from the appropriate source.  If the
6646     // source byte is not also even, shift the extracted word right 8 bits. If
6647     // Elt1 was also defined, OR the extracted values together before
6648     // inserting them in the result.
6649     if (Elt0 >= 0) {
6650       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6651                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6652       if ((Elt0 & 1) != 0)
6653         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6654                               DAG.getConstant(8,
6655                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6656       else if (Elt1 >= 0)
6657         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6658                              DAG.getConstant(0x00FF, MVT::i16));
6659       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6660                          : InsElt0;
6661     }
6662     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6663                        DAG.getIntPtrConstant(i));
6664   }
6665   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6666 }
6667
6668 // v32i8 shuffles - Translate to VPSHUFB if possible.
6669 static
6670 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6671                                  const X86Subtarget *Subtarget,
6672                                  SelectionDAG &DAG) {
6673   MVT VT = SVOp->getSimpleValueType(0);
6674   SDValue V1 = SVOp->getOperand(0);
6675   SDValue V2 = SVOp->getOperand(1);
6676   SDLoc dl(SVOp);
6677   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6678
6679   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6680   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6681   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6682
6683   // VPSHUFB may be generated if
6684   // (1) one of input vector is undefined or zeroinitializer.
6685   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6686   // And (2) the mask indexes don't cross the 128-bit lane.
6687   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6688       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6689     return SDValue();
6690
6691   if (V1IsAllZero && !V2IsAllZero) {
6692     CommuteVectorShuffleMask(MaskVals, 32);
6693     V1 = V2;
6694   }
6695   SmallVector<SDValue, 32> pshufbMask;
6696   for (unsigned i = 0; i != 32; i++) {
6697     int EltIdx = MaskVals[i];
6698     if (EltIdx < 0 || EltIdx >= 32)
6699       EltIdx = 0x80;
6700     else {
6701       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6702         // Cross lane is not allowed.
6703         return SDValue();
6704       EltIdx &= 0xf;
6705     }
6706     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6707   }
6708   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6709                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6710                                   MVT::v32i8, &pshufbMask[0], 32));
6711 }
6712
6713 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6714 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6715 /// done when every pair / quad of shuffle mask elements point to elements in
6716 /// the right sequence. e.g.
6717 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6718 static
6719 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6720                                  SelectionDAG &DAG) {
6721   MVT VT = SVOp->getSimpleValueType(0);
6722   SDLoc dl(SVOp);
6723   unsigned NumElems = VT.getVectorNumElements();
6724   MVT NewVT;
6725   unsigned Scale;
6726   switch (VT.SimpleTy) {
6727   default: llvm_unreachable("Unexpected!");
6728   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6729   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6730   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6731   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6732   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6733   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6734   }
6735
6736   SmallVector<int, 8> MaskVec;
6737   for (unsigned i = 0; i != NumElems; i += Scale) {
6738     int StartIdx = -1;
6739     for (unsigned j = 0; j != Scale; ++j) {
6740       int EltIdx = SVOp->getMaskElt(i+j);
6741       if (EltIdx < 0)
6742         continue;
6743       if (StartIdx < 0)
6744         StartIdx = (EltIdx / Scale);
6745       if (EltIdx != (int)(StartIdx*Scale + j))
6746         return SDValue();
6747     }
6748     MaskVec.push_back(StartIdx);
6749   }
6750
6751   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6752   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6753   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6754 }
6755
6756 /// getVZextMovL - Return a zero-extending vector move low node.
6757 ///
6758 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6759                             SDValue SrcOp, SelectionDAG &DAG,
6760                             const X86Subtarget *Subtarget, SDLoc dl) {
6761   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6762     LoadSDNode *LD = NULL;
6763     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6764       LD = dyn_cast<LoadSDNode>(SrcOp);
6765     if (!LD) {
6766       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6767       // instead.
6768       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6769       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6770           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6771           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6772           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6773         // PR2108
6774         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6775         return DAG.getNode(ISD::BITCAST, dl, VT,
6776                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6777                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6778                                                    OpVT,
6779                                                    SrcOp.getOperand(0)
6780                                                           .getOperand(0))));
6781       }
6782     }
6783   }
6784
6785   return DAG.getNode(ISD::BITCAST, dl, VT,
6786                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6787                                  DAG.getNode(ISD::BITCAST, dl,
6788                                              OpVT, SrcOp)));
6789 }
6790
6791 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6792 /// which could not be matched by any known target speficic shuffle
6793 static SDValue
6794 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6795
6796   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6797   if (NewOp.getNode())
6798     return NewOp;
6799
6800   MVT VT = SVOp->getSimpleValueType(0);
6801
6802   unsigned NumElems = VT.getVectorNumElements();
6803   unsigned NumLaneElems = NumElems / 2;
6804
6805   SDLoc dl(SVOp);
6806   MVT EltVT = VT.getVectorElementType();
6807   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6808   SDValue Output[2];
6809
6810   SmallVector<int, 16> Mask;
6811   for (unsigned l = 0; l < 2; ++l) {
6812     // Build a shuffle mask for the output, discovering on the fly which
6813     // input vectors to use as shuffle operands (recorded in InputUsed).
6814     // If building a suitable shuffle vector proves too hard, then bail
6815     // out with UseBuildVector set.
6816     bool UseBuildVector = false;
6817     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6818     unsigned LaneStart = l * NumLaneElems;
6819     for (unsigned i = 0; i != NumLaneElems; ++i) {
6820       // The mask element.  This indexes into the input.
6821       int Idx = SVOp->getMaskElt(i+LaneStart);
6822       if (Idx < 0) {
6823         // the mask element does not index into any input vector.
6824         Mask.push_back(-1);
6825         continue;
6826       }
6827
6828       // The input vector this mask element indexes into.
6829       int Input = Idx / NumLaneElems;
6830
6831       // Turn the index into an offset from the start of the input vector.
6832       Idx -= Input * NumLaneElems;
6833
6834       // Find or create a shuffle vector operand to hold this input.
6835       unsigned OpNo;
6836       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6837         if (InputUsed[OpNo] == Input)
6838           // This input vector is already an operand.
6839           break;
6840         if (InputUsed[OpNo] < 0) {
6841           // Create a new operand for this input vector.
6842           InputUsed[OpNo] = Input;
6843           break;
6844         }
6845       }
6846
6847       if (OpNo >= array_lengthof(InputUsed)) {
6848         // More than two input vectors used!  Give up on trying to create a
6849         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6850         UseBuildVector = true;
6851         break;
6852       }
6853
6854       // Add the mask index for the new shuffle vector.
6855       Mask.push_back(Idx + OpNo * NumLaneElems);
6856     }
6857
6858     if (UseBuildVector) {
6859       SmallVector<SDValue, 16> SVOps;
6860       for (unsigned i = 0; i != NumLaneElems; ++i) {
6861         // The mask element.  This indexes into the input.
6862         int Idx = SVOp->getMaskElt(i+LaneStart);
6863         if (Idx < 0) {
6864           SVOps.push_back(DAG.getUNDEF(EltVT));
6865           continue;
6866         }
6867
6868         // The input vector this mask element indexes into.
6869         int Input = Idx / NumElems;
6870
6871         // Turn the index into an offset from the start of the input vector.
6872         Idx -= Input * NumElems;
6873
6874         // Extract the vector element by hand.
6875         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6876                                     SVOp->getOperand(Input),
6877                                     DAG.getIntPtrConstant(Idx)));
6878       }
6879
6880       // Construct the output using a BUILD_VECTOR.
6881       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6882                               SVOps.size());
6883     } else if (InputUsed[0] < 0) {
6884       // No input vectors were used! The result is undefined.
6885       Output[l] = DAG.getUNDEF(NVT);
6886     } else {
6887       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6888                                         (InputUsed[0] % 2) * NumLaneElems,
6889                                         DAG, dl);
6890       // If only one input was used, use an undefined vector for the other.
6891       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6892         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6893                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6894       // At least one input vector was used. Create a new shuffle vector.
6895       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6896     }
6897
6898     Mask.clear();
6899   }
6900
6901   // Concatenate the result back
6902   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6903 }
6904
6905 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6906 /// 4 elements, and match them with several different shuffle types.
6907 static SDValue
6908 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6909   SDValue V1 = SVOp->getOperand(0);
6910   SDValue V2 = SVOp->getOperand(1);
6911   SDLoc dl(SVOp);
6912   MVT VT = SVOp->getSimpleValueType(0);
6913
6914   assert(VT.is128BitVector() && "Unsupported vector size");
6915
6916   std::pair<int, int> Locs[4];
6917   int Mask1[] = { -1, -1, -1, -1 };
6918   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6919
6920   unsigned NumHi = 0;
6921   unsigned NumLo = 0;
6922   for (unsigned i = 0; i != 4; ++i) {
6923     int Idx = PermMask[i];
6924     if (Idx < 0) {
6925       Locs[i] = std::make_pair(-1, -1);
6926     } else {
6927       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6928       if (Idx < 4) {
6929         Locs[i] = std::make_pair(0, NumLo);
6930         Mask1[NumLo] = Idx;
6931         NumLo++;
6932       } else {
6933         Locs[i] = std::make_pair(1, NumHi);
6934         if (2+NumHi < 4)
6935           Mask1[2+NumHi] = Idx;
6936         NumHi++;
6937       }
6938     }
6939   }
6940
6941   if (NumLo <= 2 && NumHi <= 2) {
6942     // If no more than two elements come from either vector. This can be
6943     // implemented with two shuffles. First shuffle gather the elements.
6944     // The second shuffle, which takes the first shuffle as both of its
6945     // vector operands, put the elements into the right order.
6946     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6947
6948     int Mask2[] = { -1, -1, -1, -1 };
6949
6950     for (unsigned i = 0; i != 4; ++i)
6951       if (Locs[i].first != -1) {
6952         unsigned Idx = (i < 2) ? 0 : 4;
6953         Idx += Locs[i].first * 2 + Locs[i].second;
6954         Mask2[i] = Idx;
6955       }
6956
6957     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6958   }
6959
6960   if (NumLo == 3 || NumHi == 3) {
6961     // Otherwise, we must have three elements from one vector, call it X, and
6962     // one element from the other, call it Y.  First, use a shufps to build an
6963     // intermediate vector with the one element from Y and the element from X
6964     // that will be in the same half in the final destination (the indexes don't
6965     // matter). Then, use a shufps to build the final vector, taking the half
6966     // containing the element from Y from the intermediate, and the other half
6967     // from X.
6968     if (NumHi == 3) {
6969       // Normalize it so the 3 elements come from V1.
6970       CommuteVectorShuffleMask(PermMask, 4);
6971       std::swap(V1, V2);
6972     }
6973
6974     // Find the element from V2.
6975     unsigned HiIndex;
6976     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6977       int Val = PermMask[HiIndex];
6978       if (Val < 0)
6979         continue;
6980       if (Val >= 4)
6981         break;
6982     }
6983
6984     Mask1[0] = PermMask[HiIndex];
6985     Mask1[1] = -1;
6986     Mask1[2] = PermMask[HiIndex^1];
6987     Mask1[3] = -1;
6988     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6989
6990     if (HiIndex >= 2) {
6991       Mask1[0] = PermMask[0];
6992       Mask1[1] = PermMask[1];
6993       Mask1[2] = HiIndex & 1 ? 6 : 4;
6994       Mask1[3] = HiIndex & 1 ? 4 : 6;
6995       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6996     }
6997
6998     Mask1[0] = HiIndex & 1 ? 2 : 0;
6999     Mask1[1] = HiIndex & 1 ? 0 : 2;
7000     Mask1[2] = PermMask[2];
7001     Mask1[3] = PermMask[3];
7002     if (Mask1[2] >= 0)
7003       Mask1[2] += 4;
7004     if (Mask1[3] >= 0)
7005       Mask1[3] += 4;
7006     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
7007   }
7008
7009   // Break it into (shuffle shuffle_hi, shuffle_lo).
7010   int LoMask[] = { -1, -1, -1, -1 };
7011   int HiMask[] = { -1, -1, -1, -1 };
7012
7013   int *MaskPtr = LoMask;
7014   unsigned MaskIdx = 0;
7015   unsigned LoIdx = 0;
7016   unsigned HiIdx = 2;
7017   for (unsigned i = 0; i != 4; ++i) {
7018     if (i == 2) {
7019       MaskPtr = HiMask;
7020       MaskIdx = 1;
7021       LoIdx = 0;
7022       HiIdx = 2;
7023     }
7024     int Idx = PermMask[i];
7025     if (Idx < 0) {
7026       Locs[i] = std::make_pair(-1, -1);
7027     } else if (Idx < 4) {
7028       Locs[i] = std::make_pair(MaskIdx, LoIdx);
7029       MaskPtr[LoIdx] = Idx;
7030       LoIdx++;
7031     } else {
7032       Locs[i] = std::make_pair(MaskIdx, HiIdx);
7033       MaskPtr[HiIdx] = Idx;
7034       HiIdx++;
7035     }
7036   }
7037
7038   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
7039   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
7040   int MaskOps[] = { -1, -1, -1, -1 };
7041   for (unsigned i = 0; i != 4; ++i)
7042     if (Locs[i].first != -1)
7043       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
7044   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
7045 }
7046
7047 static bool MayFoldVectorLoad(SDValue V) {
7048   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
7049     V = V.getOperand(0);
7050
7051   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7052     V = V.getOperand(0);
7053   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7054       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7055     // BUILD_VECTOR (load), undef
7056     V = V.getOperand(0);
7057
7058   return MayFoldLoad(V);
7059 }
7060
7061 static
7062 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
7063   MVT VT = Op.getSimpleValueType();
7064
7065   // Canonizalize to v2f64.
7066   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7067   return DAG.getNode(ISD::BITCAST, dl, VT,
7068                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7069                                           V1, DAG));
7070 }
7071
7072 static
7073 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
7074                         bool HasSSE2) {
7075   SDValue V1 = Op.getOperand(0);
7076   SDValue V2 = Op.getOperand(1);
7077   MVT VT = Op.getSimpleValueType();
7078
7079   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7080
7081   if (HasSSE2 && VT == MVT::v2f64)
7082     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7083
7084   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7085   return DAG.getNode(ISD::BITCAST, dl, VT,
7086                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7087                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7088                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7089 }
7090
7091 static
7092 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7093   SDValue V1 = Op.getOperand(0);
7094   SDValue V2 = Op.getOperand(1);
7095   MVT VT = Op.getSimpleValueType();
7096
7097   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7098          "unsupported shuffle type");
7099
7100   if (V2.getOpcode() == ISD::UNDEF)
7101     V2 = V1;
7102
7103   // v4i32 or v4f32
7104   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7105 }
7106
7107 static
7108 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7109   SDValue V1 = Op.getOperand(0);
7110   SDValue V2 = Op.getOperand(1);
7111   MVT VT = Op.getSimpleValueType();
7112   unsigned NumElems = VT.getVectorNumElements();
7113
7114   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7115   // operand of these instructions is only memory, so check if there's a
7116   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7117   // same masks.
7118   bool CanFoldLoad = false;
7119
7120   // Trivial case, when V2 comes from a load.
7121   if (MayFoldVectorLoad(V2))
7122     CanFoldLoad = true;
7123
7124   // When V1 is a load, it can be folded later into a store in isel, example:
7125   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7126   //    turns into:
7127   //  (MOVLPSmr addr:$src1, VR128:$src2)
7128   // So, recognize this potential and also use MOVLPS or MOVLPD
7129   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7130     CanFoldLoad = true;
7131
7132   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7133   if (CanFoldLoad) {
7134     if (HasSSE2 && NumElems == 2)
7135       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7136
7137     if (NumElems == 4)
7138       // If we don't care about the second element, proceed to use movss.
7139       if (SVOp->getMaskElt(1) != -1)
7140         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7141   }
7142
7143   // movl and movlp will both match v2i64, but v2i64 is never matched by
7144   // movl earlier because we make it strict to avoid messing with the movlp load
7145   // folding logic (see the code above getMOVLP call). Match it here then,
7146   // this is horrible, but will stay like this until we move all shuffle
7147   // matching to x86 specific nodes. Note that for the 1st condition all
7148   // types are matched with movsd.
7149   if (HasSSE2) {
7150     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7151     // as to remove this logic from here, as much as possible
7152     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7153       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7154     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7155   }
7156
7157   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7158
7159   // Invert the operand order and use SHUFPS to match it.
7160   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7161                               getShuffleSHUFImmediate(SVOp), DAG);
7162 }
7163
7164 // Reduce a vector shuffle to zext.
7165 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7166                                     SelectionDAG &DAG) {
7167   // PMOVZX is only available from SSE41.
7168   if (!Subtarget->hasSSE41())
7169     return SDValue();
7170
7171   MVT VT = Op.getSimpleValueType();
7172
7173   // Only AVX2 support 256-bit vector integer extending.
7174   if (!Subtarget->hasInt256() && VT.is256BitVector())
7175     return SDValue();
7176
7177   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7178   SDLoc DL(Op);
7179   SDValue V1 = Op.getOperand(0);
7180   SDValue V2 = Op.getOperand(1);
7181   unsigned NumElems = VT.getVectorNumElements();
7182
7183   // Extending is an unary operation and the element type of the source vector
7184   // won't be equal to or larger than i64.
7185   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7186       VT.getVectorElementType() == MVT::i64)
7187     return SDValue();
7188
7189   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7190   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7191   while ((1U << Shift) < NumElems) {
7192     if (SVOp->getMaskElt(1U << Shift) == 1)
7193       break;
7194     Shift += 1;
7195     // The maximal ratio is 8, i.e. from i8 to i64.
7196     if (Shift > 3)
7197       return SDValue();
7198   }
7199
7200   // Check the shuffle mask.
7201   unsigned Mask = (1U << Shift) - 1;
7202   for (unsigned i = 0; i != NumElems; ++i) {
7203     int EltIdx = SVOp->getMaskElt(i);
7204     if ((i & Mask) != 0 && EltIdx != -1)
7205       return SDValue();
7206     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7207       return SDValue();
7208   }
7209
7210   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7211   MVT NeVT = MVT::getIntegerVT(NBits);
7212   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7213
7214   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7215     return SDValue();
7216
7217   // Simplify the operand as it's prepared to be fed into shuffle.
7218   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7219   if (V1.getOpcode() == ISD::BITCAST &&
7220       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7221       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7222       V1.getOperand(0).getOperand(0)
7223         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7224     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7225     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7226     ConstantSDNode *CIdx =
7227       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7228     // If it's foldable, i.e. normal load with single use, we will let code
7229     // selection to fold it. Otherwise, we will short the conversion sequence.
7230     if (CIdx && CIdx->getZExtValue() == 0 &&
7231         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7232       MVT FullVT = V.getSimpleValueType();
7233       MVT V1VT = V1.getSimpleValueType();
7234       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7235         // The "ext_vec_elt" node is wider than the result node.
7236         // In this case we should extract subvector from V.
7237         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7238         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7239         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7240                                         FullVT.getVectorNumElements()/Ratio);
7241         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7242                         DAG.getIntPtrConstant(0));
7243       }
7244       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7245     }
7246   }
7247
7248   return DAG.getNode(ISD::BITCAST, DL, VT,
7249                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7250 }
7251
7252 static SDValue
7253 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7254                        SelectionDAG &DAG) {
7255   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7256   MVT VT = Op.getSimpleValueType();
7257   SDLoc dl(Op);
7258   SDValue V1 = Op.getOperand(0);
7259   SDValue V2 = Op.getOperand(1);
7260
7261   if (isZeroShuffle(SVOp))
7262     return getZeroVector(VT, Subtarget, DAG, dl);
7263
7264   // Handle splat operations
7265   if (SVOp->isSplat()) {
7266     // Use vbroadcast whenever the splat comes from a foldable load
7267     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7268     if (Broadcast.getNode())
7269       return Broadcast;
7270   }
7271
7272   // Check integer expanding shuffles.
7273   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7274   if (NewOp.getNode())
7275     return NewOp;
7276
7277   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7278   // do it!
7279   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7280       VT == MVT::v16i16 || VT == MVT::v32i8) {
7281     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7282     if (NewOp.getNode())
7283       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7284   } else if ((VT == MVT::v4i32 ||
7285              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7286     // FIXME: Figure out a cleaner way to do this.
7287     // Try to make use of movq to zero out the top part.
7288     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7289       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7290       if (NewOp.getNode()) {
7291         MVT NewVT = NewOp.getSimpleValueType();
7292         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7293                                NewVT, true, false))
7294           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7295                               DAG, Subtarget, dl);
7296       }
7297     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7298       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7299       if (NewOp.getNode()) {
7300         MVT NewVT = NewOp.getSimpleValueType();
7301         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7302           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7303                               DAG, Subtarget, dl);
7304       }
7305     }
7306   }
7307   return SDValue();
7308 }
7309
7310 SDValue
7311 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7312   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7313   SDValue V1 = Op.getOperand(0);
7314   SDValue V2 = Op.getOperand(1);
7315   MVT VT = Op.getSimpleValueType();
7316   SDLoc dl(Op);
7317   unsigned NumElems = VT.getVectorNumElements();
7318   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7319   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7320   bool V1IsSplat = false;
7321   bool V2IsSplat = false;
7322   bool HasSSE2 = Subtarget->hasSSE2();
7323   bool HasFp256    = Subtarget->hasFp256();
7324   bool HasInt256   = Subtarget->hasInt256();
7325   MachineFunction &MF = DAG.getMachineFunction();
7326   bool OptForSize = MF.getFunction()->getAttributes().
7327     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7328
7329   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7330
7331   if (V1IsUndef && V2IsUndef)
7332     return DAG.getUNDEF(VT);
7333
7334   // When we create a shuffle node we put the UNDEF node to second operand,
7335   // but in some cases the first operand may be transformed to UNDEF.
7336   // In this case we should just commute the node.
7337   if (V1IsUndef)
7338     return CommuteVectorShuffle(SVOp, DAG);
7339
7340   // Vector shuffle lowering takes 3 steps:
7341   //
7342   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7343   //    narrowing and commutation of operands should be handled.
7344   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7345   //    shuffle nodes.
7346   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7347   //    so the shuffle can be broken into other shuffles and the legalizer can
7348   //    try the lowering again.
7349   //
7350   // The general idea is that no vector_shuffle operation should be left to
7351   // be matched during isel, all of them must be converted to a target specific
7352   // node here.
7353
7354   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7355   // narrowing and commutation of operands should be handled. The actual code
7356   // doesn't include all of those, work in progress...
7357   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7358   if (NewOp.getNode())
7359     return NewOp;
7360
7361   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7362
7363   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7364   // unpckh_undef). Only use pshufd if speed is more important than size.
7365   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7366     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7367   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7368     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7369
7370   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7371       V2IsUndef && MayFoldVectorLoad(V1))
7372     return getMOVDDup(Op, dl, V1, DAG);
7373
7374   if (isMOVHLPS_v_undef_Mask(M, VT))
7375     return getMOVHighToLow(Op, dl, DAG);
7376
7377   // Use to match splats
7378   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7379       (VT == MVT::v2f64 || VT == MVT::v2i64))
7380     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7381
7382   if (isPSHUFDMask(M, VT)) {
7383     // The actual implementation will match the mask in the if above and then
7384     // during isel it can match several different instructions, not only pshufd
7385     // as its name says, sad but true, emulate the behavior for now...
7386     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7387       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7388
7389     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7390
7391     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7392       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7393
7394     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7395       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7396                                   DAG);
7397
7398     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7399                                 TargetMask, DAG);
7400   }
7401
7402   if (isPALIGNRMask(M, VT, Subtarget))
7403     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7404                                 getShufflePALIGNRImmediate(SVOp),
7405                                 DAG);
7406
7407   // Check if this can be converted into a logical shift.
7408   bool isLeft = false;
7409   unsigned ShAmt = 0;
7410   SDValue ShVal;
7411   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7412   if (isShift && ShVal.hasOneUse()) {
7413     // If the shifted value has multiple uses, it may be cheaper to use
7414     // v_set0 + movlhps or movhlps, etc.
7415     MVT EltVT = VT.getVectorElementType();
7416     ShAmt *= EltVT.getSizeInBits();
7417     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7418   }
7419
7420   if (isMOVLMask(M, VT)) {
7421     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7422       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7423     if (!isMOVLPMask(M, VT)) {
7424       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7425         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7426
7427       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7428         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7429     }
7430   }
7431
7432   // FIXME: fold these into legal mask.
7433   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7434     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7435
7436   if (isMOVHLPSMask(M, VT))
7437     return getMOVHighToLow(Op, dl, DAG);
7438
7439   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7440     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7441
7442   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7443     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7444
7445   if (isMOVLPMask(M, VT))
7446     return getMOVLP(Op, dl, DAG, HasSSE2);
7447
7448   if (ShouldXformToMOVHLPS(M, VT) ||
7449       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7450     return CommuteVectorShuffle(SVOp, DAG);
7451
7452   if (isShift) {
7453     // No better options. Use a vshldq / vsrldq.
7454     MVT EltVT = VT.getVectorElementType();
7455     ShAmt *= EltVT.getSizeInBits();
7456     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7457   }
7458
7459   bool Commuted = false;
7460   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7461   // 1,1,1,1 -> v8i16 though.
7462   V1IsSplat = isSplatVector(V1.getNode());
7463   V2IsSplat = isSplatVector(V2.getNode());
7464
7465   // Canonicalize the splat or undef, if present, to be on the RHS.
7466   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7467     CommuteVectorShuffleMask(M, NumElems);
7468     std::swap(V1, V2);
7469     std::swap(V1IsSplat, V2IsSplat);
7470     Commuted = true;
7471   }
7472
7473   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7474     // Shuffling low element of v1 into undef, just return v1.
7475     if (V2IsUndef)
7476       return V1;
7477     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7478     // the instruction selector will not match, so get a canonical MOVL with
7479     // swapped operands to undo the commute.
7480     return getMOVL(DAG, dl, VT, V2, V1);
7481   }
7482
7483   if (isUNPCKLMask(M, VT, HasInt256))
7484     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7485
7486   if (isUNPCKHMask(M, VT, HasInt256))
7487     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7488
7489   if (V2IsSplat) {
7490     // Normalize mask so all entries that point to V2 points to its first
7491     // element then try to match unpck{h|l} again. If match, return a
7492     // new vector_shuffle with the corrected mask.p
7493     SmallVector<int, 8> NewMask(M.begin(), M.end());
7494     NormalizeMask(NewMask, NumElems);
7495     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7496       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7497     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7498       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7499   }
7500
7501   if (Commuted) {
7502     // Commute is back and try unpck* again.
7503     // FIXME: this seems wrong.
7504     CommuteVectorShuffleMask(M, NumElems);
7505     std::swap(V1, V2);
7506     std::swap(V1IsSplat, V2IsSplat);
7507     Commuted = false;
7508
7509     if (isUNPCKLMask(M, VT, HasInt256))
7510       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7511
7512     if (isUNPCKHMask(M, VT, HasInt256))
7513       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7514   }
7515
7516   // Normalize the node to match x86 shuffle ops if needed
7517   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7518     return CommuteVectorShuffle(SVOp, DAG);
7519
7520   // The checks below are all present in isShuffleMaskLegal, but they are
7521   // inlined here right now to enable us to directly emit target specific
7522   // nodes, and remove one by one until they don't return Op anymore.
7523
7524   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7525       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7526     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7527       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7528   }
7529
7530   if (isPSHUFHWMask(M, VT, HasInt256))
7531     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7532                                 getShufflePSHUFHWImmediate(SVOp),
7533                                 DAG);
7534
7535   if (isPSHUFLWMask(M, VT, HasInt256))
7536     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7537                                 getShufflePSHUFLWImmediate(SVOp),
7538                                 DAG);
7539
7540   if (isSHUFPMask(M, VT))
7541     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7542                                 getShuffleSHUFImmediate(SVOp), DAG);
7543
7544   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7545     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7546   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7547     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7548
7549   //===--------------------------------------------------------------------===//
7550   // Generate target specific nodes for 128 or 256-bit shuffles only
7551   // supported in the AVX instruction set.
7552   //
7553
7554   // Handle VMOVDDUPY permutations
7555   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7556     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7557
7558   // Handle VPERMILPS/D* permutations
7559   if (isVPERMILPMask(M, VT)) {
7560     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7561       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7562                                   getShuffleSHUFImmediate(SVOp), DAG);
7563     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7564                                 getShuffleSHUFImmediate(SVOp), DAG);
7565   }
7566
7567   // Handle VPERM2F128/VPERM2I128 permutations
7568   if (isVPERM2X128Mask(M, VT, HasFp256))
7569     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7570                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7571
7572   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7573   if (BlendOp.getNode())
7574     return BlendOp;
7575
7576   unsigned Imm8;
7577   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7578     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7579
7580   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7581       VT.is512BitVector()) {
7582     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7583     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7584     SmallVector<SDValue, 16> permclMask;
7585     for (unsigned i = 0; i != NumElems; ++i) {
7586       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7587     }
7588
7589     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7590                                 &permclMask[0], NumElems);
7591     if (V2IsUndef)
7592       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7593       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7594                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7595     return DAG.getNode(X86ISD::VPERMV3, dl, VT, V1,
7596                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V2);
7597   }
7598
7599   //===--------------------------------------------------------------------===//
7600   // Since no target specific shuffle was selected for this generic one,
7601   // lower it into other known shuffles. FIXME: this isn't true yet, but
7602   // this is the plan.
7603   //
7604
7605   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7606   if (VT == MVT::v8i16) {
7607     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7608     if (NewOp.getNode())
7609       return NewOp;
7610   }
7611
7612   if (VT == MVT::v16i8) {
7613     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7614     if (NewOp.getNode())
7615       return NewOp;
7616   }
7617
7618   if (VT == MVT::v32i8) {
7619     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7620     if (NewOp.getNode())
7621       return NewOp;
7622   }
7623
7624   // Handle all 128-bit wide vectors with 4 elements, and match them with
7625   // several different shuffle types.
7626   if (NumElems == 4 && VT.is128BitVector())
7627     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7628
7629   // Handle general 256-bit shuffles
7630   if (VT.is256BitVector())
7631     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7632
7633   return SDValue();
7634 }
7635
7636 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7637   MVT VT = Op.getSimpleValueType();
7638   SDLoc dl(Op);
7639
7640   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7641     return SDValue();
7642
7643   if (VT.getSizeInBits() == 8) {
7644     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7645                                   Op.getOperand(0), Op.getOperand(1));
7646     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7647                                   DAG.getValueType(VT));
7648     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7649   }
7650
7651   if (VT.getSizeInBits() == 16) {
7652     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7653     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7654     if (Idx == 0)
7655       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7656                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7657                                      DAG.getNode(ISD::BITCAST, dl,
7658                                                  MVT::v4i32,
7659                                                  Op.getOperand(0)),
7660                                      Op.getOperand(1)));
7661     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7662                                   Op.getOperand(0), Op.getOperand(1));
7663     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7664                                   DAG.getValueType(VT));
7665     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7666   }
7667
7668   if (VT == MVT::f32) {
7669     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7670     // the result back to FR32 register. It's only worth matching if the
7671     // result has a single use which is a store or a bitcast to i32.  And in
7672     // the case of a store, it's not worth it if the index is a constant 0,
7673     // because a MOVSSmr can be used instead, which is smaller and faster.
7674     if (!Op.hasOneUse())
7675       return SDValue();
7676     SDNode *User = *Op.getNode()->use_begin();
7677     if ((User->getOpcode() != ISD::STORE ||
7678          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7679           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7680         (User->getOpcode() != ISD::BITCAST ||
7681          User->getValueType(0) != MVT::i32))
7682       return SDValue();
7683     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7684                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7685                                               Op.getOperand(0)),
7686                                               Op.getOperand(1));
7687     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7688   }
7689
7690   if (VT == MVT::i32 || VT == MVT::i64) {
7691     // ExtractPS/pextrq works with constant index.
7692     if (isa<ConstantSDNode>(Op.getOperand(1)))
7693       return Op;
7694   }
7695   return SDValue();
7696 }
7697
7698 /// Extract one bit from mask vector, like v16i1 or v8i1.
7699 /// AVX-512 feature.
7700 SDValue
7701 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
7702   SDValue Vec = Op.getOperand(0);
7703   SDLoc dl(Vec);
7704   MVT VecVT = Vec.getSimpleValueType();
7705   SDValue Idx = Op.getOperand(1);
7706   MVT EltVT = Op.getSimpleValueType();
7707
7708   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
7709
7710   // variable index can't be handled in mask registers,
7711   // extend vector to VR512
7712   if (!isa<ConstantSDNode>(Idx)) {
7713     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
7714     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
7715     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
7716                               ExtVT.getVectorElementType(), Ext, Idx);
7717     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
7718   }
7719
7720   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7721   const TargetRegisterClass* rc = getRegClassFor(VecVT);
7722   unsigned MaxSift = rc->getSize()*8 - 1;
7723   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
7724                     DAG.getConstant(MaxSift - IdxVal, MVT::i8));
7725   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
7726                     DAG.getConstant(MaxSift, MVT::i8));
7727   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
7728                        DAG.getIntPtrConstant(0));
7729 }
7730
7731 SDValue
7732 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7733                                            SelectionDAG &DAG) const {
7734   SDLoc dl(Op);
7735   SDValue Vec = Op.getOperand(0);
7736   MVT VecVT = Vec.getSimpleValueType();
7737   SDValue Idx = Op.getOperand(1);
7738
7739   if (Op.getSimpleValueType() == MVT::i1)
7740     return ExtractBitFromMaskVector(Op, DAG);
7741
7742   if (!isa<ConstantSDNode>(Idx)) {
7743     if (VecVT.is512BitVector() ||
7744         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7745          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7746
7747       MVT MaskEltVT =
7748         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7749       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7750                                     MaskEltVT.getSizeInBits());
7751
7752       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7753       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7754                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7755                                 Idx, DAG.getConstant(0, getPointerTy()));
7756       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7757       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7758                         Perm, DAG.getConstant(0, getPointerTy()));
7759     }
7760     return SDValue();
7761   }
7762
7763   // If this is a 256-bit vector result, first extract the 128-bit vector and
7764   // then extract the element from the 128-bit vector.
7765   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7766
7767     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7768     // Get the 128-bit vector.
7769     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7770     MVT EltVT = VecVT.getVectorElementType();
7771
7772     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7773
7774     //if (IdxVal >= NumElems/2)
7775     //  IdxVal -= NumElems/2;
7776     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7777     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7778                        DAG.getConstant(IdxVal, MVT::i32));
7779   }
7780
7781   assert(VecVT.is128BitVector() && "Unexpected vector length");
7782
7783   if (Subtarget->hasSSE41()) {
7784     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7785     if (Res.getNode())
7786       return Res;
7787   }
7788
7789   MVT VT = Op.getSimpleValueType();
7790   // TODO: handle v16i8.
7791   if (VT.getSizeInBits() == 16) {
7792     SDValue Vec = Op.getOperand(0);
7793     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7794     if (Idx == 0)
7795       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7796                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7797                                      DAG.getNode(ISD::BITCAST, dl,
7798                                                  MVT::v4i32, Vec),
7799                                      Op.getOperand(1)));
7800     // Transform it so it match pextrw which produces a 32-bit result.
7801     MVT EltVT = MVT::i32;
7802     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7803                                   Op.getOperand(0), Op.getOperand(1));
7804     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7805                                   DAG.getValueType(VT));
7806     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7807   }
7808
7809   if (VT.getSizeInBits() == 32) {
7810     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7811     if (Idx == 0)
7812       return Op;
7813
7814     // SHUFPS the element to the lowest double word, then movss.
7815     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7816     MVT VVT = Op.getOperand(0).getSimpleValueType();
7817     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7818                                        DAG.getUNDEF(VVT), Mask);
7819     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7820                        DAG.getIntPtrConstant(0));
7821   }
7822
7823   if (VT.getSizeInBits() == 64) {
7824     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7825     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7826     //        to match extract_elt for f64.
7827     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7828     if (Idx == 0)
7829       return Op;
7830
7831     // UNPCKHPD the element to the lowest double word, then movsd.
7832     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7833     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7834     int Mask[2] = { 1, -1 };
7835     MVT VVT = Op.getOperand(0).getSimpleValueType();
7836     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7837                                        DAG.getUNDEF(VVT), Mask);
7838     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7839                        DAG.getIntPtrConstant(0));
7840   }
7841
7842   return SDValue();
7843 }
7844
7845 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7846   MVT VT = Op.getSimpleValueType();
7847   MVT EltVT = VT.getVectorElementType();
7848   SDLoc dl(Op);
7849
7850   SDValue N0 = Op.getOperand(0);
7851   SDValue N1 = Op.getOperand(1);
7852   SDValue N2 = Op.getOperand(2);
7853
7854   if (!VT.is128BitVector())
7855     return SDValue();
7856
7857   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7858       isa<ConstantSDNode>(N2)) {
7859     unsigned Opc;
7860     if (VT == MVT::v8i16)
7861       Opc = X86ISD::PINSRW;
7862     else if (VT == MVT::v16i8)
7863       Opc = X86ISD::PINSRB;
7864     else
7865       Opc = X86ISD::PINSRB;
7866
7867     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7868     // argument.
7869     if (N1.getValueType() != MVT::i32)
7870       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7871     if (N2.getValueType() != MVT::i32)
7872       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7873     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7874   }
7875
7876   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7877     // Bits [7:6] of the constant are the source select.  This will always be
7878     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7879     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7880     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7881     // Bits [5:4] of the constant are the destination select.  This is the
7882     //  value of the incoming immediate.
7883     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7884     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7885     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7886     // Create this as a scalar to vector..
7887     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7888     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7889   }
7890
7891   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7892     // PINSR* works with constant index.
7893     return Op;
7894   }
7895   return SDValue();
7896 }
7897
7898 SDValue
7899 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7900   MVT VT = Op.getSimpleValueType();
7901   MVT EltVT = VT.getVectorElementType();
7902
7903   SDLoc dl(Op);
7904   SDValue N0 = Op.getOperand(0);
7905   SDValue N1 = Op.getOperand(1);
7906   SDValue N2 = Op.getOperand(2);
7907
7908   // If this is a 256-bit vector result, first extract the 128-bit vector,
7909   // insert the element into the extracted half and then place it back.
7910   if (VT.is256BitVector() || VT.is512BitVector()) {
7911     if (!isa<ConstantSDNode>(N2))
7912       return SDValue();
7913
7914     // Get the desired 128-bit vector half.
7915     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7916     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7917
7918     // Insert the element into the desired half.
7919     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7920     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7921
7922     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7923                     DAG.getConstant(IdxIn128, MVT::i32));
7924
7925     // Insert the changed part back to the 256-bit vector
7926     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7927   }
7928
7929   if (Subtarget->hasSSE41())
7930     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7931
7932   if (EltVT == MVT::i8)
7933     return SDValue();
7934
7935   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7936     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7937     // as its second argument.
7938     if (N1.getValueType() != MVT::i32)
7939       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7940     if (N2.getValueType() != MVT::i32)
7941       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7942     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7943   }
7944   return SDValue();
7945 }
7946
7947 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7948   SDLoc dl(Op);
7949   MVT OpVT = Op.getSimpleValueType();
7950
7951   // If this is a 256-bit vector result, first insert into a 128-bit
7952   // vector and then insert into the 256-bit vector.
7953   if (!OpVT.is128BitVector()) {
7954     // Insert into a 128-bit vector.
7955     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7956     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7957                                  OpVT.getVectorNumElements() / SizeFactor);
7958
7959     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7960
7961     // Insert the 128-bit vector.
7962     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7963   }
7964
7965   if (OpVT == MVT::v1i64 &&
7966       Op.getOperand(0).getValueType() == MVT::i64)
7967     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7968
7969   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7970   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7971   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7972                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7973 }
7974
7975 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7976 // a simple subregister reference or explicit instructions to grab
7977 // upper bits of a vector.
7978 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7979                                       SelectionDAG &DAG) {
7980   SDLoc dl(Op);
7981   SDValue In =  Op.getOperand(0);
7982   SDValue Idx = Op.getOperand(1);
7983   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7984   MVT ResVT   = Op.getSimpleValueType();
7985   MVT InVT    = In.getSimpleValueType();
7986
7987   if (Subtarget->hasFp256()) {
7988     if (ResVT.is128BitVector() &&
7989         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7990         isa<ConstantSDNode>(Idx)) {
7991       return Extract128BitVector(In, IdxVal, DAG, dl);
7992     }
7993     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7994         isa<ConstantSDNode>(Idx)) {
7995       return Extract256BitVector(In, IdxVal, DAG, dl);
7996     }
7997   }
7998   return SDValue();
7999 }
8000
8001 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
8002 // simple superregister reference or explicit instructions to insert
8003 // the upper bits of a vector.
8004 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8005                                      SelectionDAG &DAG) {
8006   if (Subtarget->hasFp256()) {
8007     SDLoc dl(Op.getNode());
8008     SDValue Vec = Op.getNode()->getOperand(0);
8009     SDValue SubVec = Op.getNode()->getOperand(1);
8010     SDValue Idx = Op.getNode()->getOperand(2);
8011
8012     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
8013          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
8014         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
8015         isa<ConstantSDNode>(Idx)) {
8016       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8017       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
8018     }
8019
8020     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
8021         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
8022         isa<ConstantSDNode>(Idx)) {
8023       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8024       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
8025     }
8026   }
8027   return SDValue();
8028 }
8029
8030 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
8031 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
8032 // one of the above mentioned nodes. It has to be wrapped because otherwise
8033 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
8034 // be used to form addressing mode. These wrapped nodes will be selected
8035 // into MOV32ri.
8036 SDValue
8037 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
8038   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
8039
8040   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8041   // global base reg.
8042   unsigned char OpFlag = 0;
8043   unsigned WrapperKind = X86ISD::Wrapper;
8044   CodeModel::Model M = getTargetMachine().getCodeModel();
8045
8046   if (Subtarget->isPICStyleRIPRel() &&
8047       (M == CodeModel::Small || M == CodeModel::Kernel))
8048     WrapperKind = X86ISD::WrapperRIP;
8049   else if (Subtarget->isPICStyleGOT())
8050     OpFlag = X86II::MO_GOTOFF;
8051   else if (Subtarget->isPICStyleStubPIC())
8052     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8053
8054   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
8055                                              CP->getAlignment(),
8056                                              CP->getOffset(), OpFlag);
8057   SDLoc DL(CP);
8058   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8059   // With PIC, the address is actually $g + Offset.
8060   if (OpFlag) {
8061     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8062                          DAG.getNode(X86ISD::GlobalBaseReg,
8063                                      SDLoc(), getPointerTy()),
8064                          Result);
8065   }
8066
8067   return Result;
8068 }
8069
8070 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
8071   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
8072
8073   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8074   // global base reg.
8075   unsigned char OpFlag = 0;
8076   unsigned WrapperKind = X86ISD::Wrapper;
8077   CodeModel::Model M = getTargetMachine().getCodeModel();
8078
8079   if (Subtarget->isPICStyleRIPRel() &&
8080       (M == CodeModel::Small || M == CodeModel::Kernel))
8081     WrapperKind = X86ISD::WrapperRIP;
8082   else if (Subtarget->isPICStyleGOT())
8083     OpFlag = X86II::MO_GOTOFF;
8084   else if (Subtarget->isPICStyleStubPIC())
8085     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8086
8087   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
8088                                           OpFlag);
8089   SDLoc DL(JT);
8090   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8091
8092   // With PIC, the address is actually $g + Offset.
8093   if (OpFlag)
8094     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8095                          DAG.getNode(X86ISD::GlobalBaseReg,
8096                                      SDLoc(), getPointerTy()),
8097                          Result);
8098
8099   return Result;
8100 }
8101
8102 SDValue
8103 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
8104   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
8105
8106   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8107   // global base reg.
8108   unsigned char OpFlag = 0;
8109   unsigned WrapperKind = X86ISD::Wrapper;
8110   CodeModel::Model M = getTargetMachine().getCodeModel();
8111
8112   if (Subtarget->isPICStyleRIPRel() &&
8113       (M == CodeModel::Small || M == CodeModel::Kernel)) {
8114     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8115       OpFlag = X86II::MO_GOTPCREL;
8116     WrapperKind = X86ISD::WrapperRIP;
8117   } else if (Subtarget->isPICStyleGOT()) {
8118     OpFlag = X86II::MO_GOT;
8119   } else if (Subtarget->isPICStyleStubPIC()) {
8120     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8121   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8122     OpFlag = X86II::MO_DARWIN_NONLAZY;
8123   }
8124
8125   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8126
8127   SDLoc DL(Op);
8128   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8129
8130   // With PIC, the address is actually $g + Offset.
8131   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8132       !Subtarget->is64Bit()) {
8133     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8134                          DAG.getNode(X86ISD::GlobalBaseReg,
8135                                      SDLoc(), getPointerTy()),
8136                          Result);
8137   }
8138
8139   // For symbols that require a load from a stub to get the address, emit the
8140   // load.
8141   if (isGlobalStubReference(OpFlag))
8142     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8143                          MachinePointerInfo::getGOT(), false, false, false, 0);
8144
8145   return Result;
8146 }
8147
8148 SDValue
8149 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8150   // Create the TargetBlockAddressAddress node.
8151   unsigned char OpFlags =
8152     Subtarget->ClassifyBlockAddressReference();
8153   CodeModel::Model M = getTargetMachine().getCodeModel();
8154   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8155   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8156   SDLoc dl(Op);
8157   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8158                                              OpFlags);
8159
8160   if (Subtarget->isPICStyleRIPRel() &&
8161       (M == CodeModel::Small || M == CodeModel::Kernel))
8162     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8163   else
8164     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8165
8166   // With PIC, the address is actually $g + Offset.
8167   if (isGlobalRelativeToPICBase(OpFlags)) {
8168     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8169                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8170                          Result);
8171   }
8172
8173   return Result;
8174 }
8175
8176 SDValue
8177 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8178                                       int64_t Offset, SelectionDAG &DAG) const {
8179   // Create the TargetGlobalAddress node, folding in the constant
8180   // offset if it is legal.
8181   unsigned char OpFlags =
8182     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8183   CodeModel::Model M = getTargetMachine().getCodeModel();
8184   SDValue Result;
8185   if (OpFlags == X86II::MO_NO_FLAG &&
8186       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8187     // A direct static reference to a global.
8188     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8189     Offset = 0;
8190   } else {
8191     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8192   }
8193
8194   if (Subtarget->isPICStyleRIPRel() &&
8195       (M == CodeModel::Small || M == CodeModel::Kernel))
8196     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8197   else
8198     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8199
8200   // With PIC, the address is actually $g + Offset.
8201   if (isGlobalRelativeToPICBase(OpFlags)) {
8202     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8203                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8204                          Result);
8205   }
8206
8207   // For globals that require a load from a stub to get the address, emit the
8208   // load.
8209   if (isGlobalStubReference(OpFlags))
8210     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8211                          MachinePointerInfo::getGOT(), false, false, false, 0);
8212
8213   // If there was a non-zero offset that we didn't fold, create an explicit
8214   // addition for it.
8215   if (Offset != 0)
8216     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8217                          DAG.getConstant(Offset, getPointerTy()));
8218
8219   return Result;
8220 }
8221
8222 SDValue
8223 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8224   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8225   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8226   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8227 }
8228
8229 static SDValue
8230 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8231            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8232            unsigned char OperandFlags, bool LocalDynamic = false) {
8233   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8234   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8235   SDLoc dl(GA);
8236   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8237                                            GA->getValueType(0),
8238                                            GA->getOffset(),
8239                                            OperandFlags);
8240
8241   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8242                                            : X86ISD::TLSADDR;
8243
8244   if (InFlag) {
8245     SDValue Ops[] = { Chain,  TGA, *InFlag };
8246     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8247   } else {
8248     SDValue Ops[]  = { Chain, TGA };
8249     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8250   }
8251
8252   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8253   MFI->setAdjustsStack(true);
8254
8255   SDValue Flag = Chain.getValue(1);
8256   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8257 }
8258
8259 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8260 static SDValue
8261 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8262                                 const EVT PtrVT) {
8263   SDValue InFlag;
8264   SDLoc dl(GA);  // ? function entry point might be better
8265   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8266                                    DAG.getNode(X86ISD::GlobalBaseReg,
8267                                                SDLoc(), PtrVT), InFlag);
8268   InFlag = Chain.getValue(1);
8269
8270   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8271 }
8272
8273 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8274 static SDValue
8275 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8276                                 const EVT PtrVT) {
8277   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8278                     X86::RAX, X86II::MO_TLSGD);
8279 }
8280
8281 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8282                                            SelectionDAG &DAG,
8283                                            const EVT PtrVT,
8284                                            bool is64Bit) {
8285   SDLoc dl(GA);
8286
8287   // Get the start address of the TLS block for this module.
8288   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8289       .getInfo<X86MachineFunctionInfo>();
8290   MFI->incNumLocalDynamicTLSAccesses();
8291
8292   SDValue Base;
8293   if (is64Bit) {
8294     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8295                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8296   } else {
8297     SDValue InFlag;
8298     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8299         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8300     InFlag = Chain.getValue(1);
8301     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8302                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8303   }
8304
8305   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8306   // of Base.
8307
8308   // Build x@dtpoff.
8309   unsigned char OperandFlags = X86II::MO_DTPOFF;
8310   unsigned WrapperKind = X86ISD::Wrapper;
8311   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8312                                            GA->getValueType(0),
8313                                            GA->getOffset(), OperandFlags);
8314   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8315
8316   // Add x@dtpoff with the base.
8317   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8318 }
8319
8320 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8321 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8322                                    const EVT PtrVT, TLSModel::Model model,
8323                                    bool is64Bit, bool isPIC) {
8324   SDLoc dl(GA);
8325
8326   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8327   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8328                                                          is64Bit ? 257 : 256));
8329
8330   SDValue ThreadPointer =
8331       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8332                   MachinePointerInfo(Ptr), false, false, false, 0);
8333
8334   unsigned char OperandFlags = 0;
8335   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8336   // initialexec.
8337   unsigned WrapperKind = X86ISD::Wrapper;
8338   if (model == TLSModel::LocalExec) {
8339     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8340   } else if (model == TLSModel::InitialExec) {
8341     if (is64Bit) {
8342       OperandFlags = X86II::MO_GOTTPOFF;
8343       WrapperKind = X86ISD::WrapperRIP;
8344     } else {
8345       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8346     }
8347   } else {
8348     llvm_unreachable("Unexpected model");
8349   }
8350
8351   // emit "addl x@ntpoff,%eax" (local exec)
8352   // or "addl x@indntpoff,%eax" (initial exec)
8353   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8354   SDValue TGA =
8355       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8356                                  GA->getOffset(), OperandFlags);
8357   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8358
8359   if (model == TLSModel::InitialExec) {
8360     if (isPIC && !is64Bit) {
8361       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8362                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8363                            Offset);
8364     }
8365
8366     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8367                          MachinePointerInfo::getGOT(), false, false, false, 0);
8368   }
8369
8370   // The address of the thread local variable is the add of the thread
8371   // pointer with the offset of the variable.
8372   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8373 }
8374
8375 SDValue
8376 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8377
8378   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8379   const GlobalValue *GV = GA->getGlobal();
8380
8381   if (Subtarget->isTargetELF()) {
8382     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8383
8384     switch (model) {
8385       case TLSModel::GeneralDynamic:
8386         if (Subtarget->is64Bit())
8387           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8388         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8389       case TLSModel::LocalDynamic:
8390         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8391                                            Subtarget->is64Bit());
8392       case TLSModel::InitialExec:
8393       case TLSModel::LocalExec:
8394         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8395                                    Subtarget->is64Bit(),
8396                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8397     }
8398     llvm_unreachable("Unknown TLS model.");
8399   }
8400
8401   if (Subtarget->isTargetDarwin()) {
8402     // Darwin only has one model of TLS.  Lower to that.
8403     unsigned char OpFlag = 0;
8404     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8405                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8406
8407     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8408     // global base reg.
8409     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8410                   !Subtarget->is64Bit();
8411     if (PIC32)
8412       OpFlag = X86II::MO_TLVP_PIC_BASE;
8413     else
8414       OpFlag = X86II::MO_TLVP;
8415     SDLoc DL(Op);
8416     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8417                                                 GA->getValueType(0),
8418                                                 GA->getOffset(), OpFlag);
8419     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8420
8421     // With PIC32, the address is actually $g + Offset.
8422     if (PIC32)
8423       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8424                            DAG.getNode(X86ISD::GlobalBaseReg,
8425                                        SDLoc(), getPointerTy()),
8426                            Offset);
8427
8428     // Lowering the machine isd will make sure everything is in the right
8429     // location.
8430     SDValue Chain = DAG.getEntryNode();
8431     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8432     SDValue Args[] = { Chain, Offset };
8433     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8434
8435     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8436     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8437     MFI->setAdjustsStack(true);
8438
8439     // And our return value (tls address) is in the standard call return value
8440     // location.
8441     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8442     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8443                               Chain.getValue(1));
8444   }
8445
8446   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8447     // Just use the implicit TLS architecture
8448     // Need to generate someting similar to:
8449     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8450     //                                  ; from TEB
8451     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8452     //   mov     rcx, qword [rdx+rcx*8]
8453     //   mov     eax, .tls$:tlsvar
8454     //   [rax+rcx] contains the address
8455     // Windows 64bit: gs:0x58
8456     // Windows 32bit: fs:__tls_array
8457
8458     // If GV is an alias then use the aliasee for determining
8459     // thread-localness.
8460     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8461       GV = GA->resolveAliasedGlobal(false);
8462     SDLoc dl(GA);
8463     SDValue Chain = DAG.getEntryNode();
8464
8465     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8466     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8467     // use its literal value of 0x2C.
8468     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8469                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8470                                                              256)
8471                                         : Type::getInt32PtrTy(*DAG.getContext(),
8472                                                               257));
8473
8474     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8475       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8476         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8477
8478     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8479                                         MachinePointerInfo(Ptr),
8480                                         false, false, false, 0);
8481
8482     // Load the _tls_index variable
8483     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8484     if (Subtarget->is64Bit())
8485       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8486                            IDX, MachinePointerInfo(), MVT::i32,
8487                            false, false, 0);
8488     else
8489       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8490                         false, false, false, 0);
8491
8492     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8493                                     getPointerTy());
8494     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8495
8496     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8497     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8498                       false, false, false, 0);
8499
8500     // Get the offset of start of .tls section
8501     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8502                                              GA->getValueType(0),
8503                                              GA->getOffset(), X86II::MO_SECREL);
8504     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8505
8506     // The address of the thread local variable is the add of the thread
8507     // pointer with the offset of the variable.
8508     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8509   }
8510
8511   llvm_unreachable("TLS not implemented for this target.");
8512 }
8513
8514 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8515 /// and take a 2 x i32 value to shift plus a shift amount.
8516 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
8517   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8518   MVT VT = Op.getSimpleValueType();
8519   unsigned VTBits = VT.getSizeInBits();
8520   SDLoc dl(Op);
8521   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8522   SDValue ShOpLo = Op.getOperand(0);
8523   SDValue ShOpHi = Op.getOperand(1);
8524   SDValue ShAmt  = Op.getOperand(2);
8525   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
8526   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
8527   // during isel.
8528   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8529                                   DAG.getConstant(VTBits - 1, MVT::i8));
8530   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8531                                      DAG.getConstant(VTBits - 1, MVT::i8))
8532                        : DAG.getConstant(0, VT);
8533
8534   SDValue Tmp2, Tmp3;
8535   if (Op.getOpcode() == ISD::SHL_PARTS) {
8536     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8537     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
8538   } else {
8539     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8540     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
8541   }
8542
8543   // If the shift amount is larger or equal than the width of a part we can't
8544   // rely on the results of shld/shrd. Insert a test and select the appropriate
8545   // values for large shift amounts.
8546   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8547                                 DAG.getConstant(VTBits, MVT::i8));
8548   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8549                              AndNode, DAG.getConstant(0, MVT::i8));
8550
8551   SDValue Hi, Lo;
8552   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8553   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8554   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8555
8556   if (Op.getOpcode() == ISD::SHL_PARTS) {
8557     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8558     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8559   } else {
8560     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8561     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8562   }
8563
8564   SDValue Ops[2] = { Lo, Hi };
8565   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8566 }
8567
8568 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8569                                            SelectionDAG &DAG) const {
8570   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
8571
8572   if (SrcVT.isVector())
8573     return SDValue();
8574
8575   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
8576          "Unknown SINT_TO_FP to lower!");
8577
8578   // These are really Legal; return the operand so the caller accepts it as
8579   // Legal.
8580   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8581     return Op;
8582   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8583       Subtarget->is64Bit()) {
8584     return Op;
8585   }
8586
8587   SDLoc dl(Op);
8588   unsigned Size = SrcVT.getSizeInBits()/8;
8589   MachineFunction &MF = DAG.getMachineFunction();
8590   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8591   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8592   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8593                                StackSlot,
8594                                MachinePointerInfo::getFixedStack(SSFI),
8595                                false, false, 0);
8596   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8597 }
8598
8599 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8600                                      SDValue StackSlot,
8601                                      SelectionDAG &DAG) const {
8602   // Build the FILD
8603   SDLoc DL(Op);
8604   SDVTList Tys;
8605   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8606   if (useSSE)
8607     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8608   else
8609     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8610
8611   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8612
8613   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8614   MachineMemOperand *MMO;
8615   if (FI) {
8616     int SSFI = FI->getIndex();
8617     MMO =
8618       DAG.getMachineFunction()
8619       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8620                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8621   } else {
8622     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8623     StackSlot = StackSlot.getOperand(1);
8624   }
8625   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8626   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8627                                            X86ISD::FILD, DL,
8628                                            Tys, Ops, array_lengthof(Ops),
8629                                            SrcVT, MMO);
8630
8631   if (useSSE) {
8632     Chain = Result.getValue(1);
8633     SDValue InFlag = Result.getValue(2);
8634
8635     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8636     // shouldn't be necessary except that RFP cannot be live across
8637     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8638     MachineFunction &MF = DAG.getMachineFunction();
8639     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8640     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8641     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8642     Tys = DAG.getVTList(MVT::Other);
8643     SDValue Ops[] = {
8644       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8645     };
8646     MachineMemOperand *MMO =
8647       DAG.getMachineFunction()
8648       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8649                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8650
8651     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8652                                     Ops, array_lengthof(Ops),
8653                                     Op.getValueType(), MMO);
8654     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8655                          MachinePointerInfo::getFixedStack(SSFI),
8656                          false, false, false, 0);
8657   }
8658
8659   return Result;
8660 }
8661
8662 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8663 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8664                                                SelectionDAG &DAG) const {
8665   // This algorithm is not obvious. Here it is what we're trying to output:
8666   /*
8667      movq       %rax,  %xmm0
8668      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8669      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8670      #ifdef __SSE3__
8671        haddpd   %xmm0, %xmm0
8672      #else
8673        pshufd   $0x4e, %xmm0, %xmm1
8674        addpd    %xmm1, %xmm0
8675      #endif
8676   */
8677
8678   SDLoc dl(Op);
8679   LLVMContext *Context = DAG.getContext();
8680
8681   // Build some magic constants.
8682   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8683   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8684   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8685
8686   SmallVector<Constant*,2> CV1;
8687   CV1.push_back(
8688     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8689                                       APInt(64, 0x4330000000000000ULL))));
8690   CV1.push_back(
8691     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8692                                       APInt(64, 0x4530000000000000ULL))));
8693   Constant *C1 = ConstantVector::get(CV1);
8694   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8695
8696   // Load the 64-bit value into an XMM register.
8697   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8698                             Op.getOperand(0));
8699   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8700                               MachinePointerInfo::getConstantPool(),
8701                               false, false, false, 16);
8702   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8703                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8704                               CLod0);
8705
8706   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8707                               MachinePointerInfo::getConstantPool(),
8708                               false, false, false, 16);
8709   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8710   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8711   SDValue Result;
8712
8713   if (Subtarget->hasSSE3()) {
8714     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8715     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8716   } else {
8717     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8718     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8719                                            S2F, 0x4E, DAG);
8720     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8721                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8722                          Sub);
8723   }
8724
8725   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8726                      DAG.getIntPtrConstant(0));
8727 }
8728
8729 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8730 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8731                                                SelectionDAG &DAG) const {
8732   SDLoc dl(Op);
8733   // FP constant to bias correct the final result.
8734   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8735                                    MVT::f64);
8736
8737   // Load the 32-bit value into an XMM register.
8738   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8739                              Op.getOperand(0));
8740
8741   // Zero out the upper parts of the register.
8742   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8743
8744   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8745                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8746                      DAG.getIntPtrConstant(0));
8747
8748   // Or the load with the bias.
8749   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8750                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8751                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8752                                                    MVT::v2f64, Load)),
8753                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8754                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8755                                                    MVT::v2f64, Bias)));
8756   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8757                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8758                    DAG.getIntPtrConstant(0));
8759
8760   // Subtract the bias.
8761   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8762
8763   // Handle final rounding.
8764   EVT DestVT = Op.getValueType();
8765
8766   if (DestVT.bitsLT(MVT::f64))
8767     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8768                        DAG.getIntPtrConstant(0));
8769   if (DestVT.bitsGT(MVT::f64))
8770     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8771
8772   // Handle final rounding.
8773   return Sub;
8774 }
8775
8776 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8777                                                SelectionDAG &DAG) const {
8778   SDValue N0 = Op.getOperand(0);
8779   MVT SVT = N0.getSimpleValueType();
8780   SDLoc dl(Op);
8781
8782   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8783           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8784          "Custom UINT_TO_FP is not supported!");
8785
8786   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
8787   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8788                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8789 }
8790
8791 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8792                                            SelectionDAG &DAG) const {
8793   SDValue N0 = Op.getOperand(0);
8794   SDLoc dl(Op);
8795
8796   if (Op.getValueType().isVector())
8797     return lowerUINT_TO_FP_vec(Op, DAG);
8798
8799   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8800   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8801   // the optimization here.
8802   if (DAG.SignBitIsZero(N0))
8803     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8804
8805   MVT SrcVT = N0.getSimpleValueType();
8806   MVT DstVT = Op.getSimpleValueType();
8807   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8808     return LowerUINT_TO_FP_i64(Op, DAG);
8809   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8810     return LowerUINT_TO_FP_i32(Op, DAG);
8811   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8812     return SDValue();
8813
8814   // Make a 64-bit buffer, and use it to build an FILD.
8815   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8816   if (SrcVT == MVT::i32) {
8817     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8818     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8819                                      getPointerTy(), StackSlot, WordOff);
8820     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8821                                   StackSlot, MachinePointerInfo(),
8822                                   false, false, 0);
8823     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8824                                   OffsetSlot, MachinePointerInfo(),
8825                                   false, false, 0);
8826     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8827     return Fild;
8828   }
8829
8830   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8831   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8832                                StackSlot, MachinePointerInfo(),
8833                                false, false, 0);
8834   // For i64 source, we need to add the appropriate power of 2 if the input
8835   // was negative.  This is the same as the optimization in
8836   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8837   // we must be careful to do the computation in x87 extended precision, not
8838   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8839   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8840   MachineMemOperand *MMO =
8841     DAG.getMachineFunction()
8842     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8843                           MachineMemOperand::MOLoad, 8, 8);
8844
8845   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8846   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8847   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8848                                          array_lengthof(Ops), MVT::i64, MMO);
8849
8850   APInt FF(32, 0x5F800000ULL);
8851
8852   // Check whether the sign bit is set.
8853   SDValue SignSet = DAG.getSetCC(dl,
8854                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8855                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8856                                  ISD::SETLT);
8857
8858   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8859   SDValue FudgePtr = DAG.getConstantPool(
8860                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8861                                          getPointerTy());
8862
8863   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8864   SDValue Zero = DAG.getIntPtrConstant(0);
8865   SDValue Four = DAG.getIntPtrConstant(4);
8866   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8867                                Zero, Four);
8868   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8869
8870   // Load the value out, extending it from f32 to f80.
8871   // FIXME: Avoid the extend by constructing the right constant pool?
8872   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8873                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8874                                  MVT::f32, false, false, 4);
8875   // Extend everything to 80 bits to force it to be done on x87.
8876   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8877   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8878 }
8879
8880 std::pair<SDValue,SDValue>
8881 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8882                                     bool IsSigned, bool IsReplace) const {
8883   SDLoc DL(Op);
8884
8885   EVT DstTy = Op.getValueType();
8886
8887   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8888     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8889     DstTy = MVT::i64;
8890   }
8891
8892   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8893          DstTy.getSimpleVT() >= MVT::i16 &&
8894          "Unknown FP_TO_INT to lower!");
8895
8896   // These are really Legal.
8897   if (DstTy == MVT::i32 &&
8898       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8899     return std::make_pair(SDValue(), SDValue());
8900   if (Subtarget->is64Bit() &&
8901       DstTy == MVT::i64 &&
8902       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8903     return std::make_pair(SDValue(), SDValue());
8904
8905   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8906   // stack slot, or into the FTOL runtime function.
8907   MachineFunction &MF = DAG.getMachineFunction();
8908   unsigned MemSize = DstTy.getSizeInBits()/8;
8909   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8910   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8911
8912   unsigned Opc;
8913   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8914     Opc = X86ISD::WIN_FTOL;
8915   else
8916     switch (DstTy.getSimpleVT().SimpleTy) {
8917     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8918     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8919     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8920     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8921     }
8922
8923   SDValue Chain = DAG.getEntryNode();
8924   SDValue Value = Op.getOperand(0);
8925   EVT TheVT = Op.getOperand(0).getValueType();
8926   // FIXME This causes a redundant load/store if the SSE-class value is already
8927   // in memory, such as if it is on the callstack.
8928   if (isScalarFPTypeInSSEReg(TheVT)) {
8929     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8930     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8931                          MachinePointerInfo::getFixedStack(SSFI),
8932                          false, false, 0);
8933     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8934     SDValue Ops[] = {
8935       Chain, StackSlot, DAG.getValueType(TheVT)
8936     };
8937
8938     MachineMemOperand *MMO =
8939       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8940                               MachineMemOperand::MOLoad, MemSize, MemSize);
8941     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8942                                     array_lengthof(Ops), DstTy, MMO);
8943     Chain = Value.getValue(1);
8944     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8945     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8946   }
8947
8948   MachineMemOperand *MMO =
8949     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8950                             MachineMemOperand::MOStore, MemSize, MemSize);
8951
8952   if (Opc != X86ISD::WIN_FTOL) {
8953     // Build the FP_TO_INT*_IN_MEM
8954     SDValue Ops[] = { Chain, Value, StackSlot };
8955     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8956                                            Ops, array_lengthof(Ops), DstTy,
8957                                            MMO);
8958     return std::make_pair(FIST, StackSlot);
8959   } else {
8960     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8961       DAG.getVTList(MVT::Other, MVT::Glue),
8962       Chain, Value);
8963     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8964       MVT::i32, ftol.getValue(1));
8965     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8966       MVT::i32, eax.getValue(2));
8967     SDValue Ops[] = { eax, edx };
8968     SDValue pair = IsReplace
8969       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8970       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8971     return std::make_pair(pair, SDValue());
8972   }
8973 }
8974
8975 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8976                               const X86Subtarget *Subtarget) {
8977   MVT VT = Op->getSimpleValueType(0);
8978   SDValue In = Op->getOperand(0);
8979   MVT InVT = In.getSimpleValueType();
8980   SDLoc dl(Op);
8981
8982   // Optimize vectors in AVX mode:
8983   //
8984   //   v8i16 -> v8i32
8985   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8986   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8987   //   Concat upper and lower parts.
8988   //
8989   //   v4i32 -> v4i64
8990   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8991   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8992   //   Concat upper and lower parts.
8993   //
8994
8995   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8996       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8997       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8998     return SDValue();
8999
9000   if (Subtarget->hasInt256())
9001     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
9002
9003   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
9004   SDValue Undef = DAG.getUNDEF(InVT);
9005   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
9006   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9007   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9008
9009   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
9010                              VT.getVectorNumElements()/2);
9011
9012   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
9013   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
9014
9015   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
9016 }
9017
9018 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
9019                                         SelectionDAG &DAG) {
9020   MVT VT = Op->getSimpleValueType(0);
9021   SDValue In = Op->getOperand(0);
9022   MVT InVT = In.getSimpleValueType();
9023   SDLoc DL(Op);
9024   unsigned int NumElts = VT.getVectorNumElements();
9025   if (NumElts != 8 && NumElts != 16)
9026     return SDValue();
9027
9028   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
9029     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
9030
9031   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
9032   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9033   // Now we have only mask extension
9034   assert(InVT.getVectorElementType() == MVT::i1);
9035   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
9036   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9037   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
9038   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9039   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9040                            MachinePointerInfo::getConstantPool(),
9041                            false, false, false, Alignment);
9042
9043   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
9044   if (VT.is512BitVector())
9045     return Brcst;
9046   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
9047 }
9048
9049 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9050                                SelectionDAG &DAG) {
9051   if (Subtarget->hasFp256()) {
9052     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9053     if (Res.getNode())
9054       return Res;
9055   }
9056
9057   return SDValue();
9058 }
9059
9060 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9061                                 SelectionDAG &DAG) {
9062   SDLoc DL(Op);
9063   MVT VT = Op.getSimpleValueType();
9064   SDValue In = Op.getOperand(0);
9065   MVT SVT = In.getSimpleValueType();
9066
9067   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
9068     return LowerZERO_EXTEND_AVX512(Op, DAG);
9069
9070   if (Subtarget->hasFp256()) {
9071     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9072     if (Res.getNode())
9073       return Res;
9074   }
9075
9076   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
9077          VT.getVectorNumElements() != SVT.getVectorNumElements());
9078   return SDValue();
9079 }
9080
9081 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
9082   SDLoc DL(Op);
9083   MVT VT = Op.getSimpleValueType();
9084   SDValue In = Op.getOperand(0);
9085   MVT InVT = In.getSimpleValueType();
9086
9087   if (VT == MVT::i1) {
9088     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
9089            "Invalid scalar TRUNCATE operation");
9090     if (InVT == MVT::i32)
9091       return SDValue();
9092     if (InVT.getSizeInBits() == 64)
9093       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
9094     else if (InVT.getSizeInBits() < 32)
9095       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
9096     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
9097   }
9098   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
9099          "Invalid TRUNCATE operation");
9100
9101   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9102     if (VT.getVectorElementType().getSizeInBits() >=8)
9103       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9104
9105     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9106     unsigned NumElts = InVT.getVectorNumElements();
9107     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9108     if (InVT.getSizeInBits() < 512) {
9109       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9110       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9111       InVT = ExtVT;
9112     }
9113     
9114     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9115     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9116     SDValue CP = DAG.getConstantPool(C, getPointerTy());
9117     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9118     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9119                            MachinePointerInfo::getConstantPool(),
9120                            false, false, false, Alignment);
9121     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9122     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9123     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9124   }
9125
9126   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9127     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9128     if (Subtarget->hasInt256()) {
9129       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9130       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9131       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9132                                 ShufMask);
9133       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9134                          DAG.getIntPtrConstant(0));
9135     }
9136
9137     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9138     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9139                                DAG.getIntPtrConstant(0));
9140     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9141                                DAG.getIntPtrConstant(2));
9142
9143     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9144     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9145
9146     // The PSHUFD mask:
9147     static const int ShufMask1[] = {0, 2, 0, 0};
9148     SDValue Undef = DAG.getUNDEF(VT);
9149     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9150     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9151
9152     // The MOVLHPS mask:
9153     static const int ShufMask2[] = {0, 1, 4, 5};
9154     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9155   }
9156
9157   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9158     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9159     if (Subtarget->hasInt256()) {
9160       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9161
9162       SmallVector<SDValue,32> pshufbMask;
9163       for (unsigned i = 0; i < 2; ++i) {
9164         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9165         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9166         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9167         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9168         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9169         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9170         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9171         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9172         for (unsigned j = 0; j < 8; ++j)
9173           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9174       }
9175       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9176                                &pshufbMask[0], 32);
9177       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9178       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9179
9180       static const int ShufMask[] = {0,  2,  -1,  -1};
9181       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9182                                 &ShufMask[0]);
9183       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9184                        DAG.getIntPtrConstant(0));
9185       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9186     }
9187
9188     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9189                                DAG.getIntPtrConstant(0));
9190
9191     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9192                                DAG.getIntPtrConstant(4));
9193
9194     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9195     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9196
9197     // The PSHUFB mask:
9198     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9199                                    -1, -1, -1, -1, -1, -1, -1, -1};
9200
9201     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9202     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9203     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9204
9205     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9206     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9207
9208     // The MOVLHPS Mask:
9209     static const int ShufMask2[] = {0, 1, 4, 5};
9210     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9211     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9212   }
9213
9214   // Handle truncation of V256 to V128 using shuffles.
9215   if (!VT.is128BitVector() || !InVT.is256BitVector())
9216     return SDValue();
9217
9218   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9219
9220   unsigned NumElems = VT.getVectorNumElements();
9221   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
9222
9223   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9224   // Prepare truncation shuffle mask
9225   for (unsigned i = 0; i != NumElems; ++i)
9226     MaskVec[i] = i * 2;
9227   SDValue V = DAG.getVectorShuffle(NVT, DL,
9228                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9229                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9230   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9231                      DAG.getIntPtrConstant(0));
9232 }
9233
9234 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9235                                            SelectionDAG &DAG) const {
9236   MVT VT = Op.getSimpleValueType();
9237   if (VT.isVector()) {
9238     if (VT == MVT::v8i16)
9239       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9240                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9241                                      MVT::v8i32, Op.getOperand(0)));
9242     return SDValue();
9243   }
9244
9245   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9246     /*IsSigned=*/ true, /*IsReplace=*/ false);
9247   SDValue FIST = Vals.first, StackSlot = Vals.second;
9248   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9249   if (FIST.getNode() == 0) return Op;
9250
9251   if (StackSlot.getNode())
9252     // Load the result.
9253     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9254                        FIST, StackSlot, MachinePointerInfo(),
9255                        false, false, false, 0);
9256
9257   // The node is the result.
9258   return FIST;
9259 }
9260
9261 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9262                                            SelectionDAG &DAG) const {
9263   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9264     /*IsSigned=*/ false, /*IsReplace=*/ false);
9265   SDValue FIST = Vals.first, StackSlot = Vals.second;
9266   assert(FIST.getNode() && "Unexpected failure");
9267
9268   if (StackSlot.getNode())
9269     // Load the result.
9270     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9271                        FIST, StackSlot, MachinePointerInfo(),
9272                        false, false, false, 0);
9273
9274   // The node is the result.
9275   return FIST;
9276 }
9277
9278 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9279   SDLoc DL(Op);
9280   MVT VT = Op.getSimpleValueType();
9281   SDValue In = Op.getOperand(0);
9282   MVT SVT = In.getSimpleValueType();
9283
9284   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9285
9286   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9287                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9288                                  In, DAG.getUNDEF(SVT)));
9289 }
9290
9291 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
9292   LLVMContext *Context = DAG.getContext();
9293   SDLoc dl(Op);
9294   MVT VT = Op.getSimpleValueType();
9295   MVT EltVT = VT;
9296   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9297   if (VT.isVector()) {
9298     EltVT = VT.getVectorElementType();
9299     NumElts = VT.getVectorNumElements();
9300   }
9301   Constant *C;
9302   if (EltVT == MVT::f64)
9303     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9304                                           APInt(64, ~(1ULL << 63))));
9305   else
9306     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9307                                           APInt(32, ~(1U << 31))));
9308   C = ConstantVector::getSplat(NumElts, C);
9309   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9310   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9311   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9312   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9313                              MachinePointerInfo::getConstantPool(),
9314                              false, false, false, Alignment);
9315   if (VT.isVector()) {
9316     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9317     return DAG.getNode(ISD::BITCAST, dl, VT,
9318                        DAG.getNode(ISD::AND, dl, ANDVT,
9319                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9320                                                Op.getOperand(0)),
9321                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9322   }
9323   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9324 }
9325
9326 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
9327   LLVMContext *Context = DAG.getContext();
9328   SDLoc dl(Op);
9329   MVT VT = Op.getSimpleValueType();
9330   MVT EltVT = VT;
9331   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9332   if (VT.isVector()) {
9333     EltVT = VT.getVectorElementType();
9334     NumElts = VT.getVectorNumElements();
9335   }
9336   Constant *C;
9337   if (EltVT == MVT::f64)
9338     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9339                                           APInt(64, 1ULL << 63)));
9340   else
9341     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9342                                           APInt(32, 1U << 31)));
9343   C = ConstantVector::getSplat(NumElts, C);
9344   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9345   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9346   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9347   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9348                              MachinePointerInfo::getConstantPool(),
9349                              false, false, false, Alignment);
9350   if (VT.isVector()) {
9351     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9352     return DAG.getNode(ISD::BITCAST, dl, VT,
9353                        DAG.getNode(ISD::XOR, dl, XORVT,
9354                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9355                                                Op.getOperand(0)),
9356                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9357   }
9358
9359   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9360 }
9361
9362 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
9363   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9364   LLVMContext *Context = DAG.getContext();
9365   SDValue Op0 = Op.getOperand(0);
9366   SDValue Op1 = Op.getOperand(1);
9367   SDLoc dl(Op);
9368   MVT VT = Op.getSimpleValueType();
9369   MVT SrcVT = Op1.getSimpleValueType();
9370
9371   // If second operand is smaller, extend it first.
9372   if (SrcVT.bitsLT(VT)) {
9373     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9374     SrcVT = VT;
9375   }
9376   // And if it is bigger, shrink it first.
9377   if (SrcVT.bitsGT(VT)) {
9378     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9379     SrcVT = VT;
9380   }
9381
9382   // At this point the operands and the result should have the same
9383   // type, and that won't be f80 since that is not custom lowered.
9384
9385   // First get the sign bit of second operand.
9386   SmallVector<Constant*,4> CV;
9387   if (SrcVT == MVT::f64) {
9388     const fltSemantics &Sem = APFloat::IEEEdouble;
9389     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9390     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9391   } else {
9392     const fltSemantics &Sem = APFloat::IEEEsingle;
9393     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9394     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9395     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9396     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9397   }
9398   Constant *C = ConstantVector::get(CV);
9399   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9400   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9401                               MachinePointerInfo::getConstantPool(),
9402                               false, false, false, 16);
9403   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9404
9405   // Shift sign bit right or left if the two operands have different types.
9406   if (SrcVT.bitsGT(VT)) {
9407     // Op0 is MVT::f32, Op1 is MVT::f64.
9408     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9409     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9410                           DAG.getConstant(32, MVT::i32));
9411     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9412     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9413                           DAG.getIntPtrConstant(0));
9414   }
9415
9416   // Clear first operand sign bit.
9417   CV.clear();
9418   if (VT == MVT::f64) {
9419     const fltSemantics &Sem = APFloat::IEEEdouble;
9420     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9421                                                    APInt(64, ~(1ULL << 63)))));
9422     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9423   } else {
9424     const fltSemantics &Sem = APFloat::IEEEsingle;
9425     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9426                                                    APInt(32, ~(1U << 31)))));
9427     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9428     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9429     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9430   }
9431   C = ConstantVector::get(CV);
9432   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9433   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9434                               MachinePointerInfo::getConstantPool(),
9435                               false, false, false, 16);
9436   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9437
9438   // Or the value with the sign bit.
9439   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9440 }
9441
9442 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9443   SDValue N0 = Op.getOperand(0);
9444   SDLoc dl(Op);
9445   MVT VT = Op.getSimpleValueType();
9446
9447   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9448   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9449                                   DAG.getConstant(1, VT));
9450   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9451 }
9452
9453 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9454 //
9455 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9456                                       SelectionDAG &DAG) {
9457   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9458
9459   if (!Subtarget->hasSSE41())
9460     return SDValue();
9461
9462   if (!Op->hasOneUse())
9463     return SDValue();
9464
9465   SDNode *N = Op.getNode();
9466   SDLoc DL(N);
9467
9468   SmallVector<SDValue, 8> Opnds;
9469   DenseMap<SDValue, unsigned> VecInMap;
9470   EVT VT = MVT::Other;
9471
9472   // Recognize a special case where a vector is casted into wide integer to
9473   // test all 0s.
9474   Opnds.push_back(N->getOperand(0));
9475   Opnds.push_back(N->getOperand(1));
9476
9477   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9478     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9479     // BFS traverse all OR'd operands.
9480     if (I->getOpcode() == ISD::OR) {
9481       Opnds.push_back(I->getOperand(0));
9482       Opnds.push_back(I->getOperand(1));
9483       // Re-evaluate the number of nodes to be traversed.
9484       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9485       continue;
9486     }
9487
9488     // Quit if a non-EXTRACT_VECTOR_ELT
9489     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9490       return SDValue();
9491
9492     // Quit if without a constant index.
9493     SDValue Idx = I->getOperand(1);
9494     if (!isa<ConstantSDNode>(Idx))
9495       return SDValue();
9496
9497     SDValue ExtractedFromVec = I->getOperand(0);
9498     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9499     if (M == VecInMap.end()) {
9500       VT = ExtractedFromVec.getValueType();
9501       // Quit if not 128/256-bit vector.
9502       if (!VT.is128BitVector() && !VT.is256BitVector())
9503         return SDValue();
9504       // Quit if not the same type.
9505       if (VecInMap.begin() != VecInMap.end() &&
9506           VT != VecInMap.begin()->first.getValueType())
9507         return SDValue();
9508       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9509     }
9510     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9511   }
9512
9513   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9514          "Not extracted from 128-/256-bit vector.");
9515
9516   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9517   SmallVector<SDValue, 8> VecIns;
9518
9519   for (DenseMap<SDValue, unsigned>::const_iterator
9520         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9521     // Quit if not all elements are used.
9522     if (I->second != FullMask)
9523       return SDValue();
9524     VecIns.push_back(I->first);
9525   }
9526
9527   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9528
9529   // Cast all vectors into TestVT for PTEST.
9530   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9531     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9532
9533   // If more than one full vectors are evaluated, OR them first before PTEST.
9534   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9535     // Each iteration will OR 2 nodes and append the result until there is only
9536     // 1 node left, i.e. the final OR'd value of all vectors.
9537     SDValue LHS = VecIns[Slot];
9538     SDValue RHS = VecIns[Slot + 1];
9539     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9540   }
9541
9542   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9543                      VecIns.back(), VecIns.back());
9544 }
9545
9546 /// Emit nodes that will be selected as "test Op0,Op0", or something
9547 /// equivalent.
9548 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9549                                     SelectionDAG &DAG) const {
9550   SDLoc dl(Op);
9551
9552   if (Op.getValueType() == MVT::i1)
9553     // KORTEST instruction should be selected
9554     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9555                        DAG.getConstant(0, Op.getValueType()));
9556
9557   // CF and OF aren't always set the way we want. Determine which
9558   // of these we need.
9559   bool NeedCF = false;
9560   bool NeedOF = false;
9561   switch (X86CC) {
9562   default: break;
9563   case X86::COND_A: case X86::COND_AE:
9564   case X86::COND_B: case X86::COND_BE:
9565     NeedCF = true;
9566     break;
9567   case X86::COND_G: case X86::COND_GE:
9568   case X86::COND_L: case X86::COND_LE:
9569   case X86::COND_O: case X86::COND_NO:
9570     NeedOF = true;
9571     break;
9572   }
9573   // See if we can use the EFLAGS value from the operand instead of
9574   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9575   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9576   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
9577     // Emit a CMP with 0, which is the TEST pattern.
9578     //if (Op.getValueType() == MVT::i1)
9579     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
9580     //                     DAG.getConstant(0, MVT::i1));
9581     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9582                        DAG.getConstant(0, Op.getValueType()));
9583   }
9584   unsigned Opcode = 0;
9585   unsigned NumOperands = 0;
9586
9587   // Truncate operations may prevent the merge of the SETCC instruction
9588   // and the arithmetic instruction before it. Attempt to truncate the operands
9589   // of the arithmetic instruction and use a reduced bit-width instruction.
9590   bool NeedTruncation = false;
9591   SDValue ArithOp = Op;
9592   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9593     SDValue Arith = Op->getOperand(0);
9594     // Both the trunc and the arithmetic op need to have one user each.
9595     if (Arith->hasOneUse())
9596       switch (Arith.getOpcode()) {
9597         default: break;
9598         case ISD::ADD:
9599         case ISD::SUB:
9600         case ISD::AND:
9601         case ISD::OR:
9602         case ISD::XOR: {
9603           NeedTruncation = true;
9604           ArithOp = Arith;
9605         }
9606       }
9607   }
9608
9609   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9610   // which may be the result of a CAST.  We use the variable 'Op', which is the
9611   // non-casted variable when we check for possible users.
9612   switch (ArithOp.getOpcode()) {
9613   case ISD::ADD:
9614     // Due to an isel shortcoming, be conservative if this add is likely to be
9615     // selected as part of a load-modify-store instruction. When the root node
9616     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9617     // uses of other nodes in the match, such as the ADD in this case. This
9618     // leads to the ADD being left around and reselected, with the result being
9619     // two adds in the output.  Alas, even if none our users are stores, that
9620     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9621     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9622     // climbing the DAG back to the root, and it doesn't seem to be worth the
9623     // effort.
9624     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9625          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9626       if (UI->getOpcode() != ISD::CopyToReg &&
9627           UI->getOpcode() != ISD::SETCC &&
9628           UI->getOpcode() != ISD::STORE)
9629         goto default_case;
9630
9631     if (ConstantSDNode *C =
9632         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9633       // An add of one will be selected as an INC.
9634       if (C->getAPIntValue() == 1) {
9635         Opcode = X86ISD::INC;
9636         NumOperands = 1;
9637         break;
9638       }
9639
9640       // An add of negative one (subtract of one) will be selected as a DEC.
9641       if (C->getAPIntValue().isAllOnesValue()) {
9642         Opcode = X86ISD::DEC;
9643         NumOperands = 1;
9644         break;
9645       }
9646     }
9647
9648     // Otherwise use a regular EFLAGS-setting add.
9649     Opcode = X86ISD::ADD;
9650     NumOperands = 2;
9651     break;
9652   case ISD::AND: {
9653     // If the primary and result isn't used, don't bother using X86ISD::AND,
9654     // because a TEST instruction will be better.
9655     bool NonFlagUse = false;
9656     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9657            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9658       SDNode *User = *UI;
9659       unsigned UOpNo = UI.getOperandNo();
9660       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9661         // Look pass truncate.
9662         UOpNo = User->use_begin().getOperandNo();
9663         User = *User->use_begin();
9664       }
9665
9666       if (User->getOpcode() != ISD::BRCOND &&
9667           User->getOpcode() != ISD::SETCC &&
9668           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9669         NonFlagUse = true;
9670         break;
9671       }
9672     }
9673
9674     if (!NonFlagUse)
9675       break;
9676   }
9677     // FALL THROUGH
9678   case ISD::SUB:
9679   case ISD::OR:
9680   case ISD::XOR:
9681     // Due to the ISEL shortcoming noted above, be conservative if this op is
9682     // likely to be selected as part of a load-modify-store instruction.
9683     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9684            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9685       if (UI->getOpcode() == ISD::STORE)
9686         goto default_case;
9687
9688     // Otherwise use a regular EFLAGS-setting instruction.
9689     switch (ArithOp.getOpcode()) {
9690     default: llvm_unreachable("unexpected operator!");
9691     case ISD::SUB: Opcode = X86ISD::SUB; break;
9692     case ISD::XOR: Opcode = X86ISD::XOR; break;
9693     case ISD::AND: Opcode = X86ISD::AND; break;
9694     case ISD::OR: {
9695       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9696         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9697         if (EFLAGS.getNode())
9698           return EFLAGS;
9699       }
9700       Opcode = X86ISD::OR;
9701       break;
9702     }
9703     }
9704
9705     NumOperands = 2;
9706     break;
9707   case X86ISD::ADD:
9708   case X86ISD::SUB:
9709   case X86ISD::INC:
9710   case X86ISD::DEC:
9711   case X86ISD::OR:
9712   case X86ISD::XOR:
9713   case X86ISD::AND:
9714     return SDValue(Op.getNode(), 1);
9715   default:
9716   default_case:
9717     break;
9718   }
9719
9720   // If we found that truncation is beneficial, perform the truncation and
9721   // update 'Op'.
9722   if (NeedTruncation) {
9723     EVT VT = Op.getValueType();
9724     SDValue WideVal = Op->getOperand(0);
9725     EVT WideVT = WideVal.getValueType();
9726     unsigned ConvertedOp = 0;
9727     // Use a target machine opcode to prevent further DAGCombine
9728     // optimizations that may separate the arithmetic operations
9729     // from the setcc node.
9730     switch (WideVal.getOpcode()) {
9731       default: break;
9732       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9733       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9734       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9735       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9736       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9737     }
9738
9739     if (ConvertedOp) {
9740       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9741       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9742         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9743         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9744         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9745       }
9746     }
9747   }
9748
9749   if (Opcode == 0)
9750     // Emit a CMP with 0, which is the TEST pattern.
9751     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9752                        DAG.getConstant(0, Op.getValueType()));
9753
9754   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9755   SmallVector<SDValue, 4> Ops;
9756   for (unsigned i = 0; i != NumOperands; ++i)
9757     Ops.push_back(Op.getOperand(i));
9758
9759   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9760   DAG.ReplaceAllUsesWith(Op, New);
9761   return SDValue(New.getNode(), 1);
9762 }
9763
9764 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9765 /// equivalent.
9766 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9767                                    SelectionDAG &DAG) const {
9768   SDLoc dl(Op0);
9769   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
9770     if (C->getAPIntValue() == 0)
9771       return EmitTest(Op0, X86CC, DAG);
9772
9773      if (Op0.getValueType() == MVT::i1)
9774        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
9775   }
9776  
9777   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9778        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9779     // Do the comparison at i32 if it's smaller. This avoids subregister
9780     // aliasing issues. Keep the smaller reference if we're optimizing for
9781     // size, however, as that'll allow better folding of memory operations.
9782     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
9783         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
9784              AttributeSet::FunctionIndex, Attribute::MinSize)) {
9785       unsigned ExtendOp =
9786           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
9787       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
9788       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
9789     }
9790     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9791     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9792     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9793                               Op0, Op1);
9794     return SDValue(Sub.getNode(), 1);
9795   }
9796   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9797 }
9798
9799 /// Convert a comparison if required by the subtarget.
9800 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9801                                                  SelectionDAG &DAG) const {
9802   // If the subtarget does not support the FUCOMI instruction, floating-point
9803   // comparisons have to be converted.
9804   if (Subtarget->hasCMov() ||
9805       Cmp.getOpcode() != X86ISD::CMP ||
9806       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9807       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9808     return Cmp;
9809
9810   // The instruction selector will select an FUCOM instruction instead of
9811   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9812   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9813   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9814   SDLoc dl(Cmp);
9815   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9816   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9817   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9818                             DAG.getConstant(8, MVT::i8));
9819   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9820   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9821 }
9822
9823 static bool isAllOnes(SDValue V) {
9824   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9825   return C && C->isAllOnesValue();
9826 }
9827
9828 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9829 /// if it's possible.
9830 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9831                                      SDLoc dl, SelectionDAG &DAG) const {
9832   SDValue Op0 = And.getOperand(0);
9833   SDValue Op1 = And.getOperand(1);
9834   if (Op0.getOpcode() == ISD::TRUNCATE)
9835     Op0 = Op0.getOperand(0);
9836   if (Op1.getOpcode() == ISD::TRUNCATE)
9837     Op1 = Op1.getOperand(0);
9838
9839   SDValue LHS, RHS;
9840   if (Op1.getOpcode() == ISD::SHL)
9841     std::swap(Op0, Op1);
9842   if (Op0.getOpcode() == ISD::SHL) {
9843     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9844       if (And00C->getZExtValue() == 1) {
9845         // If we looked past a truncate, check that it's only truncating away
9846         // known zeros.
9847         unsigned BitWidth = Op0.getValueSizeInBits();
9848         unsigned AndBitWidth = And.getValueSizeInBits();
9849         if (BitWidth > AndBitWidth) {
9850           APInt Zeros, Ones;
9851           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9852           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9853             return SDValue();
9854         }
9855         LHS = Op1;
9856         RHS = Op0.getOperand(1);
9857       }
9858   } else if (Op1.getOpcode() == ISD::Constant) {
9859     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9860     uint64_t AndRHSVal = AndRHS->getZExtValue();
9861     SDValue AndLHS = Op0;
9862
9863     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9864       LHS = AndLHS.getOperand(0);
9865       RHS = AndLHS.getOperand(1);
9866     }
9867
9868     // Use BT if the immediate can't be encoded in a TEST instruction.
9869     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9870       LHS = AndLHS;
9871       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9872     }
9873   }
9874
9875   if (LHS.getNode()) {
9876     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9877     // instruction.  Since the shift amount is in-range-or-undefined, we know
9878     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9879     // the encoding for the i16 version is larger than the i32 version.
9880     // Also promote i16 to i32 for performance / code size reason.
9881     if (LHS.getValueType() == MVT::i8 ||
9882         LHS.getValueType() == MVT::i16)
9883       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9884
9885     // If the operand types disagree, extend the shift amount to match.  Since
9886     // BT ignores high bits (like shifts) we can use anyextend.
9887     if (LHS.getValueType() != RHS.getValueType())
9888       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9889
9890     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9891     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9892     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9893                        DAG.getConstant(Cond, MVT::i8), BT);
9894   }
9895
9896   return SDValue();
9897 }
9898
9899 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9900 /// mask CMPs.
9901 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9902                               SDValue &Op1) {
9903   unsigned SSECC;
9904   bool Swap = false;
9905
9906   // SSE Condition code mapping:
9907   //  0 - EQ
9908   //  1 - LT
9909   //  2 - LE
9910   //  3 - UNORD
9911   //  4 - NEQ
9912   //  5 - NLT
9913   //  6 - NLE
9914   //  7 - ORD
9915   switch (SetCCOpcode) {
9916   default: llvm_unreachable("Unexpected SETCC condition");
9917   case ISD::SETOEQ:
9918   case ISD::SETEQ:  SSECC = 0; break;
9919   case ISD::SETOGT:
9920   case ISD::SETGT:  Swap = true; // Fallthrough
9921   case ISD::SETLT:
9922   case ISD::SETOLT: SSECC = 1; break;
9923   case ISD::SETOGE:
9924   case ISD::SETGE:  Swap = true; // Fallthrough
9925   case ISD::SETLE:
9926   case ISD::SETOLE: SSECC = 2; break;
9927   case ISD::SETUO:  SSECC = 3; break;
9928   case ISD::SETUNE:
9929   case ISD::SETNE:  SSECC = 4; break;
9930   case ISD::SETULE: Swap = true; // Fallthrough
9931   case ISD::SETUGE: SSECC = 5; break;
9932   case ISD::SETULT: Swap = true; // Fallthrough
9933   case ISD::SETUGT: SSECC = 6; break;
9934   case ISD::SETO:   SSECC = 7; break;
9935   case ISD::SETUEQ:
9936   case ISD::SETONE: SSECC = 8; break;
9937   }
9938   if (Swap)
9939     std::swap(Op0, Op1);
9940
9941   return SSECC;
9942 }
9943
9944 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9945 // ones, and then concatenate the result back.
9946 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9947   MVT VT = Op.getSimpleValueType();
9948
9949   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9950          "Unsupported value type for operation");
9951
9952   unsigned NumElems = VT.getVectorNumElements();
9953   SDLoc dl(Op);
9954   SDValue CC = Op.getOperand(2);
9955
9956   // Extract the LHS vectors
9957   SDValue LHS = Op.getOperand(0);
9958   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9959   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9960
9961   // Extract the RHS vectors
9962   SDValue RHS = Op.getOperand(1);
9963   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9964   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9965
9966   // Issue the operation on the smaller types and concatenate the result back
9967   MVT EltVT = VT.getVectorElementType();
9968   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9969   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9970                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9971                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9972 }
9973
9974 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
9975                                      const X86Subtarget *Subtarget) {
9976   SDValue Op0 = Op.getOperand(0);
9977   SDValue Op1 = Op.getOperand(1);
9978   SDValue CC = Op.getOperand(2);
9979   MVT VT = Op.getSimpleValueType();
9980   SDLoc dl(Op);
9981
9982   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9983          Op.getValueType().getScalarType() == MVT::i1 &&
9984          "Cannot set masked compare for this operation");
9985
9986   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9987   unsigned  Opc = 0;
9988   bool Unsigned = false;
9989   bool Swap = false;
9990   unsigned SSECC;
9991   switch (SetCCOpcode) {
9992   default: llvm_unreachable("Unexpected SETCC condition");
9993   case ISD::SETNE:  SSECC = 4; break;
9994   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
9995   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
9996   case ISD::SETLT:  Swap = true; //fall-through
9997   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
9998   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
9999   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
10000   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
10001   case ISD::SETULE: Unsigned = true; //fall-through
10002   case ISD::SETLE:  SSECC = 2; break;
10003   }
10004
10005   if (Swap)
10006     std::swap(Op0, Op1);
10007   if (Opc)
10008     return DAG.getNode(Opc, dl, VT, Op0, Op1);
10009   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
10010   return DAG.getNode(Opc, dl, VT, Op0, Op1,
10011                      DAG.getConstant(SSECC, MVT::i8));
10012 }
10013
10014 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
10015 /// operand \p Op1.  If non-trivial (for example because it's not constant)
10016 /// return an empty value.
10017 static SDValue ChangeVSETULTtoVSETULE(SDValue Op1, SelectionDAG &DAG)
10018 {
10019   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
10020   if (!BV)
10021     return SDValue();
10022
10023   MVT VT = Op1.getSimpleValueType();
10024   MVT EVT = VT.getVectorElementType();
10025   unsigned n = VT.getVectorNumElements();
10026   SmallVector<SDValue, 8> ULTOp1;
10027
10028   for (unsigned i = 0; i < n; ++i) {
10029     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
10030     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
10031       return SDValue();
10032
10033     // Avoid underflow.
10034     APInt Val = Elt->getAPIntValue();
10035     if (Val == 0)
10036       return SDValue();
10037
10038     ULTOp1.push_back(DAG.getConstant(Val - 1, EVT));
10039   }
10040
10041   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Op1), VT, ULTOp1.data(),
10042                      ULTOp1.size());
10043 }
10044
10045 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
10046                            SelectionDAG &DAG) {
10047   SDValue Op0 = Op.getOperand(0);
10048   SDValue Op1 = Op.getOperand(1);
10049   SDValue CC = Op.getOperand(2);
10050   MVT VT = Op.getSimpleValueType();
10051   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10052   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10053   SDLoc dl(Op);
10054
10055   if (isFP) {
10056 #ifndef NDEBUG
10057     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10058     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10059 #endif
10060
10061     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10062     unsigned Opc = X86ISD::CMPP;
10063     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10064       assert(VT.getVectorNumElements() <= 16);
10065       Opc = X86ISD::CMPM;
10066     }
10067     // In the two special cases we can't handle, emit two comparisons.
10068     if (SSECC == 8) {
10069       unsigned CC0, CC1;
10070       unsigned CombineOpc;
10071       if (SetCCOpcode == ISD::SETUEQ) {
10072         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10073       } else {
10074         assert(SetCCOpcode == ISD::SETONE);
10075         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10076       }
10077
10078       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10079                                  DAG.getConstant(CC0, MVT::i8));
10080       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10081                                  DAG.getConstant(CC1, MVT::i8));
10082       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10083     }
10084     // Handle all other FP comparisons here.
10085     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10086                        DAG.getConstant(SSECC, MVT::i8));
10087   }
10088
10089   // Break 256-bit integer vector compare into smaller ones.
10090   if (VT.is256BitVector() && !Subtarget->hasInt256())
10091     return Lower256IntVSETCC(Op, DAG);
10092
10093   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10094   EVT OpVT = Op1.getValueType();
10095   if (Subtarget->hasAVX512()) {
10096     if (Op1.getValueType().is512BitVector() ||
10097         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10098       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
10099
10100     // In AVX-512 architecture setcc returns mask with i1 elements,
10101     // But there is no compare instruction for i8 and i16 elements.
10102     // We are not talking about 512-bit operands in this case, these
10103     // types are illegal.
10104     if (MaskResult &&
10105         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10106          OpVT.getVectorElementType().getSizeInBits() >= 8))
10107       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10108                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10109   }
10110
10111   // We are handling one of the integer comparisons here.  Since SSE only has
10112   // GT and EQ comparisons for integer, swapping operands and multiple
10113   // operations may be required for some comparisons.
10114   unsigned Opc;
10115   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10116   bool Subus = false;
10117
10118   switch (SetCCOpcode) {
10119   default: llvm_unreachable("Unexpected SETCC condition");
10120   case ISD::SETNE:  Invert = true;
10121   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
10122   case ISD::SETLT:  Swap = true;
10123   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
10124   case ISD::SETGE:  Swap = true;
10125   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
10126                     Invert = true; break;
10127   case ISD::SETULT: Swap = true;
10128   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
10129                     FlipSigns = true; break;
10130   case ISD::SETUGE: Swap = true;
10131   case ISD::SETULE: Opc = X86ISD::PCMPGT;
10132                     FlipSigns = true; Invert = true; break;
10133   }
10134
10135   // Special case: Use min/max operations for SETULE/SETUGE
10136   MVT VET = VT.getVectorElementType();
10137   bool hasMinMax =
10138        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10139     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10140
10141   if (hasMinMax) {
10142     switch (SetCCOpcode) {
10143     default: break;
10144     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10145     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10146     }
10147
10148     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10149   }
10150
10151   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
10152   if (!MinMax && hasSubus) {
10153     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
10154     // Op0 u<= Op1:
10155     //   t = psubus Op0, Op1
10156     //   pcmpeq t, <0..0>
10157     switch (SetCCOpcode) {
10158     default: break;
10159     case ISD::SETULT: {
10160       // If the comparison is against a constant we can turn this into a
10161       // setule.  With psubus, setule does not require a swap.  This is
10162       // beneficial because the constant in the register is no longer
10163       // destructed as the destination so it can be hoisted out of a loop.
10164       // Only do this pre-AVX since vpcmp* is no longer destructive.
10165       if (Subtarget->hasAVX())
10166         break;
10167       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(Op1, DAG);
10168       if (ULEOp1.getNode()) {
10169         Op1 = ULEOp1;
10170         Subus = true; Invert = false; Swap = false;
10171       }
10172       break;
10173     }
10174     // Psubus is better than flip-sign because it requires no inversion.
10175     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
10176     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
10177     }
10178
10179     if (Subus) {
10180       Opc = X86ISD::SUBUS;
10181       FlipSigns = false;
10182     }
10183   }
10184
10185   if (Swap)
10186     std::swap(Op0, Op1);
10187
10188   // Check that the operation in question is available (most are plain SSE2,
10189   // but PCMPGTQ and PCMPEQQ have different requirements).
10190   if (VT == MVT::v2i64) {
10191     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10192       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10193
10194       // First cast everything to the right type.
10195       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10196       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10197
10198       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10199       // bits of the inputs before performing those operations. The lower
10200       // compare is always unsigned.
10201       SDValue SB;
10202       if (FlipSigns) {
10203         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10204       } else {
10205         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10206         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10207         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10208                          Sign, Zero, Sign, Zero);
10209       }
10210       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10211       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10212
10213       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10214       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10215       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10216
10217       // Create masks for only the low parts/high parts of the 64 bit integers.
10218       static const int MaskHi[] = { 1, 1, 3, 3 };
10219       static const int MaskLo[] = { 0, 0, 2, 2 };
10220       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10221       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10222       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10223
10224       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10225       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10226
10227       if (Invert)
10228         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10229
10230       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10231     }
10232
10233     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10234       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10235       // pcmpeqd + pshufd + pand.
10236       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10237
10238       // First cast everything to the right type.
10239       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10240       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10241
10242       // Do the compare.
10243       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10244
10245       // Make sure the lower and upper halves are both all-ones.
10246       static const int Mask[] = { 1, 0, 3, 2 };
10247       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10248       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10249
10250       if (Invert)
10251         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10252
10253       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10254     }
10255   }
10256
10257   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10258   // bits of the inputs before performing those operations.
10259   if (FlipSigns) {
10260     EVT EltVT = VT.getVectorElementType();
10261     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10262     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10263     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10264   }
10265
10266   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10267
10268   // If the logical-not of the result is required, perform that now.
10269   if (Invert)
10270     Result = DAG.getNOT(dl, Result, VT);
10271
10272   if (MinMax)
10273     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10274
10275   if (Subus)
10276     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
10277                          getZeroVector(VT, Subtarget, DAG, dl));
10278
10279   return Result;
10280 }
10281
10282 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10283
10284   MVT VT = Op.getSimpleValueType();
10285
10286   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10287
10288   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10289          && "SetCC type must be 8-bit or 1-bit integer");
10290   SDValue Op0 = Op.getOperand(0);
10291   SDValue Op1 = Op.getOperand(1);
10292   SDLoc dl(Op);
10293   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10294
10295   // Optimize to BT if possible.
10296   // Lower (X & (1 << N)) == 0 to BT(X, N).
10297   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10298   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10299   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10300       Op1.getOpcode() == ISD::Constant &&
10301       cast<ConstantSDNode>(Op1)->isNullValue() &&
10302       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10303     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10304     if (NewSetCC.getNode())
10305       return NewSetCC;
10306   }
10307
10308   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10309   // these.
10310   if (Op1.getOpcode() == ISD::Constant &&
10311       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10312        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10313       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10314
10315     // If the input is a setcc, then reuse the input setcc or use a new one with
10316     // the inverted condition.
10317     if (Op0.getOpcode() == X86ISD::SETCC) {
10318       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10319       bool Invert = (CC == ISD::SETNE) ^
10320         cast<ConstantSDNode>(Op1)->isNullValue();
10321       if (!Invert)
10322         return Op0;
10323
10324       CCode = X86::GetOppositeBranchCondition(CCode);
10325       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10326                                   DAG.getConstant(CCode, MVT::i8),
10327                                   Op0.getOperand(1));
10328       if (VT == MVT::i1)
10329         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10330       return SetCC;
10331     }
10332   }
10333   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
10334       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
10335       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10336
10337     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
10338     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, MVT::i1), NewCC);
10339   }
10340
10341   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10342   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10343   if (X86CC == X86::COND_INVALID)
10344     return SDValue();
10345
10346   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10347   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10348   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10349                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10350   if (VT == MVT::i1)
10351     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10352   return SetCC;
10353 }
10354
10355 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10356 static bool isX86LogicalCmp(SDValue Op) {
10357   unsigned Opc = Op.getNode()->getOpcode();
10358   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10359       Opc == X86ISD::SAHF)
10360     return true;
10361   if (Op.getResNo() == 1 &&
10362       (Opc == X86ISD::ADD ||
10363        Opc == X86ISD::SUB ||
10364        Opc == X86ISD::ADC ||
10365        Opc == X86ISD::SBB ||
10366        Opc == X86ISD::SMUL ||
10367        Opc == X86ISD::UMUL ||
10368        Opc == X86ISD::INC ||
10369        Opc == X86ISD::DEC ||
10370        Opc == X86ISD::OR ||
10371        Opc == X86ISD::XOR ||
10372        Opc == X86ISD::AND))
10373     return true;
10374
10375   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10376     return true;
10377
10378   return false;
10379 }
10380
10381 static bool isZero(SDValue V) {
10382   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10383   return C && C->isNullValue();
10384 }
10385
10386 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10387   if (V.getOpcode() != ISD::TRUNCATE)
10388     return false;
10389
10390   SDValue VOp0 = V.getOperand(0);
10391   unsigned InBits = VOp0.getValueSizeInBits();
10392   unsigned Bits = V.getValueSizeInBits();
10393   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10394 }
10395
10396 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10397   bool addTest = true;
10398   SDValue Cond  = Op.getOperand(0);
10399   SDValue Op1 = Op.getOperand(1);
10400   SDValue Op2 = Op.getOperand(2);
10401   SDLoc DL(Op);
10402   EVT VT = Op1.getValueType();
10403   SDValue CC;
10404
10405   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10406   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10407   // sequence later on.
10408   if (Cond.getOpcode() == ISD::SETCC &&
10409       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10410        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10411       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10412     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10413     int SSECC = translateX86FSETCC(
10414         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10415
10416     if (SSECC != 8) {
10417       if (Subtarget->hasAVX512()) {
10418         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10419                                   DAG.getConstant(SSECC, MVT::i8));
10420         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10421       }
10422       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10423                                 DAG.getConstant(SSECC, MVT::i8));
10424       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10425       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10426       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10427     }
10428   }
10429
10430   if (Cond.getOpcode() == ISD::SETCC) {
10431     SDValue NewCond = LowerSETCC(Cond, DAG);
10432     if (NewCond.getNode())
10433       Cond = NewCond;
10434   }
10435
10436   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10437   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10438   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10439   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10440   if (Cond.getOpcode() == X86ISD::SETCC &&
10441       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10442       isZero(Cond.getOperand(1).getOperand(1))) {
10443     SDValue Cmp = Cond.getOperand(1);
10444
10445     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10446
10447     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10448         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10449       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10450
10451       SDValue CmpOp0 = Cmp.getOperand(0);
10452       // Apply further optimizations for special cases
10453       // (select (x != 0), -1, 0) -> neg & sbb
10454       // (select (x == 0), 0, -1) -> neg & sbb
10455       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10456         if (YC->isNullValue() &&
10457             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10458           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10459           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10460                                     DAG.getConstant(0, CmpOp0.getValueType()),
10461                                     CmpOp0);
10462           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10463                                     DAG.getConstant(X86::COND_B, MVT::i8),
10464                                     SDValue(Neg.getNode(), 1));
10465           return Res;
10466         }
10467
10468       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10469                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10470       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10471
10472       SDValue Res =   // Res = 0 or -1.
10473         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10474                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10475
10476       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10477         Res = DAG.getNOT(DL, Res, Res.getValueType());
10478
10479       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10480       if (N2C == 0 || !N2C->isNullValue())
10481         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10482       return Res;
10483     }
10484   }
10485
10486   // Look past (and (setcc_carry (cmp ...)), 1).
10487   if (Cond.getOpcode() == ISD::AND &&
10488       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10489     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10490     if (C && C->getAPIntValue() == 1)
10491       Cond = Cond.getOperand(0);
10492   }
10493
10494   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10495   // setting operand in place of the X86ISD::SETCC.
10496   unsigned CondOpcode = Cond.getOpcode();
10497   if (CondOpcode == X86ISD::SETCC ||
10498       CondOpcode == X86ISD::SETCC_CARRY) {
10499     CC = Cond.getOperand(0);
10500
10501     SDValue Cmp = Cond.getOperand(1);
10502     unsigned Opc = Cmp.getOpcode();
10503     MVT VT = Op.getSimpleValueType();
10504
10505     bool IllegalFPCMov = false;
10506     if (VT.isFloatingPoint() && !VT.isVector() &&
10507         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10508       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10509
10510     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10511         Opc == X86ISD::BT) { // FIXME
10512       Cond = Cmp;
10513       addTest = false;
10514     }
10515   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10516              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10517              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10518               Cond.getOperand(0).getValueType() != MVT::i8)) {
10519     SDValue LHS = Cond.getOperand(0);
10520     SDValue RHS = Cond.getOperand(1);
10521     unsigned X86Opcode;
10522     unsigned X86Cond;
10523     SDVTList VTs;
10524     switch (CondOpcode) {
10525     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10526     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10527     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10528     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10529     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10530     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10531     default: llvm_unreachable("unexpected overflowing operator");
10532     }
10533     if (CondOpcode == ISD::UMULO)
10534       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10535                           MVT::i32);
10536     else
10537       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10538
10539     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10540
10541     if (CondOpcode == ISD::UMULO)
10542       Cond = X86Op.getValue(2);
10543     else
10544       Cond = X86Op.getValue(1);
10545
10546     CC = DAG.getConstant(X86Cond, MVT::i8);
10547     addTest = false;
10548   }
10549
10550   if (addTest) {
10551     // Look pass the truncate if the high bits are known zero.
10552     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10553         Cond = Cond.getOperand(0);
10554
10555     // We know the result of AND is compared against zero. Try to match
10556     // it to BT.
10557     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10558       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10559       if (NewSetCC.getNode()) {
10560         CC = NewSetCC.getOperand(0);
10561         Cond = NewSetCC.getOperand(1);
10562         addTest = false;
10563       }
10564     }
10565   }
10566
10567   if (addTest) {
10568     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10569     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10570   }
10571
10572   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10573   // a <  b ?  0 : -1 -> RES = setcc_carry
10574   // a >= b ? -1 :  0 -> RES = setcc_carry
10575   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10576   if (Cond.getOpcode() == X86ISD::SUB) {
10577     Cond = ConvertCmpIfNecessary(Cond, DAG);
10578     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10579
10580     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10581         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10582       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10583                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10584       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10585         return DAG.getNOT(DL, Res, Res.getValueType());
10586       return Res;
10587     }
10588   }
10589
10590   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10591   // widen the cmov and push the truncate through. This avoids introducing a new
10592   // branch during isel and doesn't add any extensions.
10593   if (Op.getValueType() == MVT::i8 &&
10594       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10595     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10596     if (T1.getValueType() == T2.getValueType() &&
10597         // Blacklist CopyFromReg to avoid partial register stalls.
10598         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10599       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10600       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10601       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10602     }
10603   }
10604
10605   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10606   // condition is true.
10607   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10608   SDValue Ops[] = { Op2, Op1, CC, Cond };
10609   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10610 }
10611
10612 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10613   MVT VT = Op->getSimpleValueType(0);
10614   SDValue In = Op->getOperand(0);
10615   MVT InVT = In.getSimpleValueType();
10616   SDLoc dl(Op);
10617
10618   unsigned int NumElts = VT.getVectorNumElements();
10619   if (NumElts != 8 && NumElts != 16)
10620     return SDValue();
10621
10622   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10623     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10624
10625   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10626   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10627
10628   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10629   Constant *C = ConstantInt::get(*DAG.getContext(),
10630     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10631
10632   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10633   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10634   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10635                           MachinePointerInfo::getConstantPool(),
10636                           false, false, false, Alignment);
10637   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10638   if (VT.is512BitVector())
10639     return Brcst;
10640   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10641 }
10642
10643 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10644                                 SelectionDAG &DAG) {
10645   MVT VT = Op->getSimpleValueType(0);
10646   SDValue In = Op->getOperand(0);
10647   MVT InVT = In.getSimpleValueType();
10648   SDLoc dl(Op);
10649
10650   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10651     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10652
10653   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10654       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10655       (VT != MVT::v16i16 || InVT != MVT::v16i8))
10656     return SDValue();
10657
10658   if (Subtarget->hasInt256())
10659     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10660
10661   // Optimize vectors in AVX mode
10662   // Sign extend  v8i16 to v8i32 and
10663   //              v4i32 to v4i64
10664   //
10665   // Divide input vector into two parts
10666   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10667   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10668   // concat the vectors to original VT
10669
10670   unsigned NumElems = InVT.getVectorNumElements();
10671   SDValue Undef = DAG.getUNDEF(InVT);
10672
10673   SmallVector<int,8> ShufMask1(NumElems, -1);
10674   for (unsigned i = 0; i != NumElems/2; ++i)
10675     ShufMask1[i] = i;
10676
10677   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10678
10679   SmallVector<int,8> ShufMask2(NumElems, -1);
10680   for (unsigned i = 0; i != NumElems/2; ++i)
10681     ShufMask2[i] = i + NumElems/2;
10682
10683   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10684
10685   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10686                                 VT.getVectorNumElements()/2);
10687
10688   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
10689   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
10690
10691   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10692 }
10693
10694 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10695 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10696 // from the AND / OR.
10697 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10698   Opc = Op.getOpcode();
10699   if (Opc != ISD::OR && Opc != ISD::AND)
10700     return false;
10701   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10702           Op.getOperand(0).hasOneUse() &&
10703           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10704           Op.getOperand(1).hasOneUse());
10705 }
10706
10707 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10708 // 1 and that the SETCC node has a single use.
10709 static bool isXor1OfSetCC(SDValue Op) {
10710   if (Op.getOpcode() != ISD::XOR)
10711     return false;
10712   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10713   if (N1C && N1C->getAPIntValue() == 1) {
10714     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10715       Op.getOperand(0).hasOneUse();
10716   }
10717   return false;
10718 }
10719
10720 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10721   bool addTest = true;
10722   SDValue Chain = Op.getOperand(0);
10723   SDValue Cond  = Op.getOperand(1);
10724   SDValue Dest  = Op.getOperand(2);
10725   SDLoc dl(Op);
10726   SDValue CC;
10727   bool Inverted = false;
10728
10729   if (Cond.getOpcode() == ISD::SETCC) {
10730     // Check for setcc([su]{add,sub,mul}o == 0).
10731     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10732         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10733         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10734         Cond.getOperand(0).getResNo() == 1 &&
10735         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10736          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10737          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10738          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10739          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10740          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10741       Inverted = true;
10742       Cond = Cond.getOperand(0);
10743     } else {
10744       SDValue NewCond = LowerSETCC(Cond, DAG);
10745       if (NewCond.getNode())
10746         Cond = NewCond;
10747     }
10748   }
10749 #if 0
10750   // FIXME: LowerXALUO doesn't handle these!!
10751   else if (Cond.getOpcode() == X86ISD::ADD  ||
10752            Cond.getOpcode() == X86ISD::SUB  ||
10753            Cond.getOpcode() == X86ISD::SMUL ||
10754            Cond.getOpcode() == X86ISD::UMUL)
10755     Cond = LowerXALUO(Cond, DAG);
10756 #endif
10757
10758   // Look pass (and (setcc_carry (cmp ...)), 1).
10759   if (Cond.getOpcode() == ISD::AND &&
10760       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10761     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10762     if (C && C->getAPIntValue() == 1)
10763       Cond = Cond.getOperand(0);
10764   }
10765
10766   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10767   // setting operand in place of the X86ISD::SETCC.
10768   unsigned CondOpcode = Cond.getOpcode();
10769   if (CondOpcode == X86ISD::SETCC ||
10770       CondOpcode == X86ISD::SETCC_CARRY) {
10771     CC = Cond.getOperand(0);
10772
10773     SDValue Cmp = Cond.getOperand(1);
10774     unsigned Opc = Cmp.getOpcode();
10775     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10776     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10777       Cond = Cmp;
10778       addTest = false;
10779     } else {
10780       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10781       default: break;
10782       case X86::COND_O:
10783       case X86::COND_B:
10784         // These can only come from an arithmetic instruction with overflow,
10785         // e.g. SADDO, UADDO.
10786         Cond = Cond.getNode()->getOperand(1);
10787         addTest = false;
10788         break;
10789       }
10790     }
10791   }
10792   CondOpcode = Cond.getOpcode();
10793   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10794       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10795       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10796        Cond.getOperand(0).getValueType() != MVT::i8)) {
10797     SDValue LHS = Cond.getOperand(0);
10798     SDValue RHS = Cond.getOperand(1);
10799     unsigned X86Opcode;
10800     unsigned X86Cond;
10801     SDVTList VTs;
10802     // Keep this in sync with LowerXALUO, otherwise we might create redundant
10803     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
10804     // X86ISD::INC).
10805     switch (CondOpcode) {
10806     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10807     case ISD::SADDO:
10808       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10809         if (C->isOne()) {
10810           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
10811           break;
10812         }
10813       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10814     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10815     case ISD::SSUBO:
10816       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10817         if (C->isOne()) {
10818           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
10819           break;
10820         }
10821       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10822     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10823     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10824     default: llvm_unreachable("unexpected overflowing operator");
10825     }
10826     if (Inverted)
10827       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10828     if (CondOpcode == ISD::UMULO)
10829       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10830                           MVT::i32);
10831     else
10832       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10833
10834     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10835
10836     if (CondOpcode == ISD::UMULO)
10837       Cond = X86Op.getValue(2);
10838     else
10839       Cond = X86Op.getValue(1);
10840
10841     CC = DAG.getConstant(X86Cond, MVT::i8);
10842     addTest = false;
10843   } else {
10844     unsigned CondOpc;
10845     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10846       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10847       if (CondOpc == ISD::OR) {
10848         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10849         // two branches instead of an explicit OR instruction with a
10850         // separate test.
10851         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10852             isX86LogicalCmp(Cmp)) {
10853           CC = Cond.getOperand(0).getOperand(0);
10854           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10855                               Chain, Dest, CC, Cmp);
10856           CC = Cond.getOperand(1).getOperand(0);
10857           Cond = Cmp;
10858           addTest = false;
10859         }
10860       } else { // ISD::AND
10861         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10862         // two branches instead of an explicit AND instruction with a
10863         // separate test. However, we only do this if this block doesn't
10864         // have a fall-through edge, because this requires an explicit
10865         // jmp when the condition is false.
10866         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10867             isX86LogicalCmp(Cmp) &&
10868             Op.getNode()->hasOneUse()) {
10869           X86::CondCode CCode =
10870             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10871           CCode = X86::GetOppositeBranchCondition(CCode);
10872           CC = DAG.getConstant(CCode, MVT::i8);
10873           SDNode *User = *Op.getNode()->use_begin();
10874           // Look for an unconditional branch following this conditional branch.
10875           // We need this because we need to reverse the successors in order
10876           // to implement FCMP_OEQ.
10877           if (User->getOpcode() == ISD::BR) {
10878             SDValue FalseBB = User->getOperand(1);
10879             SDNode *NewBR =
10880               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10881             assert(NewBR == User);
10882             (void)NewBR;
10883             Dest = FalseBB;
10884
10885             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10886                                 Chain, Dest, CC, Cmp);
10887             X86::CondCode CCode =
10888               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10889             CCode = X86::GetOppositeBranchCondition(CCode);
10890             CC = DAG.getConstant(CCode, MVT::i8);
10891             Cond = Cmp;
10892             addTest = false;
10893           }
10894         }
10895       }
10896     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10897       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10898       // It should be transformed during dag combiner except when the condition
10899       // is set by a arithmetics with overflow node.
10900       X86::CondCode CCode =
10901         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10902       CCode = X86::GetOppositeBranchCondition(CCode);
10903       CC = DAG.getConstant(CCode, MVT::i8);
10904       Cond = Cond.getOperand(0).getOperand(1);
10905       addTest = false;
10906     } else if (Cond.getOpcode() == ISD::SETCC &&
10907                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10908       // For FCMP_OEQ, we can emit
10909       // two branches instead of an explicit AND instruction with a
10910       // separate test. However, we only do this if this block doesn't
10911       // have a fall-through edge, because this requires an explicit
10912       // jmp when the condition is false.
10913       if (Op.getNode()->hasOneUse()) {
10914         SDNode *User = *Op.getNode()->use_begin();
10915         // Look for an unconditional branch following this conditional branch.
10916         // We need this because we need to reverse the successors in order
10917         // to implement FCMP_OEQ.
10918         if (User->getOpcode() == ISD::BR) {
10919           SDValue FalseBB = User->getOperand(1);
10920           SDNode *NewBR =
10921             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10922           assert(NewBR == User);
10923           (void)NewBR;
10924           Dest = FalseBB;
10925
10926           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10927                                     Cond.getOperand(0), Cond.getOperand(1));
10928           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10929           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10930           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10931                               Chain, Dest, CC, Cmp);
10932           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10933           Cond = Cmp;
10934           addTest = false;
10935         }
10936       }
10937     } else if (Cond.getOpcode() == ISD::SETCC &&
10938                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10939       // For FCMP_UNE, we can emit
10940       // two branches instead of an explicit AND instruction with a
10941       // separate test. However, we only do this if this block doesn't
10942       // have a fall-through edge, because this requires an explicit
10943       // jmp when the condition is false.
10944       if (Op.getNode()->hasOneUse()) {
10945         SDNode *User = *Op.getNode()->use_begin();
10946         // Look for an unconditional branch following this conditional branch.
10947         // We need this because we need to reverse the successors in order
10948         // to implement FCMP_UNE.
10949         if (User->getOpcode() == ISD::BR) {
10950           SDValue FalseBB = User->getOperand(1);
10951           SDNode *NewBR =
10952             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10953           assert(NewBR == User);
10954           (void)NewBR;
10955
10956           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10957                                     Cond.getOperand(0), Cond.getOperand(1));
10958           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10959           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10960           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10961                               Chain, Dest, CC, Cmp);
10962           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10963           Cond = Cmp;
10964           addTest = false;
10965           Dest = FalseBB;
10966         }
10967       }
10968     }
10969   }
10970
10971   if (addTest) {
10972     // Look pass the truncate if the high bits are known zero.
10973     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10974         Cond = Cond.getOperand(0);
10975
10976     // We know the result of AND is compared against zero. Try to match
10977     // it to BT.
10978     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10979       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10980       if (NewSetCC.getNode()) {
10981         CC = NewSetCC.getOperand(0);
10982         Cond = NewSetCC.getOperand(1);
10983         addTest = false;
10984       }
10985     }
10986   }
10987
10988   if (addTest) {
10989     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10990     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10991   }
10992   Cond = ConvertCmpIfNecessary(Cond, DAG);
10993   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10994                      Chain, Dest, CC, Cond);
10995 }
10996
10997 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10998 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10999 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
11000 // that the guard pages used by the OS virtual memory manager are allocated in
11001 // correct sequence.
11002 SDValue
11003 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
11004                                            SelectionDAG &DAG) const {
11005   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
11006           getTargetMachine().Options.EnableSegmentedStacks) &&
11007          "This should be used only on Windows targets or when segmented stacks "
11008          "are being used");
11009   assert(!Subtarget->isTargetMacho() && "Not implemented");
11010   SDLoc dl(Op);
11011
11012   // Get the inputs.
11013   SDValue Chain = Op.getOperand(0);
11014   SDValue Size  = Op.getOperand(1);
11015   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
11016   EVT VT = Op.getNode()->getValueType(0);
11017
11018   bool Is64Bit = Subtarget->is64Bit();
11019   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
11020
11021   if (getTargetMachine().Options.EnableSegmentedStacks) {
11022     MachineFunction &MF = DAG.getMachineFunction();
11023     MachineRegisterInfo &MRI = MF.getRegInfo();
11024
11025     if (Is64Bit) {
11026       // The 64 bit implementation of segmented stacks needs to clobber both r10
11027       // r11. This makes it impossible to use it along with nested parameters.
11028       const Function *F = MF.getFunction();
11029
11030       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
11031            I != E; ++I)
11032         if (I->hasNestAttr())
11033           report_fatal_error("Cannot use segmented stacks with functions that "
11034                              "have nested arguments.");
11035     }
11036
11037     const TargetRegisterClass *AddrRegClass =
11038       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
11039     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
11040     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
11041     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
11042                                 DAG.getRegister(Vreg, SPTy));
11043     SDValue Ops1[2] = { Value, Chain };
11044     return DAG.getMergeValues(Ops1, 2, dl);
11045   } else {
11046     SDValue Flag;
11047     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
11048
11049     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
11050     Flag = Chain.getValue(1);
11051     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11052
11053     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
11054
11055     const X86RegisterInfo *RegInfo =
11056       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11057     unsigned SPReg = RegInfo->getStackRegister();
11058     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
11059     Chain = SP.getValue(1);
11060
11061     if (Align) {
11062       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
11063                        DAG.getConstant(-(uint64_t)Align, VT));
11064       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
11065     }
11066
11067     SDValue Ops1[2] = { SP, Chain };
11068     return DAG.getMergeValues(Ops1, 2, dl);
11069   }
11070 }
11071
11072 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
11073   MachineFunction &MF = DAG.getMachineFunction();
11074   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
11075
11076   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11077   SDLoc DL(Op);
11078
11079   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
11080     // vastart just stores the address of the VarArgsFrameIndex slot into the
11081     // memory location argument.
11082     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11083                                    getPointerTy());
11084     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
11085                         MachinePointerInfo(SV), false, false, 0);
11086   }
11087
11088   // __va_list_tag:
11089   //   gp_offset         (0 - 6 * 8)
11090   //   fp_offset         (48 - 48 + 8 * 16)
11091   //   overflow_arg_area (point to parameters coming in memory).
11092   //   reg_save_area
11093   SmallVector<SDValue, 8> MemOps;
11094   SDValue FIN = Op.getOperand(1);
11095   // Store gp_offset
11096   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
11097                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
11098                                                MVT::i32),
11099                                FIN, MachinePointerInfo(SV), false, false, 0);
11100   MemOps.push_back(Store);
11101
11102   // Store fp_offset
11103   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11104                     FIN, DAG.getIntPtrConstant(4));
11105   Store = DAG.getStore(Op.getOperand(0), DL,
11106                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
11107                                        MVT::i32),
11108                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
11109   MemOps.push_back(Store);
11110
11111   // Store ptr to overflow_arg_area
11112   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11113                     FIN, DAG.getIntPtrConstant(4));
11114   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11115                                     getPointerTy());
11116   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
11117                        MachinePointerInfo(SV, 8),
11118                        false, false, 0);
11119   MemOps.push_back(Store);
11120
11121   // Store ptr to reg_save_area.
11122   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11123                     FIN, DAG.getIntPtrConstant(8));
11124   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11125                                     getPointerTy());
11126   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11127                        MachinePointerInfo(SV, 16), false, false, 0);
11128   MemOps.push_back(Store);
11129   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
11130                      &MemOps[0], MemOps.size());
11131 }
11132
11133 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11134   assert(Subtarget->is64Bit() &&
11135          "LowerVAARG only handles 64-bit va_arg!");
11136   assert((Subtarget->isTargetLinux() ||
11137           Subtarget->isTargetDarwin()) &&
11138           "Unhandled target in LowerVAARG");
11139   assert(Op.getNode()->getNumOperands() == 4);
11140   SDValue Chain = Op.getOperand(0);
11141   SDValue SrcPtr = Op.getOperand(1);
11142   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11143   unsigned Align = Op.getConstantOperandVal(3);
11144   SDLoc dl(Op);
11145
11146   EVT ArgVT = Op.getNode()->getValueType(0);
11147   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11148   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11149   uint8_t ArgMode;
11150
11151   // Decide which area this value should be read from.
11152   // TODO: Implement the AMD64 ABI in its entirety. This simple
11153   // selection mechanism works only for the basic types.
11154   if (ArgVT == MVT::f80) {
11155     llvm_unreachable("va_arg for f80 not yet implemented");
11156   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11157     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11158   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11159     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11160   } else {
11161     llvm_unreachable("Unhandled argument type in LowerVAARG");
11162   }
11163
11164   if (ArgMode == 2) {
11165     // Sanity Check: Make sure using fp_offset makes sense.
11166     assert(!getTargetMachine().Options.UseSoftFloat &&
11167            !(DAG.getMachineFunction()
11168                 .getFunction()->getAttributes()
11169                 .hasAttribute(AttributeSet::FunctionIndex,
11170                               Attribute::NoImplicitFloat)) &&
11171            Subtarget->hasSSE1());
11172   }
11173
11174   // Insert VAARG_64 node into the DAG
11175   // VAARG_64 returns two values: Variable Argument Address, Chain
11176   SmallVector<SDValue, 11> InstOps;
11177   InstOps.push_back(Chain);
11178   InstOps.push_back(SrcPtr);
11179   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11180   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11181   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11182   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11183   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11184                                           VTs, &InstOps[0], InstOps.size(),
11185                                           MVT::i64,
11186                                           MachinePointerInfo(SV),
11187                                           /*Align=*/0,
11188                                           /*Volatile=*/false,
11189                                           /*ReadMem=*/true,
11190                                           /*WriteMem=*/true);
11191   Chain = VAARG.getValue(1);
11192
11193   // Load the next argument and return it
11194   return DAG.getLoad(ArgVT, dl,
11195                      Chain,
11196                      VAARG,
11197                      MachinePointerInfo(),
11198                      false, false, false, 0);
11199 }
11200
11201 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11202                            SelectionDAG &DAG) {
11203   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11204   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11205   SDValue Chain = Op.getOperand(0);
11206   SDValue DstPtr = Op.getOperand(1);
11207   SDValue SrcPtr = Op.getOperand(2);
11208   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11209   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11210   SDLoc DL(Op);
11211
11212   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11213                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11214                        false,
11215                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11216 }
11217
11218 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11219 // amount is a constant. Takes immediate version of shift as input.
11220 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11221                                           SDValue SrcOp, uint64_t ShiftAmt,
11222                                           SelectionDAG &DAG) {
11223   MVT ElementType = VT.getVectorElementType();
11224
11225   // Check for ShiftAmt >= element width
11226   if (ShiftAmt >= ElementType.getSizeInBits()) {
11227     if (Opc == X86ISD::VSRAI)
11228       ShiftAmt = ElementType.getSizeInBits() - 1;
11229     else
11230       return DAG.getConstant(0, VT);
11231   }
11232
11233   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11234          && "Unknown target vector shift-by-constant node");
11235
11236   // Fold this packed vector shift into a build vector if SrcOp is a
11237   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
11238   if (VT == SrcOp.getSimpleValueType() &&
11239       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11240     SmallVector<SDValue, 8> Elts;
11241     unsigned NumElts = SrcOp->getNumOperands();
11242     ConstantSDNode *ND;
11243
11244     switch(Opc) {
11245     default: llvm_unreachable(0);
11246     case X86ISD::VSHLI:
11247       for (unsigned i=0; i!=NumElts; ++i) {
11248         SDValue CurrentOp = SrcOp->getOperand(i);
11249         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11250           Elts.push_back(CurrentOp);
11251           continue;
11252         }
11253         ND = cast<ConstantSDNode>(CurrentOp);
11254         const APInt &C = ND->getAPIntValue();
11255         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11256       }
11257       break;
11258     case X86ISD::VSRLI:
11259       for (unsigned i=0; i!=NumElts; ++i) {
11260         SDValue CurrentOp = SrcOp->getOperand(i);
11261         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11262           Elts.push_back(CurrentOp);
11263           continue;
11264         }
11265         ND = cast<ConstantSDNode>(CurrentOp);
11266         const APInt &C = ND->getAPIntValue();
11267         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11268       }
11269       break;
11270     case X86ISD::VSRAI:
11271       for (unsigned i=0; i!=NumElts; ++i) {
11272         SDValue CurrentOp = SrcOp->getOperand(i);
11273         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11274           Elts.push_back(CurrentOp);
11275           continue;
11276         }
11277         ND = cast<ConstantSDNode>(CurrentOp);
11278         const APInt &C = ND->getAPIntValue();
11279         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11280       }
11281       break;
11282     }
11283
11284     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Elts[0], NumElts);
11285   }
11286
11287   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11288 }
11289
11290 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11291 // may or may not be a constant. Takes immediate version of shift as input.
11292 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11293                                    SDValue SrcOp, SDValue ShAmt,
11294                                    SelectionDAG &DAG) {
11295   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11296
11297   // Catch shift-by-constant.
11298   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11299     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11300                                       CShAmt->getZExtValue(), DAG);
11301
11302   // Change opcode to non-immediate version
11303   switch (Opc) {
11304     default: llvm_unreachable("Unknown target vector shift node");
11305     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11306     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11307     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11308   }
11309
11310   // Need to build a vector containing shift amount
11311   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11312   SDValue ShOps[4];
11313   ShOps[0] = ShAmt;
11314   ShOps[1] = DAG.getConstant(0, MVT::i32);
11315   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11316   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
11317
11318   // The return type has to be a 128-bit type with the same element
11319   // type as the input type.
11320   MVT EltVT = VT.getVectorElementType();
11321   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11322
11323   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11324   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11325 }
11326
11327 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11328   SDLoc dl(Op);
11329   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11330   switch (IntNo) {
11331   default: return SDValue();    // Don't custom lower most intrinsics.
11332   // Comparison intrinsics.
11333   case Intrinsic::x86_sse_comieq_ss:
11334   case Intrinsic::x86_sse_comilt_ss:
11335   case Intrinsic::x86_sse_comile_ss:
11336   case Intrinsic::x86_sse_comigt_ss:
11337   case Intrinsic::x86_sse_comige_ss:
11338   case Intrinsic::x86_sse_comineq_ss:
11339   case Intrinsic::x86_sse_ucomieq_ss:
11340   case Intrinsic::x86_sse_ucomilt_ss:
11341   case Intrinsic::x86_sse_ucomile_ss:
11342   case Intrinsic::x86_sse_ucomigt_ss:
11343   case Intrinsic::x86_sse_ucomige_ss:
11344   case Intrinsic::x86_sse_ucomineq_ss:
11345   case Intrinsic::x86_sse2_comieq_sd:
11346   case Intrinsic::x86_sse2_comilt_sd:
11347   case Intrinsic::x86_sse2_comile_sd:
11348   case Intrinsic::x86_sse2_comigt_sd:
11349   case Intrinsic::x86_sse2_comige_sd:
11350   case Intrinsic::x86_sse2_comineq_sd:
11351   case Intrinsic::x86_sse2_ucomieq_sd:
11352   case Intrinsic::x86_sse2_ucomilt_sd:
11353   case Intrinsic::x86_sse2_ucomile_sd:
11354   case Intrinsic::x86_sse2_ucomigt_sd:
11355   case Intrinsic::x86_sse2_ucomige_sd:
11356   case Intrinsic::x86_sse2_ucomineq_sd: {
11357     unsigned Opc;
11358     ISD::CondCode CC;
11359     switch (IntNo) {
11360     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11361     case Intrinsic::x86_sse_comieq_ss:
11362     case Intrinsic::x86_sse2_comieq_sd:
11363       Opc = X86ISD::COMI;
11364       CC = ISD::SETEQ;
11365       break;
11366     case Intrinsic::x86_sse_comilt_ss:
11367     case Intrinsic::x86_sse2_comilt_sd:
11368       Opc = X86ISD::COMI;
11369       CC = ISD::SETLT;
11370       break;
11371     case Intrinsic::x86_sse_comile_ss:
11372     case Intrinsic::x86_sse2_comile_sd:
11373       Opc = X86ISD::COMI;
11374       CC = ISD::SETLE;
11375       break;
11376     case Intrinsic::x86_sse_comigt_ss:
11377     case Intrinsic::x86_sse2_comigt_sd:
11378       Opc = X86ISD::COMI;
11379       CC = ISD::SETGT;
11380       break;
11381     case Intrinsic::x86_sse_comige_ss:
11382     case Intrinsic::x86_sse2_comige_sd:
11383       Opc = X86ISD::COMI;
11384       CC = ISD::SETGE;
11385       break;
11386     case Intrinsic::x86_sse_comineq_ss:
11387     case Intrinsic::x86_sse2_comineq_sd:
11388       Opc = X86ISD::COMI;
11389       CC = ISD::SETNE;
11390       break;
11391     case Intrinsic::x86_sse_ucomieq_ss:
11392     case Intrinsic::x86_sse2_ucomieq_sd:
11393       Opc = X86ISD::UCOMI;
11394       CC = ISD::SETEQ;
11395       break;
11396     case Intrinsic::x86_sse_ucomilt_ss:
11397     case Intrinsic::x86_sse2_ucomilt_sd:
11398       Opc = X86ISD::UCOMI;
11399       CC = ISD::SETLT;
11400       break;
11401     case Intrinsic::x86_sse_ucomile_ss:
11402     case Intrinsic::x86_sse2_ucomile_sd:
11403       Opc = X86ISD::UCOMI;
11404       CC = ISD::SETLE;
11405       break;
11406     case Intrinsic::x86_sse_ucomigt_ss:
11407     case Intrinsic::x86_sse2_ucomigt_sd:
11408       Opc = X86ISD::UCOMI;
11409       CC = ISD::SETGT;
11410       break;
11411     case Intrinsic::x86_sse_ucomige_ss:
11412     case Intrinsic::x86_sse2_ucomige_sd:
11413       Opc = X86ISD::UCOMI;
11414       CC = ISD::SETGE;
11415       break;
11416     case Intrinsic::x86_sse_ucomineq_ss:
11417     case Intrinsic::x86_sse2_ucomineq_sd:
11418       Opc = X86ISD::UCOMI;
11419       CC = ISD::SETNE;
11420       break;
11421     }
11422
11423     SDValue LHS = Op.getOperand(1);
11424     SDValue RHS = Op.getOperand(2);
11425     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11426     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11427     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11428     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11429                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11430     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11431   }
11432
11433   // Arithmetic intrinsics.
11434   case Intrinsic::x86_sse2_pmulu_dq:
11435   case Intrinsic::x86_avx2_pmulu_dq:
11436     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11437                        Op.getOperand(1), Op.getOperand(2));
11438
11439   // SSE2/AVX2 sub with unsigned saturation intrinsics
11440   case Intrinsic::x86_sse2_psubus_b:
11441   case Intrinsic::x86_sse2_psubus_w:
11442   case Intrinsic::x86_avx2_psubus_b:
11443   case Intrinsic::x86_avx2_psubus_w:
11444     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11445                        Op.getOperand(1), Op.getOperand(2));
11446
11447   // SSE3/AVX horizontal add/sub intrinsics
11448   case Intrinsic::x86_sse3_hadd_ps:
11449   case Intrinsic::x86_sse3_hadd_pd:
11450   case Intrinsic::x86_avx_hadd_ps_256:
11451   case Intrinsic::x86_avx_hadd_pd_256:
11452   case Intrinsic::x86_sse3_hsub_ps:
11453   case Intrinsic::x86_sse3_hsub_pd:
11454   case Intrinsic::x86_avx_hsub_ps_256:
11455   case Intrinsic::x86_avx_hsub_pd_256:
11456   case Intrinsic::x86_ssse3_phadd_w_128:
11457   case Intrinsic::x86_ssse3_phadd_d_128:
11458   case Intrinsic::x86_avx2_phadd_w:
11459   case Intrinsic::x86_avx2_phadd_d:
11460   case Intrinsic::x86_ssse3_phsub_w_128:
11461   case Intrinsic::x86_ssse3_phsub_d_128:
11462   case Intrinsic::x86_avx2_phsub_w:
11463   case Intrinsic::x86_avx2_phsub_d: {
11464     unsigned Opcode;
11465     switch (IntNo) {
11466     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11467     case Intrinsic::x86_sse3_hadd_ps:
11468     case Intrinsic::x86_sse3_hadd_pd:
11469     case Intrinsic::x86_avx_hadd_ps_256:
11470     case Intrinsic::x86_avx_hadd_pd_256:
11471       Opcode = X86ISD::FHADD;
11472       break;
11473     case Intrinsic::x86_sse3_hsub_ps:
11474     case Intrinsic::x86_sse3_hsub_pd:
11475     case Intrinsic::x86_avx_hsub_ps_256:
11476     case Intrinsic::x86_avx_hsub_pd_256:
11477       Opcode = X86ISD::FHSUB;
11478       break;
11479     case Intrinsic::x86_ssse3_phadd_w_128:
11480     case Intrinsic::x86_ssse3_phadd_d_128:
11481     case Intrinsic::x86_avx2_phadd_w:
11482     case Intrinsic::x86_avx2_phadd_d:
11483       Opcode = X86ISD::HADD;
11484       break;
11485     case Intrinsic::x86_ssse3_phsub_w_128:
11486     case Intrinsic::x86_ssse3_phsub_d_128:
11487     case Intrinsic::x86_avx2_phsub_w:
11488     case Intrinsic::x86_avx2_phsub_d:
11489       Opcode = X86ISD::HSUB;
11490       break;
11491     }
11492     return DAG.getNode(Opcode, dl, Op.getValueType(),
11493                        Op.getOperand(1), Op.getOperand(2));
11494   }
11495
11496   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11497   case Intrinsic::x86_sse2_pmaxu_b:
11498   case Intrinsic::x86_sse41_pmaxuw:
11499   case Intrinsic::x86_sse41_pmaxud:
11500   case Intrinsic::x86_avx2_pmaxu_b:
11501   case Intrinsic::x86_avx2_pmaxu_w:
11502   case Intrinsic::x86_avx2_pmaxu_d:
11503   case Intrinsic::x86_sse2_pminu_b:
11504   case Intrinsic::x86_sse41_pminuw:
11505   case Intrinsic::x86_sse41_pminud:
11506   case Intrinsic::x86_avx2_pminu_b:
11507   case Intrinsic::x86_avx2_pminu_w:
11508   case Intrinsic::x86_avx2_pminu_d:
11509   case Intrinsic::x86_sse41_pmaxsb:
11510   case Intrinsic::x86_sse2_pmaxs_w:
11511   case Intrinsic::x86_sse41_pmaxsd:
11512   case Intrinsic::x86_avx2_pmaxs_b:
11513   case Intrinsic::x86_avx2_pmaxs_w:
11514   case Intrinsic::x86_avx2_pmaxs_d:
11515   case Intrinsic::x86_sse41_pminsb:
11516   case Intrinsic::x86_sse2_pmins_w:
11517   case Intrinsic::x86_sse41_pminsd:
11518   case Intrinsic::x86_avx2_pmins_b:
11519   case Intrinsic::x86_avx2_pmins_w:
11520   case Intrinsic::x86_avx2_pmins_d: {
11521     unsigned Opcode;
11522     switch (IntNo) {
11523     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11524     case Intrinsic::x86_sse2_pmaxu_b:
11525     case Intrinsic::x86_sse41_pmaxuw:
11526     case Intrinsic::x86_sse41_pmaxud:
11527     case Intrinsic::x86_avx2_pmaxu_b:
11528     case Intrinsic::x86_avx2_pmaxu_w:
11529     case Intrinsic::x86_avx2_pmaxu_d:
11530       Opcode = X86ISD::UMAX;
11531       break;
11532     case Intrinsic::x86_sse2_pminu_b:
11533     case Intrinsic::x86_sse41_pminuw:
11534     case Intrinsic::x86_sse41_pminud:
11535     case Intrinsic::x86_avx2_pminu_b:
11536     case Intrinsic::x86_avx2_pminu_w:
11537     case Intrinsic::x86_avx2_pminu_d:
11538       Opcode = X86ISD::UMIN;
11539       break;
11540     case Intrinsic::x86_sse41_pmaxsb:
11541     case Intrinsic::x86_sse2_pmaxs_w:
11542     case Intrinsic::x86_sse41_pmaxsd:
11543     case Intrinsic::x86_avx2_pmaxs_b:
11544     case Intrinsic::x86_avx2_pmaxs_w:
11545     case Intrinsic::x86_avx2_pmaxs_d:
11546       Opcode = X86ISD::SMAX;
11547       break;
11548     case Intrinsic::x86_sse41_pminsb:
11549     case Intrinsic::x86_sse2_pmins_w:
11550     case Intrinsic::x86_sse41_pminsd:
11551     case Intrinsic::x86_avx2_pmins_b:
11552     case Intrinsic::x86_avx2_pmins_w:
11553     case Intrinsic::x86_avx2_pmins_d:
11554       Opcode = X86ISD::SMIN;
11555       break;
11556     }
11557     return DAG.getNode(Opcode, dl, Op.getValueType(),
11558                        Op.getOperand(1), Op.getOperand(2));
11559   }
11560
11561   // SSE/SSE2/AVX floating point max/min intrinsics.
11562   case Intrinsic::x86_sse_max_ps:
11563   case Intrinsic::x86_sse2_max_pd:
11564   case Intrinsic::x86_avx_max_ps_256:
11565   case Intrinsic::x86_avx_max_pd_256:
11566   case Intrinsic::x86_sse_min_ps:
11567   case Intrinsic::x86_sse2_min_pd:
11568   case Intrinsic::x86_avx_min_ps_256:
11569   case Intrinsic::x86_avx_min_pd_256: {
11570     unsigned Opcode;
11571     switch (IntNo) {
11572     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11573     case Intrinsic::x86_sse_max_ps:
11574     case Intrinsic::x86_sse2_max_pd:
11575     case Intrinsic::x86_avx_max_ps_256:
11576     case Intrinsic::x86_avx_max_pd_256:
11577       Opcode = X86ISD::FMAX;
11578       break;
11579     case Intrinsic::x86_sse_min_ps:
11580     case Intrinsic::x86_sse2_min_pd:
11581     case Intrinsic::x86_avx_min_ps_256:
11582     case Intrinsic::x86_avx_min_pd_256:
11583       Opcode = X86ISD::FMIN;
11584       break;
11585     }
11586     return DAG.getNode(Opcode, dl, Op.getValueType(),
11587                        Op.getOperand(1), Op.getOperand(2));
11588   }
11589
11590   // AVX2 variable shift intrinsics
11591   case Intrinsic::x86_avx2_psllv_d:
11592   case Intrinsic::x86_avx2_psllv_q:
11593   case Intrinsic::x86_avx2_psllv_d_256:
11594   case Intrinsic::x86_avx2_psllv_q_256:
11595   case Intrinsic::x86_avx2_psrlv_d:
11596   case Intrinsic::x86_avx2_psrlv_q:
11597   case Intrinsic::x86_avx2_psrlv_d_256:
11598   case Intrinsic::x86_avx2_psrlv_q_256:
11599   case Intrinsic::x86_avx2_psrav_d:
11600   case Intrinsic::x86_avx2_psrav_d_256: {
11601     unsigned Opcode;
11602     switch (IntNo) {
11603     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11604     case Intrinsic::x86_avx2_psllv_d:
11605     case Intrinsic::x86_avx2_psllv_q:
11606     case Intrinsic::x86_avx2_psllv_d_256:
11607     case Intrinsic::x86_avx2_psllv_q_256:
11608       Opcode = ISD::SHL;
11609       break;
11610     case Intrinsic::x86_avx2_psrlv_d:
11611     case Intrinsic::x86_avx2_psrlv_q:
11612     case Intrinsic::x86_avx2_psrlv_d_256:
11613     case Intrinsic::x86_avx2_psrlv_q_256:
11614       Opcode = ISD::SRL;
11615       break;
11616     case Intrinsic::x86_avx2_psrav_d:
11617     case Intrinsic::x86_avx2_psrav_d_256:
11618       Opcode = ISD::SRA;
11619       break;
11620     }
11621     return DAG.getNode(Opcode, dl, Op.getValueType(),
11622                        Op.getOperand(1), Op.getOperand(2));
11623   }
11624
11625   case Intrinsic::x86_ssse3_pshuf_b_128:
11626   case Intrinsic::x86_avx2_pshuf_b:
11627     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11628                        Op.getOperand(1), Op.getOperand(2));
11629
11630   case Intrinsic::x86_ssse3_psign_b_128:
11631   case Intrinsic::x86_ssse3_psign_w_128:
11632   case Intrinsic::x86_ssse3_psign_d_128:
11633   case Intrinsic::x86_avx2_psign_b:
11634   case Intrinsic::x86_avx2_psign_w:
11635   case Intrinsic::x86_avx2_psign_d:
11636     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11637                        Op.getOperand(1), Op.getOperand(2));
11638
11639   case Intrinsic::x86_sse41_insertps:
11640     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11641                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11642
11643   case Intrinsic::x86_avx_vperm2f128_ps_256:
11644   case Intrinsic::x86_avx_vperm2f128_pd_256:
11645   case Intrinsic::x86_avx_vperm2f128_si_256:
11646   case Intrinsic::x86_avx2_vperm2i128:
11647     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11648                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11649
11650   case Intrinsic::x86_avx2_permd:
11651   case Intrinsic::x86_avx2_permps:
11652     // Operands intentionally swapped. Mask is last operand to intrinsic,
11653     // but second operand for node/instruction.
11654     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11655                        Op.getOperand(2), Op.getOperand(1));
11656
11657   case Intrinsic::x86_sse_sqrt_ps:
11658   case Intrinsic::x86_sse2_sqrt_pd:
11659   case Intrinsic::x86_avx_sqrt_ps_256:
11660   case Intrinsic::x86_avx_sqrt_pd_256:
11661     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11662
11663   // ptest and testp intrinsics. The intrinsic these come from are designed to
11664   // return an integer value, not just an instruction so lower it to the ptest
11665   // or testp pattern and a setcc for the result.
11666   case Intrinsic::x86_sse41_ptestz:
11667   case Intrinsic::x86_sse41_ptestc:
11668   case Intrinsic::x86_sse41_ptestnzc:
11669   case Intrinsic::x86_avx_ptestz_256:
11670   case Intrinsic::x86_avx_ptestc_256:
11671   case Intrinsic::x86_avx_ptestnzc_256:
11672   case Intrinsic::x86_avx_vtestz_ps:
11673   case Intrinsic::x86_avx_vtestc_ps:
11674   case Intrinsic::x86_avx_vtestnzc_ps:
11675   case Intrinsic::x86_avx_vtestz_pd:
11676   case Intrinsic::x86_avx_vtestc_pd:
11677   case Intrinsic::x86_avx_vtestnzc_pd:
11678   case Intrinsic::x86_avx_vtestz_ps_256:
11679   case Intrinsic::x86_avx_vtestc_ps_256:
11680   case Intrinsic::x86_avx_vtestnzc_ps_256:
11681   case Intrinsic::x86_avx_vtestz_pd_256:
11682   case Intrinsic::x86_avx_vtestc_pd_256:
11683   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11684     bool IsTestPacked = false;
11685     unsigned X86CC;
11686     switch (IntNo) {
11687     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11688     case Intrinsic::x86_avx_vtestz_ps:
11689     case Intrinsic::x86_avx_vtestz_pd:
11690     case Intrinsic::x86_avx_vtestz_ps_256:
11691     case Intrinsic::x86_avx_vtestz_pd_256:
11692       IsTestPacked = true; // Fallthrough
11693     case Intrinsic::x86_sse41_ptestz:
11694     case Intrinsic::x86_avx_ptestz_256:
11695       // ZF = 1
11696       X86CC = X86::COND_E;
11697       break;
11698     case Intrinsic::x86_avx_vtestc_ps:
11699     case Intrinsic::x86_avx_vtestc_pd:
11700     case Intrinsic::x86_avx_vtestc_ps_256:
11701     case Intrinsic::x86_avx_vtestc_pd_256:
11702       IsTestPacked = true; // Fallthrough
11703     case Intrinsic::x86_sse41_ptestc:
11704     case Intrinsic::x86_avx_ptestc_256:
11705       // CF = 1
11706       X86CC = X86::COND_B;
11707       break;
11708     case Intrinsic::x86_avx_vtestnzc_ps:
11709     case Intrinsic::x86_avx_vtestnzc_pd:
11710     case Intrinsic::x86_avx_vtestnzc_ps_256:
11711     case Intrinsic::x86_avx_vtestnzc_pd_256:
11712       IsTestPacked = true; // Fallthrough
11713     case Intrinsic::x86_sse41_ptestnzc:
11714     case Intrinsic::x86_avx_ptestnzc_256:
11715       // ZF and CF = 0
11716       X86CC = X86::COND_A;
11717       break;
11718     }
11719
11720     SDValue LHS = Op.getOperand(1);
11721     SDValue RHS = Op.getOperand(2);
11722     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11723     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11724     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11725     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11726     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11727   }
11728   case Intrinsic::x86_avx512_kortestz_w:
11729   case Intrinsic::x86_avx512_kortestc_w: {
11730     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
11731     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11732     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11733     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11734     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11735     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
11736     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11737   }
11738
11739   // SSE/AVX shift intrinsics
11740   case Intrinsic::x86_sse2_psll_w:
11741   case Intrinsic::x86_sse2_psll_d:
11742   case Intrinsic::x86_sse2_psll_q:
11743   case Intrinsic::x86_avx2_psll_w:
11744   case Intrinsic::x86_avx2_psll_d:
11745   case Intrinsic::x86_avx2_psll_q:
11746   case Intrinsic::x86_sse2_psrl_w:
11747   case Intrinsic::x86_sse2_psrl_d:
11748   case Intrinsic::x86_sse2_psrl_q:
11749   case Intrinsic::x86_avx2_psrl_w:
11750   case Intrinsic::x86_avx2_psrl_d:
11751   case Intrinsic::x86_avx2_psrl_q:
11752   case Intrinsic::x86_sse2_psra_w:
11753   case Intrinsic::x86_sse2_psra_d:
11754   case Intrinsic::x86_avx2_psra_w:
11755   case Intrinsic::x86_avx2_psra_d: {
11756     unsigned Opcode;
11757     switch (IntNo) {
11758     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11759     case Intrinsic::x86_sse2_psll_w:
11760     case Intrinsic::x86_sse2_psll_d:
11761     case Intrinsic::x86_sse2_psll_q:
11762     case Intrinsic::x86_avx2_psll_w:
11763     case Intrinsic::x86_avx2_psll_d:
11764     case Intrinsic::x86_avx2_psll_q:
11765       Opcode = X86ISD::VSHL;
11766       break;
11767     case Intrinsic::x86_sse2_psrl_w:
11768     case Intrinsic::x86_sse2_psrl_d:
11769     case Intrinsic::x86_sse2_psrl_q:
11770     case Intrinsic::x86_avx2_psrl_w:
11771     case Intrinsic::x86_avx2_psrl_d:
11772     case Intrinsic::x86_avx2_psrl_q:
11773       Opcode = X86ISD::VSRL;
11774       break;
11775     case Intrinsic::x86_sse2_psra_w:
11776     case Intrinsic::x86_sse2_psra_d:
11777     case Intrinsic::x86_avx2_psra_w:
11778     case Intrinsic::x86_avx2_psra_d:
11779       Opcode = X86ISD::VSRA;
11780       break;
11781     }
11782     return DAG.getNode(Opcode, dl, Op.getValueType(),
11783                        Op.getOperand(1), Op.getOperand(2));
11784   }
11785
11786   // SSE/AVX immediate shift intrinsics
11787   case Intrinsic::x86_sse2_pslli_w:
11788   case Intrinsic::x86_sse2_pslli_d:
11789   case Intrinsic::x86_sse2_pslli_q:
11790   case Intrinsic::x86_avx2_pslli_w:
11791   case Intrinsic::x86_avx2_pslli_d:
11792   case Intrinsic::x86_avx2_pslli_q:
11793   case Intrinsic::x86_sse2_psrli_w:
11794   case Intrinsic::x86_sse2_psrli_d:
11795   case Intrinsic::x86_sse2_psrli_q:
11796   case Intrinsic::x86_avx2_psrli_w:
11797   case Intrinsic::x86_avx2_psrli_d:
11798   case Intrinsic::x86_avx2_psrli_q:
11799   case Intrinsic::x86_sse2_psrai_w:
11800   case Intrinsic::x86_sse2_psrai_d:
11801   case Intrinsic::x86_avx2_psrai_w:
11802   case Intrinsic::x86_avx2_psrai_d: {
11803     unsigned Opcode;
11804     switch (IntNo) {
11805     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11806     case Intrinsic::x86_sse2_pslli_w:
11807     case Intrinsic::x86_sse2_pslli_d:
11808     case Intrinsic::x86_sse2_pslli_q:
11809     case Intrinsic::x86_avx2_pslli_w:
11810     case Intrinsic::x86_avx2_pslli_d:
11811     case Intrinsic::x86_avx2_pslli_q:
11812       Opcode = X86ISD::VSHLI;
11813       break;
11814     case Intrinsic::x86_sse2_psrli_w:
11815     case Intrinsic::x86_sse2_psrli_d:
11816     case Intrinsic::x86_sse2_psrli_q:
11817     case Intrinsic::x86_avx2_psrli_w:
11818     case Intrinsic::x86_avx2_psrli_d:
11819     case Intrinsic::x86_avx2_psrli_q:
11820       Opcode = X86ISD::VSRLI;
11821       break;
11822     case Intrinsic::x86_sse2_psrai_w:
11823     case Intrinsic::x86_sse2_psrai_d:
11824     case Intrinsic::x86_avx2_psrai_w:
11825     case Intrinsic::x86_avx2_psrai_d:
11826       Opcode = X86ISD::VSRAI;
11827       break;
11828     }
11829     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
11830                                Op.getOperand(1), Op.getOperand(2), DAG);
11831   }
11832
11833   case Intrinsic::x86_sse42_pcmpistria128:
11834   case Intrinsic::x86_sse42_pcmpestria128:
11835   case Intrinsic::x86_sse42_pcmpistric128:
11836   case Intrinsic::x86_sse42_pcmpestric128:
11837   case Intrinsic::x86_sse42_pcmpistrio128:
11838   case Intrinsic::x86_sse42_pcmpestrio128:
11839   case Intrinsic::x86_sse42_pcmpistris128:
11840   case Intrinsic::x86_sse42_pcmpestris128:
11841   case Intrinsic::x86_sse42_pcmpistriz128:
11842   case Intrinsic::x86_sse42_pcmpestriz128: {
11843     unsigned Opcode;
11844     unsigned X86CC;
11845     switch (IntNo) {
11846     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11847     case Intrinsic::x86_sse42_pcmpistria128:
11848       Opcode = X86ISD::PCMPISTRI;
11849       X86CC = X86::COND_A;
11850       break;
11851     case Intrinsic::x86_sse42_pcmpestria128:
11852       Opcode = X86ISD::PCMPESTRI;
11853       X86CC = X86::COND_A;
11854       break;
11855     case Intrinsic::x86_sse42_pcmpistric128:
11856       Opcode = X86ISD::PCMPISTRI;
11857       X86CC = X86::COND_B;
11858       break;
11859     case Intrinsic::x86_sse42_pcmpestric128:
11860       Opcode = X86ISD::PCMPESTRI;
11861       X86CC = X86::COND_B;
11862       break;
11863     case Intrinsic::x86_sse42_pcmpistrio128:
11864       Opcode = X86ISD::PCMPISTRI;
11865       X86CC = X86::COND_O;
11866       break;
11867     case Intrinsic::x86_sse42_pcmpestrio128:
11868       Opcode = X86ISD::PCMPESTRI;
11869       X86CC = X86::COND_O;
11870       break;
11871     case Intrinsic::x86_sse42_pcmpistris128:
11872       Opcode = X86ISD::PCMPISTRI;
11873       X86CC = X86::COND_S;
11874       break;
11875     case Intrinsic::x86_sse42_pcmpestris128:
11876       Opcode = X86ISD::PCMPESTRI;
11877       X86CC = X86::COND_S;
11878       break;
11879     case Intrinsic::x86_sse42_pcmpistriz128:
11880       Opcode = X86ISD::PCMPISTRI;
11881       X86CC = X86::COND_E;
11882       break;
11883     case Intrinsic::x86_sse42_pcmpestriz128:
11884       Opcode = X86ISD::PCMPESTRI;
11885       X86CC = X86::COND_E;
11886       break;
11887     }
11888     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11889     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11890     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11891     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11892                                 DAG.getConstant(X86CC, MVT::i8),
11893                                 SDValue(PCMP.getNode(), 1));
11894     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11895   }
11896
11897   case Intrinsic::x86_sse42_pcmpistri128:
11898   case Intrinsic::x86_sse42_pcmpestri128: {
11899     unsigned Opcode;
11900     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11901       Opcode = X86ISD::PCMPISTRI;
11902     else
11903       Opcode = X86ISD::PCMPESTRI;
11904
11905     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11906     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11907     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11908   }
11909   case Intrinsic::x86_fma_vfmadd_ps:
11910   case Intrinsic::x86_fma_vfmadd_pd:
11911   case Intrinsic::x86_fma_vfmsub_ps:
11912   case Intrinsic::x86_fma_vfmsub_pd:
11913   case Intrinsic::x86_fma_vfnmadd_ps:
11914   case Intrinsic::x86_fma_vfnmadd_pd:
11915   case Intrinsic::x86_fma_vfnmsub_ps:
11916   case Intrinsic::x86_fma_vfnmsub_pd:
11917   case Intrinsic::x86_fma_vfmaddsub_ps:
11918   case Intrinsic::x86_fma_vfmaddsub_pd:
11919   case Intrinsic::x86_fma_vfmsubadd_ps:
11920   case Intrinsic::x86_fma_vfmsubadd_pd:
11921   case Intrinsic::x86_fma_vfmadd_ps_256:
11922   case Intrinsic::x86_fma_vfmadd_pd_256:
11923   case Intrinsic::x86_fma_vfmsub_ps_256:
11924   case Intrinsic::x86_fma_vfmsub_pd_256:
11925   case Intrinsic::x86_fma_vfnmadd_ps_256:
11926   case Intrinsic::x86_fma_vfnmadd_pd_256:
11927   case Intrinsic::x86_fma_vfnmsub_ps_256:
11928   case Intrinsic::x86_fma_vfnmsub_pd_256:
11929   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11930   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11931   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11932   case Intrinsic::x86_fma_vfmsubadd_pd_256:
11933   case Intrinsic::x86_fma_vfmadd_ps_512:
11934   case Intrinsic::x86_fma_vfmadd_pd_512:
11935   case Intrinsic::x86_fma_vfmsub_ps_512:
11936   case Intrinsic::x86_fma_vfmsub_pd_512:
11937   case Intrinsic::x86_fma_vfnmadd_ps_512:
11938   case Intrinsic::x86_fma_vfnmadd_pd_512:
11939   case Intrinsic::x86_fma_vfnmsub_ps_512:
11940   case Intrinsic::x86_fma_vfnmsub_pd_512:
11941   case Intrinsic::x86_fma_vfmaddsub_ps_512:
11942   case Intrinsic::x86_fma_vfmaddsub_pd_512:
11943   case Intrinsic::x86_fma_vfmsubadd_ps_512:
11944   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
11945     unsigned Opc;
11946     switch (IntNo) {
11947     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11948     case Intrinsic::x86_fma_vfmadd_ps:
11949     case Intrinsic::x86_fma_vfmadd_pd:
11950     case Intrinsic::x86_fma_vfmadd_ps_256:
11951     case Intrinsic::x86_fma_vfmadd_pd_256:
11952     case Intrinsic::x86_fma_vfmadd_ps_512:
11953     case Intrinsic::x86_fma_vfmadd_pd_512:
11954       Opc = X86ISD::FMADD;
11955       break;
11956     case Intrinsic::x86_fma_vfmsub_ps:
11957     case Intrinsic::x86_fma_vfmsub_pd:
11958     case Intrinsic::x86_fma_vfmsub_ps_256:
11959     case Intrinsic::x86_fma_vfmsub_pd_256:
11960     case Intrinsic::x86_fma_vfmsub_ps_512:
11961     case Intrinsic::x86_fma_vfmsub_pd_512:
11962       Opc = X86ISD::FMSUB;
11963       break;
11964     case Intrinsic::x86_fma_vfnmadd_ps:
11965     case Intrinsic::x86_fma_vfnmadd_pd:
11966     case Intrinsic::x86_fma_vfnmadd_ps_256:
11967     case Intrinsic::x86_fma_vfnmadd_pd_256:
11968     case Intrinsic::x86_fma_vfnmadd_ps_512:
11969     case Intrinsic::x86_fma_vfnmadd_pd_512:
11970       Opc = X86ISD::FNMADD;
11971       break;
11972     case Intrinsic::x86_fma_vfnmsub_ps:
11973     case Intrinsic::x86_fma_vfnmsub_pd:
11974     case Intrinsic::x86_fma_vfnmsub_ps_256:
11975     case Intrinsic::x86_fma_vfnmsub_pd_256:
11976     case Intrinsic::x86_fma_vfnmsub_ps_512:
11977     case Intrinsic::x86_fma_vfnmsub_pd_512:
11978       Opc = X86ISD::FNMSUB;
11979       break;
11980     case Intrinsic::x86_fma_vfmaddsub_ps:
11981     case Intrinsic::x86_fma_vfmaddsub_pd:
11982     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11983     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11984     case Intrinsic::x86_fma_vfmaddsub_ps_512:
11985     case Intrinsic::x86_fma_vfmaddsub_pd_512:
11986       Opc = X86ISD::FMADDSUB;
11987       break;
11988     case Intrinsic::x86_fma_vfmsubadd_ps:
11989     case Intrinsic::x86_fma_vfmsubadd_pd:
11990     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11991     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11992     case Intrinsic::x86_fma_vfmsubadd_ps_512:
11993     case Intrinsic::x86_fma_vfmsubadd_pd_512:
11994       Opc = X86ISD::FMSUBADD;
11995       break;
11996     }
11997
11998     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11999                        Op.getOperand(2), Op.getOperand(3));
12000   }
12001   }
12002 }
12003
12004 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12005                              SDValue Base, SDValue Index,
12006                              SDValue ScaleOp, SDValue Chain,
12007                              const X86Subtarget * Subtarget) {
12008   SDLoc dl(Op);
12009   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12010   assert(C && "Invalid scale type");
12011   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12012   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
12013   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12014                              Index.getSimpleValueType().getVectorNumElements());
12015   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
12016   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
12017   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12018   SDValue Segment = DAG.getRegister(0, MVT::i32);
12019   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12020   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12021   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
12022   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
12023 }
12024
12025 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12026                               SDValue Src, SDValue Mask, SDValue Base,
12027                               SDValue Index, SDValue ScaleOp, SDValue Chain,
12028                               const X86Subtarget * Subtarget) {
12029   SDLoc dl(Op);
12030   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12031   assert(C && "Invalid scale type");
12032   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12033   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12034                              Index.getSimpleValueType().getVectorNumElements());
12035   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12036   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
12037   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12038   SDValue Segment = DAG.getRegister(0, MVT::i32);
12039   if (Src.getOpcode() == ISD::UNDEF)
12040     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
12041   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12042   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12043   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
12044   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
12045 }
12046
12047 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12048                               SDValue Src, SDValue Base, SDValue Index,
12049                               SDValue ScaleOp, SDValue Chain) {
12050   SDLoc dl(Op);
12051   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12052   assert(C && "Invalid scale type");
12053   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12054   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12055   SDValue Segment = DAG.getRegister(0, MVT::i32);
12056   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12057                              Index.getSimpleValueType().getVectorNumElements());
12058   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
12059   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12060   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12061   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12062   return SDValue(Res, 1);
12063 }
12064
12065 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12066                                SDValue Src, SDValue Mask, SDValue Base,
12067                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
12068   SDLoc dl(Op);
12069   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12070   assert(C && "Invalid scale type");
12071   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12072   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12073   SDValue Segment = DAG.getRegister(0, MVT::i32);
12074   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12075                              Index.getSimpleValueType().getVectorNumElements());
12076   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12077   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12078   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12079   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12080   return SDValue(Res, 1);
12081 }
12082
12083 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
12084                                       SelectionDAG &DAG) {
12085   SDLoc dl(Op);
12086   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
12087   switch (IntNo) {
12088   default: return SDValue();    // Don't custom lower most intrinsics.
12089
12090   // RDRAND/RDSEED intrinsics.
12091   case Intrinsic::x86_rdrand_16:
12092   case Intrinsic::x86_rdrand_32:
12093   case Intrinsic::x86_rdrand_64:
12094   case Intrinsic::x86_rdseed_16:
12095   case Intrinsic::x86_rdseed_32:
12096   case Intrinsic::x86_rdseed_64: {
12097     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
12098                        IntNo == Intrinsic::x86_rdseed_32 ||
12099                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
12100                                                             X86ISD::RDRAND;
12101     // Emit the node with the right value type.
12102     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12103     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
12104
12105     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12106     // Otherwise return the value from Rand, which is always 0, casted to i32.
12107     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12108                       DAG.getConstant(1, Op->getValueType(1)),
12109                       DAG.getConstant(X86::COND_B, MVT::i32),
12110                       SDValue(Result.getNode(), 1) };
12111     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12112                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12113                                   Ops, array_lengthof(Ops));
12114
12115     // Return { result, isValid, chain }.
12116     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12117                        SDValue(Result.getNode(), 2));
12118   }
12119   //int_gather(index, base, scale);
12120   case Intrinsic::x86_avx512_gather_qpd_512:
12121   case Intrinsic::x86_avx512_gather_qps_512:
12122   case Intrinsic::x86_avx512_gather_dpd_512:
12123   case Intrinsic::x86_avx512_gather_qpi_512:
12124   case Intrinsic::x86_avx512_gather_qpq_512:
12125   case Intrinsic::x86_avx512_gather_dpq_512:
12126   case Intrinsic::x86_avx512_gather_dps_512:
12127   case Intrinsic::x86_avx512_gather_dpi_512: {
12128     unsigned Opc;
12129     switch (IntNo) {
12130     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12131     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12132     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12133     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12134     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12135     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12136     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12137     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12138     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12139     }
12140     SDValue Chain = Op.getOperand(0);
12141     SDValue Index = Op.getOperand(2);
12142     SDValue Base  = Op.getOperand(3);
12143     SDValue Scale = Op.getOperand(4);
12144     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12145   }
12146   //int_gather_mask(v1, mask, index, base, scale);
12147   case Intrinsic::x86_avx512_gather_qps_mask_512:
12148   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12149   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12150   case Intrinsic::x86_avx512_gather_dps_mask_512:
12151   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12152   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12153   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12154   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12155     unsigned Opc;
12156     switch (IntNo) {
12157     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12158     case Intrinsic::x86_avx512_gather_qps_mask_512:
12159       Opc = X86::VGATHERQPSZrm; break;
12160     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12161       Opc = X86::VGATHERQPDZrm; break;
12162     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12163       Opc = X86::VGATHERDPDZrm; break;
12164     case Intrinsic::x86_avx512_gather_dps_mask_512:
12165       Opc = X86::VGATHERDPSZrm; break;
12166     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12167       Opc = X86::VPGATHERQDZrm; break;
12168     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12169       Opc = X86::VPGATHERQQZrm; break;
12170     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12171       Opc = X86::VPGATHERDDZrm; break;
12172     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12173       Opc = X86::VPGATHERDQZrm; break;
12174     }
12175     SDValue Chain = Op.getOperand(0);
12176     SDValue Src   = Op.getOperand(2);
12177     SDValue Mask  = Op.getOperand(3);
12178     SDValue Index = Op.getOperand(4);
12179     SDValue Base  = Op.getOperand(5);
12180     SDValue Scale = Op.getOperand(6);
12181     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12182                           Subtarget);
12183   }
12184   //int_scatter(base, index, v1, scale);
12185   case Intrinsic::x86_avx512_scatter_qpd_512:
12186   case Intrinsic::x86_avx512_scatter_qps_512:
12187   case Intrinsic::x86_avx512_scatter_dpd_512:
12188   case Intrinsic::x86_avx512_scatter_qpi_512:
12189   case Intrinsic::x86_avx512_scatter_qpq_512:
12190   case Intrinsic::x86_avx512_scatter_dpq_512:
12191   case Intrinsic::x86_avx512_scatter_dps_512:
12192   case Intrinsic::x86_avx512_scatter_dpi_512: {
12193     unsigned Opc;
12194     switch (IntNo) {
12195     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12196     case Intrinsic::x86_avx512_scatter_qpd_512:
12197       Opc = X86::VSCATTERQPDZmr; break;
12198     case Intrinsic::x86_avx512_scatter_qps_512:
12199       Opc = X86::VSCATTERQPSZmr; break;
12200     case Intrinsic::x86_avx512_scatter_dpd_512:
12201       Opc = X86::VSCATTERDPDZmr; break;
12202     case Intrinsic::x86_avx512_scatter_dps_512:
12203       Opc = X86::VSCATTERDPSZmr; break;
12204     case Intrinsic::x86_avx512_scatter_qpi_512:
12205       Opc = X86::VPSCATTERQDZmr; break;
12206     case Intrinsic::x86_avx512_scatter_qpq_512:
12207       Opc = X86::VPSCATTERQQZmr; break;
12208     case Intrinsic::x86_avx512_scatter_dpq_512:
12209       Opc = X86::VPSCATTERDQZmr; break;
12210     case Intrinsic::x86_avx512_scatter_dpi_512:
12211       Opc = X86::VPSCATTERDDZmr; break;
12212     }
12213     SDValue Chain = Op.getOperand(0);
12214     SDValue Base  = Op.getOperand(2);
12215     SDValue Index = Op.getOperand(3);
12216     SDValue Src   = Op.getOperand(4);
12217     SDValue Scale = Op.getOperand(5);
12218     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12219   }
12220   //int_scatter_mask(base, mask, index, v1, scale);
12221   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12222   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12223   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12224   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12225   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12226   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12227   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12228   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12229     unsigned Opc;
12230     switch (IntNo) {
12231     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12232     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12233       Opc = X86::VSCATTERQPDZmr; break;
12234     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12235       Opc = X86::VSCATTERQPSZmr; break;
12236     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12237       Opc = X86::VSCATTERDPDZmr; break;
12238     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12239       Opc = X86::VSCATTERDPSZmr; break;
12240     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12241       Opc = X86::VPSCATTERQDZmr; break;
12242     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12243       Opc = X86::VPSCATTERQQZmr; break;
12244     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12245       Opc = X86::VPSCATTERDQZmr; break;
12246     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12247       Opc = X86::VPSCATTERDDZmr; break;
12248     }
12249     SDValue Chain = Op.getOperand(0);
12250     SDValue Base  = Op.getOperand(2);
12251     SDValue Mask  = Op.getOperand(3);
12252     SDValue Index = Op.getOperand(4);
12253     SDValue Src   = Op.getOperand(5);
12254     SDValue Scale = Op.getOperand(6);
12255     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12256   }
12257   // XTEST intrinsics.
12258   case Intrinsic::x86_xtest: {
12259     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12260     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12261     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12262                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12263                                 InTrans);
12264     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12265     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12266                        Ret, SDValue(InTrans.getNode(), 1));
12267   }
12268   }
12269 }
12270
12271 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12272                                            SelectionDAG &DAG) const {
12273   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12274   MFI->setReturnAddressIsTaken(true);
12275
12276   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
12277     return SDValue();
12278
12279   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12280   SDLoc dl(Op);
12281   EVT PtrVT = getPointerTy();
12282
12283   if (Depth > 0) {
12284     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12285     const X86RegisterInfo *RegInfo =
12286       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12287     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12288     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12289                        DAG.getNode(ISD::ADD, dl, PtrVT,
12290                                    FrameAddr, Offset),
12291                        MachinePointerInfo(), false, false, false, 0);
12292   }
12293
12294   // Just load the return address.
12295   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12296   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12297                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12298 }
12299
12300 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12301   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12302   MFI->setFrameAddressIsTaken(true);
12303
12304   EVT VT = Op.getValueType();
12305   SDLoc dl(Op);  // FIXME probably not meaningful
12306   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12307   const X86RegisterInfo *RegInfo =
12308     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12309   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12310   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12311           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12312          "Invalid Frame Register!");
12313   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12314   while (Depth--)
12315     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12316                             MachinePointerInfo(),
12317                             false, false, false, 0);
12318   return FrameAddr;
12319 }
12320
12321 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12322                                                      SelectionDAG &DAG) const {
12323   const X86RegisterInfo *RegInfo =
12324     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12325   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12326 }
12327
12328 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12329   SDValue Chain     = Op.getOperand(0);
12330   SDValue Offset    = Op.getOperand(1);
12331   SDValue Handler   = Op.getOperand(2);
12332   SDLoc dl      (Op);
12333
12334   EVT PtrVT = getPointerTy();
12335   const X86RegisterInfo *RegInfo =
12336     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12337   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12338   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12339           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12340          "Invalid Frame Register!");
12341   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12342   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12343
12344   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12345                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12346   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12347   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12348                        false, false, 0);
12349   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12350
12351   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12352                      DAG.getRegister(StoreAddrReg, PtrVT));
12353 }
12354
12355 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12356                                                SelectionDAG &DAG) const {
12357   SDLoc DL(Op);
12358   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12359                      DAG.getVTList(MVT::i32, MVT::Other),
12360                      Op.getOperand(0), Op.getOperand(1));
12361 }
12362
12363 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12364                                                 SelectionDAG &DAG) const {
12365   SDLoc DL(Op);
12366   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12367                      Op.getOperand(0), Op.getOperand(1));
12368 }
12369
12370 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12371   return Op.getOperand(0);
12372 }
12373
12374 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12375                                                 SelectionDAG &DAG) const {
12376   SDValue Root = Op.getOperand(0);
12377   SDValue Trmp = Op.getOperand(1); // trampoline
12378   SDValue FPtr = Op.getOperand(2); // nested function
12379   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12380   SDLoc dl (Op);
12381
12382   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12383   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12384
12385   if (Subtarget->is64Bit()) {
12386     SDValue OutChains[6];
12387
12388     // Large code-model.
12389     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12390     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12391
12392     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12393     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12394
12395     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12396
12397     // Load the pointer to the nested function into R11.
12398     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12399     SDValue Addr = Trmp;
12400     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12401                                 Addr, MachinePointerInfo(TrmpAddr),
12402                                 false, false, 0);
12403
12404     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12405                        DAG.getConstant(2, MVT::i64));
12406     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12407                                 MachinePointerInfo(TrmpAddr, 2),
12408                                 false, false, 2);
12409
12410     // Load the 'nest' parameter value into R10.
12411     // R10 is specified in X86CallingConv.td
12412     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12413     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12414                        DAG.getConstant(10, MVT::i64));
12415     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12416                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12417                                 false, false, 0);
12418
12419     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12420                        DAG.getConstant(12, MVT::i64));
12421     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12422                                 MachinePointerInfo(TrmpAddr, 12),
12423                                 false, false, 2);
12424
12425     // Jump to the nested function.
12426     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12427     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12428                        DAG.getConstant(20, MVT::i64));
12429     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12430                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12431                                 false, false, 0);
12432
12433     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12434     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12435                        DAG.getConstant(22, MVT::i64));
12436     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12437                                 MachinePointerInfo(TrmpAddr, 22),
12438                                 false, false, 0);
12439
12440     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12441   } else {
12442     const Function *Func =
12443       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12444     CallingConv::ID CC = Func->getCallingConv();
12445     unsigned NestReg;
12446
12447     switch (CC) {
12448     default:
12449       llvm_unreachable("Unsupported calling convention");
12450     case CallingConv::C:
12451     case CallingConv::X86_StdCall: {
12452       // Pass 'nest' parameter in ECX.
12453       // Must be kept in sync with X86CallingConv.td
12454       NestReg = X86::ECX;
12455
12456       // Check that ECX wasn't needed by an 'inreg' parameter.
12457       FunctionType *FTy = Func->getFunctionType();
12458       const AttributeSet &Attrs = Func->getAttributes();
12459
12460       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12461         unsigned InRegCount = 0;
12462         unsigned Idx = 1;
12463
12464         for (FunctionType::param_iterator I = FTy->param_begin(),
12465              E = FTy->param_end(); I != E; ++I, ++Idx)
12466           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12467             // FIXME: should only count parameters that are lowered to integers.
12468             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12469
12470         if (InRegCount > 2) {
12471           report_fatal_error("Nest register in use - reduce number of inreg"
12472                              " parameters!");
12473         }
12474       }
12475       break;
12476     }
12477     case CallingConv::X86_FastCall:
12478     case CallingConv::X86_ThisCall:
12479     case CallingConv::Fast:
12480       // Pass 'nest' parameter in EAX.
12481       // Must be kept in sync with X86CallingConv.td
12482       NestReg = X86::EAX;
12483       break;
12484     }
12485
12486     SDValue OutChains[4];
12487     SDValue Addr, Disp;
12488
12489     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12490                        DAG.getConstant(10, MVT::i32));
12491     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12492
12493     // This is storing the opcode for MOV32ri.
12494     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12495     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12496     OutChains[0] = DAG.getStore(Root, dl,
12497                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12498                                 Trmp, MachinePointerInfo(TrmpAddr),
12499                                 false, false, 0);
12500
12501     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12502                        DAG.getConstant(1, MVT::i32));
12503     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12504                                 MachinePointerInfo(TrmpAddr, 1),
12505                                 false, false, 1);
12506
12507     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12508     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12509                        DAG.getConstant(5, MVT::i32));
12510     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12511                                 MachinePointerInfo(TrmpAddr, 5),
12512                                 false, false, 1);
12513
12514     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12515                        DAG.getConstant(6, MVT::i32));
12516     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12517                                 MachinePointerInfo(TrmpAddr, 6),
12518                                 false, false, 1);
12519
12520     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12521   }
12522 }
12523
12524 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12525                                             SelectionDAG &DAG) const {
12526   /*
12527    The rounding mode is in bits 11:10 of FPSR, and has the following
12528    settings:
12529      00 Round to nearest
12530      01 Round to -inf
12531      10 Round to +inf
12532      11 Round to 0
12533
12534   FLT_ROUNDS, on the other hand, expects the following:
12535     -1 Undefined
12536      0 Round to 0
12537      1 Round to nearest
12538      2 Round to +inf
12539      3 Round to -inf
12540
12541   To perform the conversion, we do:
12542     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12543   */
12544
12545   MachineFunction &MF = DAG.getMachineFunction();
12546   const TargetMachine &TM = MF.getTarget();
12547   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12548   unsigned StackAlignment = TFI.getStackAlignment();
12549   MVT VT = Op.getSimpleValueType();
12550   SDLoc DL(Op);
12551
12552   // Save FP Control Word to stack slot
12553   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12554   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12555
12556   MachineMemOperand *MMO =
12557    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12558                            MachineMemOperand::MOStore, 2, 2);
12559
12560   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12561   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12562                                           DAG.getVTList(MVT::Other),
12563                                           Ops, array_lengthof(Ops), MVT::i16,
12564                                           MMO);
12565
12566   // Load FP Control Word from stack slot
12567   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12568                             MachinePointerInfo(), false, false, false, 0);
12569
12570   // Transform as necessary
12571   SDValue CWD1 =
12572     DAG.getNode(ISD::SRL, DL, MVT::i16,
12573                 DAG.getNode(ISD::AND, DL, MVT::i16,
12574                             CWD, DAG.getConstant(0x800, MVT::i16)),
12575                 DAG.getConstant(11, MVT::i8));
12576   SDValue CWD2 =
12577     DAG.getNode(ISD::SRL, DL, MVT::i16,
12578                 DAG.getNode(ISD::AND, DL, MVT::i16,
12579                             CWD, DAG.getConstant(0x400, MVT::i16)),
12580                 DAG.getConstant(9, MVT::i8));
12581
12582   SDValue RetVal =
12583     DAG.getNode(ISD::AND, DL, MVT::i16,
12584                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12585                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12586                             DAG.getConstant(1, MVT::i16)),
12587                 DAG.getConstant(3, MVT::i16));
12588
12589   return DAG.getNode((VT.getSizeInBits() < 16 ?
12590                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12591 }
12592
12593 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12594   MVT VT = Op.getSimpleValueType();
12595   EVT OpVT = VT;
12596   unsigned NumBits = VT.getSizeInBits();
12597   SDLoc dl(Op);
12598
12599   Op = Op.getOperand(0);
12600   if (VT == MVT::i8) {
12601     // Zero extend to i32 since there is not an i8 bsr.
12602     OpVT = MVT::i32;
12603     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12604   }
12605
12606   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12607   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12608   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12609
12610   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12611   SDValue Ops[] = {
12612     Op,
12613     DAG.getConstant(NumBits+NumBits-1, OpVT),
12614     DAG.getConstant(X86::COND_E, MVT::i8),
12615     Op.getValue(1)
12616   };
12617   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12618
12619   // Finally xor with NumBits-1.
12620   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12621
12622   if (VT == MVT::i8)
12623     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12624   return Op;
12625 }
12626
12627 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12628   MVT VT = Op.getSimpleValueType();
12629   EVT OpVT = VT;
12630   unsigned NumBits = VT.getSizeInBits();
12631   SDLoc dl(Op);
12632
12633   Op = Op.getOperand(0);
12634   if (VT == MVT::i8) {
12635     // Zero extend to i32 since there is not an i8 bsr.
12636     OpVT = MVT::i32;
12637     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12638   }
12639
12640   // Issue a bsr (scan bits in reverse).
12641   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12642   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12643
12644   // And xor with NumBits-1.
12645   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12646
12647   if (VT == MVT::i8)
12648     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12649   return Op;
12650 }
12651
12652 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12653   MVT VT = Op.getSimpleValueType();
12654   unsigned NumBits = VT.getSizeInBits();
12655   SDLoc dl(Op);
12656   Op = Op.getOperand(0);
12657
12658   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12659   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12660   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12661
12662   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12663   SDValue Ops[] = {
12664     Op,
12665     DAG.getConstant(NumBits, VT),
12666     DAG.getConstant(X86::COND_E, MVT::i8),
12667     Op.getValue(1)
12668   };
12669   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12670 }
12671
12672 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12673 // ones, and then concatenate the result back.
12674 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12675   MVT VT = Op.getSimpleValueType();
12676
12677   assert(VT.is256BitVector() && VT.isInteger() &&
12678          "Unsupported value type for operation");
12679
12680   unsigned NumElems = VT.getVectorNumElements();
12681   SDLoc dl(Op);
12682
12683   // Extract the LHS vectors
12684   SDValue LHS = Op.getOperand(0);
12685   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12686   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12687
12688   // Extract the RHS vectors
12689   SDValue RHS = Op.getOperand(1);
12690   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12691   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12692
12693   MVT EltVT = VT.getVectorElementType();
12694   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12695
12696   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12697                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12698                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12699 }
12700
12701 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12702   assert(Op.getSimpleValueType().is256BitVector() &&
12703          Op.getSimpleValueType().isInteger() &&
12704          "Only handle AVX 256-bit vector integer operation");
12705   return Lower256IntArith(Op, DAG);
12706 }
12707
12708 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12709   assert(Op.getSimpleValueType().is256BitVector() &&
12710          Op.getSimpleValueType().isInteger() &&
12711          "Only handle AVX 256-bit vector integer operation");
12712   return Lower256IntArith(Op, DAG);
12713 }
12714
12715 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12716                         SelectionDAG &DAG) {
12717   SDLoc dl(Op);
12718   MVT VT = Op.getSimpleValueType();
12719
12720   // Decompose 256-bit ops into smaller 128-bit ops.
12721   if (VT.is256BitVector() && !Subtarget->hasInt256())
12722     return Lower256IntArith(Op, DAG);
12723
12724   SDValue A = Op.getOperand(0);
12725   SDValue B = Op.getOperand(1);
12726
12727   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12728   if (VT == MVT::v4i32) {
12729     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12730            "Should not custom lower when pmuldq is available!");
12731
12732     // Extract the odd parts.
12733     static const int UnpackMask[] = { 1, -1, 3, -1 };
12734     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12735     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12736
12737     // Multiply the even parts.
12738     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12739     // Now multiply odd parts.
12740     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12741
12742     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12743     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12744
12745     // Merge the two vectors back together with a shuffle. This expands into 2
12746     // shuffles.
12747     static const int ShufMask[] = { 0, 4, 2, 6 };
12748     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12749   }
12750
12751   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12752          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12753
12754   //  Ahi = psrlqi(a, 32);
12755   //  Bhi = psrlqi(b, 32);
12756   //
12757   //  AloBlo = pmuludq(a, b);
12758   //  AloBhi = pmuludq(a, Bhi);
12759   //  AhiBlo = pmuludq(Ahi, b);
12760
12761   //  AloBhi = psllqi(AloBhi, 32);
12762   //  AhiBlo = psllqi(AhiBlo, 32);
12763   //  return AloBlo + AloBhi + AhiBlo;
12764
12765   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12766   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12767
12768   // Bit cast to 32-bit vectors for MULUDQ
12769   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12770                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12771   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12772   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12773   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12774   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12775
12776   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12777   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12778   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12779
12780   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12781   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12782
12783   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12784   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12785 }
12786
12787 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12788   MVT VT = Op.getSimpleValueType();
12789   MVT EltTy = VT.getVectorElementType();
12790   unsigned NumElts = VT.getVectorNumElements();
12791   SDValue N0 = Op.getOperand(0);
12792   SDLoc dl(Op);
12793
12794   // Lower sdiv X, pow2-const.
12795   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12796   if (!C)
12797     return SDValue();
12798
12799   APInt SplatValue, SplatUndef;
12800   unsigned SplatBitSize;
12801   bool HasAnyUndefs;
12802   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12803                           HasAnyUndefs) ||
12804       EltTy.getSizeInBits() < SplatBitSize)
12805     return SDValue();
12806
12807   if ((SplatValue != 0) &&
12808       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12809     unsigned Lg2 = SplatValue.countTrailingZeros();
12810     // Splat the sign bit.
12811     SmallVector<SDValue, 16> Sz(NumElts,
12812                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12813                                                 EltTy));
12814     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12815                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12816                                           NumElts));
12817     // Add (N0 < 0) ? abs2 - 1 : 0;
12818     SmallVector<SDValue, 16> Amt(NumElts,
12819                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12820                                                  EltTy));
12821     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12822                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12823                                           NumElts));
12824     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12825     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12826     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12827                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12828                                           NumElts));
12829
12830     // If we're dividing by a positive value, we're done.  Otherwise, we must
12831     // negate the result.
12832     if (SplatValue.isNonNegative())
12833       return SRA;
12834
12835     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12836     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12837     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12838   }
12839   return SDValue();
12840 }
12841
12842 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12843                                          const X86Subtarget *Subtarget) {
12844   MVT VT = Op.getSimpleValueType();
12845   SDLoc dl(Op);
12846   SDValue R = Op.getOperand(0);
12847   SDValue Amt = Op.getOperand(1);
12848
12849   // Optimize shl/srl/sra with constant shift amount.
12850   if (isSplatVector(Amt.getNode())) {
12851     SDValue SclrAmt = Amt->getOperand(0);
12852     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12853       uint64_t ShiftAmt = C->getZExtValue();
12854
12855       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12856           (Subtarget->hasInt256() &&
12857            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12858           (Subtarget->hasAVX512() &&
12859            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12860         if (Op.getOpcode() == ISD::SHL)
12861           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12862                                             DAG);
12863         if (Op.getOpcode() == ISD::SRL)
12864           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12865                                             DAG);
12866         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12867           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12868                                             DAG);
12869       }
12870
12871       if (VT == MVT::v16i8) {
12872         if (Op.getOpcode() == ISD::SHL) {
12873           // Make a large shift.
12874           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12875                                                    MVT::v8i16, R, ShiftAmt,
12876                                                    DAG);
12877           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12878           // Zero out the rightmost bits.
12879           SmallVector<SDValue, 16> V(16,
12880                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12881                                                      MVT::i8));
12882           return DAG.getNode(ISD::AND, dl, VT, SHL,
12883                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12884         }
12885         if (Op.getOpcode() == ISD::SRL) {
12886           // Make a large shift.
12887           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12888                                                    MVT::v8i16, R, ShiftAmt,
12889                                                    DAG);
12890           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12891           // Zero out the leftmost bits.
12892           SmallVector<SDValue, 16> V(16,
12893                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12894                                                      MVT::i8));
12895           return DAG.getNode(ISD::AND, dl, VT, SRL,
12896                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12897         }
12898         if (Op.getOpcode() == ISD::SRA) {
12899           if (ShiftAmt == 7) {
12900             // R s>> 7  ===  R s< 0
12901             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12902             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12903           }
12904
12905           // R s>> a === ((R u>> a) ^ m) - m
12906           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12907           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12908                                                          MVT::i8));
12909           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12910           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12911           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12912           return Res;
12913         }
12914         llvm_unreachable("Unknown shift opcode.");
12915       }
12916
12917       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12918         if (Op.getOpcode() == ISD::SHL) {
12919           // Make a large shift.
12920           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12921                                                    MVT::v16i16, R, ShiftAmt,
12922                                                    DAG);
12923           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12924           // Zero out the rightmost bits.
12925           SmallVector<SDValue, 32> V(32,
12926                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12927                                                      MVT::i8));
12928           return DAG.getNode(ISD::AND, dl, VT, SHL,
12929                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12930         }
12931         if (Op.getOpcode() == ISD::SRL) {
12932           // Make a large shift.
12933           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12934                                                    MVT::v16i16, R, ShiftAmt,
12935                                                    DAG);
12936           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12937           // Zero out the leftmost bits.
12938           SmallVector<SDValue, 32> V(32,
12939                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12940                                                      MVT::i8));
12941           return DAG.getNode(ISD::AND, dl, VT, SRL,
12942                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12943         }
12944         if (Op.getOpcode() == ISD::SRA) {
12945           if (ShiftAmt == 7) {
12946             // R s>> 7  ===  R s< 0
12947             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12948             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12949           }
12950
12951           // R s>> a === ((R u>> a) ^ m) - m
12952           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12953           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12954                                                          MVT::i8));
12955           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12956           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12957           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12958           return Res;
12959         }
12960         llvm_unreachable("Unknown shift opcode.");
12961       }
12962     }
12963   }
12964
12965   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12966   if (!Subtarget->is64Bit() &&
12967       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12968       Amt.getOpcode() == ISD::BITCAST &&
12969       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12970     Amt = Amt.getOperand(0);
12971     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
12972                      VT.getVectorNumElements();
12973     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12974     uint64_t ShiftAmt = 0;
12975     for (unsigned i = 0; i != Ratio; ++i) {
12976       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12977       if (C == 0)
12978         return SDValue();
12979       // 6 == Log2(64)
12980       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12981     }
12982     // Check remaining shift amounts.
12983     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12984       uint64_t ShAmt = 0;
12985       for (unsigned j = 0; j != Ratio; ++j) {
12986         ConstantSDNode *C =
12987           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12988         if (C == 0)
12989           return SDValue();
12990         // 6 == Log2(64)
12991         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12992       }
12993       if (ShAmt != ShiftAmt)
12994         return SDValue();
12995     }
12996     switch (Op.getOpcode()) {
12997     default:
12998       llvm_unreachable("Unknown shift opcode!");
12999     case ISD::SHL:
13000       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
13001                                         DAG);
13002     case ISD::SRL:
13003       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
13004                                         DAG);
13005     case ISD::SRA:
13006       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
13007                                         DAG);
13008     }
13009   }
13010
13011   return SDValue();
13012 }
13013
13014 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
13015                                         const X86Subtarget* Subtarget) {
13016   MVT VT = Op.getSimpleValueType();
13017   SDLoc dl(Op);
13018   SDValue R = Op.getOperand(0);
13019   SDValue Amt = Op.getOperand(1);
13020
13021   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
13022       VT == MVT::v4i32 || VT == MVT::v8i16 ||
13023       (Subtarget->hasInt256() &&
13024        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
13025         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
13026        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
13027     SDValue BaseShAmt;
13028     EVT EltVT = VT.getVectorElementType();
13029
13030     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13031       unsigned NumElts = VT.getVectorNumElements();
13032       unsigned i, j;
13033       for (i = 0; i != NumElts; ++i) {
13034         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
13035           continue;
13036         break;
13037       }
13038       for (j = i; j != NumElts; ++j) {
13039         SDValue Arg = Amt.getOperand(j);
13040         if (Arg.getOpcode() == ISD::UNDEF) continue;
13041         if (Arg != Amt.getOperand(i))
13042           break;
13043       }
13044       if (i != NumElts && j == NumElts)
13045         BaseShAmt = Amt.getOperand(i);
13046     } else {
13047       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
13048         Amt = Amt.getOperand(0);
13049       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
13050                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
13051         SDValue InVec = Amt.getOperand(0);
13052         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13053           unsigned NumElts = InVec.getValueType().getVectorNumElements();
13054           unsigned i = 0;
13055           for (; i != NumElts; ++i) {
13056             SDValue Arg = InVec.getOperand(i);
13057             if (Arg.getOpcode() == ISD::UNDEF) continue;
13058             BaseShAmt = Arg;
13059             break;
13060           }
13061         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13062            if (ConstantSDNode *C =
13063                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
13064              unsigned SplatIdx =
13065                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
13066              if (C->getZExtValue() == SplatIdx)
13067                BaseShAmt = InVec.getOperand(1);
13068            }
13069         }
13070         if (BaseShAmt.getNode() == 0)
13071           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
13072                                   DAG.getIntPtrConstant(0));
13073       }
13074     }
13075
13076     if (BaseShAmt.getNode()) {
13077       if (EltVT.bitsGT(MVT::i32))
13078         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
13079       else if (EltVT.bitsLT(MVT::i32))
13080         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
13081
13082       switch (Op.getOpcode()) {
13083       default:
13084         llvm_unreachable("Unknown shift opcode!");
13085       case ISD::SHL:
13086         switch (VT.SimpleTy) {
13087         default: return SDValue();
13088         case MVT::v2i64:
13089         case MVT::v4i32:
13090         case MVT::v8i16:
13091         case MVT::v4i64:
13092         case MVT::v8i32:
13093         case MVT::v16i16:
13094         case MVT::v16i32:
13095         case MVT::v8i64:
13096           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
13097         }
13098       case ISD::SRA:
13099         switch (VT.SimpleTy) {
13100         default: return SDValue();
13101         case MVT::v4i32:
13102         case MVT::v8i16:
13103         case MVT::v8i32:
13104         case MVT::v16i16:
13105         case MVT::v16i32:
13106         case MVT::v8i64:
13107           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13108         }
13109       case ISD::SRL:
13110         switch (VT.SimpleTy) {
13111         default: return SDValue();
13112         case MVT::v2i64:
13113         case MVT::v4i32:
13114         case MVT::v8i16:
13115         case MVT::v4i64:
13116         case MVT::v8i32:
13117         case MVT::v16i16:
13118         case MVT::v16i32:
13119         case MVT::v8i64:
13120           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13121         }
13122       }
13123     }
13124   }
13125
13126   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13127   if (!Subtarget->is64Bit() &&
13128       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13129       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13130       Amt.getOpcode() == ISD::BITCAST &&
13131       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13132     Amt = Amt.getOperand(0);
13133     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13134                      VT.getVectorNumElements();
13135     std::vector<SDValue> Vals(Ratio);
13136     for (unsigned i = 0; i != Ratio; ++i)
13137       Vals[i] = Amt.getOperand(i);
13138     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13139       for (unsigned j = 0; j != Ratio; ++j)
13140         if (Vals[j] != Amt.getOperand(i + j))
13141           return SDValue();
13142     }
13143     switch (Op.getOpcode()) {
13144     default:
13145       llvm_unreachable("Unknown shift opcode!");
13146     case ISD::SHL:
13147       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13148     case ISD::SRL:
13149       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13150     case ISD::SRA:
13151       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13152     }
13153   }
13154
13155   return SDValue();
13156 }
13157
13158 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13159                           SelectionDAG &DAG) {
13160
13161   MVT VT = Op.getSimpleValueType();
13162   SDLoc dl(Op);
13163   SDValue R = Op.getOperand(0);
13164   SDValue Amt = Op.getOperand(1);
13165   SDValue V;
13166
13167   if (!Subtarget->hasSSE2())
13168     return SDValue();
13169
13170   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13171   if (V.getNode())
13172     return V;
13173
13174   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13175   if (V.getNode())
13176       return V;
13177
13178   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13179     return Op;
13180   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13181   if (Subtarget->hasInt256()) {
13182     if (Op.getOpcode() == ISD::SRL &&
13183         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13184          VT == MVT::v4i64 || VT == MVT::v8i32))
13185       return Op;
13186     if (Op.getOpcode() == ISD::SHL &&
13187         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13188          VT == MVT::v4i64 || VT == MVT::v8i32))
13189       return Op;
13190     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13191       return Op;
13192   }
13193
13194   // If possible, lower this packed shift into a vector multiply instead of
13195   // expanding it into a sequence of scalar shifts.
13196   // Do this only if the vector shift count is a constant build_vector.
13197   if (Op.getOpcode() == ISD::SHL && 
13198       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
13199        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
13200       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
13201     SmallVector<SDValue, 8> Elts;
13202     EVT SVT = VT.getScalarType();
13203     unsigned SVTBits = SVT.getSizeInBits();
13204     const APInt &One = APInt(SVTBits, 1);
13205     unsigned NumElems = VT.getVectorNumElements();
13206
13207     for (unsigned i=0; i !=NumElems; ++i) {
13208       SDValue Op = Amt->getOperand(i);
13209       if (Op->getOpcode() == ISD::UNDEF) {
13210         Elts.push_back(Op);
13211         continue;
13212       }
13213
13214       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
13215       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
13216       uint64_t ShAmt = C.getZExtValue();
13217       if (ShAmt >= SVTBits) {
13218         Elts.push_back(DAG.getUNDEF(SVT));
13219         continue;
13220       }
13221       Elts.push_back(DAG.getConstant(One.shl(ShAmt), SVT));
13222     }
13223     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Elts[0], NumElems);
13224     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
13225   }
13226
13227   // Lower SHL with variable shift amount.
13228   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13229     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13230
13231     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13232     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13233     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13234     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13235   }
13236
13237   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13238     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13239
13240     // a = a << 5;
13241     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13242     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13243
13244     // Turn 'a' into a mask suitable for VSELECT
13245     SDValue VSelM = DAG.getConstant(0x80, VT);
13246     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13247     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13248
13249     SDValue CM1 = DAG.getConstant(0x0f, VT);
13250     SDValue CM2 = DAG.getConstant(0x3f, VT);
13251
13252     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13253     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13254     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13255     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13256     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13257
13258     // a += a
13259     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13260     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13261     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13262
13263     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13264     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13265     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13266     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13267     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13268
13269     // a += a
13270     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13271     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13272     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13273
13274     // return VSELECT(r, r+r, a);
13275     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13276                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13277     return R;
13278   }
13279
13280   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
13281   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
13282   // solution better.
13283   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
13284     MVT NewVT = VT == MVT::v8i16 ? MVT::v8i32 : MVT::v16i16;
13285     unsigned ExtOpc =
13286         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
13287     R = DAG.getNode(ExtOpc, dl, NewVT, R);
13288     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, NewVT, Amt);
13289     return DAG.getNode(ISD::TRUNCATE, dl, VT,
13290                        DAG.getNode(Op.getOpcode(), dl, NewVT, R, Amt));
13291     }
13292
13293   // Decompose 256-bit shifts into smaller 128-bit shifts.
13294   if (VT.is256BitVector()) {
13295     unsigned NumElems = VT.getVectorNumElements();
13296     MVT EltVT = VT.getVectorElementType();
13297     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13298
13299     // Extract the two vectors
13300     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13301     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13302
13303     // Recreate the shift amount vectors
13304     SDValue Amt1, Amt2;
13305     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13306       // Constant shift amount
13307       SmallVector<SDValue, 4> Amt1Csts;
13308       SmallVector<SDValue, 4> Amt2Csts;
13309       for (unsigned i = 0; i != NumElems/2; ++i)
13310         Amt1Csts.push_back(Amt->getOperand(i));
13311       for (unsigned i = NumElems/2; i != NumElems; ++i)
13312         Amt2Csts.push_back(Amt->getOperand(i));
13313
13314       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13315                                  &Amt1Csts[0], NumElems/2);
13316       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13317                                  &Amt2Csts[0], NumElems/2);
13318     } else {
13319       // Variable shift amount
13320       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13321       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13322     }
13323
13324     // Issue new vector shifts for the smaller types
13325     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13326     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13327
13328     // Concatenate the result back
13329     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13330   }
13331
13332   return SDValue();
13333 }
13334
13335 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13336   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13337   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13338   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13339   // has only one use.
13340   SDNode *N = Op.getNode();
13341   SDValue LHS = N->getOperand(0);
13342   SDValue RHS = N->getOperand(1);
13343   unsigned BaseOp = 0;
13344   unsigned Cond = 0;
13345   SDLoc DL(Op);
13346   switch (Op.getOpcode()) {
13347   default: llvm_unreachable("Unknown ovf instruction!");
13348   case ISD::SADDO:
13349     // A subtract of one will be selected as a INC. Note that INC doesn't
13350     // set CF, so we can't do this for UADDO.
13351     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13352       if (C->isOne()) {
13353         BaseOp = X86ISD::INC;
13354         Cond = X86::COND_O;
13355         break;
13356       }
13357     BaseOp = X86ISD::ADD;
13358     Cond = X86::COND_O;
13359     break;
13360   case ISD::UADDO:
13361     BaseOp = X86ISD::ADD;
13362     Cond = X86::COND_B;
13363     break;
13364   case ISD::SSUBO:
13365     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13366     // set CF, so we can't do this for USUBO.
13367     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13368       if (C->isOne()) {
13369         BaseOp = X86ISD::DEC;
13370         Cond = X86::COND_O;
13371         break;
13372       }
13373     BaseOp = X86ISD::SUB;
13374     Cond = X86::COND_O;
13375     break;
13376   case ISD::USUBO:
13377     BaseOp = X86ISD::SUB;
13378     Cond = X86::COND_B;
13379     break;
13380   case ISD::SMULO:
13381     BaseOp = X86ISD::SMUL;
13382     Cond = X86::COND_O;
13383     break;
13384   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13385     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13386                                  MVT::i32);
13387     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13388
13389     SDValue SetCC =
13390       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13391                   DAG.getConstant(X86::COND_O, MVT::i32),
13392                   SDValue(Sum.getNode(), 2));
13393
13394     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13395   }
13396   }
13397
13398   // Also sets EFLAGS.
13399   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13400   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13401
13402   SDValue SetCC =
13403     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13404                 DAG.getConstant(Cond, MVT::i32),
13405                 SDValue(Sum.getNode(), 1));
13406
13407   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13408 }
13409
13410 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13411                                                   SelectionDAG &DAG) const {
13412   SDLoc dl(Op);
13413   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13414   MVT VT = Op.getSimpleValueType();
13415
13416   if (!Subtarget->hasSSE2() || !VT.isVector())
13417     return SDValue();
13418
13419   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13420                       ExtraVT.getScalarType().getSizeInBits();
13421
13422   switch (VT.SimpleTy) {
13423     default: return SDValue();
13424     case MVT::v8i32:
13425     case MVT::v16i16:
13426       if (!Subtarget->hasFp256())
13427         return SDValue();
13428       if (!Subtarget->hasInt256()) {
13429         // needs to be split
13430         unsigned NumElems = VT.getVectorNumElements();
13431
13432         // Extract the LHS vectors
13433         SDValue LHS = Op.getOperand(0);
13434         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13435         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13436
13437         MVT EltVT = VT.getVectorElementType();
13438         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13439
13440         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13441         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13442         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13443                                    ExtraNumElems/2);
13444         SDValue Extra = DAG.getValueType(ExtraVT);
13445
13446         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13447         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13448
13449         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13450       }
13451       // fall through
13452     case MVT::v4i32:
13453     case MVT::v8i16: {
13454       SDValue Op0 = Op.getOperand(0);
13455       SDValue Op00 = Op0.getOperand(0);
13456       SDValue Tmp1;
13457       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13458       if (Op0.getOpcode() == ISD::BITCAST &&
13459           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13460         // (sext (vzext x)) -> (vsext x)
13461         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13462         if (Tmp1.getNode()) {
13463           EVT ExtraEltVT = ExtraVT.getVectorElementType();
13464           // This folding is only valid when the in-reg type is a vector of i8,
13465           // i16, or i32.
13466           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13467               ExtraEltVT == MVT::i32) {
13468             SDValue Tmp1Op0 = Tmp1.getOperand(0);
13469             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13470                    "This optimization is invalid without a VZEXT.");
13471             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13472           }
13473           Op0 = Tmp1;
13474         }
13475       }
13476
13477       // If the above didn't work, then just use Shift-Left + Shift-Right.
13478       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13479                                         DAG);
13480       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13481                                         DAG);
13482     }
13483   }
13484 }
13485
13486 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13487                                  SelectionDAG &DAG) {
13488   SDLoc dl(Op);
13489   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13490     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13491   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13492     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13493
13494   // The only fence that needs an instruction is a sequentially-consistent
13495   // cross-thread fence.
13496   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13497     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13498     // no-sse2). There isn't any reason to disable it if the target processor
13499     // supports it.
13500     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13501       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13502
13503     SDValue Chain = Op.getOperand(0);
13504     SDValue Zero = DAG.getConstant(0, MVT::i32);
13505     SDValue Ops[] = {
13506       DAG.getRegister(X86::ESP, MVT::i32), // Base
13507       DAG.getTargetConstant(1, MVT::i8),   // Scale
13508       DAG.getRegister(0, MVT::i32),        // Index
13509       DAG.getTargetConstant(0, MVT::i32),  // Disp
13510       DAG.getRegister(0, MVT::i32),        // Segment.
13511       Zero,
13512       Chain
13513     };
13514     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13515     return SDValue(Res, 0);
13516   }
13517
13518   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13519   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13520 }
13521
13522 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13523                              SelectionDAG &DAG) {
13524   MVT T = Op.getSimpleValueType();
13525   SDLoc DL(Op);
13526   unsigned Reg = 0;
13527   unsigned size = 0;
13528   switch(T.SimpleTy) {
13529   default: llvm_unreachable("Invalid value type!");
13530   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13531   case MVT::i16: Reg = X86::AX;  size = 2; break;
13532   case MVT::i32: Reg = X86::EAX; size = 4; break;
13533   case MVT::i64:
13534     assert(Subtarget->is64Bit() && "Node not type legal!");
13535     Reg = X86::RAX; size = 8;
13536     break;
13537   }
13538   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13539                                     Op.getOperand(2), SDValue());
13540   SDValue Ops[] = { cpIn.getValue(0),
13541                     Op.getOperand(1),
13542                     Op.getOperand(3),
13543                     DAG.getTargetConstant(size, MVT::i8),
13544                     cpIn.getValue(1) };
13545   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13546   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13547   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13548                                            Ops, array_lengthof(Ops), T, MMO);
13549   SDValue cpOut =
13550     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13551   return cpOut;
13552 }
13553
13554 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13555                                      SelectionDAG &DAG) {
13556   assert(Subtarget->is64Bit() && "Result not type legalized?");
13557   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13558   SDValue TheChain = Op.getOperand(0);
13559   SDLoc dl(Op);
13560   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13561   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13562   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13563                                    rax.getValue(2));
13564   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13565                             DAG.getConstant(32, MVT::i8));
13566   SDValue Ops[] = {
13567     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13568     rdx.getValue(1)
13569   };
13570   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13571 }
13572
13573 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13574                             SelectionDAG &DAG) {
13575   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13576   MVT DstVT = Op.getSimpleValueType();
13577   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13578          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13579   assert((DstVT == MVT::i64 ||
13580           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13581          "Unexpected custom BITCAST");
13582   // i64 <=> MMX conversions are Legal.
13583   if (SrcVT==MVT::i64 && DstVT.isVector())
13584     return Op;
13585   if (DstVT==MVT::i64 && SrcVT.isVector())
13586     return Op;
13587   // MMX <=> MMX conversions are Legal.
13588   if (SrcVT.isVector() && DstVT.isVector())
13589     return Op;
13590   // All other conversions need to be expanded.
13591   return SDValue();
13592 }
13593
13594 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13595   SDNode *Node = Op.getNode();
13596   SDLoc dl(Node);
13597   EVT T = Node->getValueType(0);
13598   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13599                               DAG.getConstant(0, T), Node->getOperand(2));
13600   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13601                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13602                        Node->getOperand(0),
13603                        Node->getOperand(1), negOp,
13604                        cast<AtomicSDNode>(Node)->getSrcValue(),
13605                        cast<AtomicSDNode>(Node)->getAlignment(),
13606                        cast<AtomicSDNode>(Node)->getOrdering(),
13607                        cast<AtomicSDNode>(Node)->getSynchScope());
13608 }
13609
13610 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13611   SDNode *Node = Op.getNode();
13612   SDLoc dl(Node);
13613   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13614
13615   // Convert seq_cst store -> xchg
13616   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13617   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13618   //        (The only way to get a 16-byte store is cmpxchg16b)
13619   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13620   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13621       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13622     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13623                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13624                                  Node->getOperand(0),
13625                                  Node->getOperand(1), Node->getOperand(2),
13626                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13627                                  cast<AtomicSDNode>(Node)->getOrdering(),
13628                                  cast<AtomicSDNode>(Node)->getSynchScope());
13629     return Swap.getValue(1);
13630   }
13631   // Other atomic stores have a simple pattern.
13632   return Op;
13633 }
13634
13635 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13636   EVT VT = Op.getNode()->getSimpleValueType(0);
13637
13638   // Let legalize expand this if it isn't a legal type yet.
13639   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13640     return SDValue();
13641
13642   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13643
13644   unsigned Opc;
13645   bool ExtraOp = false;
13646   switch (Op.getOpcode()) {
13647   default: llvm_unreachable("Invalid code");
13648   case ISD::ADDC: Opc = X86ISD::ADD; break;
13649   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13650   case ISD::SUBC: Opc = X86ISD::SUB; break;
13651   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13652   }
13653
13654   if (!ExtraOp)
13655     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13656                        Op.getOperand(1));
13657   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13658                      Op.getOperand(1), Op.getOperand(2));
13659 }
13660
13661 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13662                             SelectionDAG &DAG) {
13663   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13664
13665   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13666   // which returns the values as { float, float } (in XMM0) or
13667   // { double, double } (which is returned in XMM0, XMM1).
13668   SDLoc dl(Op);
13669   SDValue Arg = Op.getOperand(0);
13670   EVT ArgVT = Arg.getValueType();
13671   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13672
13673   TargetLowering::ArgListTy Args;
13674   TargetLowering::ArgListEntry Entry;
13675
13676   Entry.Node = Arg;
13677   Entry.Ty = ArgTy;
13678   Entry.isSExt = false;
13679   Entry.isZExt = false;
13680   Args.push_back(Entry);
13681
13682   bool isF64 = ArgVT == MVT::f64;
13683   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13684   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13685   // the results are returned via SRet in memory.
13686   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13687   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13688   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13689
13690   Type *RetTy = isF64
13691     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13692     : (Type*)VectorType::get(ArgTy, 4);
13693   TargetLowering::
13694     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13695                          false, false, false, false, 0,
13696                          CallingConv::C, /*isTaillCall=*/false,
13697                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13698                          Callee, Args, DAG, dl);
13699   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13700
13701   if (isF64)
13702     // Returned in xmm0 and xmm1.
13703     return CallResult.first;
13704
13705   // Returned in bits 0:31 and 32:64 xmm0.
13706   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13707                                CallResult.first, DAG.getIntPtrConstant(0));
13708   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13709                                CallResult.first, DAG.getIntPtrConstant(1));
13710   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13711   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13712 }
13713
13714 /// LowerOperation - Provide custom lowering hooks for some operations.
13715 ///
13716 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13717   switch (Op.getOpcode()) {
13718   default: llvm_unreachable("Should not custom lower this!");
13719   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13720   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13721   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13722   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13723   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13724   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13725   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13726   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13727   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13728   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13729   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13730   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13731   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13732   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13733   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13734   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13735   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13736   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13737   case ISD::SHL_PARTS:
13738   case ISD::SRA_PARTS:
13739   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13740   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13741   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13742   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13743   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13744   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13745   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13746   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13747   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13748   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13749   case ISD::FABS:               return LowerFABS(Op, DAG);
13750   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13751   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13752   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13753   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13754   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13755   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13756   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13757   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13758   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13759   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13760   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13761   case ISD::INTRINSIC_VOID:
13762   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13763   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13764   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13765   case ISD::FRAME_TO_ARGS_OFFSET:
13766                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13767   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13768   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13769   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13770   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13771   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13772   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13773   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13774   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13775   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13776   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13777   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13778   case ISD::SRA:
13779   case ISD::SRL:
13780   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13781   case ISD::SADDO:
13782   case ISD::UADDO:
13783   case ISD::SSUBO:
13784   case ISD::USUBO:
13785   case ISD::SMULO:
13786   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13787   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13788   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13789   case ISD::ADDC:
13790   case ISD::ADDE:
13791   case ISD::SUBC:
13792   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13793   case ISD::ADD:                return LowerADD(Op, DAG);
13794   case ISD::SUB:                return LowerSUB(Op, DAG);
13795   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13796   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13797   }
13798 }
13799
13800 static void ReplaceATOMIC_LOAD(SDNode *Node,
13801                                   SmallVectorImpl<SDValue> &Results,
13802                                   SelectionDAG &DAG) {
13803   SDLoc dl(Node);
13804   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13805
13806   // Convert wide load -> cmpxchg8b/cmpxchg16b
13807   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13808   //        (The only way to get a 16-byte load is cmpxchg16b)
13809   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13810   SDValue Zero = DAG.getConstant(0, VT);
13811   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13812                                Node->getOperand(0),
13813                                Node->getOperand(1), Zero, Zero,
13814                                cast<AtomicSDNode>(Node)->getMemOperand(),
13815                                cast<AtomicSDNode>(Node)->getOrdering(),
13816                                cast<AtomicSDNode>(Node)->getSynchScope());
13817   Results.push_back(Swap.getValue(0));
13818   Results.push_back(Swap.getValue(1));
13819 }
13820
13821 static void
13822 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13823                         SelectionDAG &DAG, unsigned NewOp) {
13824   SDLoc dl(Node);
13825   assert (Node->getValueType(0) == MVT::i64 &&
13826           "Only know how to expand i64 atomics");
13827
13828   SDValue Chain = Node->getOperand(0);
13829   SDValue In1 = Node->getOperand(1);
13830   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13831                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13832   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13833                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13834   SDValue Ops[] = { Chain, In1, In2L, In2H };
13835   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13836   SDValue Result =
13837     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13838                             cast<MemSDNode>(Node)->getMemOperand());
13839   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13840   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13841   Results.push_back(Result.getValue(2));
13842 }
13843
13844 /// ReplaceNodeResults - Replace a node with an illegal result type
13845 /// with a new node built out of custom code.
13846 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13847                                            SmallVectorImpl<SDValue>&Results,
13848                                            SelectionDAG &DAG) const {
13849   SDLoc dl(N);
13850   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13851   switch (N->getOpcode()) {
13852   default:
13853     llvm_unreachable("Do not know how to custom type legalize this operation!");
13854   case ISD::SIGN_EXTEND_INREG:
13855   case ISD::ADDC:
13856   case ISD::ADDE:
13857   case ISD::SUBC:
13858   case ISD::SUBE:
13859     // We don't want to expand or promote these.
13860     return;
13861   case ISD::FP_TO_SINT:
13862   case ISD::FP_TO_UINT: {
13863     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13864
13865     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13866       return;
13867
13868     std::pair<SDValue,SDValue> Vals =
13869         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13870     SDValue FIST = Vals.first, StackSlot = Vals.second;
13871     if (FIST.getNode() != 0) {
13872       EVT VT = N->getValueType(0);
13873       // Return a load from the stack slot.
13874       if (StackSlot.getNode() != 0)
13875         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13876                                       MachinePointerInfo(),
13877                                       false, false, false, 0));
13878       else
13879         Results.push_back(FIST);
13880     }
13881     return;
13882   }
13883   case ISD::UINT_TO_FP: {
13884     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13885     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13886         N->getValueType(0) != MVT::v2f32)
13887       return;
13888     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13889                                  N->getOperand(0));
13890     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13891                                      MVT::f64);
13892     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13893     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13894                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13895     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13896     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13897     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13898     return;
13899   }
13900   case ISD::FP_ROUND: {
13901     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13902         return;
13903     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13904     Results.push_back(V);
13905     return;
13906   }
13907   case ISD::READCYCLECOUNTER: {
13908     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13909     SDValue TheChain = N->getOperand(0);
13910     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13911     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13912                                      rd.getValue(1));
13913     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13914                                      eax.getValue(2));
13915     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13916     SDValue Ops[] = { eax, edx };
13917     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13918                                   array_lengthof(Ops)));
13919     Results.push_back(edx.getValue(1));
13920     return;
13921   }
13922   case ISD::ATOMIC_CMP_SWAP: {
13923     EVT T = N->getValueType(0);
13924     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13925     bool Regs64bit = T == MVT::i128;
13926     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13927     SDValue cpInL, cpInH;
13928     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13929                         DAG.getConstant(0, HalfT));
13930     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13931                         DAG.getConstant(1, HalfT));
13932     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13933                              Regs64bit ? X86::RAX : X86::EAX,
13934                              cpInL, SDValue());
13935     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13936                              Regs64bit ? X86::RDX : X86::EDX,
13937                              cpInH, cpInL.getValue(1));
13938     SDValue swapInL, swapInH;
13939     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13940                           DAG.getConstant(0, HalfT));
13941     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13942                           DAG.getConstant(1, HalfT));
13943     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13944                                Regs64bit ? X86::RBX : X86::EBX,
13945                                swapInL, cpInH.getValue(1));
13946     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13947                                Regs64bit ? X86::RCX : X86::ECX,
13948                                swapInH, swapInL.getValue(1));
13949     SDValue Ops[] = { swapInH.getValue(0),
13950                       N->getOperand(1),
13951                       swapInH.getValue(1) };
13952     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13953     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13954     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13955                                   X86ISD::LCMPXCHG8_DAG;
13956     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13957                                              Ops, array_lengthof(Ops), T, MMO);
13958     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13959                                         Regs64bit ? X86::RAX : X86::EAX,
13960                                         HalfT, Result.getValue(1));
13961     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13962                                         Regs64bit ? X86::RDX : X86::EDX,
13963                                         HalfT, cpOutL.getValue(2));
13964     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13965     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13966     Results.push_back(cpOutH.getValue(1));
13967     return;
13968   }
13969   case ISD::ATOMIC_LOAD_ADD:
13970   case ISD::ATOMIC_LOAD_AND:
13971   case ISD::ATOMIC_LOAD_NAND:
13972   case ISD::ATOMIC_LOAD_OR:
13973   case ISD::ATOMIC_LOAD_SUB:
13974   case ISD::ATOMIC_LOAD_XOR:
13975   case ISD::ATOMIC_LOAD_MAX:
13976   case ISD::ATOMIC_LOAD_MIN:
13977   case ISD::ATOMIC_LOAD_UMAX:
13978   case ISD::ATOMIC_LOAD_UMIN:
13979   case ISD::ATOMIC_SWAP: {
13980     unsigned Opc;
13981     switch (N->getOpcode()) {
13982     default: llvm_unreachable("Unexpected opcode");
13983     case ISD::ATOMIC_LOAD_ADD:
13984       Opc = X86ISD::ATOMADD64_DAG;
13985       break;
13986     case ISD::ATOMIC_LOAD_AND:
13987       Opc = X86ISD::ATOMAND64_DAG;
13988       break;
13989     case ISD::ATOMIC_LOAD_NAND:
13990       Opc = X86ISD::ATOMNAND64_DAG;
13991       break;
13992     case ISD::ATOMIC_LOAD_OR:
13993       Opc = X86ISD::ATOMOR64_DAG;
13994       break;
13995     case ISD::ATOMIC_LOAD_SUB:
13996       Opc = X86ISD::ATOMSUB64_DAG;
13997       break;
13998     case ISD::ATOMIC_LOAD_XOR:
13999       Opc = X86ISD::ATOMXOR64_DAG;
14000       break;
14001     case ISD::ATOMIC_LOAD_MAX:
14002       Opc = X86ISD::ATOMMAX64_DAG;
14003       break;
14004     case ISD::ATOMIC_LOAD_MIN:
14005       Opc = X86ISD::ATOMMIN64_DAG;
14006       break;
14007     case ISD::ATOMIC_LOAD_UMAX:
14008       Opc = X86ISD::ATOMUMAX64_DAG;
14009       break;
14010     case ISD::ATOMIC_LOAD_UMIN:
14011       Opc = X86ISD::ATOMUMIN64_DAG;
14012       break;
14013     case ISD::ATOMIC_SWAP:
14014       Opc = X86ISD::ATOMSWAP64_DAG;
14015       break;
14016     }
14017     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
14018     return;
14019   }
14020   case ISD::ATOMIC_LOAD:
14021     ReplaceATOMIC_LOAD(N, Results, DAG);
14022   }
14023 }
14024
14025 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
14026   switch (Opcode) {
14027   default: return NULL;
14028   case X86ISD::BSF:                return "X86ISD::BSF";
14029   case X86ISD::BSR:                return "X86ISD::BSR";
14030   case X86ISD::SHLD:               return "X86ISD::SHLD";
14031   case X86ISD::SHRD:               return "X86ISD::SHRD";
14032   case X86ISD::FAND:               return "X86ISD::FAND";
14033   case X86ISD::FANDN:              return "X86ISD::FANDN";
14034   case X86ISD::FOR:                return "X86ISD::FOR";
14035   case X86ISD::FXOR:               return "X86ISD::FXOR";
14036   case X86ISD::FSRL:               return "X86ISD::FSRL";
14037   case X86ISD::FILD:               return "X86ISD::FILD";
14038   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
14039   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
14040   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
14041   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
14042   case X86ISD::FLD:                return "X86ISD::FLD";
14043   case X86ISD::FST:                return "X86ISD::FST";
14044   case X86ISD::CALL:               return "X86ISD::CALL";
14045   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
14046   case X86ISD::BT:                 return "X86ISD::BT";
14047   case X86ISD::CMP:                return "X86ISD::CMP";
14048   case X86ISD::COMI:               return "X86ISD::COMI";
14049   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
14050   case X86ISD::CMPM:               return "X86ISD::CMPM";
14051   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
14052   case X86ISD::SETCC:              return "X86ISD::SETCC";
14053   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
14054   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
14055   case X86ISD::CMOV:               return "X86ISD::CMOV";
14056   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
14057   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
14058   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
14059   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
14060   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
14061   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
14062   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
14063   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
14064   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
14065   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
14066   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
14067   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
14068   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
14069   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
14070   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
14071   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
14072   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
14073   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
14074   case X86ISD::HADD:               return "X86ISD::HADD";
14075   case X86ISD::HSUB:               return "X86ISD::HSUB";
14076   case X86ISD::FHADD:              return "X86ISD::FHADD";
14077   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
14078   case X86ISD::UMAX:               return "X86ISD::UMAX";
14079   case X86ISD::UMIN:               return "X86ISD::UMIN";
14080   case X86ISD::SMAX:               return "X86ISD::SMAX";
14081   case X86ISD::SMIN:               return "X86ISD::SMIN";
14082   case X86ISD::FMAX:               return "X86ISD::FMAX";
14083   case X86ISD::FMIN:               return "X86ISD::FMIN";
14084   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
14085   case X86ISD::FMINC:              return "X86ISD::FMINC";
14086   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
14087   case X86ISD::FRCP:               return "X86ISD::FRCP";
14088   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
14089   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
14090   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
14091   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
14092   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
14093   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
14094   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
14095   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
14096   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
14097   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
14098   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
14099   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
14100   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
14101   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
14102   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
14103   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
14104   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
14105   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
14106   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
14107   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
14108   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
14109   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
14110   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
14111   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
14112   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
14113   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
14114   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
14115   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
14116   case X86ISD::VSHL:               return "X86ISD::VSHL";
14117   case X86ISD::VSRL:               return "X86ISD::VSRL";
14118   case X86ISD::VSRA:               return "X86ISD::VSRA";
14119   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
14120   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
14121   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
14122   case X86ISD::CMPP:               return "X86ISD::CMPP";
14123   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
14124   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
14125   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
14126   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
14127   case X86ISD::ADD:                return "X86ISD::ADD";
14128   case X86ISD::SUB:                return "X86ISD::SUB";
14129   case X86ISD::ADC:                return "X86ISD::ADC";
14130   case X86ISD::SBB:                return "X86ISD::SBB";
14131   case X86ISD::SMUL:               return "X86ISD::SMUL";
14132   case X86ISD::UMUL:               return "X86ISD::UMUL";
14133   case X86ISD::INC:                return "X86ISD::INC";
14134   case X86ISD::DEC:                return "X86ISD::DEC";
14135   case X86ISD::OR:                 return "X86ISD::OR";
14136   case X86ISD::XOR:                return "X86ISD::XOR";
14137   case X86ISD::AND:                return "X86ISD::AND";
14138   case X86ISD::BZHI:               return "X86ISD::BZHI";
14139   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
14140   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
14141   case X86ISD::PTEST:              return "X86ISD::PTEST";
14142   case X86ISD::TESTP:              return "X86ISD::TESTP";
14143   case X86ISD::TESTM:              return "X86ISD::TESTM";
14144   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
14145   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
14146   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14147   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14148   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14149   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14150   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14151   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14152   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14153   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14154   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14155   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14156   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14157   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14158   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14159   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14160   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14161   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14162   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14163   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14164   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14165   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14166   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14167   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14168   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14169   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
14170   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14171   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14172   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14173   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14174   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14175   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14176   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14177   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14178   case X86ISD::SAHF:               return "X86ISD::SAHF";
14179   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14180   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14181   case X86ISD::FMADD:              return "X86ISD::FMADD";
14182   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14183   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14184   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14185   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14186   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14187   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14188   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14189   case X86ISD::XTEST:              return "X86ISD::XTEST";
14190   }
14191 }
14192
14193 // isLegalAddressingMode - Return true if the addressing mode represented
14194 // by AM is legal for this target, for a load/store of the specified type.
14195 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14196                                               Type *Ty) const {
14197   // X86 supports extremely general addressing modes.
14198   CodeModel::Model M = getTargetMachine().getCodeModel();
14199   Reloc::Model R = getTargetMachine().getRelocationModel();
14200
14201   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14202   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
14203     return false;
14204
14205   if (AM.BaseGV) {
14206     unsigned GVFlags =
14207       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14208
14209     // If a reference to this global requires an extra load, we can't fold it.
14210     if (isGlobalStubReference(GVFlags))
14211       return false;
14212
14213     // If BaseGV requires a register for the PIC base, we cannot also have a
14214     // BaseReg specified.
14215     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14216       return false;
14217
14218     // If lower 4G is not available, then we must use rip-relative addressing.
14219     if ((M != CodeModel::Small || R != Reloc::Static) &&
14220         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14221       return false;
14222   }
14223
14224   switch (AM.Scale) {
14225   case 0:
14226   case 1:
14227   case 2:
14228   case 4:
14229   case 8:
14230     // These scales always work.
14231     break;
14232   case 3:
14233   case 5:
14234   case 9:
14235     // These scales are formed with basereg+scalereg.  Only accept if there is
14236     // no basereg yet.
14237     if (AM.HasBaseReg)
14238       return false;
14239     break;
14240   default:  // Other stuff never works.
14241     return false;
14242   }
14243
14244   return true;
14245 }
14246
14247 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
14248   unsigned Bits = Ty->getScalarSizeInBits();
14249
14250   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
14251   // particularly cheaper than those without.
14252   if (Bits == 8)
14253     return false;
14254
14255   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
14256   // variable shifts just as cheap as scalar ones.
14257   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
14258     return false;
14259
14260   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
14261   // fully general vector.
14262   return true;
14263 }
14264
14265 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14266   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14267     return false;
14268   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14269   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14270   return NumBits1 > NumBits2;
14271 }
14272
14273 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14274   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14275     return false;
14276
14277   if (!isTypeLegal(EVT::getEVT(Ty1)))
14278     return false;
14279
14280   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14281
14282   // Assuming the caller doesn't have a zeroext or signext return parameter,
14283   // truncation all the way down to i1 is valid.
14284   return true;
14285 }
14286
14287 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14288   return isInt<32>(Imm);
14289 }
14290
14291 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14292   // Can also use sub to handle negated immediates.
14293   return isInt<32>(Imm);
14294 }
14295
14296 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14297   if (!VT1.isInteger() || !VT2.isInteger())
14298     return false;
14299   unsigned NumBits1 = VT1.getSizeInBits();
14300   unsigned NumBits2 = VT2.getSizeInBits();
14301   return NumBits1 > NumBits2;
14302 }
14303
14304 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14305   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14306   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14307 }
14308
14309 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14310   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14311   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14312 }
14313
14314 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14315   EVT VT1 = Val.getValueType();
14316   if (isZExtFree(VT1, VT2))
14317     return true;
14318
14319   if (Val.getOpcode() != ISD::LOAD)
14320     return false;
14321
14322   if (!VT1.isSimple() || !VT1.isInteger() ||
14323       !VT2.isSimple() || !VT2.isInteger())
14324     return false;
14325
14326   switch (VT1.getSimpleVT().SimpleTy) {
14327   default: break;
14328   case MVT::i8:
14329   case MVT::i16:
14330   case MVT::i32:
14331     // X86 has 8, 16, and 32-bit zero-extending loads.
14332     return true;
14333   }
14334
14335   return false;
14336 }
14337
14338 bool
14339 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14340   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14341     return false;
14342
14343   VT = VT.getScalarType();
14344
14345   if (!VT.isSimple())
14346     return false;
14347
14348   switch (VT.getSimpleVT().SimpleTy) {
14349   case MVT::f32:
14350   case MVT::f64:
14351     return true;
14352   default:
14353     break;
14354   }
14355
14356   return false;
14357 }
14358
14359 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
14360   // i16 instructions are longer (0x66 prefix) and potentially slower.
14361   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
14362 }
14363
14364 /// isShuffleMaskLegal - Targets can use this to indicate that they only
14365 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14366 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14367 /// are assumed to be legal.
14368 bool
14369 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
14370                                       EVT VT) const {
14371   if (!VT.isSimple())
14372     return false;
14373
14374   MVT SVT = VT.getSimpleVT();
14375
14376   // Very little shuffling can be done for 64-bit vectors right now.
14377   if (VT.getSizeInBits() == 64)
14378     return false;
14379
14380   // FIXME: pshufb, blends, shifts.
14381   return (SVT.getVectorNumElements() == 2 ||
14382           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
14383           isMOVLMask(M, SVT) ||
14384           isSHUFPMask(M, SVT) ||
14385           isPSHUFDMask(M, SVT) ||
14386           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14387           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14388           isPALIGNRMask(M, SVT, Subtarget) ||
14389           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14390           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14391           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14392           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
14393 }
14394
14395 bool
14396 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
14397                                           EVT VT) const {
14398   if (!VT.isSimple())
14399     return false;
14400
14401   MVT SVT = VT.getSimpleVT();
14402   unsigned NumElts = SVT.getVectorNumElements();
14403   // FIXME: This collection of masks seems suspect.
14404   if (NumElts == 2)
14405     return true;
14406   if (NumElts == 4 && SVT.is128BitVector()) {
14407     return (isMOVLMask(Mask, SVT)  ||
14408             isCommutedMOVLMask(Mask, SVT, true) ||
14409             isSHUFPMask(Mask, SVT) ||
14410             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14411   }
14412   return false;
14413 }
14414
14415 //===----------------------------------------------------------------------===//
14416 //                           X86 Scheduler Hooks
14417 //===----------------------------------------------------------------------===//
14418
14419 /// Utility function to emit xbegin specifying the start of an RTM region.
14420 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14421                                      const TargetInstrInfo *TII) {
14422   DebugLoc DL = MI->getDebugLoc();
14423
14424   const BasicBlock *BB = MBB->getBasicBlock();
14425   MachineFunction::iterator I = MBB;
14426   ++I;
14427
14428   // For the v = xbegin(), we generate
14429   //
14430   // thisMBB:
14431   //  xbegin sinkMBB
14432   //
14433   // mainMBB:
14434   //  eax = -1
14435   //
14436   // sinkMBB:
14437   //  v = eax
14438
14439   MachineBasicBlock *thisMBB = MBB;
14440   MachineFunction *MF = MBB->getParent();
14441   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14442   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14443   MF->insert(I, mainMBB);
14444   MF->insert(I, sinkMBB);
14445
14446   // Transfer the remainder of BB and its successor edges to sinkMBB.
14447   sinkMBB->splice(sinkMBB->begin(), MBB,
14448                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14449   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14450
14451   // thisMBB:
14452   //  xbegin sinkMBB
14453   //  # fallthrough to mainMBB
14454   //  # abortion to sinkMBB
14455   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14456   thisMBB->addSuccessor(mainMBB);
14457   thisMBB->addSuccessor(sinkMBB);
14458
14459   // mainMBB:
14460   //  EAX = -1
14461   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14462   mainMBB->addSuccessor(sinkMBB);
14463
14464   // sinkMBB:
14465   // EAX is live into the sinkMBB
14466   sinkMBB->addLiveIn(X86::EAX);
14467   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14468           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14469     .addReg(X86::EAX);
14470
14471   MI->eraseFromParent();
14472   return sinkMBB;
14473 }
14474
14475 // Get CMPXCHG opcode for the specified data type.
14476 static unsigned getCmpXChgOpcode(EVT VT) {
14477   switch (VT.getSimpleVT().SimpleTy) {
14478   case MVT::i8:  return X86::LCMPXCHG8;
14479   case MVT::i16: return X86::LCMPXCHG16;
14480   case MVT::i32: return X86::LCMPXCHG32;
14481   case MVT::i64: return X86::LCMPXCHG64;
14482   default:
14483     break;
14484   }
14485   llvm_unreachable("Invalid operand size!");
14486 }
14487
14488 // Get LOAD opcode for the specified data type.
14489 static unsigned getLoadOpcode(EVT VT) {
14490   switch (VT.getSimpleVT().SimpleTy) {
14491   case MVT::i8:  return X86::MOV8rm;
14492   case MVT::i16: return X86::MOV16rm;
14493   case MVT::i32: return X86::MOV32rm;
14494   case MVT::i64: return X86::MOV64rm;
14495   default:
14496     break;
14497   }
14498   llvm_unreachable("Invalid operand size!");
14499 }
14500
14501 // Get opcode of the non-atomic one from the specified atomic instruction.
14502 static unsigned getNonAtomicOpcode(unsigned Opc) {
14503   switch (Opc) {
14504   case X86::ATOMAND8:  return X86::AND8rr;
14505   case X86::ATOMAND16: return X86::AND16rr;
14506   case X86::ATOMAND32: return X86::AND32rr;
14507   case X86::ATOMAND64: return X86::AND64rr;
14508   case X86::ATOMOR8:   return X86::OR8rr;
14509   case X86::ATOMOR16:  return X86::OR16rr;
14510   case X86::ATOMOR32:  return X86::OR32rr;
14511   case X86::ATOMOR64:  return X86::OR64rr;
14512   case X86::ATOMXOR8:  return X86::XOR8rr;
14513   case X86::ATOMXOR16: return X86::XOR16rr;
14514   case X86::ATOMXOR32: return X86::XOR32rr;
14515   case X86::ATOMXOR64: return X86::XOR64rr;
14516   }
14517   llvm_unreachable("Unhandled atomic-load-op opcode!");
14518 }
14519
14520 // Get opcode of the non-atomic one from the specified atomic instruction with
14521 // extra opcode.
14522 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14523                                                unsigned &ExtraOpc) {
14524   switch (Opc) {
14525   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14526   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14527   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14528   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14529   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14530   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14531   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14532   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14533   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14534   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14535   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14536   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14537   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14538   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14539   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14540   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14541   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14542   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14543   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14544   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14545   }
14546   llvm_unreachable("Unhandled atomic-load-op opcode!");
14547 }
14548
14549 // Get opcode of the non-atomic one from the specified atomic instruction for
14550 // 64-bit data type on 32-bit target.
14551 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14552   switch (Opc) {
14553   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14554   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14555   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14556   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14557   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14558   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14559   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14560   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14561   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14562   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14563   }
14564   llvm_unreachable("Unhandled atomic-load-op opcode!");
14565 }
14566
14567 // Get opcode of the non-atomic one from the specified atomic instruction for
14568 // 64-bit data type on 32-bit target with extra opcode.
14569 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14570                                                    unsigned &HiOpc,
14571                                                    unsigned &ExtraOpc) {
14572   switch (Opc) {
14573   case X86::ATOMNAND6432:
14574     ExtraOpc = X86::NOT32r;
14575     HiOpc = X86::AND32rr;
14576     return X86::AND32rr;
14577   }
14578   llvm_unreachable("Unhandled atomic-load-op opcode!");
14579 }
14580
14581 // Get pseudo CMOV opcode from the specified data type.
14582 static unsigned getPseudoCMOVOpc(EVT VT) {
14583   switch (VT.getSimpleVT().SimpleTy) {
14584   case MVT::i8:  return X86::CMOV_GR8;
14585   case MVT::i16: return X86::CMOV_GR16;
14586   case MVT::i32: return X86::CMOV_GR32;
14587   default:
14588     break;
14589   }
14590   llvm_unreachable("Unknown CMOV opcode!");
14591 }
14592
14593 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14594 // They will be translated into a spin-loop or compare-exchange loop from
14595 //
14596 //    ...
14597 //    dst = atomic-fetch-op MI.addr, MI.val
14598 //    ...
14599 //
14600 // to
14601 //
14602 //    ...
14603 //    t1 = LOAD MI.addr
14604 // loop:
14605 //    t4 = phi(t1, t3 / loop)
14606 //    t2 = OP MI.val, t4
14607 //    EAX = t4
14608 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14609 //    t3 = EAX
14610 //    JNE loop
14611 // sink:
14612 //    dst = t3
14613 //    ...
14614 MachineBasicBlock *
14615 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14616                                        MachineBasicBlock *MBB) const {
14617   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14618   DebugLoc DL = MI->getDebugLoc();
14619
14620   MachineFunction *MF = MBB->getParent();
14621   MachineRegisterInfo &MRI = MF->getRegInfo();
14622
14623   const BasicBlock *BB = MBB->getBasicBlock();
14624   MachineFunction::iterator I = MBB;
14625   ++I;
14626
14627   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14628          "Unexpected number of operands");
14629
14630   assert(MI->hasOneMemOperand() &&
14631          "Expected atomic-load-op to have one memoperand");
14632
14633   // Memory Reference
14634   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14635   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14636
14637   unsigned DstReg, SrcReg;
14638   unsigned MemOpndSlot;
14639
14640   unsigned CurOp = 0;
14641
14642   DstReg = MI->getOperand(CurOp++).getReg();
14643   MemOpndSlot = CurOp;
14644   CurOp += X86::AddrNumOperands;
14645   SrcReg = MI->getOperand(CurOp++).getReg();
14646
14647   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14648   MVT::SimpleValueType VT = *RC->vt_begin();
14649   unsigned t1 = MRI.createVirtualRegister(RC);
14650   unsigned t2 = MRI.createVirtualRegister(RC);
14651   unsigned t3 = MRI.createVirtualRegister(RC);
14652   unsigned t4 = MRI.createVirtualRegister(RC);
14653   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14654
14655   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14656   unsigned LOADOpc = getLoadOpcode(VT);
14657
14658   // For the atomic load-arith operator, we generate
14659   //
14660   //  thisMBB:
14661   //    t1 = LOAD [MI.addr]
14662   //  mainMBB:
14663   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14664   //    t1 = OP MI.val, EAX
14665   //    EAX = t4
14666   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14667   //    t3 = EAX
14668   //    JNE mainMBB
14669   //  sinkMBB:
14670   //    dst = t3
14671
14672   MachineBasicBlock *thisMBB = MBB;
14673   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14674   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14675   MF->insert(I, mainMBB);
14676   MF->insert(I, sinkMBB);
14677
14678   MachineInstrBuilder MIB;
14679
14680   // Transfer the remainder of BB and its successor edges to sinkMBB.
14681   sinkMBB->splice(sinkMBB->begin(), MBB,
14682                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14683   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14684
14685   // thisMBB:
14686   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14687   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14688     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14689     if (NewMO.isReg())
14690       NewMO.setIsKill(false);
14691     MIB.addOperand(NewMO);
14692   }
14693   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14694     unsigned flags = (*MMOI)->getFlags();
14695     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14696     MachineMemOperand *MMO =
14697       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14698                                (*MMOI)->getSize(),
14699                                (*MMOI)->getBaseAlignment(),
14700                                (*MMOI)->getTBAAInfo(),
14701                                (*MMOI)->getRanges());
14702     MIB.addMemOperand(MMO);
14703   }
14704
14705   thisMBB->addSuccessor(mainMBB);
14706
14707   // mainMBB:
14708   MachineBasicBlock *origMainMBB = mainMBB;
14709
14710   // Add a PHI.
14711   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14712                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14713
14714   unsigned Opc = MI->getOpcode();
14715   switch (Opc) {
14716   default:
14717     llvm_unreachable("Unhandled atomic-load-op opcode!");
14718   case X86::ATOMAND8:
14719   case X86::ATOMAND16:
14720   case X86::ATOMAND32:
14721   case X86::ATOMAND64:
14722   case X86::ATOMOR8:
14723   case X86::ATOMOR16:
14724   case X86::ATOMOR32:
14725   case X86::ATOMOR64:
14726   case X86::ATOMXOR8:
14727   case X86::ATOMXOR16:
14728   case X86::ATOMXOR32:
14729   case X86::ATOMXOR64: {
14730     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14731     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14732       .addReg(t4);
14733     break;
14734   }
14735   case X86::ATOMNAND8:
14736   case X86::ATOMNAND16:
14737   case X86::ATOMNAND32:
14738   case X86::ATOMNAND64: {
14739     unsigned Tmp = MRI.createVirtualRegister(RC);
14740     unsigned NOTOpc;
14741     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14742     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14743       .addReg(t4);
14744     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14745     break;
14746   }
14747   case X86::ATOMMAX8:
14748   case X86::ATOMMAX16:
14749   case X86::ATOMMAX32:
14750   case X86::ATOMMAX64:
14751   case X86::ATOMMIN8:
14752   case X86::ATOMMIN16:
14753   case X86::ATOMMIN32:
14754   case X86::ATOMMIN64:
14755   case X86::ATOMUMAX8:
14756   case X86::ATOMUMAX16:
14757   case X86::ATOMUMAX32:
14758   case X86::ATOMUMAX64:
14759   case X86::ATOMUMIN8:
14760   case X86::ATOMUMIN16:
14761   case X86::ATOMUMIN32:
14762   case X86::ATOMUMIN64: {
14763     unsigned CMPOpc;
14764     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14765
14766     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14767       .addReg(SrcReg)
14768       .addReg(t4);
14769
14770     if (Subtarget->hasCMov()) {
14771       if (VT != MVT::i8) {
14772         // Native support
14773         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14774           .addReg(SrcReg)
14775           .addReg(t4);
14776       } else {
14777         // Promote i8 to i32 to use CMOV32
14778         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14779         const TargetRegisterClass *RC32 =
14780           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14781         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14782         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14783         unsigned Tmp = MRI.createVirtualRegister(RC32);
14784
14785         unsigned Undef = MRI.createVirtualRegister(RC32);
14786         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14787
14788         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14789           .addReg(Undef)
14790           .addReg(SrcReg)
14791           .addImm(X86::sub_8bit);
14792         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14793           .addReg(Undef)
14794           .addReg(t4)
14795           .addImm(X86::sub_8bit);
14796
14797         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14798           .addReg(SrcReg32)
14799           .addReg(AccReg32);
14800
14801         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14802           .addReg(Tmp, 0, X86::sub_8bit);
14803       }
14804     } else {
14805       // Use pseudo select and lower them.
14806       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14807              "Invalid atomic-load-op transformation!");
14808       unsigned SelOpc = getPseudoCMOVOpc(VT);
14809       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14810       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14811       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14812               .addReg(SrcReg).addReg(t4)
14813               .addImm(CC);
14814       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14815       // Replace the original PHI node as mainMBB is changed after CMOV
14816       // lowering.
14817       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14818         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14819       Phi->eraseFromParent();
14820     }
14821     break;
14822   }
14823   }
14824
14825   // Copy PhyReg back from virtual register.
14826   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14827     .addReg(t4);
14828
14829   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14830   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14831     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14832     if (NewMO.isReg())
14833       NewMO.setIsKill(false);
14834     MIB.addOperand(NewMO);
14835   }
14836   MIB.addReg(t2);
14837   MIB.setMemRefs(MMOBegin, MMOEnd);
14838
14839   // Copy PhyReg back to virtual register.
14840   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14841     .addReg(PhyReg);
14842
14843   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14844
14845   mainMBB->addSuccessor(origMainMBB);
14846   mainMBB->addSuccessor(sinkMBB);
14847
14848   // sinkMBB:
14849   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14850           TII->get(TargetOpcode::COPY), DstReg)
14851     .addReg(t3);
14852
14853   MI->eraseFromParent();
14854   return sinkMBB;
14855 }
14856
14857 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14858 // instructions. They will be translated into a spin-loop or compare-exchange
14859 // loop from
14860 //
14861 //    ...
14862 //    dst = atomic-fetch-op MI.addr, MI.val
14863 //    ...
14864 //
14865 // to
14866 //
14867 //    ...
14868 //    t1L = LOAD [MI.addr + 0]
14869 //    t1H = LOAD [MI.addr + 4]
14870 // loop:
14871 //    t4L = phi(t1L, t3L / loop)
14872 //    t4H = phi(t1H, t3H / loop)
14873 //    t2L = OP MI.val.lo, t4L
14874 //    t2H = OP MI.val.hi, t4H
14875 //    EAX = t4L
14876 //    EDX = t4H
14877 //    EBX = t2L
14878 //    ECX = t2H
14879 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14880 //    t3L = EAX
14881 //    t3H = EDX
14882 //    JNE loop
14883 // sink:
14884 //    dstL = t3L
14885 //    dstH = t3H
14886 //    ...
14887 MachineBasicBlock *
14888 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14889                                            MachineBasicBlock *MBB) const {
14890   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14891   DebugLoc DL = MI->getDebugLoc();
14892
14893   MachineFunction *MF = MBB->getParent();
14894   MachineRegisterInfo &MRI = MF->getRegInfo();
14895
14896   const BasicBlock *BB = MBB->getBasicBlock();
14897   MachineFunction::iterator I = MBB;
14898   ++I;
14899
14900   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14901          "Unexpected number of operands");
14902
14903   assert(MI->hasOneMemOperand() &&
14904          "Expected atomic-load-op32 to have one memoperand");
14905
14906   // Memory Reference
14907   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14908   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14909
14910   unsigned DstLoReg, DstHiReg;
14911   unsigned SrcLoReg, SrcHiReg;
14912   unsigned MemOpndSlot;
14913
14914   unsigned CurOp = 0;
14915
14916   DstLoReg = MI->getOperand(CurOp++).getReg();
14917   DstHiReg = MI->getOperand(CurOp++).getReg();
14918   MemOpndSlot = CurOp;
14919   CurOp += X86::AddrNumOperands;
14920   SrcLoReg = MI->getOperand(CurOp++).getReg();
14921   SrcHiReg = MI->getOperand(CurOp++).getReg();
14922
14923   const TargetRegisterClass *RC = &X86::GR32RegClass;
14924   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14925
14926   unsigned t1L = MRI.createVirtualRegister(RC);
14927   unsigned t1H = MRI.createVirtualRegister(RC);
14928   unsigned t2L = MRI.createVirtualRegister(RC);
14929   unsigned t2H = MRI.createVirtualRegister(RC);
14930   unsigned t3L = MRI.createVirtualRegister(RC);
14931   unsigned t3H = MRI.createVirtualRegister(RC);
14932   unsigned t4L = MRI.createVirtualRegister(RC);
14933   unsigned t4H = MRI.createVirtualRegister(RC);
14934
14935   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14936   unsigned LOADOpc = X86::MOV32rm;
14937
14938   // For the atomic load-arith operator, we generate
14939   //
14940   //  thisMBB:
14941   //    t1L = LOAD [MI.addr + 0]
14942   //    t1H = LOAD [MI.addr + 4]
14943   //  mainMBB:
14944   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14945   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14946   //    t2L = OP MI.val.lo, t4L
14947   //    t2H = OP MI.val.hi, t4H
14948   //    EBX = t2L
14949   //    ECX = t2H
14950   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14951   //    t3L = EAX
14952   //    t3H = EDX
14953   //    JNE loop
14954   //  sinkMBB:
14955   //    dstL = t3L
14956   //    dstH = t3H
14957
14958   MachineBasicBlock *thisMBB = MBB;
14959   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14960   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14961   MF->insert(I, mainMBB);
14962   MF->insert(I, sinkMBB);
14963
14964   MachineInstrBuilder MIB;
14965
14966   // Transfer the remainder of BB and its successor edges to sinkMBB.
14967   sinkMBB->splice(sinkMBB->begin(), MBB,
14968                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14969   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14970
14971   // thisMBB:
14972   // Lo
14973   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14974   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14975     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14976     if (NewMO.isReg())
14977       NewMO.setIsKill(false);
14978     MIB.addOperand(NewMO);
14979   }
14980   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14981     unsigned flags = (*MMOI)->getFlags();
14982     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14983     MachineMemOperand *MMO =
14984       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14985                                (*MMOI)->getSize(),
14986                                (*MMOI)->getBaseAlignment(),
14987                                (*MMOI)->getTBAAInfo(),
14988                                (*MMOI)->getRanges());
14989     MIB.addMemOperand(MMO);
14990   };
14991   MachineInstr *LowMI = MIB;
14992
14993   // Hi
14994   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14995   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14996     if (i == X86::AddrDisp) {
14997       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14998     } else {
14999       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15000       if (NewMO.isReg())
15001         NewMO.setIsKill(false);
15002       MIB.addOperand(NewMO);
15003     }
15004   }
15005   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
15006
15007   thisMBB->addSuccessor(mainMBB);
15008
15009   // mainMBB:
15010   MachineBasicBlock *origMainMBB = mainMBB;
15011
15012   // Add PHIs.
15013   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
15014                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
15015   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
15016                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15017
15018   unsigned Opc = MI->getOpcode();
15019   switch (Opc) {
15020   default:
15021     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
15022   case X86::ATOMAND6432:
15023   case X86::ATOMOR6432:
15024   case X86::ATOMXOR6432:
15025   case X86::ATOMADD6432:
15026   case X86::ATOMSUB6432: {
15027     unsigned HiOpc;
15028     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15029     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
15030       .addReg(SrcLoReg);
15031     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
15032       .addReg(SrcHiReg);
15033     break;
15034   }
15035   case X86::ATOMNAND6432: {
15036     unsigned HiOpc, NOTOpc;
15037     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
15038     unsigned TmpL = MRI.createVirtualRegister(RC);
15039     unsigned TmpH = MRI.createVirtualRegister(RC);
15040     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
15041       .addReg(t4L);
15042     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
15043       .addReg(t4H);
15044     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
15045     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
15046     break;
15047   }
15048   case X86::ATOMMAX6432:
15049   case X86::ATOMMIN6432:
15050   case X86::ATOMUMAX6432:
15051   case X86::ATOMUMIN6432: {
15052     unsigned HiOpc;
15053     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15054     unsigned cL = MRI.createVirtualRegister(RC8);
15055     unsigned cH = MRI.createVirtualRegister(RC8);
15056     unsigned cL32 = MRI.createVirtualRegister(RC);
15057     unsigned cH32 = MRI.createVirtualRegister(RC);
15058     unsigned cc = MRI.createVirtualRegister(RC);
15059     // cl := cmp src_lo, lo
15060     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
15061       .addReg(SrcLoReg).addReg(t4L);
15062     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
15063     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
15064     // ch := cmp src_hi, hi
15065     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
15066       .addReg(SrcHiReg).addReg(t4H);
15067     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
15068     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
15069     // cc := if (src_hi == hi) ? cl : ch;
15070     if (Subtarget->hasCMov()) {
15071       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
15072         .addReg(cH32).addReg(cL32);
15073     } else {
15074       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
15075               .addReg(cH32).addReg(cL32)
15076               .addImm(X86::COND_E);
15077       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15078     }
15079     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
15080     if (Subtarget->hasCMov()) {
15081       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
15082         .addReg(SrcLoReg).addReg(t4L);
15083       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
15084         .addReg(SrcHiReg).addReg(t4H);
15085     } else {
15086       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
15087               .addReg(SrcLoReg).addReg(t4L)
15088               .addImm(X86::COND_NE);
15089       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15090       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
15091       // 2nd CMOV lowering.
15092       mainMBB->addLiveIn(X86::EFLAGS);
15093       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
15094               .addReg(SrcHiReg).addReg(t4H)
15095               .addImm(X86::COND_NE);
15096       mainMBB = EmitLoweredSelect(MIB, mainMBB);
15097       // Replace the original PHI node as mainMBB is changed after CMOV
15098       // lowering.
15099       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
15100         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
15101       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
15102         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15103       PhiL->eraseFromParent();
15104       PhiH->eraseFromParent();
15105     }
15106     break;
15107   }
15108   case X86::ATOMSWAP6432: {
15109     unsigned HiOpc;
15110     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15111     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
15112     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
15113     break;
15114   }
15115   }
15116
15117   // Copy EDX:EAX back from HiReg:LoReg
15118   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
15119   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
15120   // Copy ECX:EBX from t1H:t1L
15121   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
15122   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
15123
15124   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
15125   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15126     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15127     if (NewMO.isReg())
15128       NewMO.setIsKill(false);
15129     MIB.addOperand(NewMO);
15130   }
15131   MIB.setMemRefs(MMOBegin, MMOEnd);
15132
15133   // Copy EDX:EAX back to t3H:t3L
15134   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
15135   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
15136
15137   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
15138
15139   mainMBB->addSuccessor(origMainMBB);
15140   mainMBB->addSuccessor(sinkMBB);
15141
15142   // sinkMBB:
15143   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15144           TII->get(TargetOpcode::COPY), DstLoReg)
15145     .addReg(t3L);
15146   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15147           TII->get(TargetOpcode::COPY), DstHiReg)
15148     .addReg(t3H);
15149
15150   MI->eraseFromParent();
15151   return sinkMBB;
15152 }
15153
15154 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
15155 // or XMM0_V32I8 in AVX all of this code can be replaced with that
15156 // in the .td file.
15157 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
15158                                        const TargetInstrInfo *TII) {
15159   unsigned Opc;
15160   switch (MI->getOpcode()) {
15161   default: llvm_unreachable("illegal opcode!");
15162   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
15163   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
15164   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
15165   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15166   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15167   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15168   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15169   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15170   }
15171
15172   DebugLoc dl = MI->getDebugLoc();
15173   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15174
15175   unsigned NumArgs = MI->getNumOperands();
15176   for (unsigned i = 1; i < NumArgs; ++i) {
15177     MachineOperand &Op = MI->getOperand(i);
15178     if (!(Op.isReg() && Op.isImplicit()))
15179       MIB.addOperand(Op);
15180   }
15181   if (MI->hasOneMemOperand())
15182     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15183
15184   BuildMI(*BB, MI, dl,
15185     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15186     .addReg(X86::XMM0);
15187
15188   MI->eraseFromParent();
15189   return BB;
15190 }
15191
15192 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15193 // defs in an instruction pattern
15194 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15195                                        const TargetInstrInfo *TII) {
15196   unsigned Opc;
15197   switch (MI->getOpcode()) {
15198   default: llvm_unreachable("illegal opcode!");
15199   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15200   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15201   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15202   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15203   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15204   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15205   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15206   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15207   }
15208
15209   DebugLoc dl = MI->getDebugLoc();
15210   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15211
15212   unsigned NumArgs = MI->getNumOperands(); // remove the results
15213   for (unsigned i = 1; i < NumArgs; ++i) {
15214     MachineOperand &Op = MI->getOperand(i);
15215     if (!(Op.isReg() && Op.isImplicit()))
15216       MIB.addOperand(Op);
15217   }
15218   if (MI->hasOneMemOperand())
15219     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15220
15221   BuildMI(*BB, MI, dl,
15222     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15223     .addReg(X86::ECX);
15224
15225   MI->eraseFromParent();
15226   return BB;
15227 }
15228
15229 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15230                                        const TargetInstrInfo *TII,
15231                                        const X86Subtarget* Subtarget) {
15232   DebugLoc dl = MI->getDebugLoc();
15233
15234   // Address into RAX/EAX, other two args into ECX, EDX.
15235   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15236   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15237   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15238   for (int i = 0; i < X86::AddrNumOperands; ++i)
15239     MIB.addOperand(MI->getOperand(i));
15240
15241   unsigned ValOps = X86::AddrNumOperands;
15242   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15243     .addReg(MI->getOperand(ValOps).getReg());
15244   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15245     .addReg(MI->getOperand(ValOps+1).getReg());
15246
15247   // The instruction doesn't actually take any operands though.
15248   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15249
15250   MI->eraseFromParent(); // The pseudo is gone now.
15251   return BB;
15252 }
15253
15254 MachineBasicBlock *
15255 X86TargetLowering::EmitVAARG64WithCustomInserter(
15256                    MachineInstr *MI,
15257                    MachineBasicBlock *MBB) const {
15258   // Emit va_arg instruction on X86-64.
15259
15260   // Operands to this pseudo-instruction:
15261   // 0  ) Output        : destination address (reg)
15262   // 1-5) Input         : va_list address (addr, i64mem)
15263   // 6  ) ArgSize       : Size (in bytes) of vararg type
15264   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15265   // 8  ) Align         : Alignment of type
15266   // 9  ) EFLAGS (implicit-def)
15267
15268   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15269   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15270
15271   unsigned DestReg = MI->getOperand(0).getReg();
15272   MachineOperand &Base = MI->getOperand(1);
15273   MachineOperand &Scale = MI->getOperand(2);
15274   MachineOperand &Index = MI->getOperand(3);
15275   MachineOperand &Disp = MI->getOperand(4);
15276   MachineOperand &Segment = MI->getOperand(5);
15277   unsigned ArgSize = MI->getOperand(6).getImm();
15278   unsigned ArgMode = MI->getOperand(7).getImm();
15279   unsigned Align = MI->getOperand(8).getImm();
15280
15281   // Memory Reference
15282   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15283   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15284   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15285
15286   // Machine Information
15287   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15288   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15289   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15290   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15291   DebugLoc DL = MI->getDebugLoc();
15292
15293   // struct va_list {
15294   //   i32   gp_offset
15295   //   i32   fp_offset
15296   //   i64   overflow_area (address)
15297   //   i64   reg_save_area (address)
15298   // }
15299   // sizeof(va_list) = 24
15300   // alignment(va_list) = 8
15301
15302   unsigned TotalNumIntRegs = 6;
15303   unsigned TotalNumXMMRegs = 8;
15304   bool UseGPOffset = (ArgMode == 1);
15305   bool UseFPOffset = (ArgMode == 2);
15306   unsigned MaxOffset = TotalNumIntRegs * 8 +
15307                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15308
15309   /* Align ArgSize to a multiple of 8 */
15310   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15311   bool NeedsAlign = (Align > 8);
15312
15313   MachineBasicBlock *thisMBB = MBB;
15314   MachineBasicBlock *overflowMBB;
15315   MachineBasicBlock *offsetMBB;
15316   MachineBasicBlock *endMBB;
15317
15318   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15319   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15320   unsigned OffsetReg = 0;
15321
15322   if (!UseGPOffset && !UseFPOffset) {
15323     // If we only pull from the overflow region, we don't create a branch.
15324     // We don't need to alter control flow.
15325     OffsetDestReg = 0; // unused
15326     OverflowDestReg = DestReg;
15327
15328     offsetMBB = NULL;
15329     overflowMBB = thisMBB;
15330     endMBB = thisMBB;
15331   } else {
15332     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15333     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15334     // If not, pull from overflow_area. (branch to overflowMBB)
15335     //
15336     //       thisMBB
15337     //         |     .
15338     //         |        .
15339     //     offsetMBB   overflowMBB
15340     //         |        .
15341     //         |     .
15342     //        endMBB
15343
15344     // Registers for the PHI in endMBB
15345     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15346     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15347
15348     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15349     MachineFunction *MF = MBB->getParent();
15350     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15351     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15352     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15353
15354     MachineFunction::iterator MBBIter = MBB;
15355     ++MBBIter;
15356
15357     // Insert the new basic blocks
15358     MF->insert(MBBIter, offsetMBB);
15359     MF->insert(MBBIter, overflowMBB);
15360     MF->insert(MBBIter, endMBB);
15361
15362     // Transfer the remainder of MBB and its successor edges to endMBB.
15363     endMBB->splice(endMBB->begin(), thisMBB,
15364                     llvm::next(MachineBasicBlock::iterator(MI)),
15365                     thisMBB->end());
15366     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15367
15368     // Make offsetMBB and overflowMBB successors of thisMBB
15369     thisMBB->addSuccessor(offsetMBB);
15370     thisMBB->addSuccessor(overflowMBB);
15371
15372     // endMBB is a successor of both offsetMBB and overflowMBB
15373     offsetMBB->addSuccessor(endMBB);
15374     overflowMBB->addSuccessor(endMBB);
15375
15376     // Load the offset value into a register
15377     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15378     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15379       .addOperand(Base)
15380       .addOperand(Scale)
15381       .addOperand(Index)
15382       .addDisp(Disp, UseFPOffset ? 4 : 0)
15383       .addOperand(Segment)
15384       .setMemRefs(MMOBegin, MMOEnd);
15385
15386     // Check if there is enough room left to pull this argument.
15387     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15388       .addReg(OffsetReg)
15389       .addImm(MaxOffset + 8 - ArgSizeA8);
15390
15391     // Branch to "overflowMBB" if offset >= max
15392     // Fall through to "offsetMBB" otherwise
15393     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15394       .addMBB(overflowMBB);
15395   }
15396
15397   // In offsetMBB, emit code to use the reg_save_area.
15398   if (offsetMBB) {
15399     assert(OffsetReg != 0);
15400
15401     // Read the reg_save_area address.
15402     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15403     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15404       .addOperand(Base)
15405       .addOperand(Scale)
15406       .addOperand(Index)
15407       .addDisp(Disp, 16)
15408       .addOperand(Segment)
15409       .setMemRefs(MMOBegin, MMOEnd);
15410
15411     // Zero-extend the offset
15412     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15413       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15414         .addImm(0)
15415         .addReg(OffsetReg)
15416         .addImm(X86::sub_32bit);
15417
15418     // Add the offset to the reg_save_area to get the final address.
15419     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15420       .addReg(OffsetReg64)
15421       .addReg(RegSaveReg);
15422
15423     // Compute the offset for the next argument
15424     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15425     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15426       .addReg(OffsetReg)
15427       .addImm(UseFPOffset ? 16 : 8);
15428
15429     // Store it back into the va_list.
15430     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15431       .addOperand(Base)
15432       .addOperand(Scale)
15433       .addOperand(Index)
15434       .addDisp(Disp, UseFPOffset ? 4 : 0)
15435       .addOperand(Segment)
15436       .addReg(NextOffsetReg)
15437       .setMemRefs(MMOBegin, MMOEnd);
15438
15439     // Jump to endMBB
15440     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15441       .addMBB(endMBB);
15442   }
15443
15444   //
15445   // Emit code to use overflow area
15446   //
15447
15448   // Load the overflow_area address into a register.
15449   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15450   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15451     .addOperand(Base)
15452     .addOperand(Scale)
15453     .addOperand(Index)
15454     .addDisp(Disp, 8)
15455     .addOperand(Segment)
15456     .setMemRefs(MMOBegin, MMOEnd);
15457
15458   // If we need to align it, do so. Otherwise, just copy the address
15459   // to OverflowDestReg.
15460   if (NeedsAlign) {
15461     // Align the overflow address
15462     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15463     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15464
15465     // aligned_addr = (addr + (align-1)) & ~(align-1)
15466     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15467       .addReg(OverflowAddrReg)
15468       .addImm(Align-1);
15469
15470     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15471       .addReg(TmpReg)
15472       .addImm(~(uint64_t)(Align-1));
15473   } else {
15474     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15475       .addReg(OverflowAddrReg);
15476   }
15477
15478   // Compute the next overflow address after this argument.
15479   // (the overflow address should be kept 8-byte aligned)
15480   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15481   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15482     .addReg(OverflowDestReg)
15483     .addImm(ArgSizeA8);
15484
15485   // Store the new overflow address.
15486   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15487     .addOperand(Base)
15488     .addOperand(Scale)
15489     .addOperand(Index)
15490     .addDisp(Disp, 8)
15491     .addOperand(Segment)
15492     .addReg(NextAddrReg)
15493     .setMemRefs(MMOBegin, MMOEnd);
15494
15495   // If we branched, emit the PHI to the front of endMBB.
15496   if (offsetMBB) {
15497     BuildMI(*endMBB, endMBB->begin(), DL,
15498             TII->get(X86::PHI), DestReg)
15499       .addReg(OffsetDestReg).addMBB(offsetMBB)
15500       .addReg(OverflowDestReg).addMBB(overflowMBB);
15501   }
15502
15503   // Erase the pseudo instruction
15504   MI->eraseFromParent();
15505
15506   return endMBB;
15507 }
15508
15509 MachineBasicBlock *
15510 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15511                                                  MachineInstr *MI,
15512                                                  MachineBasicBlock *MBB) const {
15513   // Emit code to save XMM registers to the stack. The ABI says that the
15514   // number of registers to save is given in %al, so it's theoretically
15515   // possible to do an indirect jump trick to avoid saving all of them,
15516   // however this code takes a simpler approach and just executes all
15517   // of the stores if %al is non-zero. It's less code, and it's probably
15518   // easier on the hardware branch predictor, and stores aren't all that
15519   // expensive anyway.
15520
15521   // Create the new basic blocks. One block contains all the XMM stores,
15522   // and one block is the final destination regardless of whether any
15523   // stores were performed.
15524   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15525   MachineFunction *F = MBB->getParent();
15526   MachineFunction::iterator MBBIter = MBB;
15527   ++MBBIter;
15528   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15529   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15530   F->insert(MBBIter, XMMSaveMBB);
15531   F->insert(MBBIter, EndMBB);
15532
15533   // Transfer the remainder of MBB and its successor edges to EndMBB.
15534   EndMBB->splice(EndMBB->begin(), MBB,
15535                  llvm::next(MachineBasicBlock::iterator(MI)),
15536                  MBB->end());
15537   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15538
15539   // The original block will now fall through to the XMM save block.
15540   MBB->addSuccessor(XMMSaveMBB);
15541   // The XMMSaveMBB will fall through to the end block.
15542   XMMSaveMBB->addSuccessor(EndMBB);
15543
15544   // Now add the instructions.
15545   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15546   DebugLoc DL = MI->getDebugLoc();
15547
15548   unsigned CountReg = MI->getOperand(0).getReg();
15549   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15550   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15551
15552   if (!Subtarget->isTargetWin64()) {
15553     // If %al is 0, branch around the XMM save block.
15554     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15555     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15556     MBB->addSuccessor(EndMBB);
15557   }
15558
15559   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
15560   // that was just emitted, but clearly shouldn't be "saved".
15561   assert((MI->getNumOperands() <= 3 ||
15562           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
15563           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
15564          && "Expected last argument to be EFLAGS");
15565   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15566   // In the XMM save block, save all the XMM argument registers.
15567   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15568     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15569     MachineMemOperand *MMO =
15570       F->getMachineMemOperand(
15571           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15572         MachineMemOperand::MOStore,
15573         /*Size=*/16, /*Align=*/16);
15574     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15575       .addFrameIndex(RegSaveFrameIndex)
15576       .addImm(/*Scale=*/1)
15577       .addReg(/*IndexReg=*/0)
15578       .addImm(/*Disp=*/Offset)
15579       .addReg(/*Segment=*/0)
15580       .addReg(MI->getOperand(i).getReg())
15581       .addMemOperand(MMO);
15582   }
15583
15584   MI->eraseFromParent();   // The pseudo instruction is gone now.
15585
15586   return EndMBB;
15587 }
15588
15589 // The EFLAGS operand of SelectItr might be missing a kill marker
15590 // because there were multiple uses of EFLAGS, and ISel didn't know
15591 // which to mark. Figure out whether SelectItr should have had a
15592 // kill marker, and set it if it should. Returns the correct kill
15593 // marker value.
15594 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15595                                      MachineBasicBlock* BB,
15596                                      const TargetRegisterInfo* TRI) {
15597   // Scan forward through BB for a use/def of EFLAGS.
15598   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15599   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15600     const MachineInstr& mi = *miI;
15601     if (mi.readsRegister(X86::EFLAGS))
15602       return false;
15603     if (mi.definesRegister(X86::EFLAGS))
15604       break; // Should have kill-flag - update below.
15605   }
15606
15607   // If we hit the end of the block, check whether EFLAGS is live into a
15608   // successor.
15609   if (miI == BB->end()) {
15610     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15611                                           sEnd = BB->succ_end();
15612          sItr != sEnd; ++sItr) {
15613       MachineBasicBlock* succ = *sItr;
15614       if (succ->isLiveIn(X86::EFLAGS))
15615         return false;
15616     }
15617   }
15618
15619   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15620   // out. SelectMI should have a kill flag on EFLAGS.
15621   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15622   return true;
15623 }
15624
15625 MachineBasicBlock *
15626 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15627                                      MachineBasicBlock *BB) const {
15628   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15629   DebugLoc DL = MI->getDebugLoc();
15630
15631   // To "insert" a SELECT_CC instruction, we actually have to insert the
15632   // diamond control-flow pattern.  The incoming instruction knows the
15633   // destination vreg to set, the condition code register to branch on, the
15634   // true/false values to select between, and a branch opcode to use.
15635   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15636   MachineFunction::iterator It = BB;
15637   ++It;
15638
15639   //  thisMBB:
15640   //  ...
15641   //   TrueVal = ...
15642   //   cmpTY ccX, r1, r2
15643   //   bCC copy1MBB
15644   //   fallthrough --> copy0MBB
15645   MachineBasicBlock *thisMBB = BB;
15646   MachineFunction *F = BB->getParent();
15647   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15648   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15649   F->insert(It, copy0MBB);
15650   F->insert(It, sinkMBB);
15651
15652   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15653   // live into the sink and copy blocks.
15654   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15655   if (!MI->killsRegister(X86::EFLAGS) &&
15656       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15657     copy0MBB->addLiveIn(X86::EFLAGS);
15658     sinkMBB->addLiveIn(X86::EFLAGS);
15659   }
15660
15661   // Transfer the remainder of BB and its successor edges to sinkMBB.
15662   sinkMBB->splice(sinkMBB->begin(), BB,
15663                   llvm::next(MachineBasicBlock::iterator(MI)),
15664                   BB->end());
15665   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15666
15667   // Add the true and fallthrough blocks as its successors.
15668   BB->addSuccessor(copy0MBB);
15669   BB->addSuccessor(sinkMBB);
15670
15671   // Create the conditional branch instruction.
15672   unsigned Opc =
15673     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15674   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15675
15676   //  copy0MBB:
15677   //   %FalseValue = ...
15678   //   # fallthrough to sinkMBB
15679   copy0MBB->addSuccessor(sinkMBB);
15680
15681   //  sinkMBB:
15682   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15683   //  ...
15684   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15685           TII->get(X86::PHI), MI->getOperand(0).getReg())
15686     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15687     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15688
15689   MI->eraseFromParent();   // The pseudo instruction is gone now.
15690   return sinkMBB;
15691 }
15692
15693 MachineBasicBlock *
15694 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15695                                         bool Is64Bit) const {
15696   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15697   DebugLoc DL = MI->getDebugLoc();
15698   MachineFunction *MF = BB->getParent();
15699   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15700
15701   assert(getTargetMachine().Options.EnableSegmentedStacks);
15702
15703   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15704   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15705
15706   // BB:
15707   //  ... [Till the alloca]
15708   // If stacklet is not large enough, jump to mallocMBB
15709   //
15710   // bumpMBB:
15711   //  Allocate by subtracting from RSP
15712   //  Jump to continueMBB
15713   //
15714   // mallocMBB:
15715   //  Allocate by call to runtime
15716   //
15717   // continueMBB:
15718   //  ...
15719   //  [rest of original BB]
15720   //
15721
15722   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15723   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15724   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15725
15726   MachineRegisterInfo &MRI = MF->getRegInfo();
15727   const TargetRegisterClass *AddrRegClass =
15728     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15729
15730   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15731     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15732     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15733     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15734     sizeVReg = MI->getOperand(1).getReg(),
15735     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15736
15737   MachineFunction::iterator MBBIter = BB;
15738   ++MBBIter;
15739
15740   MF->insert(MBBIter, bumpMBB);
15741   MF->insert(MBBIter, mallocMBB);
15742   MF->insert(MBBIter, continueMBB);
15743
15744   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15745                       (MachineBasicBlock::iterator(MI)), BB->end());
15746   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15747
15748   // Add code to the main basic block to check if the stack limit has been hit,
15749   // and if so, jump to mallocMBB otherwise to bumpMBB.
15750   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15751   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15752     .addReg(tmpSPVReg).addReg(sizeVReg);
15753   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15754     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15755     .addReg(SPLimitVReg);
15756   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15757
15758   // bumpMBB simply decreases the stack pointer, since we know the current
15759   // stacklet has enough space.
15760   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15761     .addReg(SPLimitVReg);
15762   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15763     .addReg(SPLimitVReg);
15764   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15765
15766   // Calls into a routine in libgcc to allocate more space from the heap.
15767   const uint32_t *RegMask =
15768     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15769   if (Is64Bit) {
15770     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15771       .addReg(sizeVReg);
15772     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15773       .addExternalSymbol("__morestack_allocate_stack_space")
15774       .addRegMask(RegMask)
15775       .addReg(X86::RDI, RegState::Implicit)
15776       .addReg(X86::RAX, RegState::ImplicitDefine);
15777   } else {
15778     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15779       .addImm(12);
15780     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15781     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15782       .addExternalSymbol("__morestack_allocate_stack_space")
15783       .addRegMask(RegMask)
15784       .addReg(X86::EAX, RegState::ImplicitDefine);
15785   }
15786
15787   if (!Is64Bit)
15788     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15789       .addImm(16);
15790
15791   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15792     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15793   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15794
15795   // Set up the CFG correctly.
15796   BB->addSuccessor(bumpMBB);
15797   BB->addSuccessor(mallocMBB);
15798   mallocMBB->addSuccessor(continueMBB);
15799   bumpMBB->addSuccessor(continueMBB);
15800
15801   // Take care of the PHI nodes.
15802   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15803           MI->getOperand(0).getReg())
15804     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15805     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15806
15807   // Delete the original pseudo instruction.
15808   MI->eraseFromParent();
15809
15810   // And we're done.
15811   return continueMBB;
15812 }
15813
15814 MachineBasicBlock *
15815 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15816                                           MachineBasicBlock *BB) const {
15817   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15818   DebugLoc DL = MI->getDebugLoc();
15819
15820   assert(!Subtarget->isTargetMacho());
15821
15822   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15823   // non-trivial part is impdef of ESP.
15824
15825   if (Subtarget->isTargetWin64()) {
15826     if (Subtarget->isTargetCygMing()) {
15827       // ___chkstk(Mingw64):
15828       // Clobbers R10, R11, RAX and EFLAGS.
15829       // Updates RSP.
15830       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15831         .addExternalSymbol("___chkstk")
15832         .addReg(X86::RAX, RegState::Implicit)
15833         .addReg(X86::RSP, RegState::Implicit)
15834         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15835         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15836         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15837     } else {
15838       // __chkstk(MSVCRT): does not update stack pointer.
15839       // Clobbers R10, R11 and EFLAGS.
15840       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15841         .addExternalSymbol("__chkstk")
15842         .addReg(X86::RAX, RegState::Implicit)
15843         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15844       // RAX has the offset to be subtracted from RSP.
15845       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15846         .addReg(X86::RSP)
15847         .addReg(X86::RAX);
15848     }
15849   } else {
15850     const char *StackProbeSymbol =
15851       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15852
15853     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15854       .addExternalSymbol(StackProbeSymbol)
15855       .addReg(X86::EAX, RegState::Implicit)
15856       .addReg(X86::ESP, RegState::Implicit)
15857       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15858       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15859       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15860   }
15861
15862   MI->eraseFromParent();   // The pseudo instruction is gone now.
15863   return BB;
15864 }
15865
15866 MachineBasicBlock *
15867 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15868                                       MachineBasicBlock *BB) const {
15869   // This is pretty easy.  We're taking the value that we received from
15870   // our load from the relocation, sticking it in either RDI (x86-64)
15871   // or EAX and doing an indirect call.  The return value will then
15872   // be in the normal return register.
15873   const X86InstrInfo *TII
15874     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15875   DebugLoc DL = MI->getDebugLoc();
15876   MachineFunction *F = BB->getParent();
15877
15878   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15879   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15880
15881   // Get a register mask for the lowered call.
15882   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15883   // proper register mask.
15884   const uint32_t *RegMask =
15885     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15886   if (Subtarget->is64Bit()) {
15887     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15888                                       TII->get(X86::MOV64rm), X86::RDI)
15889     .addReg(X86::RIP)
15890     .addImm(0).addReg(0)
15891     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15892                       MI->getOperand(3).getTargetFlags())
15893     .addReg(0);
15894     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15895     addDirectMem(MIB, X86::RDI);
15896     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15897   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15898     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15899                                       TII->get(X86::MOV32rm), X86::EAX)
15900     .addReg(0)
15901     .addImm(0).addReg(0)
15902     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15903                       MI->getOperand(3).getTargetFlags())
15904     .addReg(0);
15905     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15906     addDirectMem(MIB, X86::EAX);
15907     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15908   } else {
15909     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15910                                       TII->get(X86::MOV32rm), X86::EAX)
15911     .addReg(TII->getGlobalBaseReg(F))
15912     .addImm(0).addReg(0)
15913     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15914                       MI->getOperand(3).getTargetFlags())
15915     .addReg(0);
15916     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15917     addDirectMem(MIB, X86::EAX);
15918     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15919   }
15920
15921   MI->eraseFromParent(); // The pseudo instruction is gone now.
15922   return BB;
15923 }
15924
15925 MachineBasicBlock *
15926 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15927                                     MachineBasicBlock *MBB) const {
15928   DebugLoc DL = MI->getDebugLoc();
15929   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15930
15931   MachineFunction *MF = MBB->getParent();
15932   MachineRegisterInfo &MRI = MF->getRegInfo();
15933
15934   const BasicBlock *BB = MBB->getBasicBlock();
15935   MachineFunction::iterator I = MBB;
15936   ++I;
15937
15938   // Memory Reference
15939   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15940   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15941
15942   unsigned DstReg;
15943   unsigned MemOpndSlot = 0;
15944
15945   unsigned CurOp = 0;
15946
15947   DstReg = MI->getOperand(CurOp++).getReg();
15948   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15949   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15950   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15951   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15952
15953   MemOpndSlot = CurOp;
15954
15955   MVT PVT = getPointerTy();
15956   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15957          "Invalid Pointer Size!");
15958
15959   // For v = setjmp(buf), we generate
15960   //
15961   // thisMBB:
15962   //  buf[LabelOffset] = restoreMBB
15963   //  SjLjSetup restoreMBB
15964   //
15965   // mainMBB:
15966   //  v_main = 0
15967   //
15968   // sinkMBB:
15969   //  v = phi(main, restore)
15970   //
15971   // restoreMBB:
15972   //  v_restore = 1
15973
15974   MachineBasicBlock *thisMBB = MBB;
15975   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15976   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15977   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15978   MF->insert(I, mainMBB);
15979   MF->insert(I, sinkMBB);
15980   MF->push_back(restoreMBB);
15981
15982   MachineInstrBuilder MIB;
15983
15984   // Transfer the remainder of BB and its successor edges to sinkMBB.
15985   sinkMBB->splice(sinkMBB->begin(), MBB,
15986                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15987   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15988
15989   // thisMBB:
15990   unsigned PtrStoreOpc = 0;
15991   unsigned LabelReg = 0;
15992   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15993   Reloc::Model RM = getTargetMachine().getRelocationModel();
15994   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15995                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15996
15997   // Prepare IP either in reg or imm.
15998   if (!UseImmLabel) {
15999     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
16000     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
16001     LabelReg = MRI.createVirtualRegister(PtrRC);
16002     if (Subtarget->is64Bit()) {
16003       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
16004               .addReg(X86::RIP)
16005               .addImm(0)
16006               .addReg(0)
16007               .addMBB(restoreMBB)
16008               .addReg(0);
16009     } else {
16010       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
16011       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
16012               .addReg(XII->getGlobalBaseReg(MF))
16013               .addImm(0)
16014               .addReg(0)
16015               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
16016               .addReg(0);
16017     }
16018   } else
16019     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
16020   // Store IP
16021   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
16022   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16023     if (i == X86::AddrDisp)
16024       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
16025     else
16026       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
16027   }
16028   if (!UseImmLabel)
16029     MIB.addReg(LabelReg);
16030   else
16031     MIB.addMBB(restoreMBB);
16032   MIB.setMemRefs(MMOBegin, MMOEnd);
16033   // Setup
16034   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
16035           .addMBB(restoreMBB);
16036
16037   const X86RegisterInfo *RegInfo =
16038     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
16039   MIB.addRegMask(RegInfo->getNoPreservedMask());
16040   thisMBB->addSuccessor(mainMBB);
16041   thisMBB->addSuccessor(restoreMBB);
16042
16043   // mainMBB:
16044   //  EAX = 0
16045   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
16046   mainMBB->addSuccessor(sinkMBB);
16047
16048   // sinkMBB:
16049   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
16050           TII->get(X86::PHI), DstReg)
16051     .addReg(mainDstReg).addMBB(mainMBB)
16052     .addReg(restoreDstReg).addMBB(restoreMBB);
16053
16054   // restoreMBB:
16055   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
16056   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
16057   restoreMBB->addSuccessor(sinkMBB);
16058
16059   MI->eraseFromParent();
16060   return sinkMBB;
16061 }
16062
16063 MachineBasicBlock *
16064 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
16065                                      MachineBasicBlock *MBB) const {
16066   DebugLoc DL = MI->getDebugLoc();
16067   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16068
16069   MachineFunction *MF = MBB->getParent();
16070   MachineRegisterInfo &MRI = MF->getRegInfo();
16071
16072   // Memory Reference
16073   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
16074   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
16075
16076   MVT PVT = getPointerTy();
16077   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
16078          "Invalid Pointer Size!");
16079
16080   const TargetRegisterClass *RC =
16081     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
16082   unsigned Tmp = MRI.createVirtualRegister(RC);
16083   // Since FP is only updated here but NOT referenced, it's treated as GPR.
16084   const X86RegisterInfo *RegInfo =
16085     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
16086   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
16087   unsigned SP = RegInfo->getStackRegister();
16088
16089   MachineInstrBuilder MIB;
16090
16091   const int64_t LabelOffset = 1 * PVT.getStoreSize();
16092   const int64_t SPOffset = 2 * PVT.getStoreSize();
16093
16094   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
16095   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
16096
16097   // Reload FP
16098   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
16099   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
16100     MIB.addOperand(MI->getOperand(i));
16101   MIB.setMemRefs(MMOBegin, MMOEnd);
16102   // Reload IP
16103   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
16104   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16105     if (i == X86::AddrDisp)
16106       MIB.addDisp(MI->getOperand(i), LabelOffset);
16107     else
16108       MIB.addOperand(MI->getOperand(i));
16109   }
16110   MIB.setMemRefs(MMOBegin, MMOEnd);
16111   // Reload SP
16112   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
16113   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16114     if (i == X86::AddrDisp)
16115       MIB.addDisp(MI->getOperand(i), SPOffset);
16116     else
16117       MIB.addOperand(MI->getOperand(i));
16118   }
16119   MIB.setMemRefs(MMOBegin, MMOEnd);
16120   // Jump
16121   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
16122
16123   MI->eraseFromParent();
16124   return MBB;
16125 }
16126
16127 // Replace 213-type (isel default) FMA3 instructions with 231-type for
16128 // accumulator loops. Writing back to the accumulator allows the coalescer
16129 // to remove extra copies in the loop.   
16130 MachineBasicBlock *
16131 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
16132                                  MachineBasicBlock *MBB) const {
16133   MachineOperand &AddendOp = MI->getOperand(3);
16134
16135   // Bail out early if the addend isn't a register - we can't switch these.
16136   if (!AddendOp.isReg())
16137     return MBB;
16138
16139   MachineFunction &MF = *MBB->getParent();
16140   MachineRegisterInfo &MRI = MF.getRegInfo();
16141
16142   // Check whether the addend is defined by a PHI:
16143   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
16144   MachineInstr &AddendDef = *MRI.def_begin(AddendOp.getReg());
16145   if (!AddendDef.isPHI())
16146     return MBB;
16147
16148   // Look for the following pattern:
16149   // loop:
16150   //   %addend = phi [%entry, 0], [%loop, %result]
16151   //   ...
16152   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
16153
16154   // Replace with:
16155   //   loop:
16156   //   %addend = phi [%entry, 0], [%loop, %result]
16157   //   ...
16158   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
16159
16160   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
16161     assert(AddendDef.getOperand(i).isReg());
16162     MachineOperand PHISrcOp = AddendDef.getOperand(i);
16163     MachineInstr &PHISrcInst = *MRI.def_begin(PHISrcOp.getReg());
16164     if (&PHISrcInst == MI) {
16165       // Found a matching instruction.
16166       unsigned NewFMAOpc = 0;
16167       switch (MI->getOpcode()) {
16168         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
16169         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
16170         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
16171         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
16172         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
16173         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
16174         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
16175         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
16176         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
16177         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
16178         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
16179         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
16180         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
16181         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
16182         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
16183         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
16184         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
16185         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
16186         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
16187         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
16188         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
16189         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
16190         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
16191         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
16192         default: llvm_unreachable("Unrecognized FMA variant.");
16193       }
16194
16195       const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
16196       MachineInstrBuilder MIB =
16197         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
16198         .addOperand(MI->getOperand(0))
16199         .addOperand(MI->getOperand(3))
16200         .addOperand(MI->getOperand(2))
16201         .addOperand(MI->getOperand(1));
16202       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
16203       MI->eraseFromParent();
16204     }
16205   }
16206
16207   return MBB;
16208 }
16209
16210 MachineBasicBlock *
16211 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
16212                                                MachineBasicBlock *BB) const {
16213   switch (MI->getOpcode()) {
16214   default: llvm_unreachable("Unexpected instr type to insert");
16215   case X86::TAILJMPd64:
16216   case X86::TAILJMPr64:
16217   case X86::TAILJMPm64:
16218     llvm_unreachable("TAILJMP64 would not be touched here.");
16219   case X86::TCRETURNdi64:
16220   case X86::TCRETURNri64:
16221   case X86::TCRETURNmi64:
16222     return BB;
16223   case X86::WIN_ALLOCA:
16224     return EmitLoweredWinAlloca(MI, BB);
16225   case X86::SEG_ALLOCA_32:
16226     return EmitLoweredSegAlloca(MI, BB, false);
16227   case X86::SEG_ALLOCA_64:
16228     return EmitLoweredSegAlloca(MI, BB, true);
16229   case X86::TLSCall_32:
16230   case X86::TLSCall_64:
16231     return EmitLoweredTLSCall(MI, BB);
16232   case X86::CMOV_GR8:
16233   case X86::CMOV_FR32:
16234   case X86::CMOV_FR64:
16235   case X86::CMOV_V4F32:
16236   case X86::CMOV_V2F64:
16237   case X86::CMOV_V2I64:
16238   case X86::CMOV_V8F32:
16239   case X86::CMOV_V4F64:
16240   case X86::CMOV_V4I64:
16241   case X86::CMOV_V16F32:
16242   case X86::CMOV_V8F64:
16243   case X86::CMOV_V8I64:
16244   case X86::CMOV_GR16:
16245   case X86::CMOV_GR32:
16246   case X86::CMOV_RFP32:
16247   case X86::CMOV_RFP64:
16248   case X86::CMOV_RFP80:
16249     return EmitLoweredSelect(MI, BB);
16250
16251   case X86::FP32_TO_INT16_IN_MEM:
16252   case X86::FP32_TO_INT32_IN_MEM:
16253   case X86::FP32_TO_INT64_IN_MEM:
16254   case X86::FP64_TO_INT16_IN_MEM:
16255   case X86::FP64_TO_INT32_IN_MEM:
16256   case X86::FP64_TO_INT64_IN_MEM:
16257   case X86::FP80_TO_INT16_IN_MEM:
16258   case X86::FP80_TO_INT32_IN_MEM:
16259   case X86::FP80_TO_INT64_IN_MEM: {
16260     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16261     DebugLoc DL = MI->getDebugLoc();
16262
16263     // Change the floating point control register to use "round towards zero"
16264     // mode when truncating to an integer value.
16265     MachineFunction *F = BB->getParent();
16266     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16267     addFrameReference(BuildMI(*BB, MI, DL,
16268                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16269
16270     // Load the old value of the high byte of the control word...
16271     unsigned OldCW =
16272       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16273     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16274                       CWFrameIdx);
16275
16276     // Set the high part to be round to zero...
16277     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16278       .addImm(0xC7F);
16279
16280     // Reload the modified control word now...
16281     addFrameReference(BuildMI(*BB, MI, DL,
16282                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16283
16284     // Restore the memory image of control word to original value
16285     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16286       .addReg(OldCW);
16287
16288     // Get the X86 opcode to use.
16289     unsigned Opc;
16290     switch (MI->getOpcode()) {
16291     default: llvm_unreachable("illegal opcode!");
16292     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16293     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16294     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16295     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16296     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16297     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16298     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16299     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16300     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16301     }
16302
16303     X86AddressMode AM;
16304     MachineOperand &Op = MI->getOperand(0);
16305     if (Op.isReg()) {
16306       AM.BaseType = X86AddressMode::RegBase;
16307       AM.Base.Reg = Op.getReg();
16308     } else {
16309       AM.BaseType = X86AddressMode::FrameIndexBase;
16310       AM.Base.FrameIndex = Op.getIndex();
16311     }
16312     Op = MI->getOperand(1);
16313     if (Op.isImm())
16314       AM.Scale = Op.getImm();
16315     Op = MI->getOperand(2);
16316     if (Op.isImm())
16317       AM.IndexReg = Op.getImm();
16318     Op = MI->getOperand(3);
16319     if (Op.isGlobal()) {
16320       AM.GV = Op.getGlobal();
16321     } else {
16322       AM.Disp = Op.getImm();
16323     }
16324     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16325                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16326
16327     // Reload the original control word now.
16328     addFrameReference(BuildMI(*BB, MI, DL,
16329                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16330
16331     MI->eraseFromParent();   // The pseudo instruction is gone now.
16332     return BB;
16333   }
16334     // String/text processing lowering.
16335   case X86::PCMPISTRM128REG:
16336   case X86::VPCMPISTRM128REG:
16337   case X86::PCMPISTRM128MEM:
16338   case X86::VPCMPISTRM128MEM:
16339   case X86::PCMPESTRM128REG:
16340   case X86::VPCMPESTRM128REG:
16341   case X86::PCMPESTRM128MEM:
16342   case X86::VPCMPESTRM128MEM:
16343     assert(Subtarget->hasSSE42() &&
16344            "Target must have SSE4.2 or AVX features enabled");
16345     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16346
16347   // String/text processing lowering.
16348   case X86::PCMPISTRIREG:
16349   case X86::VPCMPISTRIREG:
16350   case X86::PCMPISTRIMEM:
16351   case X86::VPCMPISTRIMEM:
16352   case X86::PCMPESTRIREG:
16353   case X86::VPCMPESTRIREG:
16354   case X86::PCMPESTRIMEM:
16355   case X86::VPCMPESTRIMEM:
16356     assert(Subtarget->hasSSE42() &&
16357            "Target must have SSE4.2 or AVX features enabled");
16358     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
16359
16360   // Thread synchronization.
16361   case X86::MONITOR:
16362     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
16363
16364   // xbegin
16365   case X86::XBEGIN:
16366     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
16367
16368   // Atomic Lowering.
16369   case X86::ATOMAND8:
16370   case X86::ATOMAND16:
16371   case X86::ATOMAND32:
16372   case X86::ATOMAND64:
16373     // Fall through
16374   case X86::ATOMOR8:
16375   case X86::ATOMOR16:
16376   case X86::ATOMOR32:
16377   case X86::ATOMOR64:
16378     // Fall through
16379   case X86::ATOMXOR16:
16380   case X86::ATOMXOR8:
16381   case X86::ATOMXOR32:
16382   case X86::ATOMXOR64:
16383     // Fall through
16384   case X86::ATOMNAND8:
16385   case X86::ATOMNAND16:
16386   case X86::ATOMNAND32:
16387   case X86::ATOMNAND64:
16388     // Fall through
16389   case X86::ATOMMAX8:
16390   case X86::ATOMMAX16:
16391   case X86::ATOMMAX32:
16392   case X86::ATOMMAX64:
16393     // Fall through
16394   case X86::ATOMMIN8:
16395   case X86::ATOMMIN16:
16396   case X86::ATOMMIN32:
16397   case X86::ATOMMIN64:
16398     // Fall through
16399   case X86::ATOMUMAX8:
16400   case X86::ATOMUMAX16:
16401   case X86::ATOMUMAX32:
16402   case X86::ATOMUMAX64:
16403     // Fall through
16404   case X86::ATOMUMIN8:
16405   case X86::ATOMUMIN16:
16406   case X86::ATOMUMIN32:
16407   case X86::ATOMUMIN64:
16408     return EmitAtomicLoadArith(MI, BB);
16409
16410   // This group does 64-bit operations on a 32-bit host.
16411   case X86::ATOMAND6432:
16412   case X86::ATOMOR6432:
16413   case X86::ATOMXOR6432:
16414   case X86::ATOMNAND6432:
16415   case X86::ATOMADD6432:
16416   case X86::ATOMSUB6432:
16417   case X86::ATOMMAX6432:
16418   case X86::ATOMMIN6432:
16419   case X86::ATOMUMAX6432:
16420   case X86::ATOMUMIN6432:
16421   case X86::ATOMSWAP6432:
16422     return EmitAtomicLoadArith6432(MI, BB);
16423
16424   case X86::VASTART_SAVE_XMM_REGS:
16425     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
16426
16427   case X86::VAARG_64:
16428     return EmitVAARG64WithCustomInserter(MI, BB);
16429
16430   case X86::EH_SjLj_SetJmp32:
16431   case X86::EH_SjLj_SetJmp64:
16432     return emitEHSjLjSetJmp(MI, BB);
16433
16434   case X86::EH_SjLj_LongJmp32:
16435   case X86::EH_SjLj_LongJmp64:
16436     return emitEHSjLjLongJmp(MI, BB);
16437
16438   case TargetOpcode::STACKMAP:
16439   case TargetOpcode::PATCHPOINT:
16440     return emitPatchPoint(MI, BB);
16441
16442   case X86::VFMADDPDr213r:
16443   case X86::VFMADDPSr213r:
16444   case X86::VFMADDSDr213r:
16445   case X86::VFMADDSSr213r:
16446   case X86::VFMSUBPDr213r:
16447   case X86::VFMSUBPSr213r:
16448   case X86::VFMSUBSDr213r:
16449   case X86::VFMSUBSSr213r:
16450   case X86::VFNMADDPDr213r:
16451   case X86::VFNMADDPSr213r:
16452   case X86::VFNMADDSDr213r:
16453   case X86::VFNMADDSSr213r:
16454   case X86::VFNMSUBPDr213r:
16455   case X86::VFNMSUBPSr213r:
16456   case X86::VFNMSUBSDr213r:
16457   case X86::VFNMSUBSSr213r:
16458   case X86::VFMADDPDr213rY:
16459   case X86::VFMADDPSr213rY:
16460   case X86::VFMSUBPDr213rY:
16461   case X86::VFMSUBPSr213rY:
16462   case X86::VFNMADDPDr213rY:
16463   case X86::VFNMADDPSr213rY:
16464   case X86::VFNMSUBPDr213rY:
16465   case X86::VFNMSUBPSr213rY:
16466     return emitFMA3Instr(MI, BB);
16467   }
16468 }
16469
16470 //===----------------------------------------------------------------------===//
16471 //                           X86 Optimization Hooks
16472 //===----------------------------------------------------------------------===//
16473
16474 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
16475                                                        APInt &KnownZero,
16476                                                        APInt &KnownOne,
16477                                                        const SelectionDAG &DAG,
16478                                                        unsigned Depth) const {
16479   unsigned BitWidth = KnownZero.getBitWidth();
16480   unsigned Opc = Op.getOpcode();
16481   assert((Opc >= ISD::BUILTIN_OP_END ||
16482           Opc == ISD::INTRINSIC_WO_CHAIN ||
16483           Opc == ISD::INTRINSIC_W_CHAIN ||
16484           Opc == ISD::INTRINSIC_VOID) &&
16485          "Should use MaskedValueIsZero if you don't know whether Op"
16486          " is a target node!");
16487
16488   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
16489   switch (Opc) {
16490   default: break;
16491   case X86ISD::ADD:
16492   case X86ISD::SUB:
16493   case X86ISD::ADC:
16494   case X86ISD::SBB:
16495   case X86ISD::SMUL:
16496   case X86ISD::UMUL:
16497   case X86ISD::INC:
16498   case X86ISD::DEC:
16499   case X86ISD::OR:
16500   case X86ISD::XOR:
16501   case X86ISD::AND:
16502     // These nodes' second result is a boolean.
16503     if (Op.getResNo() == 0)
16504       break;
16505     // Fallthrough
16506   case X86ISD::SETCC:
16507     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
16508     break;
16509   case ISD::INTRINSIC_WO_CHAIN: {
16510     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16511     unsigned NumLoBits = 0;
16512     switch (IntId) {
16513     default: break;
16514     case Intrinsic::x86_sse_movmsk_ps:
16515     case Intrinsic::x86_avx_movmsk_ps_256:
16516     case Intrinsic::x86_sse2_movmsk_pd:
16517     case Intrinsic::x86_avx_movmsk_pd_256:
16518     case Intrinsic::x86_mmx_pmovmskb:
16519     case Intrinsic::x86_sse2_pmovmskb_128:
16520     case Intrinsic::x86_avx2_pmovmskb: {
16521       // High bits of movmskp{s|d}, pmovmskb are known zero.
16522       switch (IntId) {
16523         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16524         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16525         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16526         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16527         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16528         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16529         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16530         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16531       }
16532       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16533       break;
16534     }
16535     }
16536     break;
16537   }
16538   }
16539 }
16540
16541 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16542                                                          unsigned Depth) const {
16543   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16544   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16545     return Op.getValueType().getScalarType().getSizeInBits();
16546
16547   // Fallback case.
16548   return 1;
16549 }
16550
16551 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16552 /// node is a GlobalAddress + offset.
16553 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16554                                        const GlobalValue* &GA,
16555                                        int64_t &Offset) const {
16556   if (N->getOpcode() == X86ISD::Wrapper) {
16557     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16558       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16559       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16560       return true;
16561     }
16562   }
16563   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16564 }
16565
16566 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16567 /// same as extracting the high 128-bit part of 256-bit vector and then
16568 /// inserting the result into the low part of a new 256-bit vector
16569 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16570   EVT VT = SVOp->getValueType(0);
16571   unsigned NumElems = VT.getVectorNumElements();
16572
16573   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16574   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16575     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16576         SVOp->getMaskElt(j) >= 0)
16577       return false;
16578
16579   return true;
16580 }
16581
16582 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16583 /// same as extracting the low 128-bit part of 256-bit vector and then
16584 /// inserting the result into the high part of a new 256-bit vector
16585 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16586   EVT VT = SVOp->getValueType(0);
16587   unsigned NumElems = VT.getVectorNumElements();
16588
16589   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16590   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16591     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16592         SVOp->getMaskElt(j) >= 0)
16593       return false;
16594
16595   return true;
16596 }
16597
16598 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16599 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16600                                         TargetLowering::DAGCombinerInfo &DCI,
16601                                         const X86Subtarget* Subtarget) {
16602   SDLoc dl(N);
16603   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16604   SDValue V1 = SVOp->getOperand(0);
16605   SDValue V2 = SVOp->getOperand(1);
16606   EVT VT = SVOp->getValueType(0);
16607   unsigned NumElems = VT.getVectorNumElements();
16608
16609   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16610       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16611     //
16612     //                   0,0,0,...
16613     //                      |
16614     //    V      UNDEF    BUILD_VECTOR    UNDEF
16615     //     \      /           \           /
16616     //  CONCAT_VECTOR         CONCAT_VECTOR
16617     //         \                  /
16618     //          \                /
16619     //          RESULT: V + zero extended
16620     //
16621     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16622         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16623         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16624       return SDValue();
16625
16626     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16627       return SDValue();
16628
16629     // To match the shuffle mask, the first half of the mask should
16630     // be exactly the first vector, and all the rest a splat with the
16631     // first element of the second one.
16632     for (unsigned i = 0; i != NumElems/2; ++i)
16633       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16634           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16635         return SDValue();
16636
16637     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16638     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16639       if (Ld->hasNUsesOfValue(1, 0)) {
16640         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16641         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16642         SDValue ResNode =
16643           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16644                                   array_lengthof(Ops),
16645                                   Ld->getMemoryVT(),
16646                                   Ld->getPointerInfo(),
16647                                   Ld->getAlignment(),
16648                                   false/*isVolatile*/, true/*ReadMem*/,
16649                                   false/*WriteMem*/);
16650
16651         // Make sure the newly-created LOAD is in the same position as Ld in
16652         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16653         // and update uses of Ld's output chain to use the TokenFactor.
16654         if (Ld->hasAnyUseOfValue(1)) {
16655           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16656                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16657           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16658           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16659                                  SDValue(ResNode.getNode(), 1));
16660         }
16661
16662         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16663       }
16664     }
16665
16666     // Emit a zeroed vector and insert the desired subvector on its
16667     // first half.
16668     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16669     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16670     return DCI.CombineTo(N, InsV);
16671   }
16672
16673   //===--------------------------------------------------------------------===//
16674   // Combine some shuffles into subvector extracts and inserts:
16675   //
16676
16677   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16678   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16679     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16680     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16681     return DCI.CombineTo(N, InsV);
16682   }
16683
16684   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16685   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16686     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16687     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16688     return DCI.CombineTo(N, InsV);
16689   }
16690
16691   return SDValue();
16692 }
16693
16694 /// PerformShuffleCombine - Performs several different shuffle combines.
16695 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16696                                      TargetLowering::DAGCombinerInfo &DCI,
16697                                      const X86Subtarget *Subtarget) {
16698   SDLoc dl(N);
16699   EVT VT = N->getValueType(0);
16700
16701   // Don't create instructions with illegal types after legalize types has run.
16702   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16703   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16704     return SDValue();
16705
16706   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16707   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16708       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16709     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16710
16711   // Only handle 128 wide vector from here on.
16712   if (!VT.is128BitVector())
16713     return SDValue();
16714
16715   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16716   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16717   // consecutive, non-overlapping, and in the right order.
16718   SmallVector<SDValue, 16> Elts;
16719   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16720     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16721
16722   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
16723 }
16724
16725 /// PerformTruncateCombine - Converts truncate operation to
16726 /// a sequence of vector shuffle operations.
16727 /// It is possible when we truncate 256-bit vector to 128-bit vector
16728 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16729                                       TargetLowering::DAGCombinerInfo &DCI,
16730                                       const X86Subtarget *Subtarget)  {
16731   return SDValue();
16732 }
16733
16734 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16735 /// specific shuffle of a load can be folded into a single element load.
16736 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16737 /// shuffles have been customed lowered so we need to handle those here.
16738 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16739                                          TargetLowering::DAGCombinerInfo &DCI) {
16740   if (DCI.isBeforeLegalizeOps())
16741     return SDValue();
16742
16743   SDValue InVec = N->getOperand(0);
16744   SDValue EltNo = N->getOperand(1);
16745
16746   if (!isa<ConstantSDNode>(EltNo))
16747     return SDValue();
16748
16749   EVT VT = InVec.getValueType();
16750
16751   bool HasShuffleIntoBitcast = false;
16752   if (InVec.getOpcode() == ISD::BITCAST) {
16753     // Don't duplicate a load with other uses.
16754     if (!InVec.hasOneUse())
16755       return SDValue();
16756     EVT BCVT = InVec.getOperand(0).getValueType();
16757     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16758       return SDValue();
16759     InVec = InVec.getOperand(0);
16760     HasShuffleIntoBitcast = true;
16761   }
16762
16763   if (!isTargetShuffle(InVec.getOpcode()))
16764     return SDValue();
16765
16766   // Don't duplicate a load with other uses.
16767   if (!InVec.hasOneUse())
16768     return SDValue();
16769
16770   SmallVector<int, 16> ShuffleMask;
16771   bool UnaryShuffle;
16772   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16773                             UnaryShuffle))
16774     return SDValue();
16775
16776   // Select the input vector, guarding against out of range extract vector.
16777   unsigned NumElems = VT.getVectorNumElements();
16778   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16779   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16780   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16781                                          : InVec.getOperand(1);
16782
16783   // If inputs to shuffle are the same for both ops, then allow 2 uses
16784   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16785
16786   if (LdNode.getOpcode() == ISD::BITCAST) {
16787     // Don't duplicate a load with other uses.
16788     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16789       return SDValue();
16790
16791     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16792     LdNode = LdNode.getOperand(0);
16793   }
16794
16795   if (!ISD::isNormalLoad(LdNode.getNode()))
16796     return SDValue();
16797
16798   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16799
16800   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16801     return SDValue();
16802
16803   if (HasShuffleIntoBitcast) {
16804     // If there's a bitcast before the shuffle, check if the load type and
16805     // alignment is valid.
16806     unsigned Align = LN0->getAlignment();
16807     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16808     unsigned NewAlign = TLI.getDataLayout()->
16809       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16810
16811     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16812       return SDValue();
16813   }
16814
16815   // All checks match so transform back to vector_shuffle so that DAG combiner
16816   // can finish the job
16817   SDLoc dl(N);
16818
16819   // Create shuffle node taking into account the case that its a unary shuffle
16820   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16821   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16822                                  InVec.getOperand(0), Shuffle,
16823                                  &ShuffleMask[0]);
16824   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16825   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16826                      EltNo);
16827 }
16828
16829 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16830 /// generation and convert it from being a bunch of shuffles and extracts
16831 /// to a simple store and scalar loads to extract the elements.
16832 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16833                                          TargetLowering::DAGCombinerInfo &DCI) {
16834   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16835   if (NewOp.getNode())
16836     return NewOp;
16837
16838   SDValue InputVector = N->getOperand(0);
16839
16840   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16841   // from mmx to v2i32 has a single usage.
16842   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16843       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16844       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16845     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16846                        N->getValueType(0),
16847                        InputVector.getNode()->getOperand(0));
16848
16849   // Only operate on vectors of 4 elements, where the alternative shuffling
16850   // gets to be more expensive.
16851   if (InputVector.getValueType() != MVT::v4i32)
16852     return SDValue();
16853
16854   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16855   // single use which is a sign-extend or zero-extend, and all elements are
16856   // used.
16857   SmallVector<SDNode *, 4> Uses;
16858   unsigned ExtractedElements = 0;
16859   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16860        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16861     if (UI.getUse().getResNo() != InputVector.getResNo())
16862       return SDValue();
16863
16864     SDNode *Extract = *UI;
16865     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16866       return SDValue();
16867
16868     if (Extract->getValueType(0) != MVT::i32)
16869       return SDValue();
16870     if (!Extract->hasOneUse())
16871       return SDValue();
16872     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16873         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16874       return SDValue();
16875     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16876       return SDValue();
16877
16878     // Record which element was extracted.
16879     ExtractedElements |=
16880       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16881
16882     Uses.push_back(Extract);
16883   }
16884
16885   // If not all the elements were used, this may not be worthwhile.
16886   if (ExtractedElements != 15)
16887     return SDValue();
16888
16889   // Ok, we've now decided to do the transformation.
16890   SDLoc dl(InputVector);
16891
16892   // Store the value to a temporary stack slot.
16893   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16894   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16895                             MachinePointerInfo(), false, false, 0);
16896
16897   // Replace each use (extract) with a load of the appropriate element.
16898   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16899        UE = Uses.end(); UI != UE; ++UI) {
16900     SDNode *Extract = *UI;
16901
16902     // cOMpute the element's address.
16903     SDValue Idx = Extract->getOperand(1);
16904     unsigned EltSize =
16905         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16906     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16907     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16908     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16909
16910     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16911                                      StackPtr, OffsetVal);
16912
16913     // Load the scalar.
16914     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16915                                      ScalarAddr, MachinePointerInfo(),
16916                                      false, false, false, 0);
16917
16918     // Replace the exact with the load.
16919     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16920   }
16921
16922   // The replacement was made in place; don't return anything.
16923   return SDValue();
16924 }
16925
16926 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16927 static std::pair<unsigned, bool>
16928 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16929                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16930   if (!VT.isVector())
16931     return std::make_pair(0, false);
16932
16933   bool NeedSplit = false;
16934   switch (VT.getSimpleVT().SimpleTy) {
16935   default: return std::make_pair(0, false);
16936   case MVT::v32i8:
16937   case MVT::v16i16:
16938   case MVT::v8i32:
16939     if (!Subtarget->hasAVX2())
16940       NeedSplit = true;
16941     if (!Subtarget->hasAVX())
16942       return std::make_pair(0, false);
16943     break;
16944   case MVT::v16i8:
16945   case MVT::v8i16:
16946   case MVT::v4i32:
16947     if (!Subtarget->hasSSE2())
16948       return std::make_pair(0, false);
16949   }
16950
16951   // SSE2 has only a small subset of the operations.
16952   bool hasUnsigned = Subtarget->hasSSE41() ||
16953                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16954   bool hasSigned = Subtarget->hasSSE41() ||
16955                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16956
16957   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16958
16959   unsigned Opc = 0;
16960   // Check for x CC y ? x : y.
16961   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16962       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16963     switch (CC) {
16964     default: break;
16965     case ISD::SETULT:
16966     case ISD::SETULE:
16967       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16968     case ISD::SETUGT:
16969     case ISD::SETUGE:
16970       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16971     case ISD::SETLT:
16972     case ISD::SETLE:
16973       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16974     case ISD::SETGT:
16975     case ISD::SETGE:
16976       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16977     }
16978   // Check for x CC y ? y : x -- a min/max with reversed arms.
16979   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16980              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16981     switch (CC) {
16982     default: break;
16983     case ISD::SETULT:
16984     case ISD::SETULE:
16985       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16986     case ISD::SETUGT:
16987     case ISD::SETUGE:
16988       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16989     case ISD::SETLT:
16990     case ISD::SETLE:
16991       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16992     case ISD::SETGT:
16993     case ISD::SETGE:
16994       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16995     }
16996   }
16997
16998   return std::make_pair(Opc, NeedSplit);
16999 }
17000
17001 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
17002 /// nodes.
17003 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
17004                                     TargetLowering::DAGCombinerInfo &DCI,
17005                                     const X86Subtarget *Subtarget) {
17006   SDLoc DL(N);
17007   SDValue Cond = N->getOperand(0);
17008   // Get the LHS/RHS of the select.
17009   SDValue LHS = N->getOperand(1);
17010   SDValue RHS = N->getOperand(2);
17011   EVT VT = LHS.getValueType();
17012   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17013
17014   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
17015   // instructions match the semantics of the common C idiom x<y?x:y but not
17016   // x<=y?x:y, because of how they handle negative zero (which can be
17017   // ignored in unsafe-math mode).
17018   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
17019       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
17020       (Subtarget->hasSSE2() ||
17021        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
17022     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17023
17024     unsigned Opcode = 0;
17025     // Check for x CC y ? x : y.
17026     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17027         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17028       switch (CC) {
17029       default: break;
17030       case ISD::SETULT:
17031         // Converting this to a min would handle NaNs incorrectly, and swapping
17032         // the operands would cause it to handle comparisons between positive
17033         // and negative zero incorrectly.
17034         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
17035           if (!DAG.getTarget().Options.UnsafeFPMath &&
17036               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
17037             break;
17038           std::swap(LHS, RHS);
17039         }
17040         Opcode = X86ISD::FMIN;
17041         break;
17042       case ISD::SETOLE:
17043         // Converting this to a min would handle comparisons between positive
17044         // and negative zero incorrectly.
17045         if (!DAG.getTarget().Options.UnsafeFPMath &&
17046             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
17047           break;
17048         Opcode = X86ISD::FMIN;
17049         break;
17050       case ISD::SETULE:
17051         // Converting this to a min would handle both negative zeros and NaNs
17052         // incorrectly, but we can swap the operands to fix both.
17053         std::swap(LHS, RHS);
17054       case ISD::SETOLT:
17055       case ISD::SETLT:
17056       case ISD::SETLE:
17057         Opcode = X86ISD::FMIN;
17058         break;
17059
17060       case ISD::SETOGE:
17061         // Converting this to a max would handle comparisons between positive
17062         // and negative zero incorrectly.
17063         if (!DAG.getTarget().Options.UnsafeFPMath &&
17064             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
17065           break;
17066         Opcode = X86ISD::FMAX;
17067         break;
17068       case ISD::SETUGT:
17069         // Converting this to a max would handle NaNs incorrectly, and swapping
17070         // the operands would cause it to handle comparisons between positive
17071         // and negative zero incorrectly.
17072         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
17073           if (!DAG.getTarget().Options.UnsafeFPMath &&
17074               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
17075             break;
17076           std::swap(LHS, RHS);
17077         }
17078         Opcode = X86ISD::FMAX;
17079         break;
17080       case ISD::SETUGE:
17081         // Converting this to a max would handle both negative zeros and NaNs
17082         // incorrectly, but we can swap the operands to fix both.
17083         std::swap(LHS, RHS);
17084       case ISD::SETOGT:
17085       case ISD::SETGT:
17086       case ISD::SETGE:
17087         Opcode = X86ISD::FMAX;
17088         break;
17089       }
17090     // Check for x CC y ? y : x -- a min/max with reversed arms.
17091     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
17092                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
17093       switch (CC) {
17094       default: break;
17095       case ISD::SETOGE:
17096         // Converting this to a min would handle comparisons between positive
17097         // and negative zero incorrectly, and swapping the operands would
17098         // cause it to handle NaNs incorrectly.
17099         if (!DAG.getTarget().Options.UnsafeFPMath &&
17100             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
17101           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17102             break;
17103           std::swap(LHS, RHS);
17104         }
17105         Opcode = X86ISD::FMIN;
17106         break;
17107       case ISD::SETUGT:
17108         // Converting this to a min would handle NaNs incorrectly.
17109         if (!DAG.getTarget().Options.UnsafeFPMath &&
17110             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
17111           break;
17112         Opcode = X86ISD::FMIN;
17113         break;
17114       case ISD::SETUGE:
17115         // Converting this to a min would handle both negative zeros and NaNs
17116         // incorrectly, but we can swap the operands to fix both.
17117         std::swap(LHS, RHS);
17118       case ISD::SETOGT:
17119       case ISD::SETGT:
17120       case ISD::SETGE:
17121         Opcode = X86ISD::FMIN;
17122         break;
17123
17124       case ISD::SETULT:
17125         // Converting this to a max would handle NaNs incorrectly.
17126         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17127           break;
17128         Opcode = X86ISD::FMAX;
17129         break;
17130       case ISD::SETOLE:
17131         // Converting this to a max would handle comparisons between positive
17132         // and negative zero incorrectly, and swapping the operands would
17133         // cause it to handle NaNs incorrectly.
17134         if (!DAG.getTarget().Options.UnsafeFPMath &&
17135             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
17136           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17137             break;
17138           std::swap(LHS, RHS);
17139         }
17140         Opcode = X86ISD::FMAX;
17141         break;
17142       case ISD::SETULE:
17143         // Converting this to a max would handle both negative zeros and NaNs
17144         // incorrectly, but we can swap the operands to fix both.
17145         std::swap(LHS, RHS);
17146       case ISD::SETOLT:
17147       case ISD::SETLT:
17148       case ISD::SETLE:
17149         Opcode = X86ISD::FMAX;
17150         break;
17151       }
17152     }
17153
17154     if (Opcode)
17155       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
17156   }
17157
17158   EVT CondVT = Cond.getValueType();
17159   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
17160       CondVT.getVectorElementType() == MVT::i1) {
17161     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
17162     // lowering on AVX-512. In this case we convert it to
17163     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
17164     // The same situation for all 128 and 256-bit vectors of i8 and i16
17165     EVT OpVT = LHS.getValueType();
17166     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
17167         (OpVT.getVectorElementType() == MVT::i8 ||
17168          OpVT.getVectorElementType() == MVT::i16)) {
17169       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
17170       DCI.AddToWorklist(Cond.getNode());
17171       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
17172     }
17173   }
17174   // If this is a select between two integer constants, try to do some
17175   // optimizations.
17176   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
17177     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
17178       // Don't do this for crazy integer types.
17179       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
17180         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
17181         // so that TrueC (the true value) is larger than FalseC.
17182         bool NeedsCondInvert = false;
17183
17184         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
17185             // Efficiently invertible.
17186             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
17187              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
17188               isa<ConstantSDNode>(Cond.getOperand(1))))) {
17189           NeedsCondInvert = true;
17190           std::swap(TrueC, FalseC);
17191         }
17192
17193         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
17194         if (FalseC->getAPIntValue() == 0 &&
17195             TrueC->getAPIntValue().isPowerOf2()) {
17196           if (NeedsCondInvert) // Invert the condition if needed.
17197             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17198                                DAG.getConstant(1, Cond.getValueType()));
17199
17200           // Zero extend the condition if needed.
17201           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
17202
17203           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17204           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
17205                              DAG.getConstant(ShAmt, MVT::i8));
17206         }
17207
17208         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
17209         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17210           if (NeedsCondInvert) // Invert the condition if needed.
17211             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17212                                DAG.getConstant(1, Cond.getValueType()));
17213
17214           // Zero extend the condition if needed.
17215           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17216                              FalseC->getValueType(0), Cond);
17217           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17218                              SDValue(FalseC, 0));
17219         }
17220
17221         // Optimize cases that will turn into an LEA instruction.  This requires
17222         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17223         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17224           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17225           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17226
17227           bool isFastMultiplier = false;
17228           if (Diff < 10) {
17229             switch ((unsigned char)Diff) {
17230               default: break;
17231               case 1:  // result = add base, cond
17232               case 2:  // result = lea base(    , cond*2)
17233               case 3:  // result = lea base(cond, cond*2)
17234               case 4:  // result = lea base(    , cond*4)
17235               case 5:  // result = lea base(cond, cond*4)
17236               case 8:  // result = lea base(    , cond*8)
17237               case 9:  // result = lea base(cond, cond*8)
17238                 isFastMultiplier = true;
17239                 break;
17240             }
17241           }
17242
17243           if (isFastMultiplier) {
17244             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17245             if (NeedsCondInvert) // Invert the condition if needed.
17246               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17247                                  DAG.getConstant(1, Cond.getValueType()));
17248
17249             // Zero extend the condition if needed.
17250             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17251                                Cond);
17252             // Scale the condition by the difference.
17253             if (Diff != 1)
17254               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17255                                  DAG.getConstant(Diff, Cond.getValueType()));
17256
17257             // Add the base if non-zero.
17258             if (FalseC->getAPIntValue() != 0)
17259               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17260                                  SDValue(FalseC, 0));
17261             return Cond;
17262           }
17263         }
17264       }
17265   }
17266
17267   // Canonicalize max and min:
17268   // (x > y) ? x : y -> (x >= y) ? x : y
17269   // (x < y) ? x : y -> (x <= y) ? x : y
17270   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
17271   // the need for an extra compare
17272   // against zero. e.g.
17273   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
17274   // subl   %esi, %edi
17275   // testl  %edi, %edi
17276   // movl   $0, %eax
17277   // cmovgl %edi, %eax
17278   // =>
17279   // xorl   %eax, %eax
17280   // subl   %esi, $edi
17281   // cmovsl %eax, %edi
17282   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
17283       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17284       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17285     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17286     switch (CC) {
17287     default: break;
17288     case ISD::SETLT:
17289     case ISD::SETGT: {
17290       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17291       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17292                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17293       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17294     }
17295     }
17296   }
17297
17298   // Early exit check
17299   if (!TLI.isTypeLegal(VT))
17300     return SDValue();
17301
17302   // Match VSELECTs into subs with unsigned saturation.
17303   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17304       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17305       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17306        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17307     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17308
17309     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17310     // left side invert the predicate to simplify logic below.
17311     SDValue Other;
17312     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17313       Other = RHS;
17314       CC = ISD::getSetCCInverse(CC, true);
17315     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17316       Other = LHS;
17317     }
17318
17319     if (Other.getNode() && Other->getNumOperands() == 2 &&
17320         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17321       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17322       SDValue CondRHS = Cond->getOperand(1);
17323
17324       // Look for a general sub with unsigned saturation first.
17325       // x >= y ? x-y : 0 --> subus x, y
17326       // x >  y ? x-y : 0 --> subus x, y
17327       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17328           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17329         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17330
17331       // If the RHS is a constant we have to reverse the const canonicalization.
17332       // x > C-1 ? x+-C : 0 --> subus x, C
17333       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17334           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17335         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17336         if (CondRHS.getConstantOperandVal(0) == -A-1)
17337           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17338                              DAG.getConstant(-A, VT));
17339       }
17340
17341       // Another special case: If C was a sign bit, the sub has been
17342       // canonicalized into a xor.
17343       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17344       //        it's safe to decanonicalize the xor?
17345       // x s< 0 ? x^C : 0 --> subus x, C
17346       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
17347           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
17348           isSplatVector(OpRHS.getNode())) {
17349         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17350         if (A.isSignBit())
17351           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17352       }
17353     }
17354   }
17355
17356   // Try to match a min/max vector operation.
17357   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
17358     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
17359     unsigned Opc = ret.first;
17360     bool NeedSplit = ret.second;
17361
17362     if (Opc && NeedSplit) {
17363       unsigned NumElems = VT.getVectorNumElements();
17364       // Extract the LHS vectors
17365       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
17366       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
17367
17368       // Extract the RHS vectors
17369       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
17370       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
17371
17372       // Create min/max for each subvector
17373       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
17374       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
17375
17376       // Merge the result
17377       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
17378     } else if (Opc)
17379       return DAG.getNode(Opc, DL, VT, LHS, RHS);
17380   }
17381
17382   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
17383   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17384       // Check if SETCC has already been promoted
17385       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
17386       // Check that condition value type matches vselect operand type
17387       CondVT == VT) { 
17388
17389     assert(Cond.getValueType().isVector() &&
17390            "vector select expects a vector selector!");
17391
17392     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
17393     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
17394
17395     if (!TValIsAllOnes && !FValIsAllZeros) {
17396       // Try invert the condition if true value is not all 1s and false value
17397       // is not all 0s.
17398       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
17399       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
17400
17401       if (TValIsAllZeros || FValIsAllOnes) {
17402         SDValue CC = Cond.getOperand(2);
17403         ISD::CondCode NewCC =
17404           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
17405                                Cond.getOperand(0).getValueType().isInteger());
17406         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
17407         std::swap(LHS, RHS);
17408         TValIsAllOnes = FValIsAllOnes;
17409         FValIsAllZeros = TValIsAllZeros;
17410       }
17411     }
17412
17413     if (TValIsAllOnes || FValIsAllZeros) {
17414       SDValue Ret;
17415
17416       if (TValIsAllOnes && FValIsAllZeros)
17417         Ret = Cond;
17418       else if (TValIsAllOnes)
17419         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
17420                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
17421       else if (FValIsAllZeros)
17422         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
17423                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
17424
17425       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17426     }
17427   }
17428
17429   // Try to fold this VSELECT into a MOVSS/MOVSD
17430   if (N->getOpcode() == ISD::VSELECT &&
17431       Cond.getOpcode() == ISD::BUILD_VECTOR && !DCI.isBeforeLegalize()) {
17432     if (VT == MVT::v4i32 || VT == MVT::v4f32 ||
17433         (Subtarget->hasSSE2() && (VT == MVT::v2i64 || VT == MVT::v2f64))) {
17434       bool CanFold = false;
17435       unsigned NumElems = Cond.getNumOperands();
17436       SDValue A = LHS;
17437       SDValue B = RHS;
17438       
17439       if (isZero(Cond.getOperand(0))) {
17440         CanFold = true;
17441
17442         // fold (vselect <0,-1,-1,-1>, A, B) -> (movss A, B)
17443         // fold (vselect <0,-1> -> (movsd A, B)
17444         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
17445           CanFold = isAllOnes(Cond.getOperand(i));
17446       } else if (isAllOnes(Cond.getOperand(0))) {
17447         CanFold = true;
17448         std::swap(A, B);
17449
17450         // fold (vselect <-1,0,0,0>, A, B) -> (movss B, A)
17451         // fold (vselect <-1,0> -> (movsd B, A)
17452         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
17453           CanFold = isZero(Cond.getOperand(i));
17454       }
17455
17456       if (CanFold) {
17457         if (VT == MVT::v4i32 || VT == MVT::v4f32)
17458           return getTargetShuffleNode(X86ISD::MOVSS, DL, VT, A, B, DAG);
17459         return getTargetShuffleNode(X86ISD::MOVSD, DL, VT, A, B, DAG);
17460       }
17461
17462       if (Subtarget->hasSSE2() && (VT == MVT::v4i32 || VT == MVT::v4f32)) {
17463         // fold (v4i32: vselect <0,0,-1,-1>, A, B) ->
17464         //      (v4i32 (bitcast (movsd (v2i64 (bitcast A)),
17465         //                             (v2i64 (bitcast B)))))
17466         //
17467         // fold (v4f32: vselect <0,0,-1,-1>, A, B) ->
17468         //      (v4f32 (bitcast (movsd (v2f64 (bitcast A)),
17469         //                             (v2f64 (bitcast B)))))
17470         //
17471         // fold (v4i32: vselect <-1,-1,0,0>, A, B) ->
17472         //      (v4i32 (bitcast (movsd (v2i64 (bitcast B)),
17473         //                             (v2i64 (bitcast A)))))
17474         //
17475         // fold (v4f32: vselect <-1,-1,0,0>, A, B) ->
17476         //      (v4f32 (bitcast (movsd (v2f64 (bitcast B)),
17477         //                             (v2f64 (bitcast A)))))
17478
17479         CanFold = (isZero(Cond.getOperand(0)) &&
17480                    isZero(Cond.getOperand(1)) &&
17481                    isAllOnes(Cond.getOperand(2)) &&
17482                    isAllOnes(Cond.getOperand(3)));
17483
17484         if (!CanFold && isAllOnes(Cond.getOperand(0)) &&
17485             isAllOnes(Cond.getOperand(1)) &&
17486             isZero(Cond.getOperand(2)) &&
17487             isZero(Cond.getOperand(3))) {
17488           CanFold = true;
17489           std::swap(LHS, RHS);
17490         }
17491
17492         if (CanFold) {
17493           EVT NVT = (VT == MVT::v4i32) ? MVT::v2i64 : MVT::v2f64;
17494           SDValue NewA = DAG.getNode(ISD::BITCAST, DL, NVT, LHS);
17495           SDValue NewB = DAG.getNode(ISD::BITCAST, DL, NVT, RHS);
17496           SDValue Select = getTargetShuffleNode(X86ISD::MOVSD, DL, NVT, NewA,
17497                                                 NewB, DAG);
17498           return DAG.getNode(ISD::BITCAST, DL, VT, Select);
17499         }
17500       }
17501     }
17502   }
17503
17504   // If we know that this node is legal then we know that it is going to be
17505   // matched by one of the SSE/AVX BLEND instructions. These instructions only
17506   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17507   // to simplify previous instructions.
17508   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
17509       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
17510     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
17511
17512     // Don't optimize vector selects that map to mask-registers.
17513     if (BitWidth == 1)
17514       return SDValue();
17515
17516     // Check all uses of that condition operand to check whether it will be
17517     // consumed by non-BLEND instructions, which may depend on all bits are set
17518     // properly.
17519     for (SDNode::use_iterator I = Cond->use_begin(),
17520                               E = Cond->use_end(); I != E; ++I)
17521       if (I->getOpcode() != ISD::VSELECT)
17522         // TODO: Add other opcodes eventually lowered into BLEND.
17523         return SDValue();
17524
17525     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17526     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17527
17528     APInt KnownZero, KnownOne;
17529     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17530                                           DCI.isBeforeLegalizeOps());
17531     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17532         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17533       DCI.CommitTargetLoweringOpt(TLO);
17534   }
17535
17536   return SDValue();
17537 }
17538
17539 // Check whether a boolean test is testing a boolean value generated by
17540 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17541 // code.
17542 //
17543 // Simplify the following patterns:
17544 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17545 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17546 // to (Op EFLAGS Cond)
17547 //
17548 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17549 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17550 // to (Op EFLAGS !Cond)
17551 //
17552 // where Op could be BRCOND or CMOV.
17553 //
17554 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
17555   // Quit if not CMP and SUB with its value result used.
17556   if (Cmp.getOpcode() != X86ISD::CMP &&
17557       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17558       return SDValue();
17559
17560   // Quit if not used as a boolean value.
17561   if (CC != X86::COND_E && CC != X86::COND_NE)
17562     return SDValue();
17563
17564   // Check CMP operands. One of them should be 0 or 1 and the other should be
17565   // an SetCC or extended from it.
17566   SDValue Op1 = Cmp.getOperand(0);
17567   SDValue Op2 = Cmp.getOperand(1);
17568
17569   SDValue SetCC;
17570   const ConstantSDNode* C = 0;
17571   bool needOppositeCond = (CC == X86::COND_E);
17572   bool checkAgainstTrue = false; // Is it a comparison against 1?
17573
17574   if ((C = dyn_cast<ConstantSDNode>(Op1)))
17575     SetCC = Op2;
17576   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17577     SetCC = Op1;
17578   else // Quit if all operands are not constants.
17579     return SDValue();
17580
17581   if (C->getZExtValue() == 1) {
17582     needOppositeCond = !needOppositeCond;
17583     checkAgainstTrue = true;
17584   } else if (C->getZExtValue() != 0)
17585     // Quit if the constant is neither 0 or 1.
17586     return SDValue();
17587
17588   bool truncatedToBoolWithAnd = false;
17589   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17590   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17591          SetCC.getOpcode() == ISD::TRUNCATE ||
17592          SetCC.getOpcode() == ISD::AND) {
17593     if (SetCC.getOpcode() == ISD::AND) {
17594       int OpIdx = -1;
17595       ConstantSDNode *CS;
17596       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17597           CS->getZExtValue() == 1)
17598         OpIdx = 1;
17599       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17600           CS->getZExtValue() == 1)
17601         OpIdx = 0;
17602       if (OpIdx == -1)
17603         break;
17604       SetCC = SetCC.getOperand(OpIdx);
17605       truncatedToBoolWithAnd = true;
17606     } else
17607       SetCC = SetCC.getOperand(0);
17608   }
17609
17610   switch (SetCC.getOpcode()) {
17611   case X86ISD::SETCC_CARRY:
17612     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17613     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17614     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17615     // truncated to i1 using 'and'.
17616     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17617       break;
17618     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17619            "Invalid use of SETCC_CARRY!");
17620     // FALL THROUGH
17621   case X86ISD::SETCC:
17622     // Set the condition code or opposite one if necessary.
17623     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17624     if (needOppositeCond)
17625       CC = X86::GetOppositeBranchCondition(CC);
17626     return SetCC.getOperand(1);
17627   case X86ISD::CMOV: {
17628     // Check whether false/true value has canonical one, i.e. 0 or 1.
17629     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17630     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17631     // Quit if true value is not a constant.
17632     if (!TVal)
17633       return SDValue();
17634     // Quit if false value is not a constant.
17635     if (!FVal) {
17636       SDValue Op = SetCC.getOperand(0);
17637       // Skip 'zext' or 'trunc' node.
17638       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17639           Op.getOpcode() == ISD::TRUNCATE)
17640         Op = Op.getOperand(0);
17641       // A special case for rdrand/rdseed, where 0 is set if false cond is
17642       // found.
17643       if ((Op.getOpcode() != X86ISD::RDRAND &&
17644            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17645         return SDValue();
17646     }
17647     // Quit if false value is not the constant 0 or 1.
17648     bool FValIsFalse = true;
17649     if (FVal && FVal->getZExtValue() != 0) {
17650       if (FVal->getZExtValue() != 1)
17651         return SDValue();
17652       // If FVal is 1, opposite cond is needed.
17653       needOppositeCond = !needOppositeCond;
17654       FValIsFalse = false;
17655     }
17656     // Quit if TVal is not the constant opposite of FVal.
17657     if (FValIsFalse && TVal->getZExtValue() != 1)
17658       return SDValue();
17659     if (!FValIsFalse && TVal->getZExtValue() != 0)
17660       return SDValue();
17661     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17662     if (needOppositeCond)
17663       CC = X86::GetOppositeBranchCondition(CC);
17664     return SetCC.getOperand(3);
17665   }
17666   }
17667
17668   return SDValue();
17669 }
17670
17671 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17672 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17673                                   TargetLowering::DAGCombinerInfo &DCI,
17674                                   const X86Subtarget *Subtarget) {
17675   SDLoc DL(N);
17676
17677   // If the flag operand isn't dead, don't touch this CMOV.
17678   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17679     return SDValue();
17680
17681   SDValue FalseOp = N->getOperand(0);
17682   SDValue TrueOp = N->getOperand(1);
17683   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17684   SDValue Cond = N->getOperand(3);
17685
17686   if (CC == X86::COND_E || CC == X86::COND_NE) {
17687     switch (Cond.getOpcode()) {
17688     default: break;
17689     case X86ISD::BSR:
17690     case X86ISD::BSF:
17691       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17692       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17693         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17694     }
17695   }
17696
17697   SDValue Flags;
17698
17699   Flags = checkBoolTestSetCCCombine(Cond, CC);
17700   if (Flags.getNode() &&
17701       // Extra check as FCMOV only supports a subset of X86 cond.
17702       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17703     SDValue Ops[] = { FalseOp, TrueOp,
17704                       DAG.getConstant(CC, MVT::i8), Flags };
17705     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17706                        Ops, array_lengthof(Ops));
17707   }
17708
17709   // If this is a select between two integer constants, try to do some
17710   // optimizations.  Note that the operands are ordered the opposite of SELECT
17711   // operands.
17712   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17713     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17714       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17715       // larger than FalseC (the false value).
17716       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17717         CC = X86::GetOppositeBranchCondition(CC);
17718         std::swap(TrueC, FalseC);
17719         std::swap(TrueOp, FalseOp);
17720       }
17721
17722       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17723       // This is efficient for any integer data type (including i8/i16) and
17724       // shift amount.
17725       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17726         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17727                            DAG.getConstant(CC, MVT::i8), Cond);
17728
17729         // Zero extend the condition if needed.
17730         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17731
17732         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17733         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17734                            DAG.getConstant(ShAmt, MVT::i8));
17735         if (N->getNumValues() == 2)  // Dead flag value?
17736           return DCI.CombineTo(N, Cond, SDValue());
17737         return Cond;
17738       }
17739
17740       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17741       // for any integer data type, including i8/i16.
17742       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17743         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17744                            DAG.getConstant(CC, MVT::i8), Cond);
17745
17746         // Zero extend the condition if needed.
17747         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17748                            FalseC->getValueType(0), Cond);
17749         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17750                            SDValue(FalseC, 0));
17751
17752         if (N->getNumValues() == 2)  // Dead flag value?
17753           return DCI.CombineTo(N, Cond, SDValue());
17754         return Cond;
17755       }
17756
17757       // Optimize cases that will turn into an LEA instruction.  This requires
17758       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17759       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17760         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17761         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17762
17763         bool isFastMultiplier = false;
17764         if (Diff < 10) {
17765           switch ((unsigned char)Diff) {
17766           default: break;
17767           case 1:  // result = add base, cond
17768           case 2:  // result = lea base(    , cond*2)
17769           case 3:  // result = lea base(cond, cond*2)
17770           case 4:  // result = lea base(    , cond*4)
17771           case 5:  // result = lea base(cond, cond*4)
17772           case 8:  // result = lea base(    , cond*8)
17773           case 9:  // result = lea base(cond, cond*8)
17774             isFastMultiplier = true;
17775             break;
17776           }
17777         }
17778
17779         if (isFastMultiplier) {
17780           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17781           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17782                              DAG.getConstant(CC, MVT::i8), Cond);
17783           // Zero extend the condition if needed.
17784           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17785                              Cond);
17786           // Scale the condition by the difference.
17787           if (Diff != 1)
17788             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17789                                DAG.getConstant(Diff, Cond.getValueType()));
17790
17791           // Add the base if non-zero.
17792           if (FalseC->getAPIntValue() != 0)
17793             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17794                                SDValue(FalseC, 0));
17795           if (N->getNumValues() == 2)  // Dead flag value?
17796             return DCI.CombineTo(N, Cond, SDValue());
17797           return Cond;
17798         }
17799       }
17800     }
17801   }
17802
17803   // Handle these cases:
17804   //   (select (x != c), e, c) -> select (x != c), e, x),
17805   //   (select (x == c), c, e) -> select (x == c), x, e)
17806   // where the c is an integer constant, and the "select" is the combination
17807   // of CMOV and CMP.
17808   //
17809   // The rationale for this change is that the conditional-move from a constant
17810   // needs two instructions, however, conditional-move from a register needs
17811   // only one instruction.
17812   //
17813   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17814   //  some instruction-combining opportunities. This opt needs to be
17815   //  postponed as late as possible.
17816   //
17817   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17818     // the DCI.xxxx conditions are provided to postpone the optimization as
17819     // late as possible.
17820
17821     ConstantSDNode *CmpAgainst = 0;
17822     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17823         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17824         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17825
17826       if (CC == X86::COND_NE &&
17827           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17828         CC = X86::GetOppositeBranchCondition(CC);
17829         std::swap(TrueOp, FalseOp);
17830       }
17831
17832       if (CC == X86::COND_E &&
17833           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17834         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17835                           DAG.getConstant(CC, MVT::i8), Cond };
17836         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17837                            array_lengthof(Ops));
17838       }
17839     }
17840   }
17841
17842   return SDValue();
17843 }
17844
17845 /// PerformMulCombine - Optimize a single multiply with constant into two
17846 /// in order to implement it with two cheaper instructions, e.g.
17847 /// LEA + SHL, LEA + LEA.
17848 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17849                                  TargetLowering::DAGCombinerInfo &DCI) {
17850   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17851     return SDValue();
17852
17853   EVT VT = N->getValueType(0);
17854   if (VT != MVT::i64)
17855     return SDValue();
17856
17857   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17858   if (!C)
17859     return SDValue();
17860   uint64_t MulAmt = C->getZExtValue();
17861   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17862     return SDValue();
17863
17864   uint64_t MulAmt1 = 0;
17865   uint64_t MulAmt2 = 0;
17866   if ((MulAmt % 9) == 0) {
17867     MulAmt1 = 9;
17868     MulAmt2 = MulAmt / 9;
17869   } else if ((MulAmt % 5) == 0) {
17870     MulAmt1 = 5;
17871     MulAmt2 = MulAmt / 5;
17872   } else if ((MulAmt % 3) == 0) {
17873     MulAmt1 = 3;
17874     MulAmt2 = MulAmt / 3;
17875   }
17876   if (MulAmt2 &&
17877       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17878     SDLoc DL(N);
17879
17880     if (isPowerOf2_64(MulAmt2) &&
17881         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17882       // If second multiplifer is pow2, issue it first. We want the multiply by
17883       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17884       // is an add.
17885       std::swap(MulAmt1, MulAmt2);
17886
17887     SDValue NewMul;
17888     if (isPowerOf2_64(MulAmt1))
17889       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17890                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17891     else
17892       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17893                            DAG.getConstant(MulAmt1, VT));
17894
17895     if (isPowerOf2_64(MulAmt2))
17896       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17897                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17898     else
17899       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17900                            DAG.getConstant(MulAmt2, VT));
17901
17902     // Do not add new nodes to DAG combiner worklist.
17903     DCI.CombineTo(N, NewMul, false);
17904   }
17905   return SDValue();
17906 }
17907
17908 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17909   SDValue N0 = N->getOperand(0);
17910   SDValue N1 = N->getOperand(1);
17911   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17912   EVT VT = N0.getValueType();
17913
17914   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17915   // since the result of setcc_c is all zero's or all ones.
17916   if (VT.isInteger() && !VT.isVector() &&
17917       N1C && N0.getOpcode() == ISD::AND &&
17918       N0.getOperand(1).getOpcode() == ISD::Constant) {
17919     SDValue N00 = N0.getOperand(0);
17920     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17921         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17922           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17923          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17924       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17925       APInt ShAmt = N1C->getAPIntValue();
17926       Mask = Mask.shl(ShAmt);
17927       if (Mask != 0)
17928         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17929                            N00, DAG.getConstant(Mask, VT));
17930     }
17931   }
17932
17933   // Hardware support for vector shifts is sparse which makes us scalarize the
17934   // vector operations in many cases. Also, on sandybridge ADD is faster than
17935   // shl.
17936   // (shl V, 1) -> add V,V
17937   if (isSplatVector(N1.getNode())) {
17938     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17939     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17940     // We shift all of the values by one. In many cases we do not have
17941     // hardware support for this operation. This is better expressed as an ADD
17942     // of two values.
17943     if (N1C && (1 == N1C->getZExtValue())) {
17944       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17945     }
17946   }
17947
17948   return SDValue();
17949 }
17950
17951 /// \brief Returns a vector of 0s if the node in input is a vector logical
17952 /// shift by a constant amount which is known to be bigger than or equal
17953 /// to the vector element size in bits.
17954 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17955                                       const X86Subtarget *Subtarget) {
17956   EVT VT = N->getValueType(0);
17957
17958   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17959       (!Subtarget->hasInt256() ||
17960        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17961     return SDValue();
17962
17963   SDValue Amt = N->getOperand(1);
17964   SDLoc DL(N);
17965   if (isSplatVector(Amt.getNode())) {
17966     SDValue SclrAmt = Amt->getOperand(0);
17967     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17968       APInt ShiftAmt = C->getAPIntValue();
17969       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17970
17971       // SSE2/AVX2 logical shifts always return a vector of 0s
17972       // if the shift amount is bigger than or equal to
17973       // the element size. The constant shift amount will be
17974       // encoded as a 8-bit immediate.
17975       if (ShiftAmt.trunc(8).uge(MaxAmount))
17976         return getZeroVector(VT, Subtarget, DAG, DL);
17977     }
17978   }
17979
17980   return SDValue();
17981 }
17982
17983 /// PerformShiftCombine - Combine shifts.
17984 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17985                                    TargetLowering::DAGCombinerInfo &DCI,
17986                                    const X86Subtarget *Subtarget) {
17987   if (N->getOpcode() == ISD::SHL) {
17988     SDValue V = PerformSHLCombine(N, DAG);
17989     if (V.getNode()) return V;
17990   }
17991
17992   if (N->getOpcode() != ISD::SRA) {
17993     // Try to fold this logical shift into a zero vector.
17994     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17995     if (V.getNode()) return V;
17996   }
17997
17998   return SDValue();
17999 }
18000
18001 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
18002 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
18003 // and friends.  Likewise for OR -> CMPNEQSS.
18004 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
18005                             TargetLowering::DAGCombinerInfo &DCI,
18006                             const X86Subtarget *Subtarget) {
18007   unsigned opcode;
18008
18009   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
18010   // we're requiring SSE2 for both.
18011   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
18012     SDValue N0 = N->getOperand(0);
18013     SDValue N1 = N->getOperand(1);
18014     SDValue CMP0 = N0->getOperand(1);
18015     SDValue CMP1 = N1->getOperand(1);
18016     SDLoc DL(N);
18017
18018     // The SETCCs should both refer to the same CMP.
18019     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
18020       return SDValue();
18021
18022     SDValue CMP00 = CMP0->getOperand(0);
18023     SDValue CMP01 = CMP0->getOperand(1);
18024     EVT     VT    = CMP00.getValueType();
18025
18026     if (VT == MVT::f32 || VT == MVT::f64) {
18027       bool ExpectingFlags = false;
18028       // Check for any users that want flags:
18029       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
18030            !ExpectingFlags && UI != UE; ++UI)
18031         switch (UI->getOpcode()) {
18032         default:
18033         case ISD::BR_CC:
18034         case ISD::BRCOND:
18035         case ISD::SELECT:
18036           ExpectingFlags = true;
18037           break;
18038         case ISD::CopyToReg:
18039         case ISD::SIGN_EXTEND:
18040         case ISD::ZERO_EXTEND:
18041         case ISD::ANY_EXTEND:
18042           break;
18043         }
18044
18045       if (!ExpectingFlags) {
18046         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
18047         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
18048
18049         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
18050           X86::CondCode tmp = cc0;
18051           cc0 = cc1;
18052           cc1 = tmp;
18053         }
18054
18055         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
18056             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
18057           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
18058           // FIXME: need symbolic constants for these magic numbers.
18059           // See X86ATTInstPrinter.cpp:printSSECC().
18060           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
18061           if (Subtarget->hasAVX512()) {
18062             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
18063                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
18064             if (N->getValueType(0) != MVT::i1)
18065               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
18066                                  FSetCC);
18067             return FSetCC;
18068           }
18069           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
18070                                               CMP00.getValueType(), CMP00, CMP01,
18071                                               DAG.getConstant(x86cc, MVT::i8));
18072           MVT IntVT = (is64BitFP ? MVT::i64 : MVT::i32); 
18073           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT,
18074                                               OnesOrZeroesF);
18075           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
18076                                       DAG.getConstant(1, IntVT));
18077           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
18078           return OneBitOfTruth;
18079         }
18080       }
18081     }
18082   }
18083   return SDValue();
18084 }
18085
18086 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
18087 /// so it can be folded inside ANDNP.
18088 static bool CanFoldXORWithAllOnes(const SDNode *N) {
18089   EVT VT = N->getValueType(0);
18090
18091   // Match direct AllOnes for 128 and 256-bit vectors
18092   if (ISD::isBuildVectorAllOnes(N))
18093     return true;
18094
18095   // Look through a bit convert.
18096   if (N->getOpcode() == ISD::BITCAST)
18097     N = N->getOperand(0).getNode();
18098
18099   // Sometimes the operand may come from a insert_subvector building a 256-bit
18100   // allones vector
18101   if (VT.is256BitVector() &&
18102       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
18103     SDValue V1 = N->getOperand(0);
18104     SDValue V2 = N->getOperand(1);
18105
18106     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
18107         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
18108         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
18109         ISD::isBuildVectorAllOnes(V2.getNode()))
18110       return true;
18111   }
18112
18113   return false;
18114 }
18115
18116 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
18117 // register. In most cases we actually compare or select YMM-sized registers
18118 // and mixing the two types creates horrible code. This method optimizes
18119 // some of the transition sequences.
18120 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
18121                                  TargetLowering::DAGCombinerInfo &DCI,
18122                                  const X86Subtarget *Subtarget) {
18123   EVT VT = N->getValueType(0);
18124   if (!VT.is256BitVector())
18125     return SDValue();
18126
18127   assert((N->getOpcode() == ISD::ANY_EXTEND ||
18128           N->getOpcode() == ISD::ZERO_EXTEND ||
18129           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
18130
18131   SDValue Narrow = N->getOperand(0);
18132   EVT NarrowVT = Narrow->getValueType(0);
18133   if (!NarrowVT.is128BitVector())
18134     return SDValue();
18135
18136   if (Narrow->getOpcode() != ISD::XOR &&
18137       Narrow->getOpcode() != ISD::AND &&
18138       Narrow->getOpcode() != ISD::OR)
18139     return SDValue();
18140
18141   SDValue N0  = Narrow->getOperand(0);
18142   SDValue N1  = Narrow->getOperand(1);
18143   SDLoc DL(Narrow);
18144
18145   // The Left side has to be a trunc.
18146   if (N0.getOpcode() != ISD::TRUNCATE)
18147     return SDValue();
18148
18149   // The type of the truncated inputs.
18150   EVT WideVT = N0->getOperand(0)->getValueType(0);
18151   if (WideVT != VT)
18152     return SDValue();
18153
18154   // The right side has to be a 'trunc' or a constant vector.
18155   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
18156   bool RHSConst = (isSplatVector(N1.getNode()) &&
18157                    isa<ConstantSDNode>(N1->getOperand(0)));
18158   if (!RHSTrunc && !RHSConst)
18159     return SDValue();
18160
18161   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18162
18163   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
18164     return SDValue();
18165
18166   // Set N0 and N1 to hold the inputs to the new wide operation.
18167   N0 = N0->getOperand(0);
18168   if (RHSConst) {
18169     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
18170                      N1->getOperand(0));
18171     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
18172     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
18173   } else if (RHSTrunc) {
18174     N1 = N1->getOperand(0);
18175   }
18176
18177   // Generate the wide operation.
18178   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
18179   unsigned Opcode = N->getOpcode();
18180   switch (Opcode) {
18181   case ISD::ANY_EXTEND:
18182     return Op;
18183   case ISD::ZERO_EXTEND: {
18184     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
18185     APInt Mask = APInt::getAllOnesValue(InBits);
18186     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
18187     return DAG.getNode(ISD::AND, DL, VT,
18188                        Op, DAG.getConstant(Mask, VT));
18189   }
18190   case ISD::SIGN_EXTEND:
18191     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
18192                        Op, DAG.getValueType(NarrowVT));
18193   default:
18194     llvm_unreachable("Unexpected opcode");
18195   }
18196 }
18197
18198 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
18199                                  TargetLowering::DAGCombinerInfo &DCI,
18200                                  const X86Subtarget *Subtarget) {
18201   EVT VT = N->getValueType(0);
18202   if (DCI.isBeforeLegalizeOps())
18203     return SDValue();
18204
18205   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
18206   if (R.getNode())
18207     return R;
18208
18209   // Create BEXTR and BZHI instructions
18210   // BZHI is X & ((1 << Y) - 1)
18211   // BEXTR is ((X >> imm) & (2**size-1))
18212   if (VT == MVT::i32 || VT == MVT::i64) {
18213     SDValue N0 = N->getOperand(0);
18214     SDValue N1 = N->getOperand(1);
18215     SDLoc DL(N);
18216
18217     if (Subtarget->hasBMI2()) {
18218       // Check for (and (add (shl 1, Y), -1), X)
18219       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
18220         SDValue N00 = N0.getOperand(0);
18221         if (N00.getOpcode() == ISD::SHL) {
18222           SDValue N001 = N00.getOperand(1);
18223           assert(N001.getValueType() == MVT::i8 && "unexpected type");
18224           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
18225           if (C && C->getZExtValue() == 1)
18226             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
18227         }
18228       }
18229
18230       // Check for (and X, (add (shl 1, Y), -1))
18231       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
18232         SDValue N10 = N1.getOperand(0);
18233         if (N10.getOpcode() == ISD::SHL) {
18234           SDValue N101 = N10.getOperand(1);
18235           assert(N101.getValueType() == MVT::i8 && "unexpected type");
18236           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
18237           if (C && C->getZExtValue() == 1)
18238             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
18239         }
18240       }
18241     }
18242
18243     // Check for BEXTR.
18244     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
18245         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
18246       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
18247       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18248       if (MaskNode && ShiftNode) {
18249         uint64_t Mask = MaskNode->getZExtValue();
18250         uint64_t Shift = ShiftNode->getZExtValue();
18251         if (isMask_64(Mask)) {
18252           uint64_t MaskSize = CountPopulation_64(Mask);
18253           if (Shift + MaskSize <= VT.getSizeInBits())
18254             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
18255                                DAG.getConstant(Shift | (MaskSize << 8), VT));
18256         }
18257       }
18258     } // BEXTR
18259
18260     return SDValue();
18261   }
18262
18263   // Want to form ANDNP nodes:
18264   // 1) In the hopes of then easily combining them with OR and AND nodes
18265   //    to form PBLEND/PSIGN.
18266   // 2) To match ANDN packed intrinsics
18267   if (VT != MVT::v2i64 && VT != MVT::v4i64)
18268     return SDValue();
18269
18270   SDValue N0 = N->getOperand(0);
18271   SDValue N1 = N->getOperand(1);
18272   SDLoc DL(N);
18273
18274   // Check LHS for vnot
18275   if (N0.getOpcode() == ISD::XOR &&
18276       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
18277       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
18278     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
18279
18280   // Check RHS for vnot
18281   if (N1.getOpcode() == ISD::XOR &&
18282       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
18283       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
18284     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
18285
18286   return SDValue();
18287 }
18288
18289 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
18290                                 TargetLowering::DAGCombinerInfo &DCI,
18291                                 const X86Subtarget *Subtarget) {
18292   if (DCI.isBeforeLegalizeOps())
18293     return SDValue();
18294
18295   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
18296   if (R.getNode())
18297     return R;
18298
18299   SDValue N0 = N->getOperand(0);
18300   SDValue N1 = N->getOperand(1);
18301   EVT VT = N->getValueType(0);
18302
18303   // look for psign/blend
18304   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
18305     if (!Subtarget->hasSSSE3() ||
18306         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
18307       return SDValue();
18308
18309     // Canonicalize pandn to RHS
18310     if (N0.getOpcode() == X86ISD::ANDNP)
18311       std::swap(N0, N1);
18312     // or (and (m, y), (pandn m, x))
18313     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
18314       SDValue Mask = N1.getOperand(0);
18315       SDValue X    = N1.getOperand(1);
18316       SDValue Y;
18317       if (N0.getOperand(0) == Mask)
18318         Y = N0.getOperand(1);
18319       if (N0.getOperand(1) == Mask)
18320         Y = N0.getOperand(0);
18321
18322       // Check to see if the mask appeared in both the AND and ANDNP and
18323       if (!Y.getNode())
18324         return SDValue();
18325
18326       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
18327       // Look through mask bitcast.
18328       if (Mask.getOpcode() == ISD::BITCAST)
18329         Mask = Mask.getOperand(0);
18330       if (X.getOpcode() == ISD::BITCAST)
18331         X = X.getOperand(0);
18332       if (Y.getOpcode() == ISD::BITCAST)
18333         Y = Y.getOperand(0);
18334
18335       EVT MaskVT = Mask.getValueType();
18336
18337       // Validate that the Mask operand is a vector sra node.
18338       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
18339       // there is no psrai.b
18340       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
18341       unsigned SraAmt = ~0;
18342       if (Mask.getOpcode() == ISD::SRA) {
18343         SDValue Amt = Mask.getOperand(1);
18344         if (isSplatVector(Amt.getNode())) {
18345           SDValue SclrAmt = Amt->getOperand(0);
18346           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
18347             SraAmt = C->getZExtValue();
18348         }
18349       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
18350         SDValue SraC = Mask.getOperand(1);
18351         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
18352       }
18353       if ((SraAmt + 1) != EltBits)
18354         return SDValue();
18355
18356       SDLoc DL(N);
18357
18358       // Now we know we at least have a plendvb with the mask val.  See if
18359       // we can form a psignb/w/d.
18360       // psign = x.type == y.type == mask.type && y = sub(0, x);
18361       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
18362           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
18363           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
18364         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
18365                "Unsupported VT for PSIGN");
18366         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
18367         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18368       }
18369       // PBLENDVB only available on SSE 4.1
18370       if (!Subtarget->hasSSE41())
18371         return SDValue();
18372
18373       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
18374
18375       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
18376       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
18377       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
18378       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
18379       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18380     }
18381   }
18382
18383   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
18384     return SDValue();
18385
18386   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
18387   MachineFunction &MF = DAG.getMachineFunction();
18388   bool OptForSize = MF.getFunction()->getAttributes().
18389     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
18390
18391   // SHLD/SHRD instructions have lower register pressure, but on some
18392   // platforms they have higher latency than the equivalent
18393   // series of shifts/or that would otherwise be generated.
18394   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
18395   // have higher latencies and we are not optimizing for size.
18396   if (!OptForSize && Subtarget->isSHLDSlow())
18397     return SDValue();
18398
18399   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
18400     std::swap(N0, N1);
18401   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
18402     return SDValue();
18403   if (!N0.hasOneUse() || !N1.hasOneUse())
18404     return SDValue();
18405
18406   SDValue ShAmt0 = N0.getOperand(1);
18407   if (ShAmt0.getValueType() != MVT::i8)
18408     return SDValue();
18409   SDValue ShAmt1 = N1.getOperand(1);
18410   if (ShAmt1.getValueType() != MVT::i8)
18411     return SDValue();
18412   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
18413     ShAmt0 = ShAmt0.getOperand(0);
18414   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
18415     ShAmt1 = ShAmt1.getOperand(0);
18416
18417   SDLoc DL(N);
18418   unsigned Opc = X86ISD::SHLD;
18419   SDValue Op0 = N0.getOperand(0);
18420   SDValue Op1 = N1.getOperand(0);
18421   if (ShAmt0.getOpcode() == ISD::SUB) {
18422     Opc = X86ISD::SHRD;
18423     std::swap(Op0, Op1);
18424     std::swap(ShAmt0, ShAmt1);
18425   }
18426
18427   unsigned Bits = VT.getSizeInBits();
18428   if (ShAmt1.getOpcode() == ISD::SUB) {
18429     SDValue Sum = ShAmt1.getOperand(0);
18430     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
18431       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
18432       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
18433         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
18434       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
18435         return DAG.getNode(Opc, DL, VT,
18436                            Op0, Op1,
18437                            DAG.getNode(ISD::TRUNCATE, DL,
18438                                        MVT::i8, ShAmt0));
18439     }
18440   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
18441     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
18442     if (ShAmt0C &&
18443         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
18444       return DAG.getNode(Opc, DL, VT,
18445                          N0.getOperand(0), N1.getOperand(0),
18446                          DAG.getNode(ISD::TRUNCATE, DL,
18447                                        MVT::i8, ShAmt0));
18448   }
18449
18450   return SDValue();
18451 }
18452
18453 // Generate NEG and CMOV for integer abs.
18454 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
18455   EVT VT = N->getValueType(0);
18456
18457   // Since X86 does not have CMOV for 8-bit integer, we don't convert
18458   // 8-bit integer abs to NEG and CMOV.
18459   if (VT.isInteger() && VT.getSizeInBits() == 8)
18460     return SDValue();
18461
18462   SDValue N0 = N->getOperand(0);
18463   SDValue N1 = N->getOperand(1);
18464   SDLoc DL(N);
18465
18466   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
18467   // and change it to SUB and CMOV.
18468   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
18469       N0.getOpcode() == ISD::ADD &&
18470       N0.getOperand(1) == N1 &&
18471       N1.getOpcode() == ISD::SRA &&
18472       N1.getOperand(0) == N0.getOperand(0))
18473     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
18474       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
18475         // Generate SUB & CMOV.
18476         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
18477                                   DAG.getConstant(0, VT), N0.getOperand(0));
18478
18479         SDValue Ops[] = { N0.getOperand(0), Neg,
18480                           DAG.getConstant(X86::COND_GE, MVT::i8),
18481                           SDValue(Neg.getNode(), 1) };
18482         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18483                            Ops, array_lengthof(Ops));
18484       }
18485   return SDValue();
18486 }
18487
18488 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
18489 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18490                                  TargetLowering::DAGCombinerInfo &DCI,
18491                                  const X86Subtarget *Subtarget) {
18492   if (DCI.isBeforeLegalizeOps())
18493     return SDValue();
18494
18495   if (Subtarget->hasCMov()) {
18496     SDValue RV = performIntegerAbsCombine(N, DAG);
18497     if (RV.getNode())
18498       return RV;
18499   }
18500
18501   return SDValue();
18502 }
18503
18504 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18505 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
18506                                   TargetLowering::DAGCombinerInfo &DCI,
18507                                   const X86Subtarget *Subtarget) {
18508   LoadSDNode *Ld = cast<LoadSDNode>(N);
18509   EVT RegVT = Ld->getValueType(0);
18510   EVT MemVT = Ld->getMemoryVT();
18511   SDLoc dl(Ld);
18512   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18513   unsigned RegSz = RegVT.getSizeInBits();
18514
18515   // On Sandybridge unaligned 256bit loads are inefficient.
18516   ISD::LoadExtType Ext = Ld->getExtensionType();
18517   unsigned Alignment = Ld->getAlignment();
18518   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
18519   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
18520       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
18521     unsigned NumElems = RegVT.getVectorNumElements();
18522     if (NumElems < 2)
18523       return SDValue();
18524
18525     SDValue Ptr = Ld->getBasePtr();
18526     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18527
18528     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18529                                   NumElems/2);
18530     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18531                                 Ld->getPointerInfo(), Ld->isVolatile(),
18532                                 Ld->isNonTemporal(), Ld->isInvariant(),
18533                                 Alignment);
18534     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18535     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18536                                 Ld->getPointerInfo(), Ld->isVolatile(),
18537                                 Ld->isNonTemporal(), Ld->isInvariant(),
18538                                 std::min(16U, Alignment));
18539     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18540                              Load1.getValue(1),
18541                              Load2.getValue(1));
18542
18543     SDValue NewVec = DAG.getUNDEF(RegVT);
18544     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18545     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18546     return DCI.CombineTo(N, NewVec, TF, true);
18547   }
18548
18549   // If this is a vector EXT Load then attempt to optimize it using a
18550   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18551   // expansion is still better than scalar code.
18552   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18553   // emit a shuffle and a arithmetic shift.
18554   // TODO: It is possible to support ZExt by zeroing the undef values
18555   // during the shuffle phase or after the shuffle.
18556   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18557       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
18558     assert(MemVT != RegVT && "Cannot extend to the same type");
18559     assert(MemVT.isVector() && "Must load a vector from memory");
18560
18561     unsigned NumElems = RegVT.getVectorNumElements();
18562     unsigned MemSz = MemVT.getSizeInBits();
18563     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18564
18565     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18566       return SDValue();
18567
18568     // All sizes must be a power of two.
18569     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18570       return SDValue();
18571
18572     // Attempt to load the original value using scalar loads.
18573     // Find the largest scalar type that divides the total loaded size.
18574     MVT SclrLoadTy = MVT::i8;
18575     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18576          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18577       MVT Tp = (MVT::SimpleValueType)tp;
18578       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18579         SclrLoadTy = Tp;
18580       }
18581     }
18582
18583     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18584     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18585         (64 <= MemSz))
18586       SclrLoadTy = MVT::f64;
18587
18588     // Calculate the number of scalar loads that we need to perform
18589     // in order to load our vector from memory.
18590     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18591     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18592       return SDValue();
18593
18594     unsigned loadRegZize = RegSz;
18595     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18596       loadRegZize /= 2;
18597
18598     // Represent our vector as a sequence of elements which are the
18599     // largest scalar that we can load.
18600     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18601       loadRegZize/SclrLoadTy.getSizeInBits());
18602
18603     // Represent the data using the same element type that is stored in
18604     // memory. In practice, we ''widen'' MemVT.
18605     EVT WideVecVT =
18606           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18607                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18608
18609     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18610       "Invalid vector type");
18611
18612     // We can't shuffle using an illegal type.
18613     if (!TLI.isTypeLegal(WideVecVT))
18614       return SDValue();
18615
18616     SmallVector<SDValue, 8> Chains;
18617     SDValue Ptr = Ld->getBasePtr();
18618     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18619                                         TLI.getPointerTy());
18620     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18621
18622     for (unsigned i = 0; i < NumLoads; ++i) {
18623       // Perform a single load.
18624       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18625                                        Ptr, Ld->getPointerInfo(),
18626                                        Ld->isVolatile(), Ld->isNonTemporal(),
18627                                        Ld->isInvariant(), Ld->getAlignment());
18628       Chains.push_back(ScalarLoad.getValue(1));
18629       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18630       // another round of DAGCombining.
18631       if (i == 0)
18632         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18633       else
18634         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18635                           ScalarLoad, DAG.getIntPtrConstant(i));
18636
18637       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18638     }
18639
18640     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18641                                Chains.size());
18642
18643     // Bitcast the loaded value to a vector of the original element type, in
18644     // the size of the target vector type.
18645     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18646     unsigned SizeRatio = RegSz/MemSz;
18647
18648     if (Ext == ISD::SEXTLOAD) {
18649       // If we have SSE4.1 we can directly emit a VSEXT node.
18650       if (Subtarget->hasSSE41()) {
18651         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18652         return DCI.CombineTo(N, Sext, TF, true);
18653       }
18654
18655       // Otherwise we'll shuffle the small elements in the high bits of the
18656       // larger type and perform an arithmetic shift. If the shift is not legal
18657       // it's better to scalarize.
18658       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18659         return SDValue();
18660
18661       // Redistribute the loaded elements into the different locations.
18662       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18663       for (unsigned i = 0; i != NumElems; ++i)
18664         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18665
18666       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18667                                            DAG.getUNDEF(WideVecVT),
18668                                            &ShuffleVec[0]);
18669
18670       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18671
18672       // Build the arithmetic shift.
18673       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18674                      MemVT.getVectorElementType().getSizeInBits();
18675       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18676                           DAG.getConstant(Amt, RegVT));
18677
18678       return DCI.CombineTo(N, Shuff, TF, true);
18679     }
18680
18681     // Redistribute the loaded elements into the different locations.
18682     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18683     for (unsigned i = 0; i != NumElems; ++i)
18684       ShuffleVec[i*SizeRatio] = i;
18685
18686     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18687                                          DAG.getUNDEF(WideVecVT),
18688                                          &ShuffleVec[0]);
18689
18690     // Bitcast to the requested type.
18691     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18692     // Replace the original load with the new sequence
18693     // and return the new chain.
18694     return DCI.CombineTo(N, Shuff, TF, true);
18695   }
18696
18697   return SDValue();
18698 }
18699
18700 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18701 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18702                                    const X86Subtarget *Subtarget) {
18703   StoreSDNode *St = cast<StoreSDNode>(N);
18704   EVT VT = St->getValue().getValueType();
18705   EVT StVT = St->getMemoryVT();
18706   SDLoc dl(St);
18707   SDValue StoredVal = St->getOperand(1);
18708   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18709
18710   // If we are saving a concatenation of two XMM registers, perform two stores.
18711   // On Sandy Bridge, 256-bit memory operations are executed by two
18712   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18713   // memory  operation.
18714   unsigned Alignment = St->getAlignment();
18715   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18716   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18717       StVT == VT && !IsAligned) {
18718     unsigned NumElems = VT.getVectorNumElements();
18719     if (NumElems < 2)
18720       return SDValue();
18721
18722     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18723     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18724
18725     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18726     SDValue Ptr0 = St->getBasePtr();
18727     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18728
18729     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18730                                 St->getPointerInfo(), St->isVolatile(),
18731                                 St->isNonTemporal(), Alignment);
18732     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18733                                 St->getPointerInfo(), St->isVolatile(),
18734                                 St->isNonTemporal(),
18735                                 std::min(16U, Alignment));
18736     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18737   }
18738
18739   // Optimize trunc store (of multiple scalars) to shuffle and store.
18740   // First, pack all of the elements in one place. Next, store to memory
18741   // in fewer chunks.
18742   if (St->isTruncatingStore() && VT.isVector()) {
18743     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18744     unsigned NumElems = VT.getVectorNumElements();
18745     assert(StVT != VT && "Cannot truncate to the same type");
18746     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18747     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18748
18749     // From, To sizes and ElemCount must be pow of two
18750     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18751     // We are going to use the original vector elt for storing.
18752     // Accumulated smaller vector elements must be a multiple of the store size.
18753     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18754
18755     unsigned SizeRatio  = FromSz / ToSz;
18756
18757     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18758
18759     // Create a type on which we perform the shuffle
18760     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18761             StVT.getScalarType(), NumElems*SizeRatio);
18762
18763     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18764
18765     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18766     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18767     for (unsigned i = 0; i != NumElems; ++i)
18768       ShuffleVec[i] = i * SizeRatio;
18769
18770     // Can't shuffle using an illegal type.
18771     if (!TLI.isTypeLegal(WideVecVT))
18772       return SDValue();
18773
18774     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18775                                          DAG.getUNDEF(WideVecVT),
18776                                          &ShuffleVec[0]);
18777     // At this point all of the data is stored at the bottom of the
18778     // register. We now need to save it to mem.
18779
18780     // Find the largest store unit
18781     MVT StoreType = MVT::i8;
18782     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18783          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18784       MVT Tp = (MVT::SimpleValueType)tp;
18785       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18786         StoreType = Tp;
18787     }
18788
18789     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18790     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18791         (64 <= NumElems * ToSz))
18792       StoreType = MVT::f64;
18793
18794     // Bitcast the original vector into a vector of store-size units
18795     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18796             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18797     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18798     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18799     SmallVector<SDValue, 8> Chains;
18800     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18801                                         TLI.getPointerTy());
18802     SDValue Ptr = St->getBasePtr();
18803
18804     // Perform one or more big stores into memory.
18805     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18806       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18807                                    StoreType, ShuffWide,
18808                                    DAG.getIntPtrConstant(i));
18809       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18810                                 St->getPointerInfo(), St->isVolatile(),
18811                                 St->isNonTemporal(), St->getAlignment());
18812       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18813       Chains.push_back(Ch);
18814     }
18815
18816     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18817                                Chains.size());
18818   }
18819
18820   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18821   // the FP state in cases where an emms may be missing.
18822   // A preferable solution to the general problem is to figure out the right
18823   // places to insert EMMS.  This qualifies as a quick hack.
18824
18825   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18826   if (VT.getSizeInBits() != 64)
18827     return SDValue();
18828
18829   const Function *F = DAG.getMachineFunction().getFunction();
18830   bool NoImplicitFloatOps = F->getAttributes().
18831     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18832   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18833                      && Subtarget->hasSSE2();
18834   if ((VT.isVector() ||
18835        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18836       isa<LoadSDNode>(St->getValue()) &&
18837       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18838       St->getChain().hasOneUse() && !St->isVolatile()) {
18839     SDNode* LdVal = St->getValue().getNode();
18840     LoadSDNode *Ld = 0;
18841     int TokenFactorIndex = -1;
18842     SmallVector<SDValue, 8> Ops;
18843     SDNode* ChainVal = St->getChain().getNode();
18844     // Must be a store of a load.  We currently handle two cases:  the load
18845     // is a direct child, and it's under an intervening TokenFactor.  It is
18846     // possible to dig deeper under nested TokenFactors.
18847     if (ChainVal == LdVal)
18848       Ld = cast<LoadSDNode>(St->getChain());
18849     else if (St->getValue().hasOneUse() &&
18850              ChainVal->getOpcode() == ISD::TokenFactor) {
18851       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18852         if (ChainVal->getOperand(i).getNode() == LdVal) {
18853           TokenFactorIndex = i;
18854           Ld = cast<LoadSDNode>(St->getValue());
18855         } else
18856           Ops.push_back(ChainVal->getOperand(i));
18857       }
18858     }
18859
18860     if (!Ld || !ISD::isNormalLoad(Ld))
18861       return SDValue();
18862
18863     // If this is not the MMX case, i.e. we are just turning i64 load/store
18864     // into f64 load/store, avoid the transformation if there are multiple
18865     // uses of the loaded value.
18866     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18867       return SDValue();
18868
18869     SDLoc LdDL(Ld);
18870     SDLoc StDL(N);
18871     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18872     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18873     // pair instead.
18874     if (Subtarget->is64Bit() || F64IsLegal) {
18875       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18876       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18877                                   Ld->getPointerInfo(), Ld->isVolatile(),
18878                                   Ld->isNonTemporal(), Ld->isInvariant(),
18879                                   Ld->getAlignment());
18880       SDValue NewChain = NewLd.getValue(1);
18881       if (TokenFactorIndex != -1) {
18882         Ops.push_back(NewChain);
18883         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18884                                Ops.size());
18885       }
18886       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18887                           St->getPointerInfo(),
18888                           St->isVolatile(), St->isNonTemporal(),
18889                           St->getAlignment());
18890     }
18891
18892     // Otherwise, lower to two pairs of 32-bit loads / stores.
18893     SDValue LoAddr = Ld->getBasePtr();
18894     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18895                                  DAG.getConstant(4, MVT::i32));
18896
18897     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18898                                Ld->getPointerInfo(),
18899                                Ld->isVolatile(), Ld->isNonTemporal(),
18900                                Ld->isInvariant(), Ld->getAlignment());
18901     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18902                                Ld->getPointerInfo().getWithOffset(4),
18903                                Ld->isVolatile(), Ld->isNonTemporal(),
18904                                Ld->isInvariant(),
18905                                MinAlign(Ld->getAlignment(), 4));
18906
18907     SDValue NewChain = LoLd.getValue(1);
18908     if (TokenFactorIndex != -1) {
18909       Ops.push_back(LoLd);
18910       Ops.push_back(HiLd);
18911       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18912                              Ops.size());
18913     }
18914
18915     LoAddr = St->getBasePtr();
18916     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18917                          DAG.getConstant(4, MVT::i32));
18918
18919     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18920                                 St->getPointerInfo(),
18921                                 St->isVolatile(), St->isNonTemporal(),
18922                                 St->getAlignment());
18923     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18924                                 St->getPointerInfo().getWithOffset(4),
18925                                 St->isVolatile(),
18926                                 St->isNonTemporal(),
18927                                 MinAlign(St->getAlignment(), 4));
18928     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18929   }
18930   return SDValue();
18931 }
18932
18933 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18934 /// and return the operands for the horizontal operation in LHS and RHS.  A
18935 /// horizontal operation performs the binary operation on successive elements
18936 /// of its first operand, then on successive elements of its second operand,
18937 /// returning the resulting values in a vector.  For example, if
18938 ///   A = < float a0, float a1, float a2, float a3 >
18939 /// and
18940 ///   B = < float b0, float b1, float b2, float b3 >
18941 /// then the result of doing a horizontal operation on A and B is
18942 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18943 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18944 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18945 /// set to A, RHS to B, and the routine returns 'true'.
18946 /// Note that the binary operation should have the property that if one of the
18947 /// operands is UNDEF then the result is UNDEF.
18948 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18949   // Look for the following pattern: if
18950   //   A = < float a0, float a1, float a2, float a3 >
18951   //   B = < float b0, float b1, float b2, float b3 >
18952   // and
18953   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18954   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18955   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18956   // which is A horizontal-op B.
18957
18958   // At least one of the operands should be a vector shuffle.
18959   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18960       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18961     return false;
18962
18963   MVT VT = LHS.getSimpleValueType();
18964
18965   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18966          "Unsupported vector type for horizontal add/sub");
18967
18968   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18969   // operate independently on 128-bit lanes.
18970   unsigned NumElts = VT.getVectorNumElements();
18971   unsigned NumLanes = VT.getSizeInBits()/128;
18972   unsigned NumLaneElts = NumElts / NumLanes;
18973   assert((NumLaneElts % 2 == 0) &&
18974          "Vector type should have an even number of elements in each lane");
18975   unsigned HalfLaneElts = NumLaneElts/2;
18976
18977   // View LHS in the form
18978   //   LHS = VECTOR_SHUFFLE A, B, LMask
18979   // If LHS is not a shuffle then pretend it is the shuffle
18980   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18981   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18982   // type VT.
18983   SDValue A, B;
18984   SmallVector<int, 16> LMask(NumElts);
18985   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18986     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18987       A = LHS.getOperand(0);
18988     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18989       B = LHS.getOperand(1);
18990     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18991     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18992   } else {
18993     if (LHS.getOpcode() != ISD::UNDEF)
18994       A = LHS;
18995     for (unsigned i = 0; i != NumElts; ++i)
18996       LMask[i] = i;
18997   }
18998
18999   // Likewise, view RHS in the form
19000   //   RHS = VECTOR_SHUFFLE C, D, RMask
19001   SDValue C, D;
19002   SmallVector<int, 16> RMask(NumElts);
19003   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
19004     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
19005       C = RHS.getOperand(0);
19006     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
19007       D = RHS.getOperand(1);
19008     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
19009     std::copy(Mask.begin(), Mask.end(), RMask.begin());
19010   } else {
19011     if (RHS.getOpcode() != ISD::UNDEF)
19012       C = RHS;
19013     for (unsigned i = 0; i != NumElts; ++i)
19014       RMask[i] = i;
19015   }
19016
19017   // Check that the shuffles are both shuffling the same vectors.
19018   if (!(A == C && B == D) && !(A == D && B == C))
19019     return false;
19020
19021   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
19022   if (!A.getNode() && !B.getNode())
19023     return false;
19024
19025   // If A and B occur in reverse order in RHS, then "swap" them (which means
19026   // rewriting the mask).
19027   if (A != C)
19028     CommuteVectorShuffleMask(RMask, NumElts);
19029
19030   // At this point LHS and RHS are equivalent to
19031   //   LHS = VECTOR_SHUFFLE A, B, LMask
19032   //   RHS = VECTOR_SHUFFLE A, B, RMask
19033   // Check that the masks correspond to performing a horizontal operation.
19034   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
19035     for (unsigned i = 0; i != NumLaneElts; ++i) {
19036       int LIdx = LMask[i+l], RIdx = RMask[i+l];
19037
19038       // Ignore any UNDEF components.
19039       if (LIdx < 0 || RIdx < 0 ||
19040           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
19041           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
19042         continue;
19043
19044       // Check that successive elements are being operated on.  If not, this is
19045       // not a horizontal operation.
19046       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
19047       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
19048       if (!(LIdx == Index && RIdx == Index + 1) &&
19049           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
19050         return false;
19051     }
19052   }
19053
19054   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
19055   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
19056   return true;
19057 }
19058
19059 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
19060 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
19061                                   const X86Subtarget *Subtarget) {
19062   EVT VT = N->getValueType(0);
19063   SDValue LHS = N->getOperand(0);
19064   SDValue RHS = N->getOperand(1);
19065
19066   // Try to synthesize horizontal adds from adds of shuffles.
19067   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
19068        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
19069       isHorizontalBinOp(LHS, RHS, true))
19070     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
19071   return SDValue();
19072 }
19073
19074 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
19075 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
19076                                   const X86Subtarget *Subtarget) {
19077   EVT VT = N->getValueType(0);
19078   SDValue LHS = N->getOperand(0);
19079   SDValue RHS = N->getOperand(1);
19080
19081   // Try to synthesize horizontal subs from subs of shuffles.
19082   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
19083        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
19084       isHorizontalBinOp(LHS, RHS, false))
19085     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
19086   return SDValue();
19087 }
19088
19089 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
19090 /// X86ISD::FXOR nodes.
19091 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
19092   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
19093   // F[X]OR(0.0, x) -> x
19094   // F[X]OR(x, 0.0) -> x
19095   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19096     if (C->getValueAPF().isPosZero())
19097       return N->getOperand(1);
19098   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19099     if (C->getValueAPF().isPosZero())
19100       return N->getOperand(0);
19101   return SDValue();
19102 }
19103
19104 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
19105 /// X86ISD::FMAX nodes.
19106 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
19107   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
19108
19109   // Only perform optimizations if UnsafeMath is used.
19110   if (!DAG.getTarget().Options.UnsafeFPMath)
19111     return SDValue();
19112
19113   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
19114   // into FMINC and FMAXC, which are Commutative operations.
19115   unsigned NewOp = 0;
19116   switch (N->getOpcode()) {
19117     default: llvm_unreachable("unknown opcode");
19118     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
19119     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
19120   }
19121
19122   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
19123                      N->getOperand(0), N->getOperand(1));
19124 }
19125
19126 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
19127 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
19128   // FAND(0.0, x) -> 0.0
19129   // FAND(x, 0.0) -> 0.0
19130   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19131     if (C->getValueAPF().isPosZero())
19132       return N->getOperand(0);
19133   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19134     if (C->getValueAPF().isPosZero())
19135       return N->getOperand(1);
19136   return SDValue();
19137 }
19138
19139 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
19140 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
19141   // FANDN(x, 0.0) -> 0.0
19142   // FANDN(0.0, x) -> x
19143   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19144     if (C->getValueAPF().isPosZero())
19145       return N->getOperand(1);
19146   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19147     if (C->getValueAPF().isPosZero())
19148       return N->getOperand(1);
19149   return SDValue();
19150 }
19151
19152 static SDValue PerformBTCombine(SDNode *N,
19153                                 SelectionDAG &DAG,
19154                                 TargetLowering::DAGCombinerInfo &DCI) {
19155   // BT ignores high bits in the bit index operand.
19156   SDValue Op1 = N->getOperand(1);
19157   if (Op1.hasOneUse()) {
19158     unsigned BitWidth = Op1.getValueSizeInBits();
19159     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
19160     APInt KnownZero, KnownOne;
19161     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
19162                                           !DCI.isBeforeLegalizeOps());
19163     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19164     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
19165         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
19166       DCI.CommitTargetLoweringOpt(TLO);
19167   }
19168   return SDValue();
19169 }
19170
19171 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
19172   SDValue Op = N->getOperand(0);
19173   if (Op.getOpcode() == ISD::BITCAST)
19174     Op = Op.getOperand(0);
19175   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
19176   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
19177       VT.getVectorElementType().getSizeInBits() ==
19178       OpVT.getVectorElementType().getSizeInBits()) {
19179     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
19180   }
19181   return SDValue();
19182 }
19183
19184 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
19185                                                const X86Subtarget *Subtarget) {
19186   EVT VT = N->getValueType(0);
19187   if (!VT.isVector())
19188     return SDValue();
19189
19190   SDValue N0 = N->getOperand(0);
19191   SDValue N1 = N->getOperand(1);
19192   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
19193   SDLoc dl(N);
19194
19195   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
19196   // both SSE and AVX2 since there is no sign-extended shift right
19197   // operation on a vector with 64-bit elements.
19198   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
19199   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
19200   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
19201       N0.getOpcode() == ISD::SIGN_EXTEND)) {
19202     SDValue N00 = N0.getOperand(0);
19203
19204     // EXTLOAD has a better solution on AVX2,
19205     // it may be replaced with X86ISD::VSEXT node.
19206     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
19207       if (!ISD::isNormalLoad(N00.getNode()))
19208         return SDValue();
19209
19210     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
19211         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
19212                                   N00, N1);
19213       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
19214     }
19215   }
19216   return SDValue();
19217 }
19218
19219 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
19220                                   TargetLowering::DAGCombinerInfo &DCI,
19221                                   const X86Subtarget *Subtarget) {
19222   if (!DCI.isBeforeLegalizeOps())
19223     return SDValue();
19224
19225   if (!Subtarget->hasFp256())
19226     return SDValue();
19227
19228   EVT VT = N->getValueType(0);
19229   if (VT.isVector() && VT.getSizeInBits() == 256) {
19230     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19231     if (R.getNode())
19232       return R;
19233   }
19234
19235   return SDValue();
19236 }
19237
19238 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
19239                                  const X86Subtarget* Subtarget) {
19240   SDLoc dl(N);
19241   EVT VT = N->getValueType(0);
19242
19243   // Let legalize expand this if it isn't a legal type yet.
19244   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
19245     return SDValue();
19246
19247   EVT ScalarVT = VT.getScalarType();
19248   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
19249       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
19250     return SDValue();
19251
19252   SDValue A = N->getOperand(0);
19253   SDValue B = N->getOperand(1);
19254   SDValue C = N->getOperand(2);
19255
19256   bool NegA = (A.getOpcode() == ISD::FNEG);
19257   bool NegB = (B.getOpcode() == ISD::FNEG);
19258   bool NegC = (C.getOpcode() == ISD::FNEG);
19259
19260   // Negative multiplication when NegA xor NegB
19261   bool NegMul = (NegA != NegB);
19262   if (NegA)
19263     A = A.getOperand(0);
19264   if (NegB)
19265     B = B.getOperand(0);
19266   if (NegC)
19267     C = C.getOperand(0);
19268
19269   unsigned Opcode;
19270   if (!NegMul)
19271     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
19272   else
19273     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
19274
19275   return DAG.getNode(Opcode, dl, VT, A, B, C);
19276 }
19277
19278 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
19279                                   TargetLowering::DAGCombinerInfo &DCI,
19280                                   const X86Subtarget *Subtarget) {
19281   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
19282   //           (and (i32 x86isd::setcc_carry), 1)
19283   // This eliminates the zext. This transformation is necessary because
19284   // ISD::SETCC is always legalized to i8.
19285   SDLoc dl(N);
19286   SDValue N0 = N->getOperand(0);
19287   EVT VT = N->getValueType(0);
19288
19289   if (N0.getOpcode() == ISD::AND &&
19290       N0.hasOneUse() &&
19291       N0.getOperand(0).hasOneUse()) {
19292     SDValue N00 = N0.getOperand(0);
19293     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19294       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
19295       if (!C || C->getZExtValue() != 1)
19296         return SDValue();
19297       return DAG.getNode(ISD::AND, dl, VT,
19298                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19299                                      N00.getOperand(0), N00.getOperand(1)),
19300                          DAG.getConstant(1, VT));
19301     }
19302   }
19303
19304   if (N0.getOpcode() == ISD::TRUNCATE &&
19305       N0.hasOneUse() &&
19306       N0.getOperand(0).hasOneUse()) {
19307     SDValue N00 = N0.getOperand(0);
19308     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19309       return DAG.getNode(ISD::AND, dl, VT,
19310                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19311                                      N00.getOperand(0), N00.getOperand(1)),
19312                          DAG.getConstant(1, VT));
19313     }
19314   }
19315   if (VT.is256BitVector()) {
19316     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19317     if (R.getNode())
19318       return R;
19319   }
19320
19321   return SDValue();
19322 }
19323
19324 // Optimize x == -y --> x+y == 0
19325 //          x != -y --> x+y != 0
19326 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
19327                                       const X86Subtarget* Subtarget) {
19328   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
19329   SDValue LHS = N->getOperand(0);
19330   SDValue RHS = N->getOperand(1);
19331   EVT VT = N->getValueType(0);
19332   SDLoc DL(N);
19333
19334   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
19335     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
19336       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
19337         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19338                                    LHS.getValueType(), RHS, LHS.getOperand(1));
19339         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19340                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19341       }
19342   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
19343     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
19344       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
19345         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19346                                    RHS.getValueType(), LHS, RHS.getOperand(1));
19347         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19348                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19349       }
19350
19351   if (VT.getScalarType() == MVT::i1) {
19352     bool IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
19353       (LHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
19354     bool IsVZero0 = ISD::isBuildVectorAllZeros(LHS.getNode());
19355     if (!IsSEXT0 && !IsVZero0)
19356       return SDValue();
19357     bool IsSEXT1 = (RHS.getOpcode() == ISD::SIGN_EXTEND) &&
19358       (RHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
19359     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
19360
19361     if (!IsSEXT1 && !IsVZero1)
19362       return SDValue();
19363
19364     if (IsSEXT0 && IsVZero1) {
19365       assert(VT == LHS.getOperand(0).getValueType() && "Uexpected operand type");
19366       if (CC == ISD::SETEQ)
19367         return DAG.getNOT(DL, LHS.getOperand(0), VT);
19368       return LHS.getOperand(0);
19369     }
19370     if (IsSEXT1 && IsVZero0) {
19371       assert(VT == RHS.getOperand(0).getValueType() && "Uexpected operand type");
19372       if (CC == ISD::SETEQ)
19373         return DAG.getNOT(DL, RHS.getOperand(0), VT);
19374       return RHS.getOperand(0);
19375     }
19376   }
19377
19378   return SDValue();
19379 }
19380
19381 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
19382 // as "sbb reg,reg", since it can be extended without zext and produces
19383 // an all-ones bit which is more useful than 0/1 in some cases.
19384 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
19385                                MVT VT) {
19386   if (VT == MVT::i8)
19387     return DAG.getNode(ISD::AND, DL, VT,
19388                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19389                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
19390                        DAG.getConstant(1, VT));
19391   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
19392   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
19393                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19394                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
19395 }
19396
19397 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
19398 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
19399                                    TargetLowering::DAGCombinerInfo &DCI,
19400                                    const X86Subtarget *Subtarget) {
19401   SDLoc DL(N);
19402   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
19403   SDValue EFLAGS = N->getOperand(1);
19404
19405   if (CC == X86::COND_A) {
19406     // Try to convert COND_A into COND_B in an attempt to facilitate
19407     // materializing "setb reg".
19408     //
19409     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
19410     // cannot take an immediate as its first operand.
19411     //
19412     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
19413         EFLAGS.getValueType().isInteger() &&
19414         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
19415       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
19416                                    EFLAGS.getNode()->getVTList(),
19417                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
19418       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
19419       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
19420     }
19421   }
19422
19423   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
19424   // a zext and produces an all-ones bit which is more useful than 0/1 in some
19425   // cases.
19426   if (CC == X86::COND_B)
19427     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
19428
19429   SDValue Flags;
19430
19431   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19432   if (Flags.getNode()) {
19433     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19434     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
19435   }
19436
19437   return SDValue();
19438 }
19439
19440 // Optimize branch condition evaluation.
19441 //
19442 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
19443                                     TargetLowering::DAGCombinerInfo &DCI,
19444                                     const X86Subtarget *Subtarget) {
19445   SDLoc DL(N);
19446   SDValue Chain = N->getOperand(0);
19447   SDValue Dest = N->getOperand(1);
19448   SDValue EFLAGS = N->getOperand(3);
19449   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
19450
19451   SDValue Flags;
19452
19453   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19454   if (Flags.getNode()) {
19455     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19456     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
19457                        Flags);
19458   }
19459
19460   return SDValue();
19461 }
19462
19463 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
19464                                         const X86TargetLowering *XTLI) {
19465   SDValue Op0 = N->getOperand(0);
19466   EVT InVT = Op0->getValueType(0);
19467
19468   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
19469   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
19470     SDLoc dl(N);
19471     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
19472     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
19473     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
19474   }
19475
19476   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
19477   // a 32-bit target where SSE doesn't support i64->FP operations.
19478   if (Op0.getOpcode() == ISD::LOAD) {
19479     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
19480     EVT VT = Ld->getValueType(0);
19481     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
19482         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
19483         !XTLI->getSubtarget()->is64Bit() &&
19484         VT == MVT::i64) {
19485       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
19486                                           Ld->getChain(), Op0, DAG);
19487       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
19488       return FILDChain;
19489     }
19490   }
19491   return SDValue();
19492 }
19493
19494 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
19495 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
19496                                  X86TargetLowering::DAGCombinerInfo &DCI) {
19497   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
19498   // the result is either zero or one (depending on the input carry bit).
19499   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
19500   if (X86::isZeroNode(N->getOperand(0)) &&
19501       X86::isZeroNode(N->getOperand(1)) &&
19502       // We don't have a good way to replace an EFLAGS use, so only do this when
19503       // dead right now.
19504       SDValue(N, 1).use_empty()) {
19505     SDLoc DL(N);
19506     EVT VT = N->getValueType(0);
19507     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19508     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19509                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19510                                            DAG.getConstant(X86::COND_B,MVT::i8),
19511                                            N->getOperand(2)),
19512                                DAG.getConstant(1, VT));
19513     return DCI.CombineTo(N, Res1, CarryOut);
19514   }
19515
19516   return SDValue();
19517 }
19518
19519 // fold (add Y, (sete  X, 0)) -> adc  0, Y
19520 //      (add Y, (setne X, 0)) -> sbb -1, Y
19521 //      (sub (sete  X, 0), Y) -> sbb  0, Y
19522 //      (sub (setne X, 0), Y) -> adc -1, Y
19523 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
19524   SDLoc DL(N);
19525
19526   // Look through ZExts.
19527   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19528   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19529     return SDValue();
19530
19531   SDValue SetCC = Ext.getOperand(0);
19532   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19533     return SDValue();
19534
19535   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19536   if (CC != X86::COND_E && CC != X86::COND_NE)
19537     return SDValue();
19538
19539   SDValue Cmp = SetCC.getOperand(1);
19540   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
19541       !X86::isZeroNode(Cmp.getOperand(1)) ||
19542       !Cmp.getOperand(0).getValueType().isInteger())
19543     return SDValue();
19544
19545   SDValue CmpOp0 = Cmp.getOperand(0);
19546   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19547                                DAG.getConstant(1, CmpOp0.getValueType()));
19548
19549   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19550   if (CC == X86::COND_NE)
19551     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19552                        DL, OtherVal.getValueType(), OtherVal,
19553                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19554   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19555                      DL, OtherVal.getValueType(), OtherVal,
19556                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19557 }
19558
19559 /// PerformADDCombine - Do target-specific dag combines on integer adds.
19560 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19561                                  const X86Subtarget *Subtarget) {
19562   EVT VT = N->getValueType(0);
19563   SDValue Op0 = N->getOperand(0);
19564   SDValue Op1 = N->getOperand(1);
19565
19566   // Try to synthesize horizontal adds from adds of shuffles.
19567   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19568        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19569       isHorizontalBinOp(Op0, Op1, true))
19570     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
19571
19572   return OptimizeConditionalInDecrement(N, DAG);
19573 }
19574
19575 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19576                                  const X86Subtarget *Subtarget) {
19577   SDValue Op0 = N->getOperand(0);
19578   SDValue Op1 = N->getOperand(1);
19579
19580   // X86 can't encode an immediate LHS of a sub. See if we can push the
19581   // negation into a preceding instruction.
19582   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
19583     // If the RHS of the sub is a XOR with one use and a constant, invert the
19584     // immediate. Then add one to the LHS of the sub so we can turn
19585     // X-Y -> X+~Y+1, saving one register.
19586     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19587         isa<ConstantSDNode>(Op1.getOperand(1))) {
19588       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
19589       EVT VT = Op0.getValueType();
19590       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
19591                                    Op1.getOperand(0),
19592                                    DAG.getConstant(~XorC, VT));
19593       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
19594                          DAG.getConstant(C->getAPIntValue()+1, VT));
19595     }
19596   }
19597
19598   // Try to synthesize horizontal adds from adds of shuffles.
19599   EVT VT = N->getValueType(0);
19600   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19601        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19602       isHorizontalBinOp(Op0, Op1, true))
19603     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
19604
19605   return OptimizeConditionalInDecrement(N, DAG);
19606 }
19607
19608 /// performVZEXTCombine - Performs build vector combines
19609 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19610                                         TargetLowering::DAGCombinerInfo &DCI,
19611                                         const X86Subtarget *Subtarget) {
19612   // (vzext (bitcast (vzext (x)) -> (vzext x)
19613   SDValue In = N->getOperand(0);
19614   while (In.getOpcode() == ISD::BITCAST)
19615     In = In.getOperand(0);
19616
19617   if (In.getOpcode() != X86ISD::VZEXT)
19618     return SDValue();
19619
19620   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19621                      In.getOperand(0));
19622 }
19623
19624 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19625                                              DAGCombinerInfo &DCI) const {
19626   SelectionDAG &DAG = DCI.DAG;
19627   switch (N->getOpcode()) {
19628   default: break;
19629   case ISD::EXTRACT_VECTOR_ELT:
19630     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19631   case ISD::VSELECT:
19632   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19633   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19634   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19635   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19636   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19637   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19638   case ISD::SHL:
19639   case ISD::SRA:
19640   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19641   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19642   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19643   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19644   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19645   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19646   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19647   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19648   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19649   case X86ISD::FXOR:
19650   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19651   case X86ISD::FMIN:
19652   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19653   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19654   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19655   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19656   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19657   case ISD::ANY_EXTEND:
19658   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19659   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19660   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19661   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19662   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
19663   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19664   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19665   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19666   case X86ISD::SHUFP:       // Handle all target specific shuffles
19667   case X86ISD::PALIGNR:
19668   case X86ISD::UNPCKH:
19669   case X86ISD::UNPCKL:
19670   case X86ISD::MOVHLPS:
19671   case X86ISD::MOVLHPS:
19672   case X86ISD::PSHUFD:
19673   case X86ISD::PSHUFHW:
19674   case X86ISD::PSHUFLW:
19675   case X86ISD::MOVSS:
19676   case X86ISD::MOVSD:
19677   case X86ISD::VPERMILP:
19678   case X86ISD::VPERM2X128:
19679   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19680   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19681   }
19682
19683   return SDValue();
19684 }
19685
19686 /// isTypeDesirableForOp - Return true if the target has native support for
19687 /// the specified value type and it is 'desirable' to use the type for the
19688 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19689 /// instruction encodings are longer and some i16 instructions are slow.
19690 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19691   if (!isTypeLegal(VT))
19692     return false;
19693   if (VT != MVT::i16)
19694     return true;
19695
19696   switch (Opc) {
19697   default:
19698     return true;
19699   case ISD::LOAD:
19700   case ISD::SIGN_EXTEND:
19701   case ISD::ZERO_EXTEND:
19702   case ISD::ANY_EXTEND:
19703   case ISD::SHL:
19704   case ISD::SRL:
19705   case ISD::SUB:
19706   case ISD::ADD:
19707   case ISD::MUL:
19708   case ISD::AND:
19709   case ISD::OR:
19710   case ISD::XOR:
19711     return false;
19712   }
19713 }
19714
19715 /// IsDesirableToPromoteOp - This method query the target whether it is
19716 /// beneficial for dag combiner to promote the specified node. If true, it
19717 /// should return the desired promotion type by reference.
19718 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19719   EVT VT = Op.getValueType();
19720   if (VT != MVT::i16)
19721     return false;
19722
19723   bool Promote = false;
19724   bool Commute = false;
19725   switch (Op.getOpcode()) {
19726   default: break;
19727   case ISD::LOAD: {
19728     LoadSDNode *LD = cast<LoadSDNode>(Op);
19729     // If the non-extending load has a single use and it's not live out, then it
19730     // might be folded.
19731     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19732                                                      Op.hasOneUse()*/) {
19733       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19734              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19735         // The only case where we'd want to promote LOAD (rather then it being
19736         // promoted as an operand is when it's only use is liveout.
19737         if (UI->getOpcode() != ISD::CopyToReg)
19738           return false;
19739       }
19740     }
19741     Promote = true;
19742     break;
19743   }
19744   case ISD::SIGN_EXTEND:
19745   case ISD::ZERO_EXTEND:
19746   case ISD::ANY_EXTEND:
19747     Promote = true;
19748     break;
19749   case ISD::SHL:
19750   case ISD::SRL: {
19751     SDValue N0 = Op.getOperand(0);
19752     // Look out for (store (shl (load), x)).
19753     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19754       return false;
19755     Promote = true;
19756     break;
19757   }
19758   case ISD::ADD:
19759   case ISD::MUL:
19760   case ISD::AND:
19761   case ISD::OR:
19762   case ISD::XOR:
19763     Commute = true;
19764     // fallthrough
19765   case ISD::SUB: {
19766     SDValue N0 = Op.getOperand(0);
19767     SDValue N1 = Op.getOperand(1);
19768     if (!Commute && MayFoldLoad(N1))
19769       return false;
19770     // Avoid disabling potential load folding opportunities.
19771     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19772       return false;
19773     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19774       return false;
19775     Promote = true;
19776   }
19777   }
19778
19779   PVT = MVT::i32;
19780   return Promote;
19781 }
19782
19783 //===----------------------------------------------------------------------===//
19784 //                           X86 Inline Assembly Support
19785 //===----------------------------------------------------------------------===//
19786
19787 namespace {
19788   // Helper to match a string separated by whitespace.
19789   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19790     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19791
19792     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19793       StringRef piece(*args[i]);
19794       if (!s.startswith(piece)) // Check if the piece matches.
19795         return false;
19796
19797       s = s.substr(piece.size());
19798       StringRef::size_type pos = s.find_first_not_of(" \t");
19799       if (pos == 0) // We matched a prefix.
19800         return false;
19801
19802       s = s.substr(pos);
19803     }
19804
19805     return s.empty();
19806   }
19807   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19808 }
19809
19810 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19811
19812   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19813     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19814         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19815         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19816
19817       if (AsmPieces.size() == 3)
19818         return true;
19819       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19820         return true;
19821     }
19822   }
19823   return false;
19824 }
19825
19826 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19827   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19828
19829   std::string AsmStr = IA->getAsmString();
19830
19831   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19832   if (!Ty || Ty->getBitWidth() % 16 != 0)
19833     return false;
19834
19835   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19836   SmallVector<StringRef, 4> AsmPieces;
19837   SplitString(AsmStr, AsmPieces, ";\n");
19838
19839   switch (AsmPieces.size()) {
19840   default: return false;
19841   case 1:
19842     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19843     // we will turn this bswap into something that will be lowered to logical
19844     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19845     // lower so don't worry about this.
19846     // bswap $0
19847     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19848         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19849         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19850         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19851         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19852         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19853       // No need to check constraints, nothing other than the equivalent of
19854       // "=r,0" would be valid here.
19855       return IntrinsicLowering::LowerToByteSwap(CI);
19856     }
19857
19858     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19859     if (CI->getType()->isIntegerTy(16) &&
19860         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19861         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19862          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19863       AsmPieces.clear();
19864       const std::string &ConstraintsStr = IA->getConstraintString();
19865       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19866       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19867       if (clobbersFlagRegisters(AsmPieces))
19868         return IntrinsicLowering::LowerToByteSwap(CI);
19869     }
19870     break;
19871   case 3:
19872     if (CI->getType()->isIntegerTy(32) &&
19873         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19874         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19875         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19876         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19877       AsmPieces.clear();
19878       const std::string &ConstraintsStr = IA->getConstraintString();
19879       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19880       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19881       if (clobbersFlagRegisters(AsmPieces))
19882         return IntrinsicLowering::LowerToByteSwap(CI);
19883     }
19884
19885     if (CI->getType()->isIntegerTy(64)) {
19886       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19887       if (Constraints.size() >= 2 &&
19888           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19889           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19890         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19891         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19892             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19893             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19894           return IntrinsicLowering::LowerToByteSwap(CI);
19895       }
19896     }
19897     break;
19898   }
19899   return false;
19900 }
19901
19902 /// getConstraintType - Given a constraint letter, return the type of
19903 /// constraint it is for this target.
19904 X86TargetLowering::ConstraintType
19905 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19906   if (Constraint.size() == 1) {
19907     switch (Constraint[0]) {
19908     case 'R':
19909     case 'q':
19910     case 'Q':
19911     case 'f':
19912     case 't':
19913     case 'u':
19914     case 'y':
19915     case 'x':
19916     case 'Y':
19917     case 'l':
19918       return C_RegisterClass;
19919     case 'a':
19920     case 'b':
19921     case 'c':
19922     case 'd':
19923     case 'S':
19924     case 'D':
19925     case 'A':
19926       return C_Register;
19927     case 'I':
19928     case 'J':
19929     case 'K':
19930     case 'L':
19931     case 'M':
19932     case 'N':
19933     case 'G':
19934     case 'C':
19935     case 'e':
19936     case 'Z':
19937       return C_Other;
19938     default:
19939       break;
19940     }
19941   }
19942   return TargetLowering::getConstraintType(Constraint);
19943 }
19944
19945 /// Examine constraint type and operand type and determine a weight value.
19946 /// This object must already have been set up with the operand type
19947 /// and the current alternative constraint selected.
19948 TargetLowering::ConstraintWeight
19949   X86TargetLowering::getSingleConstraintMatchWeight(
19950     AsmOperandInfo &info, const char *constraint) const {
19951   ConstraintWeight weight = CW_Invalid;
19952   Value *CallOperandVal = info.CallOperandVal;
19953     // If we don't have a value, we can't do a match,
19954     // but allow it at the lowest weight.
19955   if (CallOperandVal == NULL)
19956     return CW_Default;
19957   Type *type = CallOperandVal->getType();
19958   // Look at the constraint type.
19959   switch (*constraint) {
19960   default:
19961     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19962   case 'R':
19963   case 'q':
19964   case 'Q':
19965   case 'a':
19966   case 'b':
19967   case 'c':
19968   case 'd':
19969   case 'S':
19970   case 'D':
19971   case 'A':
19972     if (CallOperandVal->getType()->isIntegerTy())
19973       weight = CW_SpecificReg;
19974     break;
19975   case 'f':
19976   case 't':
19977   case 'u':
19978     if (type->isFloatingPointTy())
19979       weight = CW_SpecificReg;
19980     break;
19981   case 'y':
19982     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19983       weight = CW_SpecificReg;
19984     break;
19985   case 'x':
19986   case 'Y':
19987     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19988         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19989       weight = CW_Register;
19990     break;
19991   case 'I':
19992     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19993       if (C->getZExtValue() <= 31)
19994         weight = CW_Constant;
19995     }
19996     break;
19997   case 'J':
19998     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19999       if (C->getZExtValue() <= 63)
20000         weight = CW_Constant;
20001     }
20002     break;
20003   case 'K':
20004     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20005       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
20006         weight = CW_Constant;
20007     }
20008     break;
20009   case 'L':
20010     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20011       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
20012         weight = CW_Constant;
20013     }
20014     break;
20015   case 'M':
20016     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20017       if (C->getZExtValue() <= 3)
20018         weight = CW_Constant;
20019     }
20020     break;
20021   case 'N':
20022     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20023       if (C->getZExtValue() <= 0xff)
20024         weight = CW_Constant;
20025     }
20026     break;
20027   case 'G':
20028   case 'C':
20029     if (dyn_cast<ConstantFP>(CallOperandVal)) {
20030       weight = CW_Constant;
20031     }
20032     break;
20033   case 'e':
20034     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20035       if ((C->getSExtValue() >= -0x80000000LL) &&
20036           (C->getSExtValue() <= 0x7fffffffLL))
20037         weight = CW_Constant;
20038     }
20039     break;
20040   case 'Z':
20041     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
20042       if (C->getZExtValue() <= 0xffffffff)
20043         weight = CW_Constant;
20044     }
20045     break;
20046   }
20047   return weight;
20048 }
20049
20050 /// LowerXConstraint - try to replace an X constraint, which matches anything,
20051 /// with another that has more specific requirements based on the type of the
20052 /// corresponding operand.
20053 const char *X86TargetLowering::
20054 LowerXConstraint(EVT ConstraintVT) const {
20055   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
20056   // 'f' like normal targets.
20057   if (ConstraintVT.isFloatingPoint()) {
20058     if (Subtarget->hasSSE2())
20059       return "Y";
20060     if (Subtarget->hasSSE1())
20061       return "x";
20062   }
20063
20064   return TargetLowering::LowerXConstraint(ConstraintVT);
20065 }
20066
20067 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
20068 /// vector.  If it is invalid, don't add anything to Ops.
20069 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
20070                                                      std::string &Constraint,
20071                                                      std::vector<SDValue>&Ops,
20072                                                      SelectionDAG &DAG) const {
20073   SDValue Result(0, 0);
20074
20075   // Only support length 1 constraints for now.
20076   if (Constraint.length() > 1) return;
20077
20078   char ConstraintLetter = Constraint[0];
20079   switch (ConstraintLetter) {
20080   default: break;
20081   case 'I':
20082     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20083       if (C->getZExtValue() <= 31) {
20084         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20085         break;
20086       }
20087     }
20088     return;
20089   case 'J':
20090     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20091       if (C->getZExtValue() <= 63) {
20092         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20093         break;
20094       }
20095     }
20096     return;
20097   case 'K':
20098     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20099       if (isInt<8>(C->getSExtValue())) {
20100         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20101         break;
20102       }
20103     }
20104     return;
20105   case 'N':
20106     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20107       if (C->getZExtValue() <= 255) {
20108         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20109         break;
20110       }
20111     }
20112     return;
20113   case 'e': {
20114     // 32-bit signed value
20115     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20116       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
20117                                            C->getSExtValue())) {
20118         // Widen to 64 bits here to get it sign extended.
20119         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
20120         break;
20121       }
20122     // FIXME gcc accepts some relocatable values here too, but only in certain
20123     // memory models; it's complicated.
20124     }
20125     return;
20126   }
20127   case 'Z': {
20128     // 32-bit unsigned value
20129     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20130       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
20131                                            C->getZExtValue())) {
20132         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20133         break;
20134       }
20135     }
20136     // FIXME gcc accepts some relocatable values here too, but only in certain
20137     // memory models; it's complicated.
20138     return;
20139   }
20140   case 'i': {
20141     // Literal immediates are always ok.
20142     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
20143       // Widen to 64 bits here to get it sign extended.
20144       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
20145       break;
20146     }
20147
20148     // In any sort of PIC mode addresses need to be computed at runtime by
20149     // adding in a register or some sort of table lookup.  These can't
20150     // be used as immediates.
20151     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
20152       return;
20153
20154     // If we are in non-pic codegen mode, we allow the address of a global (with
20155     // an optional displacement) to be used with 'i'.
20156     GlobalAddressSDNode *GA = 0;
20157     int64_t Offset = 0;
20158
20159     // Match either (GA), (GA+C), (GA+C1+C2), etc.
20160     while (1) {
20161       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
20162         Offset += GA->getOffset();
20163         break;
20164       } else if (Op.getOpcode() == ISD::ADD) {
20165         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
20166           Offset += C->getZExtValue();
20167           Op = Op.getOperand(0);
20168           continue;
20169         }
20170       } else if (Op.getOpcode() == ISD::SUB) {
20171         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
20172           Offset += -C->getZExtValue();
20173           Op = Op.getOperand(0);
20174           continue;
20175         }
20176       }
20177
20178       // Otherwise, this isn't something we can handle, reject it.
20179       return;
20180     }
20181
20182     const GlobalValue *GV = GA->getGlobal();
20183     // If we require an extra load to get this address, as in PIC mode, we
20184     // can't accept it.
20185     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
20186                                                         getTargetMachine())))
20187       return;
20188
20189     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
20190                                         GA->getValueType(0), Offset);
20191     break;
20192   }
20193   }
20194
20195   if (Result.getNode()) {
20196     Ops.push_back(Result);
20197     return;
20198   }
20199   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
20200 }
20201
20202 std::pair<unsigned, const TargetRegisterClass*>
20203 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
20204                                                 MVT VT) const {
20205   // First, see if this is a constraint that directly corresponds to an LLVM
20206   // register class.
20207   if (Constraint.size() == 1) {
20208     // GCC Constraint Letters
20209     switch (Constraint[0]) {
20210     default: break;
20211       // TODO: Slight differences here in allocation order and leaving
20212       // RIP in the class. Do they matter any more here than they do
20213       // in the normal allocation?
20214     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
20215       if (Subtarget->is64Bit()) {
20216         if (VT == MVT::i32 || VT == MVT::f32)
20217           return std::make_pair(0U, &X86::GR32RegClass);
20218         if (VT == MVT::i16)
20219           return std::make_pair(0U, &X86::GR16RegClass);
20220         if (VT == MVT::i8 || VT == MVT::i1)
20221           return std::make_pair(0U, &X86::GR8RegClass);
20222         if (VT == MVT::i64 || VT == MVT::f64)
20223           return std::make_pair(0U, &X86::GR64RegClass);
20224         break;
20225       }
20226       // 32-bit fallthrough
20227     case 'Q':   // Q_REGS
20228       if (VT == MVT::i32 || VT == MVT::f32)
20229         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
20230       if (VT == MVT::i16)
20231         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
20232       if (VT == MVT::i8 || VT == MVT::i1)
20233         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
20234       if (VT == MVT::i64)
20235         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
20236       break;
20237     case 'r':   // GENERAL_REGS
20238     case 'l':   // INDEX_REGS
20239       if (VT == MVT::i8 || VT == MVT::i1)
20240         return std::make_pair(0U, &X86::GR8RegClass);
20241       if (VT == MVT::i16)
20242         return std::make_pair(0U, &X86::GR16RegClass);
20243       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
20244         return std::make_pair(0U, &X86::GR32RegClass);
20245       return std::make_pair(0U, &X86::GR64RegClass);
20246     case 'R':   // LEGACY_REGS
20247       if (VT == MVT::i8 || VT == MVT::i1)
20248         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
20249       if (VT == MVT::i16)
20250         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
20251       if (VT == MVT::i32 || !Subtarget->is64Bit())
20252         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
20253       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
20254     case 'f':  // FP Stack registers.
20255       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
20256       // value to the correct fpstack register class.
20257       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
20258         return std::make_pair(0U, &X86::RFP32RegClass);
20259       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
20260         return std::make_pair(0U, &X86::RFP64RegClass);
20261       return std::make_pair(0U, &X86::RFP80RegClass);
20262     case 'y':   // MMX_REGS if MMX allowed.
20263       if (!Subtarget->hasMMX()) break;
20264       return std::make_pair(0U, &X86::VR64RegClass);
20265     case 'Y':   // SSE_REGS if SSE2 allowed
20266       if (!Subtarget->hasSSE2()) break;
20267       // FALL THROUGH.
20268     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
20269       if (!Subtarget->hasSSE1()) break;
20270
20271       switch (VT.SimpleTy) {
20272       default: break;
20273       // Scalar SSE types.
20274       case MVT::f32:
20275       case MVT::i32:
20276         return std::make_pair(0U, &X86::FR32RegClass);
20277       case MVT::f64:
20278       case MVT::i64:
20279         return std::make_pair(0U, &X86::FR64RegClass);
20280       // Vector types.
20281       case MVT::v16i8:
20282       case MVT::v8i16:
20283       case MVT::v4i32:
20284       case MVT::v2i64:
20285       case MVT::v4f32:
20286       case MVT::v2f64:
20287         return std::make_pair(0U, &X86::VR128RegClass);
20288       // AVX types.
20289       case MVT::v32i8:
20290       case MVT::v16i16:
20291       case MVT::v8i32:
20292       case MVT::v4i64:
20293       case MVT::v8f32:
20294       case MVT::v4f64:
20295         return std::make_pair(0U, &X86::VR256RegClass);
20296       case MVT::v8f64:
20297       case MVT::v16f32:
20298       case MVT::v16i32:
20299       case MVT::v8i64:
20300         return std::make_pair(0U, &X86::VR512RegClass);
20301       }
20302       break;
20303     }
20304   }
20305
20306   // Use the default implementation in TargetLowering to convert the register
20307   // constraint into a member of a register class.
20308   std::pair<unsigned, const TargetRegisterClass*> Res;
20309   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
20310
20311   // Not found as a standard register?
20312   if (Res.second == 0) {
20313     // Map st(0) -> st(7) -> ST0
20314     if (Constraint.size() == 7 && Constraint[0] == '{' &&
20315         tolower(Constraint[1]) == 's' &&
20316         tolower(Constraint[2]) == 't' &&
20317         Constraint[3] == '(' &&
20318         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
20319         Constraint[5] == ')' &&
20320         Constraint[6] == '}') {
20321
20322       Res.first = X86::ST0+Constraint[4]-'0';
20323       Res.second = &X86::RFP80RegClass;
20324       return Res;
20325     }
20326
20327     // GCC allows "st(0)" to be called just plain "st".
20328     if (StringRef("{st}").equals_lower(Constraint)) {
20329       Res.first = X86::ST0;
20330       Res.second = &X86::RFP80RegClass;
20331       return Res;
20332     }
20333
20334     // flags -> EFLAGS
20335     if (StringRef("{flags}").equals_lower(Constraint)) {
20336       Res.first = X86::EFLAGS;
20337       Res.second = &X86::CCRRegClass;
20338       return Res;
20339     }
20340
20341     // 'A' means EAX + EDX.
20342     if (Constraint == "A") {
20343       Res.first = X86::EAX;
20344       Res.second = &X86::GR32_ADRegClass;
20345       return Res;
20346     }
20347     return Res;
20348   }
20349
20350   // Otherwise, check to see if this is a register class of the wrong value
20351   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
20352   // turn into {ax},{dx}.
20353   if (Res.second->hasType(VT))
20354     return Res;   // Correct type already, nothing to do.
20355
20356   // All of the single-register GCC register classes map their values onto
20357   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
20358   // really want an 8-bit or 32-bit register, map to the appropriate register
20359   // class and return the appropriate register.
20360   if (Res.second == &X86::GR16RegClass) {
20361     if (VT == MVT::i8 || VT == MVT::i1) {
20362       unsigned DestReg = 0;
20363       switch (Res.first) {
20364       default: break;
20365       case X86::AX: DestReg = X86::AL; break;
20366       case X86::DX: DestReg = X86::DL; break;
20367       case X86::CX: DestReg = X86::CL; break;
20368       case X86::BX: DestReg = X86::BL; break;
20369       }
20370       if (DestReg) {
20371         Res.first = DestReg;
20372         Res.second = &X86::GR8RegClass;
20373       }
20374     } else if (VT == MVT::i32 || VT == MVT::f32) {
20375       unsigned DestReg = 0;
20376       switch (Res.first) {
20377       default: break;
20378       case X86::AX: DestReg = X86::EAX; break;
20379       case X86::DX: DestReg = X86::EDX; break;
20380       case X86::CX: DestReg = X86::ECX; break;
20381       case X86::BX: DestReg = X86::EBX; break;
20382       case X86::SI: DestReg = X86::ESI; break;
20383       case X86::DI: DestReg = X86::EDI; break;
20384       case X86::BP: DestReg = X86::EBP; break;
20385       case X86::SP: DestReg = X86::ESP; break;
20386       }
20387       if (DestReg) {
20388         Res.first = DestReg;
20389         Res.second = &X86::GR32RegClass;
20390       }
20391     } else if (VT == MVT::i64 || VT == MVT::f64) {
20392       unsigned DestReg = 0;
20393       switch (Res.first) {
20394       default: break;
20395       case X86::AX: DestReg = X86::RAX; break;
20396       case X86::DX: DestReg = X86::RDX; break;
20397       case X86::CX: DestReg = X86::RCX; break;
20398       case X86::BX: DestReg = X86::RBX; break;
20399       case X86::SI: DestReg = X86::RSI; break;
20400       case X86::DI: DestReg = X86::RDI; break;
20401       case X86::BP: DestReg = X86::RBP; break;
20402       case X86::SP: DestReg = X86::RSP; break;
20403       }
20404       if (DestReg) {
20405         Res.first = DestReg;
20406         Res.second = &X86::GR64RegClass;
20407       }
20408     }
20409   } else if (Res.second == &X86::FR32RegClass ||
20410              Res.second == &X86::FR64RegClass ||
20411              Res.second == &X86::VR128RegClass ||
20412              Res.second == &X86::VR256RegClass ||
20413              Res.second == &X86::FR32XRegClass ||
20414              Res.second == &X86::FR64XRegClass ||
20415              Res.second == &X86::VR128XRegClass ||
20416              Res.second == &X86::VR256XRegClass ||
20417              Res.second == &X86::VR512RegClass) {
20418     // Handle references to XMM physical registers that got mapped into the
20419     // wrong class.  This can happen with constraints like {xmm0} where the
20420     // target independent register mapper will just pick the first match it can
20421     // find, ignoring the required type.
20422
20423     if (VT == MVT::f32 || VT == MVT::i32)
20424       Res.second = &X86::FR32RegClass;
20425     else if (VT == MVT::f64 || VT == MVT::i64)
20426       Res.second = &X86::FR64RegClass;
20427     else if (X86::VR128RegClass.hasType(VT))
20428       Res.second = &X86::VR128RegClass;
20429     else if (X86::VR256RegClass.hasType(VT))
20430       Res.second = &X86::VR256RegClass;
20431     else if (X86::VR512RegClass.hasType(VT))
20432       Res.second = &X86::VR512RegClass;
20433   }
20434
20435   return Res;
20436 }