Fix PR16807
[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 "X86InstrBuilder.h"
20 #include "X86TargetMachine.h"
21 #include "X86TargetObjectFile.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringExtras.h"
25 #include "llvm/ADT/VariadicFunction.h"
26 #include "llvm/CodeGen/IntrinsicLowering.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/MachineJumpTableInfo.h"
31 #include "llvm/CodeGen/MachineModuleInfo.h"
32 #include "llvm/CodeGen/MachineRegisterInfo.h"
33 #include "llvm/IR/CallingConv.h"
34 #include "llvm/IR/Constants.h"
35 #include "llvm/IR/DerivedTypes.h"
36 #include "llvm/IR/Function.h"
37 #include "llvm/IR/GlobalAlias.h"
38 #include "llvm/IR/GlobalVariable.h"
39 #include "llvm/IR/Instructions.h"
40 #include "llvm/IR/Intrinsics.h"
41 #include "llvm/IR/LLVMContext.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->isTargetEnvMacho()) {
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->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
193     return new TargetLoweringObjectFileCOFF();
194   llvm_unreachable("unknown subtarget type");
195 }
196
197 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
198   : TargetLowering(TM, createTLOF(TM)) {
199   Subtarget = &TM.getSubtarget<X86Subtarget>();
200   X86ScalarSSEf64 = Subtarget->hasSSE2();
201   X86ScalarSSEf32 = Subtarget->hasSSE1();
202   TD = getDataLayout();
203
204   resetOperationActions();
205 }
206
207 void X86TargetLowering::resetOperationActions() {
208   const TargetMachine &TM = getTargetMachine();
209   static bool FirstTimeThrough = true;
210
211   // If none of the target options have changed, then we don't need to reset the
212   // operation actions.
213   if (!FirstTimeThrough && TO == TM.Options) return;
214
215   if (!FirstTimeThrough) {
216     // Reinitialize the actions.
217     initActions();
218     FirstTimeThrough = false;
219   }
220
221   TO = TM.Options;
222
223   // Set up the TargetLowering object.
224   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
225
226   // X86 is weird, it always uses i8 for shift amounts and setcc results.
227   setBooleanContents(ZeroOrOneBooleanContent);
228   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
230
231   // For 64-bit since we have so many registers use the ILP scheduler, for
232   // 32-bit code use the register pressure specific scheduling.
233   // For Atom, always use ILP scheduling.
234   if (Subtarget->isAtom())
235     setSchedulingPreference(Sched::ILP);
236   else if (Subtarget->is64Bit())
237     setSchedulingPreference(Sched::ILP);
238   else
239     setSchedulingPreference(Sched::RegPressure);
240   const X86RegisterInfo *RegInfo =
241     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
242   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
243
244   // Bypass expensive divides on Atom when compiling with O2
245   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
246     addBypassSlowDiv(32, 8);
247     if (Subtarget->is64Bit())
248       addBypassSlowDiv(64, 16);
249   }
250
251   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
252     // Setup Windows compiler runtime calls.
253     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
254     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
255     setLibcallName(RTLIB::SREM_I64, "_allrem");
256     setLibcallName(RTLIB::UREM_I64, "_aullrem");
257     setLibcallName(RTLIB::MUL_I64, "_allmul");
258     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
259     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
260     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
263
264     // The _ftol2 runtime function has an unusual calling conv, which
265     // is modeled by a special pseudo-instruction.
266     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
270   }
271
272   if (Subtarget->isTargetDarwin()) {
273     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
274     setUseUnderscoreSetJmp(false);
275     setUseUnderscoreLongJmp(false);
276   } else if (Subtarget->isTargetMingw()) {
277     // MS runtime is weird: it exports _setjmp, but longjmp!
278     setUseUnderscoreSetJmp(true);
279     setUseUnderscoreLongJmp(false);
280   } else {
281     setUseUnderscoreSetJmp(true);
282     setUseUnderscoreLongJmp(true);
283   }
284
285   // Set up the register classes.
286   addRegisterClass(MVT::i8, &X86::GR8RegClass);
287   addRegisterClass(MVT::i16, &X86::GR16RegClass);
288   addRegisterClass(MVT::i32, &X86::GR32RegClass);
289   if (Subtarget->is64Bit())
290     addRegisterClass(MVT::i64, &X86::GR64RegClass);
291
292   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
293
294   // We don't accept any truncstore of integer registers.
295   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
296   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
297   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
298   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
301
302   // SETOEQ and SETUNE require checking two conditions.
303   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
309
310   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311   // operation.
312   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
313   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
315
316   if (Subtarget->is64Bit()) {
317     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
318     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
319   } else if (!TM.Options.UseSoftFloat) {
320     // We have an algorithm for SSE2->double, and we turn this into a
321     // 64-bit FILD followed by conditional FADD for other targets.
322     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
323     // We have an algorithm for SSE2, and we turn this into a 64-bit
324     // FILD for other targets.
325     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
326   }
327
328   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329   // this operation.
330   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
331   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
332
333   if (!TM.Options.UseSoftFloat) {
334     // SSE has no i16 to fp conversion, only i32
335     if (X86ScalarSSEf32) {
336       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
337       // f32 and f64 cases are Legal, f80 case is not
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
339     } else {
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
342     }
343   } else {
344     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
345     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
346   }
347
348   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
349   // are Legal, f80 is custom lowered.
350   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
351   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
352
353   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354   // this operation.
355   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
356   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
357
358   if (X86ScalarSSEf32) {
359     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
360     // f32 and f64 cases are Legal, f80 case is not
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
362   } else {
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
365   }
366
367   // Handle FP_TO_UINT by promoting the destination to a larger signed
368   // conversion.
369   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
370   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
372
373   if (Subtarget->is64Bit()) {
374     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
375     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
376   } else if (!TM.Options.UseSoftFloat) {
377     // Since AVX is a superset of SSE3, only check for SSE here.
378     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
379       // Expand FP_TO_UINT into a select.
380       // FIXME: We would like to use a Custom expander here eventually to do
381       // the optimal thing for SSE vs. the default expansion in the legalizer.
382       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
383     else
384       // With SSE3 we can use fisttpll to convert to a signed i64; without
385       // SSE, we're stuck with a fistpll.
386       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
387   }
388
389   if (isTargetFTOL()) {
390     // Use the _ftol2 runtime function, which has a pseudo-instruction
391     // to handle its weird calling convention.
392     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
393   }
394
395   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
396   if (!X86ScalarSSEf64) {
397     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
398     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
399     if (Subtarget->is64Bit()) {
400       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
401       // Without SSE, i64->f64 goes through memory.
402       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
403     }
404   }
405
406   // Scalar integer divide and remainder are lowered to use operations that
407   // produce two results, to match the available instructions. This exposes
408   // the two-result form to trivial CSE, which is able to combine x/y and x%y
409   // into a single instruction.
410   //
411   // Scalar integer multiply-high is also lowered to use two-result
412   // operations, to match the available instructions. However, plain multiply
413   // (low) operations are left as Legal, as there are single-result
414   // instructions for this in x86. Using the two-result multiply instructions
415   // when both high and low results are needed must be arranged by dagcombine.
416   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
417     MVT VT = IntVTs[i];
418     setOperationAction(ISD::MULHS, VT, Expand);
419     setOperationAction(ISD::MULHU, VT, Expand);
420     setOperationAction(ISD::SDIV, VT, Expand);
421     setOperationAction(ISD::UDIV, VT, Expand);
422     setOperationAction(ISD::SREM, VT, Expand);
423     setOperationAction(ISD::UREM, VT, Expand);
424
425     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
426     setOperationAction(ISD::ADDC, VT, Custom);
427     setOperationAction(ISD::ADDE, VT, Custom);
428     setOperationAction(ISD::SUBC, VT, Custom);
429     setOperationAction(ISD::SUBE, VT, Custom);
430   }
431
432   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
433   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
434   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
435   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
436   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
438   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
441   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
442   if (Subtarget->is64Bit())
443     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
445   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
447   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
448   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
449   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
451   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
452
453   // Promote the i8 variants and force them on up to i32 which has a shorter
454   // encoding.
455   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
456   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
457   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
459   if (Subtarget->hasBMI()) {
460     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
461     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
462     if (Subtarget->is64Bit())
463       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
464   } else {
465     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
466     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
467     if (Subtarget->is64Bit())
468       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
469   }
470
471   if (Subtarget->hasLZCNT()) {
472     // When promoting the i8 variants, force them to i32 for a shorter
473     // encoding.
474     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
475     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
476     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
479     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
480     if (Subtarget->is64Bit())
481       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
482   } else {
483     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
484     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
485     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
486     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
487     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
489     if (Subtarget->is64Bit()) {
490       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
491       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492     }
493   }
494
495   if (Subtarget->hasPOPCNT()) {
496     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
497   } else {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
499     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
500     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
501     if (Subtarget->is64Bit())
502       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
503   }
504
505   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
506   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
507
508   // These should be promoted to a larger select which is supported.
509   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
510   // X86 wants to expand cmov itself.
511   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
512   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
513   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
514   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
517   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
518   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
520   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
523   if (Subtarget->is64Bit()) {
524     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
525     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
526   }
527   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
528   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
529   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
530   // support continuation, user-level threading, and etc.. As a result, no
531   // other SjLj exception interfaces are implemented and please don't build
532   // your own exception handling based on them.
533   // LLVM/Clang supports zero-cost DWARF exception handling.
534   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
536
537   // Darwin ABI issue.
538   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
539   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
540   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
541   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
542   if (Subtarget->is64Bit())
543     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
545   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
546   if (Subtarget->is64Bit()) {
547     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
548     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
549     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
550     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
551     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
552   }
553   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
554   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
555   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
556   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
557   if (Subtarget->is64Bit()) {
558     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
559     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
560     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
561   }
562
563   if (Subtarget->hasSSE1())
564     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
565
566   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
567
568   // Expand certain atomics
569   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
570     MVT VT = IntVTs[i];
571     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
573     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
574   }
575
576   if (!Subtarget->is64Bit()) {
577     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
578     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
589   }
590
591   if (Subtarget->hasCmpxchg16b()) {
592     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593   }
594
595   // FIXME - use subtarget debug flags
596   if (!Subtarget->isTargetDarwin() &&
597       !Subtarget->isTargetELF() &&
598       !Subtarget->isTargetCygMing()) {
599     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
600   }
601
602   if (Subtarget->is64Bit()) {
603     setExceptionPointerRegister(X86::RAX);
604     setExceptionSelectorRegister(X86::RDX);
605   } else {
606     setExceptionPointerRegister(X86::EAX);
607     setExceptionSelectorRegister(X86::EDX);
608   }
609   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
611
612   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
614
615   setOperationAction(ISD::TRAP, MVT::Other, Legal);
616   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
617
618   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
619   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
620   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
621   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622     // TargetInfo::X86_64ABIBuiltinVaList
623     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
624     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
625   } else {
626     // TargetInfo::CharPtrBuiltinVaList
627     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
628     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
629   }
630
631   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
632   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
633
634   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
635     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636                        MVT::i64 : MVT::i32, Custom);
637   else if (TM.Options.EnableSegmentedStacks)
638     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639                        MVT::i64 : MVT::i32, Custom);
640   else
641     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642                        MVT::i64 : MVT::i32, Expand);
643
644   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
645     // f32 and f64 use SSE.
646     // Set up the FP register classes.
647     addRegisterClass(MVT::f32, &X86::FR32RegClass);
648     addRegisterClass(MVT::f64, &X86::FR64RegClass);
649
650     // Use ANDPD to simulate FABS.
651     setOperationAction(ISD::FABS , MVT::f64, Custom);
652     setOperationAction(ISD::FABS , MVT::f32, Custom);
653
654     // Use XORP to simulate FNEG.
655     setOperationAction(ISD::FNEG , MVT::f64, Custom);
656     setOperationAction(ISD::FNEG , MVT::f32, Custom);
657
658     // Use ANDPD and ORPD to simulate FCOPYSIGN.
659     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
661
662     // Lower this to FGETSIGNx86 plus an AND.
663     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
666     // We don't support sin/cos/fmod
667     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
668     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
669     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
671     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
672     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
673
674     // Expand FP immediates into loads from the stack, except for the special
675     // cases we handle.
676     addLegalFPImmediate(APFloat(+0.0)); // xorpd
677     addLegalFPImmediate(APFloat(+0.0f)); // xorps
678   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
679     // Use SSE for f32, x87 for f64.
680     // Set up the FP register classes.
681     addRegisterClass(MVT::f32, &X86::FR32RegClass);
682     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
683
684     // Use ANDPS to simulate FABS.
685     setOperationAction(ISD::FABS , MVT::f32, Custom);
686
687     // Use XORP to simulate FNEG.
688     setOperationAction(ISD::FNEG , MVT::f32, Custom);
689
690     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
691
692     // Use ANDPS and ORPS to simulate FCOPYSIGN.
693     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
695
696     // We don't support sin/cos/fmod
697     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
698     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
699     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
700
701     // Special cases we handle for FP constants.
702     addLegalFPImmediate(APFloat(+0.0f)); // xorps
703     addLegalFPImmediate(APFloat(+0.0)); // FLD0
704     addLegalFPImmediate(APFloat(+1.0)); // FLD1
705     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
708     if (!TM.Options.UnsafeFPMath) {
709       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
710       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
711       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
712     }
713   } else if (!TM.Options.UseSoftFloat) {
714     // f32 and f64 in x87.
715     // Set up the FP register classes.
716     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
718
719     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
720     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
721     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
723
724     if (!TM.Options.UnsafeFPMath) {
725       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
726       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
727       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
729       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
731     }
732     addLegalFPImmediate(APFloat(+0.0)); // FLD0
733     addLegalFPImmediate(APFloat(+1.0)); // FLD1
734     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
736     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
740   }
741
742   // We don't support FMA.
743   setOperationAction(ISD::FMA, MVT::f64, Expand);
744   setOperationAction(ISD::FMA, MVT::f32, Expand);
745
746   // Long double always uses X87.
747   if (!TM.Options.UseSoftFloat) {
748     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
749     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
750     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
751     {
752       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
753       addLegalFPImmediate(TmpFlt);  // FLD0
754       TmpFlt.changeSign();
755       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
756
757       bool ignored;
758       APFloat TmpFlt2(+1.0);
759       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760                       &ignored);
761       addLegalFPImmediate(TmpFlt2);  // FLD1
762       TmpFlt2.changeSign();
763       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
764     }
765
766     if (!TM.Options.UnsafeFPMath) {
767       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
768       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
769       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
770     }
771
772     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
774     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
776     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
777     setOperationAction(ISD::FMA, MVT::f80, Expand);
778   }
779
780   // Always use a library call for pow.
781   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
782   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
784
785   setOperationAction(ISD::FLOG, MVT::f80, Expand);
786   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788   setOperationAction(ISD::FEXP, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
790
791   // First set operation action for all vector types to either promote
792   // (for widening) or expand (for scalarization). Then we will selectively
793   // turn on ones that can be effectively codegen'd.
794   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
796     MVT VT = (MVT::SimpleValueType)i;
797     setOperationAction(ISD::ADD , VT, Expand);
798     setOperationAction(ISD::SUB , VT, Expand);
799     setOperationAction(ISD::FADD, VT, Expand);
800     setOperationAction(ISD::FNEG, VT, Expand);
801     setOperationAction(ISD::FSUB, VT, Expand);
802     setOperationAction(ISD::MUL , VT, Expand);
803     setOperationAction(ISD::FMUL, VT, Expand);
804     setOperationAction(ISD::SDIV, VT, Expand);
805     setOperationAction(ISD::UDIV, VT, Expand);
806     setOperationAction(ISD::FDIV, VT, Expand);
807     setOperationAction(ISD::SREM, VT, Expand);
808     setOperationAction(ISD::UREM, VT, Expand);
809     setOperationAction(ISD::LOAD, VT, Expand);
810     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::FABS, VT, Expand);
816     setOperationAction(ISD::FSIN, VT, Expand);
817     setOperationAction(ISD::FSINCOS, VT, Expand);
818     setOperationAction(ISD::FCOS, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FREM, VT, Expand);
821     setOperationAction(ISD::FMA,  VT, Expand);
822     setOperationAction(ISD::FPOWI, VT, Expand);
823     setOperationAction(ISD::FSQRT, VT, Expand);
824     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825     setOperationAction(ISD::FFLOOR, VT, Expand);
826     setOperationAction(ISD::FCEIL, VT, Expand);
827     setOperationAction(ISD::FTRUNC, VT, Expand);
828     setOperationAction(ISD::FRINT, VT, Expand);
829     setOperationAction(ISD::FNEARBYINT, VT, Expand);
830     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832     setOperationAction(ISD::SDIVREM, VT, Expand);
833     setOperationAction(ISD::UDIVREM, VT, Expand);
834     setOperationAction(ISD::FPOW, VT, Expand);
835     setOperationAction(ISD::CTPOP, VT, Expand);
836     setOperationAction(ISD::CTTZ, VT, Expand);
837     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838     setOperationAction(ISD::CTLZ, VT, Expand);
839     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::SHL, VT, Expand);
841     setOperationAction(ISD::SRA, VT, Expand);
842     setOperationAction(ISD::SRL, VT, Expand);
843     setOperationAction(ISD::ROTL, VT, Expand);
844     setOperationAction(ISD::ROTR, VT, Expand);
845     setOperationAction(ISD::BSWAP, VT, Expand);
846     setOperationAction(ISD::SETCC, VT, Expand);
847     setOperationAction(ISD::FLOG, VT, Expand);
848     setOperationAction(ISD::FLOG2, VT, Expand);
849     setOperationAction(ISD::FLOG10, VT, Expand);
850     setOperationAction(ISD::FEXP, VT, Expand);
851     setOperationAction(ISD::FEXP2, VT, Expand);
852     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857     setOperationAction(ISD::TRUNCATE, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861     setOperationAction(ISD::VSELECT, VT, Expand);
862     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
864       setTruncStoreAction(VT,
865                           (MVT::SimpleValueType)InnerVT, Expand);
866     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
869   }
870
871   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872   // with -msoft-float, disable use of MMX as well.
873   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
874     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
875     // No operations on x86mmx supported, everything uses intrinsics.
876   }
877
878   // MMX-sized vectors (other than x86mmx) are expected to be expanded
879   // into smaller operations.
880   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
881   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
882   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
883   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
884   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
885   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
886   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
887   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
888   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
889   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
890   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
891   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
892   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
893   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
894   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
895   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
896   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
897   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
900   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
901   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
902   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
904   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
905   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
906   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
909
910   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
911     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
912
913     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
914     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
915     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
918     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
919     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
920     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
921     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
922     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
923     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
925   }
926
927   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
928     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
929
930     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931     // registers cannot be used even for integer operations.
932     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
936
937     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
938     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
939     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
940     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
941     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
942     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
943     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
944     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
945     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
946     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
947     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
948     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
949     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
950     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
953     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
954     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
955
956     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
957     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
958     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
960
961     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
962     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
963     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
964     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
966
967     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
968     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
969       MVT VT = (MVT::SimpleValueType)i;
970       // Do not attempt to custom lower non-power-of-2 vectors
971       if (!isPowerOf2_32(VT.getVectorNumElements()))
972         continue;
973       // Do not attempt to custom lower non-128-bit vectors
974       if (!VT.is128BitVector())
975         continue;
976       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
977       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
978       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
979     }
980
981     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
982     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
983     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
984     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
985     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
986     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
987
988     if (Subtarget->is64Bit()) {
989       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
990       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
991     }
992
993     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
994     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
995       MVT VT = (MVT::SimpleValueType)i;
996
997       // Do not attempt to promote non-128-bit vectors
998       if (!VT.is128BitVector())
999         continue;
1000
1001       setOperationAction(ISD::AND,    VT, Promote);
1002       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1003       setOperationAction(ISD::OR,     VT, Promote);
1004       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1005       setOperationAction(ISD::XOR,    VT, Promote);
1006       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1007       setOperationAction(ISD::LOAD,   VT, Promote);
1008       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1009       setOperationAction(ISD::SELECT, VT, Promote);
1010       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1011     }
1012
1013     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1014
1015     // Custom lower v2i64 and v2f64 selects.
1016     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1017     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1018     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1019     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1020
1021     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1022     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1023
1024     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1025     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1026     // As there is no 64-bit GPR available, we need build a special custom
1027     // sequence to convert from v2i32 to v2f32.
1028     if (!Subtarget->is64Bit())
1029       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1030
1031     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1032     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1033
1034     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1035   }
1036
1037   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1038     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1039     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1040     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1043     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1044     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1045     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1048
1049     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1050     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1051     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1054     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1055     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1056     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1059
1060     // FIXME: Do we need to handle scalar-to-vector here?
1061     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1062
1063     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1064     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1065     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1068
1069     // i8 and i16 vectors are custom , because the source register and source
1070     // source memory operand types are not the same width.  f32 vectors are
1071     // custom since the immediate controlling the insert encodes additional
1072     // information.
1073     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1074     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1077
1078     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1082
1083     // FIXME: these should be Legal but thats only for the case where
1084     // the index is constant.  For now custom expand to deal with that.
1085     if (Subtarget->is64Bit()) {
1086       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1087       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1088     }
1089   }
1090
1091   if (Subtarget->hasSSE2()) {
1092     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1093     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1094
1095     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1096     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1097
1098     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1099     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1100
1101     // In the customized shift lowering, the legal cases in AVX2 will be
1102     // recognized.
1103     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1104     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1105
1106     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1107     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1108
1109     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1112     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1113   }
1114
1115   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1116     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1117     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1120     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1122
1123     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1124     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1125     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1126
1127     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1128     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1132     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1133     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1137     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1138     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1139
1140     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1141     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1142     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1145     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1146     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1150     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1151     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1152
1153     setOperationAction(ISD::TRUNCATE,           MVT::v8i16, Custom);
1154     setOperationAction(ISD::TRUNCATE,           MVT::v4i32, Custom);
1155
1156     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1157
1158     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1159     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1160     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1161     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1162
1163     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i32, Custom);
1164     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1165     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1166
1167     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1168
1169     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1170     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1171
1172     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1173     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1174
1175     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1176     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1177
1178     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1179
1180     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1181     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1182     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1183     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1184
1185     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1186     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1187     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1188
1189     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1190     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1191     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1192     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1193
1194     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1195     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1197     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1200
1201     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1202       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1203       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1204       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1205       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1206       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1208     }
1209
1210     if (Subtarget->hasInt256()) {
1211       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1212       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1213       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1214       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1215
1216       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1217       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1218       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1219       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1220
1221       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1222       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1223       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1224       // Don't lower v32i8 because there is no 128-bit byte mul
1225
1226       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1227
1228       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1229     } else {
1230       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1231       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1232       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1233       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1234
1235       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1236       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1237       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1238       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1239
1240       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1241       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1242       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1243       // Don't lower v32i8 because there is no 128-bit byte mul
1244     }
1245
1246     // In the customized shift lowering, the legal cases in AVX2 will be
1247     // recognized.
1248     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1249     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1250
1251     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1252     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1253
1254     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1255
1256     // Custom lower several nodes for 256-bit types.
1257     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1258              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1259       MVT VT = (MVT::SimpleValueType)i;
1260
1261       // Extract subvector is special because the value type
1262       // (result) is 128-bit but the source is 256-bit wide.
1263       if (VT.is128BitVector())
1264         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1265
1266       // Do not attempt to custom lower other non-256-bit vectors
1267       if (!VT.is256BitVector())
1268         continue;
1269
1270       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1271       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1272       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1273       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1275       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1276       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1277     }
1278
1279     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1280     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1281       MVT VT = (MVT::SimpleValueType)i;
1282
1283       // Do not attempt to promote non-256-bit vectors
1284       if (!VT.is256BitVector())
1285         continue;
1286
1287       setOperationAction(ISD::AND,    VT, Promote);
1288       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1289       setOperationAction(ISD::OR,     VT, Promote);
1290       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1291       setOperationAction(ISD::XOR,    VT, Promote);
1292       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1293       setOperationAction(ISD::LOAD,   VT, Promote);
1294       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1295       setOperationAction(ISD::SELECT, VT, Promote);
1296       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1297     }
1298   }
1299
1300   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1301     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1302     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1303     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1304     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1305
1306     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1307     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1308
1309     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1310     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1311     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1312     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1313     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1314     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1315
1316     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1317     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1318     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1319     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1320     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1321     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1322
1323     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1324     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1325     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1326     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1327     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1328     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1329     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1330     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1331     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1332
1333     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1334     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1335     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1336     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1337     if (Subtarget->is64Bit()) {
1338       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1339       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1340       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1341       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1342     }
1343     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1344     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1345     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1346     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1347     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1348     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1349     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1350     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1351
1352     setOperationAction(ISD::TRUNCATE,           MVT::i1, Legal);
1353     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1354     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1355     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1356     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1357     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1358     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1359     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1360     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1361     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1362     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1363     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1364
1365     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1366     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1367     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1368     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1369     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1370
1371     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1372     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1373
1374     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1375
1376     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1377     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1378     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1379     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1380     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1381
1382     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1383     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1384
1385     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1386     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1387
1388     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1389
1390     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1391     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1392
1393     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1394     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1395
1396     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1397     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1398
1399     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1400     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1401     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1402     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1403     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1404     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1405
1406     // Custom lower several nodes.
1407     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1408              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1409       MVT VT = (MVT::SimpleValueType)i;
1410
1411       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1412       // Extract subvector is special because the value type
1413       // (result) is 256/128-bit but the source is 512-bit wide.
1414       if (VT.is128BitVector() || VT.is256BitVector())
1415         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1416
1417       if (VT.getVectorElementType() == MVT::i1)
1418         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1419
1420       // Do not attempt to custom lower other non-512-bit vectors
1421       if (!VT.is512BitVector())
1422         continue;
1423
1424       if ( EltSize >= 32) {
1425         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1426         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1427         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1428         setOperationAction(ISD::VSELECT,             VT, Legal);
1429         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1430         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1431         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1432       }
1433     }
1434     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1435       MVT VT = (MVT::SimpleValueType)i;
1436
1437       // Do not attempt to promote non-256-bit vectors
1438       if (!VT.is512BitVector())
1439         continue;
1440
1441       setOperationAction(ISD::SELECT, VT, Promote);
1442       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1443     }
1444   }// has  AVX-512
1445
1446   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1447   // of this type with custom code.
1448   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1449            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1450     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1451                        Custom);
1452   }
1453
1454   // We want to custom lower some of our intrinsics.
1455   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1456   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1457   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1458
1459   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1460   // handle type legalization for these operations here.
1461   //
1462   // FIXME: We really should do custom legalization for addition and
1463   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1464   // than generic legalization for 64-bit multiplication-with-overflow, though.
1465   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1466     // Add/Sub/Mul with overflow operations are custom lowered.
1467     MVT VT = IntVTs[i];
1468     setOperationAction(ISD::SADDO, VT, Custom);
1469     setOperationAction(ISD::UADDO, VT, Custom);
1470     setOperationAction(ISD::SSUBO, VT, Custom);
1471     setOperationAction(ISD::USUBO, VT, Custom);
1472     setOperationAction(ISD::SMULO, VT, Custom);
1473     setOperationAction(ISD::UMULO, VT, Custom);
1474   }
1475
1476   // There are no 8-bit 3-address imul/mul instructions
1477   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1478   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1479
1480   if (!Subtarget->is64Bit()) {
1481     // These libcalls are not available in 32-bit.
1482     setLibcallName(RTLIB::SHL_I128, 0);
1483     setLibcallName(RTLIB::SRL_I128, 0);
1484     setLibcallName(RTLIB::SRA_I128, 0);
1485   }
1486
1487   // Combine sin / cos into one node or libcall if possible.
1488   if (Subtarget->hasSinCos()) {
1489     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1490     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1491     if (Subtarget->isTargetDarwin()) {
1492       // For MacOSX, we don't want to the normal expansion of a libcall to
1493       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1494       // traffic.
1495       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1496       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1497     }
1498   }
1499
1500   // We have target-specific dag combine patterns for the following nodes:
1501   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1502   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1503   setTargetDAGCombine(ISD::VSELECT);
1504   setTargetDAGCombine(ISD::SELECT);
1505   setTargetDAGCombine(ISD::SHL);
1506   setTargetDAGCombine(ISD::SRA);
1507   setTargetDAGCombine(ISD::SRL);
1508   setTargetDAGCombine(ISD::OR);
1509   setTargetDAGCombine(ISD::AND);
1510   setTargetDAGCombine(ISD::ADD);
1511   setTargetDAGCombine(ISD::FADD);
1512   setTargetDAGCombine(ISD::FSUB);
1513   setTargetDAGCombine(ISD::FMA);
1514   setTargetDAGCombine(ISD::SUB);
1515   setTargetDAGCombine(ISD::LOAD);
1516   setTargetDAGCombine(ISD::STORE);
1517   setTargetDAGCombine(ISD::ZERO_EXTEND);
1518   setTargetDAGCombine(ISD::ANY_EXTEND);
1519   setTargetDAGCombine(ISD::SIGN_EXTEND);
1520   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1521   setTargetDAGCombine(ISD::TRUNCATE);
1522   setTargetDAGCombine(ISD::SINT_TO_FP);
1523   setTargetDAGCombine(ISD::SETCC);
1524   if (Subtarget->is64Bit())
1525     setTargetDAGCombine(ISD::MUL);
1526   setTargetDAGCombine(ISD::XOR);
1527
1528   computeRegisterProperties();
1529
1530   // On Darwin, -Os means optimize for size without hurting performance,
1531   // do not reduce the limit.
1532   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1533   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1534   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1535   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1536   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1537   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1538   setPrefLoopAlignment(4); // 2^4 bytes.
1539
1540   // Predictable cmov don't hurt on atom because it's in-order.
1541   PredictableSelectIsExpensive = !Subtarget->isAtom();
1542
1543   setPrefFunctionAlignment(4); // 2^4 bytes.
1544 }
1545
1546 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1547   if (!VT.isVector()) return MVT::i8;
1548   return VT.changeVectorElementTypeToInteger();
1549 }
1550
1551 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1552 /// the desired ByVal argument alignment.
1553 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1554   if (MaxAlign == 16)
1555     return;
1556   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1557     if (VTy->getBitWidth() == 128)
1558       MaxAlign = 16;
1559   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1560     unsigned EltAlign = 0;
1561     getMaxByValAlign(ATy->getElementType(), EltAlign);
1562     if (EltAlign > MaxAlign)
1563       MaxAlign = EltAlign;
1564   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1565     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1566       unsigned EltAlign = 0;
1567       getMaxByValAlign(STy->getElementType(i), EltAlign);
1568       if (EltAlign > MaxAlign)
1569         MaxAlign = EltAlign;
1570       if (MaxAlign == 16)
1571         break;
1572     }
1573   }
1574 }
1575
1576 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1577 /// function arguments in the caller parameter area. For X86, aggregates
1578 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1579 /// are at 4-byte boundaries.
1580 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1581   if (Subtarget->is64Bit()) {
1582     // Max of 8 and alignment of type.
1583     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1584     if (TyAlign > 8)
1585       return TyAlign;
1586     return 8;
1587   }
1588
1589   unsigned Align = 4;
1590   if (Subtarget->hasSSE1())
1591     getMaxByValAlign(Ty, Align);
1592   return Align;
1593 }
1594
1595 /// getOptimalMemOpType - Returns the target specific optimal type for load
1596 /// and store operations as a result of memset, memcpy, and memmove
1597 /// lowering. If DstAlign is zero that means it's safe to destination
1598 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1599 /// means there isn't a need to check it against alignment requirement,
1600 /// probably because the source does not need to be loaded. If 'IsMemset' is
1601 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1602 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1603 /// source is constant so it does not need to be loaded.
1604 /// It returns EVT::Other if the type should be determined using generic
1605 /// target-independent logic.
1606 EVT
1607 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1608                                        unsigned DstAlign, unsigned SrcAlign,
1609                                        bool IsMemset, bool ZeroMemset,
1610                                        bool MemcpyStrSrc,
1611                                        MachineFunction &MF) const {
1612   const Function *F = MF.getFunction();
1613   if ((!IsMemset || ZeroMemset) &&
1614       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1615                                        Attribute::NoImplicitFloat)) {
1616     if (Size >= 16 &&
1617         (Subtarget->isUnalignedMemAccessFast() ||
1618          ((DstAlign == 0 || DstAlign >= 16) &&
1619           (SrcAlign == 0 || SrcAlign >= 16)))) {
1620       if (Size >= 32) {
1621         if (Subtarget->hasInt256())
1622           return MVT::v8i32;
1623         if (Subtarget->hasFp256())
1624           return MVT::v8f32;
1625       }
1626       if (Subtarget->hasSSE2())
1627         return MVT::v4i32;
1628       if (Subtarget->hasSSE1())
1629         return MVT::v4f32;
1630     } else if (!MemcpyStrSrc && Size >= 8 &&
1631                !Subtarget->is64Bit() &&
1632                Subtarget->hasSSE2()) {
1633       // Do not use f64 to lower memcpy if source is string constant. It's
1634       // better to use i32 to avoid the loads.
1635       return MVT::f64;
1636     }
1637   }
1638   if (Subtarget->is64Bit() && Size >= 8)
1639     return MVT::i64;
1640   return MVT::i32;
1641 }
1642
1643 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1644   if (VT == MVT::f32)
1645     return X86ScalarSSEf32;
1646   else if (VT == MVT::f64)
1647     return X86ScalarSSEf64;
1648   return true;
1649 }
1650
1651 bool
1652 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1653   if (Fast)
1654     *Fast = Subtarget->isUnalignedMemAccessFast();
1655   return true;
1656 }
1657
1658 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1659 /// current function.  The returned value is a member of the
1660 /// MachineJumpTableInfo::JTEntryKind enum.
1661 unsigned X86TargetLowering::getJumpTableEncoding() const {
1662   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1663   // symbol.
1664   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1665       Subtarget->isPICStyleGOT())
1666     return MachineJumpTableInfo::EK_Custom32;
1667
1668   // Otherwise, use the normal jump table encoding heuristics.
1669   return TargetLowering::getJumpTableEncoding();
1670 }
1671
1672 const MCExpr *
1673 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1674                                              const MachineBasicBlock *MBB,
1675                                              unsigned uid,MCContext &Ctx) const{
1676   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1677          Subtarget->isPICStyleGOT());
1678   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1679   // entries.
1680   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1681                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1682 }
1683
1684 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1685 /// jumptable.
1686 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1687                                                     SelectionDAG &DAG) const {
1688   if (!Subtarget->is64Bit())
1689     // This doesn't have SDLoc associated with it, but is not really the
1690     // same as a Register.
1691     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1692   return Table;
1693 }
1694
1695 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1696 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1697 /// MCExpr.
1698 const MCExpr *X86TargetLowering::
1699 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1700                              MCContext &Ctx) const {
1701   // X86-64 uses RIP relative addressing based on the jump table label.
1702   if (Subtarget->isPICStyleRIPRel())
1703     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1704
1705   // Otherwise, the reference is relative to the PIC base.
1706   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1707 }
1708
1709 // FIXME: Why this routine is here? Move to RegInfo!
1710 std::pair<const TargetRegisterClass*, uint8_t>
1711 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1712   const TargetRegisterClass *RRC = 0;
1713   uint8_t Cost = 1;
1714   switch (VT.SimpleTy) {
1715   default:
1716     return TargetLowering::findRepresentativeClass(VT);
1717   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1718     RRC = Subtarget->is64Bit() ?
1719       (const TargetRegisterClass*)&X86::GR64RegClass :
1720       (const TargetRegisterClass*)&X86::GR32RegClass;
1721     break;
1722   case MVT::x86mmx:
1723     RRC = &X86::VR64RegClass;
1724     break;
1725   case MVT::f32: case MVT::f64:
1726   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1727   case MVT::v4f32: case MVT::v2f64:
1728   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1729   case MVT::v4f64:
1730     RRC = &X86::VR128RegClass;
1731     break;
1732   }
1733   return std::make_pair(RRC, Cost);
1734 }
1735
1736 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1737                                                unsigned &Offset) const {
1738   if (!Subtarget->isTargetLinux())
1739     return false;
1740
1741   if (Subtarget->is64Bit()) {
1742     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1743     Offset = 0x28;
1744     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1745       AddressSpace = 256;
1746     else
1747       AddressSpace = 257;
1748   } else {
1749     // %gs:0x14 on i386
1750     Offset = 0x14;
1751     AddressSpace = 256;
1752   }
1753   return true;
1754 }
1755
1756 //===----------------------------------------------------------------------===//
1757 //               Return Value Calling Convention Implementation
1758 //===----------------------------------------------------------------------===//
1759
1760 #include "X86GenCallingConv.inc"
1761
1762 bool
1763 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1764                                   MachineFunction &MF, bool isVarArg,
1765                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1766                         LLVMContext &Context) const {
1767   SmallVector<CCValAssign, 16> RVLocs;
1768   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1769                  RVLocs, Context);
1770   return CCInfo.CheckReturn(Outs, RetCC_X86);
1771 }
1772
1773 SDValue
1774 X86TargetLowering::LowerReturn(SDValue Chain,
1775                                CallingConv::ID CallConv, bool isVarArg,
1776                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1777                                const SmallVectorImpl<SDValue> &OutVals,
1778                                SDLoc dl, SelectionDAG &DAG) const {
1779   MachineFunction &MF = DAG.getMachineFunction();
1780   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1781
1782   SmallVector<CCValAssign, 16> RVLocs;
1783   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1784                  RVLocs, *DAG.getContext());
1785   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1786
1787   SDValue Flag;
1788   SmallVector<SDValue, 6> RetOps;
1789   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1790   // Operand #1 = Bytes To Pop
1791   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1792                    MVT::i16));
1793
1794   // Copy the result values into the output registers.
1795   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1796     CCValAssign &VA = RVLocs[i];
1797     assert(VA.isRegLoc() && "Can only return in registers!");
1798     SDValue ValToCopy = OutVals[i];
1799     EVT ValVT = ValToCopy.getValueType();
1800
1801     // Promote values to the appropriate types
1802     if (VA.getLocInfo() == CCValAssign::SExt)
1803       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1804     else if (VA.getLocInfo() == CCValAssign::ZExt)
1805       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1806     else if (VA.getLocInfo() == CCValAssign::AExt)
1807       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1808     else if (VA.getLocInfo() == CCValAssign::BCvt)
1809       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1810
1811     // If this is x86-64, and we disabled SSE, we can't return FP values,
1812     // or SSE or MMX vectors.
1813     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1814          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1815           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1816       report_fatal_error("SSE register return with SSE disabled");
1817     }
1818     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1819     // llvm-gcc has never done it right and no one has noticed, so this
1820     // should be OK for now.
1821     if (ValVT == MVT::f64 &&
1822         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1823       report_fatal_error("SSE2 register return with SSE2 disabled");
1824
1825     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1826     // the RET instruction and handled by the FP Stackifier.
1827     if (VA.getLocReg() == X86::ST0 ||
1828         VA.getLocReg() == X86::ST1) {
1829       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1830       // change the value to the FP stack register class.
1831       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1832         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1833       RetOps.push_back(ValToCopy);
1834       // Don't emit a copytoreg.
1835       continue;
1836     }
1837
1838     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1839     // which is returned in RAX / RDX.
1840     if (Subtarget->is64Bit()) {
1841       if (ValVT == MVT::x86mmx) {
1842         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1843           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1844           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1845                                   ValToCopy);
1846           // If we don't have SSE2 available, convert to v4f32 so the generated
1847           // register is legal.
1848           if (!Subtarget->hasSSE2())
1849             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1850         }
1851       }
1852     }
1853
1854     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1855     Flag = Chain.getValue(1);
1856     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1857   }
1858
1859   // The x86-64 ABIs require that for returning structs by value we copy
1860   // the sret argument into %rax/%eax (depending on ABI) for the return.
1861   // Win32 requires us to put the sret argument to %eax as well.
1862   // We saved the argument into a virtual register in the entry block,
1863   // so now we copy the value out and into %rax/%eax.
1864   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1865       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1866     MachineFunction &MF = DAG.getMachineFunction();
1867     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1868     unsigned Reg = FuncInfo->getSRetReturnReg();
1869     assert(Reg &&
1870            "SRetReturnReg should have been set in LowerFormalArguments().");
1871     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1872
1873     unsigned RetValReg
1874         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1875           X86::RAX : X86::EAX;
1876     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1877     Flag = Chain.getValue(1);
1878
1879     // RAX/EAX now acts like a return value.
1880     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1881   }
1882
1883   RetOps[0] = Chain;  // Update chain.
1884
1885   // Add the flag if we have it.
1886   if (Flag.getNode())
1887     RetOps.push_back(Flag);
1888
1889   return DAG.getNode(X86ISD::RET_FLAG, dl,
1890                      MVT::Other, &RetOps[0], RetOps.size());
1891 }
1892
1893 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1894   if (N->getNumValues() != 1)
1895     return false;
1896   if (!N->hasNUsesOfValue(1, 0))
1897     return false;
1898
1899   SDValue TCChain = Chain;
1900   SDNode *Copy = *N->use_begin();
1901   if (Copy->getOpcode() == ISD::CopyToReg) {
1902     // If the copy has a glue operand, we conservatively assume it isn't safe to
1903     // perform a tail call.
1904     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1905       return false;
1906     TCChain = Copy->getOperand(0);
1907   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1908     return false;
1909
1910   bool HasRet = false;
1911   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1912        UI != UE; ++UI) {
1913     if (UI->getOpcode() != X86ISD::RET_FLAG)
1914       return false;
1915     HasRet = true;
1916   }
1917
1918   if (!HasRet)
1919     return false;
1920
1921   Chain = TCChain;
1922   return true;
1923 }
1924
1925 MVT
1926 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1927                                             ISD::NodeType ExtendKind) const {
1928   MVT ReturnMVT;
1929   // TODO: Is this also valid on 32-bit?
1930   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1931     ReturnMVT = MVT::i8;
1932   else
1933     ReturnMVT = MVT::i32;
1934
1935   MVT MinVT = getRegisterType(ReturnMVT);
1936   return VT.bitsLT(MinVT) ? MinVT : VT;
1937 }
1938
1939 /// LowerCallResult - Lower the result values of a call into the
1940 /// appropriate copies out of appropriate physical registers.
1941 ///
1942 SDValue
1943 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1944                                    CallingConv::ID CallConv, bool isVarArg,
1945                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1946                                    SDLoc dl, SelectionDAG &DAG,
1947                                    SmallVectorImpl<SDValue> &InVals) const {
1948
1949   // Assign locations to each value returned by this call.
1950   SmallVector<CCValAssign, 16> RVLocs;
1951   bool Is64Bit = Subtarget->is64Bit();
1952   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1953                  getTargetMachine(), RVLocs, *DAG.getContext());
1954   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1955
1956   // Copy all of the result registers out of their specified physreg.
1957   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1958     CCValAssign &VA = RVLocs[i];
1959     EVT CopyVT = VA.getValVT();
1960
1961     // If this is x86-64, and we disabled SSE, we can't return FP values
1962     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1963         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1964       report_fatal_error("SSE register return with SSE disabled");
1965     }
1966
1967     SDValue Val;
1968
1969     // If this is a call to a function that returns an fp value on the floating
1970     // point stack, we must guarantee the value is popped from the stack, so
1971     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1972     // if the return value is not used. We use the FpPOP_RETVAL instruction
1973     // instead.
1974     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1975       // If we prefer to use the value in xmm registers, copy it out as f80 and
1976       // use a truncate to move it from fp stack reg to xmm reg.
1977       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1978       SDValue Ops[] = { Chain, InFlag };
1979       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1980                                          MVT::Other, MVT::Glue, Ops), 1);
1981       Val = Chain.getValue(0);
1982
1983       // Round the f80 to the right size, which also moves it to the appropriate
1984       // xmm register.
1985       if (CopyVT != VA.getValVT())
1986         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1987                           // This truncation won't change the value.
1988                           DAG.getIntPtrConstant(1));
1989     } else {
1990       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1991                                  CopyVT, InFlag).getValue(1);
1992       Val = Chain.getValue(0);
1993     }
1994     InFlag = Chain.getValue(2);
1995     InVals.push_back(Val);
1996   }
1997
1998   return Chain;
1999 }
2000
2001 //===----------------------------------------------------------------------===//
2002 //                C & StdCall & Fast Calling Convention implementation
2003 //===----------------------------------------------------------------------===//
2004 //  StdCall calling convention seems to be standard for many Windows' API
2005 //  routines and around. It differs from C calling convention just a little:
2006 //  callee should clean up the stack, not caller. Symbols should be also
2007 //  decorated in some fancy way :) It doesn't support any vector arguments.
2008 //  For info on fast calling convention see Fast Calling Convention (tail call)
2009 //  implementation LowerX86_32FastCCCallTo.
2010
2011 /// CallIsStructReturn - Determines whether a call uses struct return
2012 /// semantics.
2013 enum StructReturnType {
2014   NotStructReturn,
2015   RegStructReturn,
2016   StackStructReturn
2017 };
2018 static StructReturnType
2019 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2020   if (Outs.empty())
2021     return NotStructReturn;
2022
2023   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2024   if (!Flags.isSRet())
2025     return NotStructReturn;
2026   if (Flags.isInReg())
2027     return RegStructReturn;
2028   return StackStructReturn;
2029 }
2030
2031 /// ArgsAreStructReturn - Determines whether a function uses struct
2032 /// return semantics.
2033 static StructReturnType
2034 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2035   if (Ins.empty())
2036     return NotStructReturn;
2037
2038   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2039   if (!Flags.isSRet())
2040     return NotStructReturn;
2041   if (Flags.isInReg())
2042     return RegStructReturn;
2043   return StackStructReturn;
2044 }
2045
2046 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2047 /// by "Src" to address "Dst" with size and alignment information specified by
2048 /// the specific parameter attribute. The copy will be passed as a byval
2049 /// function parameter.
2050 static SDValue
2051 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2052                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2053                           SDLoc dl) {
2054   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2055
2056   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2057                        /*isVolatile*/false, /*AlwaysInline=*/true,
2058                        MachinePointerInfo(), MachinePointerInfo());
2059 }
2060
2061 /// IsTailCallConvention - Return true if the calling convention is one that
2062 /// supports tail call optimization.
2063 static bool IsTailCallConvention(CallingConv::ID CC) {
2064   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2065           CC == CallingConv::HiPE);
2066 }
2067
2068 /// \brief Return true if the calling convention is a C calling convention.
2069 static bool IsCCallConvention(CallingConv::ID CC) {
2070   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2071           CC == CallingConv::X86_64_SysV);
2072 }
2073
2074 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2075   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2076     return false;
2077
2078   CallSite CS(CI);
2079   CallingConv::ID CalleeCC = CS.getCallingConv();
2080   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2081     return false;
2082
2083   return true;
2084 }
2085
2086 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2087 /// a tailcall target by changing its ABI.
2088 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2089                                    bool GuaranteedTailCallOpt) {
2090   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2091 }
2092
2093 SDValue
2094 X86TargetLowering::LowerMemArgument(SDValue Chain,
2095                                     CallingConv::ID CallConv,
2096                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2097                                     SDLoc dl, SelectionDAG &DAG,
2098                                     const CCValAssign &VA,
2099                                     MachineFrameInfo *MFI,
2100                                     unsigned i) const {
2101   // Create the nodes corresponding to a load from this parameter slot.
2102   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2103   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2104                               getTargetMachine().Options.GuaranteedTailCallOpt);
2105   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2106   EVT ValVT;
2107
2108   // If value is passed by pointer we have address passed instead of the value
2109   // itself.
2110   if (VA.getLocInfo() == CCValAssign::Indirect)
2111     ValVT = VA.getLocVT();
2112   else
2113     ValVT = VA.getValVT();
2114
2115   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2116   // changed with more analysis.
2117   // In case of tail call optimization mark all arguments mutable. Since they
2118   // could be overwritten by lowering of arguments in case of a tail call.
2119   if (Flags.isByVal()) {
2120     unsigned Bytes = Flags.getByValSize();
2121     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2122     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2123     return DAG.getFrameIndex(FI, getPointerTy());
2124   } else {
2125     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2126                                     VA.getLocMemOffset(), isImmutable);
2127     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2128     return DAG.getLoad(ValVT, dl, Chain, FIN,
2129                        MachinePointerInfo::getFixedStack(FI),
2130                        false, false, false, 0);
2131   }
2132 }
2133
2134 SDValue
2135 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2136                                         CallingConv::ID CallConv,
2137                                         bool isVarArg,
2138                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2139                                         SDLoc dl,
2140                                         SelectionDAG &DAG,
2141                                         SmallVectorImpl<SDValue> &InVals)
2142                                           const {
2143   MachineFunction &MF = DAG.getMachineFunction();
2144   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2145
2146   const Function* Fn = MF.getFunction();
2147   if (Fn->hasExternalLinkage() &&
2148       Subtarget->isTargetCygMing() &&
2149       Fn->getName() == "main")
2150     FuncInfo->setForceFramePointer(true);
2151
2152   MachineFrameInfo *MFI = MF.getFrameInfo();
2153   bool Is64Bit = Subtarget->is64Bit();
2154   bool IsWindows = Subtarget->isTargetWindows();
2155   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2156
2157   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2158          "Var args not supported with calling convention fastcc, ghc or hipe");
2159
2160   // Assign locations to all of the incoming arguments.
2161   SmallVector<CCValAssign, 16> ArgLocs;
2162   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2163                  ArgLocs, *DAG.getContext());
2164
2165   // Allocate shadow area for Win64
2166   if (IsWin64)
2167     CCInfo.AllocateStack(32, 8);
2168
2169   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2170
2171   unsigned LastVal = ~0U;
2172   SDValue ArgValue;
2173   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2174     CCValAssign &VA = ArgLocs[i];
2175     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2176     // places.
2177     assert(VA.getValNo() != LastVal &&
2178            "Don't support value assigned to multiple locs yet");
2179     (void)LastVal;
2180     LastVal = VA.getValNo();
2181
2182     if (VA.isRegLoc()) {
2183       EVT RegVT = VA.getLocVT();
2184       const TargetRegisterClass *RC;
2185       if (RegVT == MVT::i32)
2186         RC = &X86::GR32RegClass;
2187       else if (Is64Bit && RegVT == MVT::i64)
2188         RC = &X86::GR64RegClass;
2189       else if (RegVT == MVT::f32)
2190         RC = &X86::FR32RegClass;
2191       else if (RegVT == MVT::f64)
2192         RC = &X86::FR64RegClass;
2193       else if (RegVT.is512BitVector())
2194         RC = &X86::VR512RegClass;
2195       else if (RegVT.is256BitVector())
2196         RC = &X86::VR256RegClass;
2197       else if (RegVT.is128BitVector())
2198         RC = &X86::VR128RegClass;
2199       else if (RegVT == MVT::x86mmx)
2200         RC = &X86::VR64RegClass;
2201       else if (RegVT == MVT::v8i1)
2202         RC = &X86::VK8RegClass;
2203       else if (RegVT == MVT::v16i1)
2204         RC = &X86::VK16RegClass;
2205       else
2206         llvm_unreachable("Unknown argument type!");
2207
2208       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2209       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2210
2211       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2212       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2213       // right size.
2214       if (VA.getLocInfo() == CCValAssign::SExt)
2215         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2216                                DAG.getValueType(VA.getValVT()));
2217       else if (VA.getLocInfo() == CCValAssign::ZExt)
2218         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2219                                DAG.getValueType(VA.getValVT()));
2220       else if (VA.getLocInfo() == CCValAssign::BCvt)
2221         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2222
2223       if (VA.isExtInLoc()) {
2224         // Handle MMX values passed in XMM regs.
2225         if (RegVT.isVector())
2226           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2227         else
2228           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2229       }
2230     } else {
2231       assert(VA.isMemLoc());
2232       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2233     }
2234
2235     // If value is passed via pointer - do a load.
2236     if (VA.getLocInfo() == CCValAssign::Indirect)
2237       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2238                              MachinePointerInfo(), false, false, false, 0);
2239
2240     InVals.push_back(ArgValue);
2241   }
2242
2243   // The x86-64 ABIs require that for returning structs by value we copy
2244   // the sret argument into %rax/%eax (depending on ABI) for the return.
2245   // Win32 requires us to put the sret argument to %eax as well.
2246   // Save the argument into a virtual register so that we can access it
2247   // from the return points.
2248   if (MF.getFunction()->hasStructRetAttr() &&
2249       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2250     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2251     unsigned Reg = FuncInfo->getSRetReturnReg();
2252     if (!Reg) {
2253       MVT PtrTy = getPointerTy();
2254       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2255       FuncInfo->setSRetReturnReg(Reg);
2256     }
2257     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2258     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2259   }
2260
2261   unsigned StackSize = CCInfo.getNextStackOffset();
2262   // Align stack specially for tail calls.
2263   if (FuncIsMadeTailCallSafe(CallConv,
2264                              MF.getTarget().Options.GuaranteedTailCallOpt))
2265     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2266
2267   // If the function takes variable number of arguments, make a frame index for
2268   // the start of the first vararg value... for expansion of llvm.va_start.
2269   if (isVarArg) {
2270     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2271                     CallConv != CallingConv::X86_ThisCall)) {
2272       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2273     }
2274     if (Is64Bit) {
2275       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2276
2277       // FIXME: We should really autogenerate these arrays
2278       static const uint16_t GPR64ArgRegsWin64[] = {
2279         X86::RCX, X86::RDX, X86::R8,  X86::R9
2280       };
2281       static const uint16_t GPR64ArgRegs64Bit[] = {
2282         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2283       };
2284       static const uint16_t XMMArgRegs64Bit[] = {
2285         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2286         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2287       };
2288       const uint16_t *GPR64ArgRegs;
2289       unsigned NumXMMRegs = 0;
2290
2291       if (IsWin64) {
2292         // The XMM registers which might contain var arg parameters are shadowed
2293         // in their paired GPR.  So we only need to save the GPR to their home
2294         // slots.
2295         TotalNumIntRegs = 4;
2296         GPR64ArgRegs = GPR64ArgRegsWin64;
2297       } else {
2298         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2299         GPR64ArgRegs = GPR64ArgRegs64Bit;
2300
2301         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2302                                                 TotalNumXMMRegs);
2303       }
2304       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2305                                                        TotalNumIntRegs);
2306
2307       bool NoImplicitFloatOps = Fn->getAttributes().
2308         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2309       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2310              "SSE register cannot be used when SSE is disabled!");
2311       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2312                NoImplicitFloatOps) &&
2313              "SSE register cannot be used when SSE is disabled!");
2314       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2315           !Subtarget->hasSSE1())
2316         // Kernel mode asks for SSE to be disabled, so don't push them
2317         // on the stack.
2318         TotalNumXMMRegs = 0;
2319
2320       if (IsWin64) {
2321         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2322         // Get to the caller-allocated home save location.  Add 8 to account
2323         // for the return address.
2324         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2325         FuncInfo->setRegSaveFrameIndex(
2326           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2327         // Fixup to set vararg frame on shadow area (4 x i64).
2328         if (NumIntRegs < 4)
2329           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2330       } else {
2331         // For X86-64, if there are vararg parameters that are passed via
2332         // registers, then we must store them to their spots on the stack so
2333         // they may be loaded by deferencing the result of va_next.
2334         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2335         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2336         FuncInfo->setRegSaveFrameIndex(
2337           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2338                                false));
2339       }
2340
2341       // Store the integer parameter registers.
2342       SmallVector<SDValue, 8> MemOps;
2343       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2344                                         getPointerTy());
2345       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2346       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2347         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2348                                   DAG.getIntPtrConstant(Offset));
2349         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2350                                      &X86::GR64RegClass);
2351         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2352         SDValue Store =
2353           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2354                        MachinePointerInfo::getFixedStack(
2355                          FuncInfo->getRegSaveFrameIndex(), Offset),
2356                        false, false, 0);
2357         MemOps.push_back(Store);
2358         Offset += 8;
2359       }
2360
2361       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2362         // Now store the XMM (fp + vector) parameter registers.
2363         SmallVector<SDValue, 11> SaveXMMOps;
2364         SaveXMMOps.push_back(Chain);
2365
2366         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2367         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2368         SaveXMMOps.push_back(ALVal);
2369
2370         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2371                                FuncInfo->getRegSaveFrameIndex()));
2372         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2373                                FuncInfo->getVarArgsFPOffset()));
2374
2375         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2376           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2377                                        &X86::VR128RegClass);
2378           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2379           SaveXMMOps.push_back(Val);
2380         }
2381         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2382                                      MVT::Other,
2383                                      &SaveXMMOps[0], SaveXMMOps.size()));
2384       }
2385
2386       if (!MemOps.empty())
2387         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2388                             &MemOps[0], MemOps.size());
2389     }
2390   }
2391
2392   // Some CCs need callee pop.
2393   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2394                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2395     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2396   } else {
2397     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2398     // If this is an sret function, the return should pop the hidden pointer.
2399     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2400         argsAreStructReturn(Ins) == StackStructReturn)
2401       FuncInfo->setBytesToPopOnReturn(4);
2402   }
2403
2404   if (!Is64Bit) {
2405     // RegSaveFrameIndex is X86-64 only.
2406     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2407     if (CallConv == CallingConv::X86_FastCall ||
2408         CallConv == CallingConv::X86_ThisCall)
2409       // fastcc functions can't have varargs.
2410       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2411   }
2412
2413   FuncInfo->setArgumentStackSize(StackSize);
2414
2415   return Chain;
2416 }
2417
2418 SDValue
2419 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2420                                     SDValue StackPtr, SDValue Arg,
2421                                     SDLoc dl, SelectionDAG &DAG,
2422                                     const CCValAssign &VA,
2423                                     ISD::ArgFlagsTy Flags) const {
2424   unsigned LocMemOffset = VA.getLocMemOffset();
2425   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2426   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2427   if (Flags.isByVal())
2428     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2429
2430   return DAG.getStore(Chain, dl, Arg, PtrOff,
2431                       MachinePointerInfo::getStack(LocMemOffset),
2432                       false, false, 0);
2433 }
2434
2435 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2436 /// optimization is performed and it is required.
2437 SDValue
2438 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2439                                            SDValue &OutRetAddr, SDValue Chain,
2440                                            bool IsTailCall, bool Is64Bit,
2441                                            int FPDiff, SDLoc dl) const {
2442   // Adjust the Return address stack slot.
2443   EVT VT = getPointerTy();
2444   OutRetAddr = getReturnAddressFrameIndex(DAG);
2445
2446   // Load the "old" Return address.
2447   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2448                            false, false, false, 0);
2449   return SDValue(OutRetAddr.getNode(), 1);
2450 }
2451
2452 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2453 /// optimization is performed and it is required (FPDiff!=0).
2454 static SDValue
2455 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2456                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2457                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2458   // Store the return address to the appropriate stack slot.
2459   if (!FPDiff) return Chain;
2460   // Calculate the new stack slot for the return address.
2461   int NewReturnAddrFI =
2462     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2463                                          false);
2464   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2465   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2466                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2467                        false, false, 0);
2468   return Chain;
2469 }
2470
2471 SDValue
2472 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2473                              SmallVectorImpl<SDValue> &InVals) const {
2474   SelectionDAG &DAG                     = CLI.DAG;
2475   SDLoc &dl                             = CLI.DL;
2476   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2477   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2478   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2479   SDValue Chain                         = CLI.Chain;
2480   SDValue Callee                        = CLI.Callee;
2481   CallingConv::ID CallConv              = CLI.CallConv;
2482   bool &isTailCall                      = CLI.IsTailCall;
2483   bool isVarArg                         = CLI.IsVarArg;
2484
2485   MachineFunction &MF = DAG.getMachineFunction();
2486   bool Is64Bit        = Subtarget->is64Bit();
2487   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2488   bool IsWindows      = Subtarget->isTargetWindows();
2489   StructReturnType SR = callIsStructReturn(Outs);
2490   bool IsSibcall      = false;
2491
2492   if (MF.getTarget().Options.DisableTailCalls)
2493     isTailCall = false;
2494
2495   if (isTailCall) {
2496     // Check if it's really possible to do a tail call.
2497     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2498                     isVarArg, SR != NotStructReturn,
2499                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2500                     Outs, OutVals, Ins, DAG);
2501
2502     // Sibcalls are automatically detected tailcalls which do not require
2503     // ABI changes.
2504     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2505       IsSibcall = true;
2506
2507     if (isTailCall)
2508       ++NumTailCalls;
2509   }
2510
2511   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2512          "Var args not supported with calling convention fastcc, ghc or hipe");
2513
2514   // Analyze operands of the call, assigning locations to each operand.
2515   SmallVector<CCValAssign, 16> ArgLocs;
2516   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2517                  ArgLocs, *DAG.getContext());
2518
2519   // Allocate shadow area for Win64
2520   if (IsWin64)
2521     CCInfo.AllocateStack(32, 8);
2522
2523   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2524
2525   // Get a count of how many bytes are to be pushed on the stack.
2526   unsigned NumBytes = CCInfo.getNextStackOffset();
2527   if (IsSibcall)
2528     // This is a sibcall. The memory operands are available in caller's
2529     // own caller's stack.
2530     NumBytes = 0;
2531   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2532            IsTailCallConvention(CallConv))
2533     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2534
2535   int FPDiff = 0;
2536   if (isTailCall && !IsSibcall) {
2537     // Lower arguments at fp - stackoffset + fpdiff.
2538     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2539     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2540
2541     FPDiff = NumBytesCallerPushed - NumBytes;
2542
2543     // Set the delta of movement of the returnaddr stackslot.
2544     // But only set if delta is greater than previous delta.
2545     if (FPDiff < X86Info->getTCReturnAddrDelta())
2546       X86Info->setTCReturnAddrDelta(FPDiff);
2547   }
2548
2549   if (!IsSibcall)
2550     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2551                                  dl);
2552
2553   SDValue RetAddrFrIdx;
2554   // Load return address for tail calls.
2555   if (isTailCall && FPDiff)
2556     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2557                                     Is64Bit, FPDiff, dl);
2558
2559   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2560   SmallVector<SDValue, 8> MemOpChains;
2561   SDValue StackPtr;
2562
2563   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2564   // of tail call optimization arguments are handle later.
2565   const X86RegisterInfo *RegInfo =
2566     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2567   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2568     CCValAssign &VA = ArgLocs[i];
2569     EVT RegVT = VA.getLocVT();
2570     SDValue Arg = OutVals[i];
2571     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2572     bool isByVal = Flags.isByVal();
2573
2574     // Promote the value if needed.
2575     switch (VA.getLocInfo()) {
2576     default: llvm_unreachable("Unknown loc info!");
2577     case CCValAssign::Full: break;
2578     case CCValAssign::SExt:
2579       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2580       break;
2581     case CCValAssign::ZExt:
2582       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2583       break;
2584     case CCValAssign::AExt:
2585       if (RegVT.is128BitVector()) {
2586         // Special case: passing MMX values in XMM registers.
2587         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2588         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2589         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2590       } else
2591         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2592       break;
2593     case CCValAssign::BCvt:
2594       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2595       break;
2596     case CCValAssign::Indirect: {
2597       // Store the argument.
2598       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2599       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2600       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2601                            MachinePointerInfo::getFixedStack(FI),
2602                            false, false, 0);
2603       Arg = SpillSlot;
2604       break;
2605     }
2606     }
2607
2608     if (VA.isRegLoc()) {
2609       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2610       if (isVarArg && IsWin64) {
2611         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2612         // shadow reg if callee is a varargs function.
2613         unsigned ShadowReg = 0;
2614         switch (VA.getLocReg()) {
2615         case X86::XMM0: ShadowReg = X86::RCX; break;
2616         case X86::XMM1: ShadowReg = X86::RDX; break;
2617         case X86::XMM2: ShadowReg = X86::R8; break;
2618         case X86::XMM3: ShadowReg = X86::R9; break;
2619         }
2620         if (ShadowReg)
2621           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2622       }
2623     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2624       assert(VA.isMemLoc());
2625       if (StackPtr.getNode() == 0)
2626         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2627                                       getPointerTy());
2628       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2629                                              dl, DAG, VA, Flags));
2630     }
2631   }
2632
2633   if (!MemOpChains.empty())
2634     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2635                         &MemOpChains[0], MemOpChains.size());
2636
2637   if (Subtarget->isPICStyleGOT()) {
2638     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2639     // GOT pointer.
2640     if (!isTailCall) {
2641       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2642                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2643     } else {
2644       // If we are tail calling and generating PIC/GOT style code load the
2645       // address of the callee into ECX. The value in ecx is used as target of
2646       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2647       // for tail calls on PIC/GOT architectures. Normally we would just put the
2648       // address of GOT into ebx and then call target@PLT. But for tail calls
2649       // ebx would be restored (since ebx is callee saved) before jumping to the
2650       // target@PLT.
2651
2652       // Note: The actual moving to ECX is done further down.
2653       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2654       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2655           !G->getGlobal()->hasProtectedVisibility())
2656         Callee = LowerGlobalAddress(Callee, DAG);
2657       else if (isa<ExternalSymbolSDNode>(Callee))
2658         Callee = LowerExternalSymbol(Callee, DAG);
2659     }
2660   }
2661
2662   if (Is64Bit && isVarArg && !IsWin64) {
2663     // From AMD64 ABI document:
2664     // For calls that may call functions that use varargs or stdargs
2665     // (prototype-less calls or calls to functions containing ellipsis (...) in
2666     // the declaration) %al is used as hidden argument to specify the number
2667     // of SSE registers used. The contents of %al do not need to match exactly
2668     // the number of registers, but must be an ubound on the number of SSE
2669     // registers used and is in the range 0 - 8 inclusive.
2670
2671     // Count the number of XMM registers allocated.
2672     static const uint16_t XMMArgRegs[] = {
2673       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2674       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2675     };
2676     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2677     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2678            && "SSE registers cannot be used when SSE is disabled");
2679
2680     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2681                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2682   }
2683
2684   // For tail calls lower the arguments to the 'real' stack slot.
2685   if (isTailCall) {
2686     // Force all the incoming stack arguments to be loaded from the stack
2687     // before any new outgoing arguments are stored to the stack, because the
2688     // outgoing stack slots may alias the incoming argument stack slots, and
2689     // the alias isn't otherwise explicit. This is slightly more conservative
2690     // than necessary, because it means that each store effectively depends
2691     // on every argument instead of just those arguments it would clobber.
2692     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2693
2694     SmallVector<SDValue, 8> MemOpChains2;
2695     SDValue FIN;
2696     int FI = 0;
2697     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2698       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2699         CCValAssign &VA = ArgLocs[i];
2700         if (VA.isRegLoc())
2701           continue;
2702         assert(VA.isMemLoc());
2703         SDValue Arg = OutVals[i];
2704         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2705         // Create frame index.
2706         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2707         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2708         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2709         FIN = DAG.getFrameIndex(FI, getPointerTy());
2710
2711         if (Flags.isByVal()) {
2712           // Copy relative to framepointer.
2713           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2714           if (StackPtr.getNode() == 0)
2715             StackPtr = DAG.getCopyFromReg(Chain, dl,
2716                                           RegInfo->getStackRegister(),
2717                                           getPointerTy());
2718           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2719
2720           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2721                                                            ArgChain,
2722                                                            Flags, DAG, dl));
2723         } else {
2724           // Store relative to framepointer.
2725           MemOpChains2.push_back(
2726             DAG.getStore(ArgChain, dl, Arg, FIN,
2727                          MachinePointerInfo::getFixedStack(FI),
2728                          false, false, 0));
2729         }
2730       }
2731     }
2732
2733     if (!MemOpChains2.empty())
2734       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2735                           &MemOpChains2[0], MemOpChains2.size());
2736
2737     // Store the return address to the appropriate stack slot.
2738     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2739                                      getPointerTy(), RegInfo->getSlotSize(),
2740                                      FPDiff, dl);
2741   }
2742
2743   // Build a sequence of copy-to-reg nodes chained together with token chain
2744   // and flag operands which copy the outgoing args into registers.
2745   SDValue InFlag;
2746   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2747     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2748                              RegsToPass[i].second, InFlag);
2749     InFlag = Chain.getValue(1);
2750   }
2751
2752   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2753     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2754     // In the 64-bit large code model, we have to make all calls
2755     // through a register, since the call instruction's 32-bit
2756     // pc-relative offset may not be large enough to hold the whole
2757     // address.
2758   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2759     // If the callee is a GlobalAddress node (quite common, every direct call
2760     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2761     // it.
2762
2763     // We should use extra load for direct calls to dllimported functions in
2764     // non-JIT mode.
2765     const GlobalValue *GV = G->getGlobal();
2766     if (!GV->hasDLLImportLinkage()) {
2767       unsigned char OpFlags = 0;
2768       bool ExtraLoad = false;
2769       unsigned WrapperKind = ISD::DELETED_NODE;
2770
2771       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2772       // external symbols most go through the PLT in PIC mode.  If the symbol
2773       // has hidden or protected visibility, or if it is static or local, then
2774       // we don't need to use the PLT - we can directly call it.
2775       if (Subtarget->isTargetELF() &&
2776           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2777           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2778         OpFlags = X86II::MO_PLT;
2779       } else if (Subtarget->isPICStyleStubAny() &&
2780                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2781                  (!Subtarget->getTargetTriple().isMacOSX() ||
2782                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2783         // PC-relative references to external symbols should go through $stub,
2784         // unless we're building with the leopard linker or later, which
2785         // automatically synthesizes these stubs.
2786         OpFlags = X86II::MO_DARWIN_STUB;
2787       } else if (Subtarget->isPICStyleRIPRel() &&
2788                  isa<Function>(GV) &&
2789                  cast<Function>(GV)->getAttributes().
2790                    hasAttribute(AttributeSet::FunctionIndex,
2791                                 Attribute::NonLazyBind)) {
2792         // If the function is marked as non-lazy, generate an indirect call
2793         // which loads from the GOT directly. This avoids runtime overhead
2794         // at the cost of eager binding (and one extra byte of encoding).
2795         OpFlags = X86II::MO_GOTPCREL;
2796         WrapperKind = X86ISD::WrapperRIP;
2797         ExtraLoad = true;
2798       }
2799
2800       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2801                                           G->getOffset(), OpFlags);
2802
2803       // Add a wrapper if needed.
2804       if (WrapperKind != ISD::DELETED_NODE)
2805         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2806       // Add extra indirection if needed.
2807       if (ExtraLoad)
2808         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2809                              MachinePointerInfo::getGOT(),
2810                              false, false, false, 0);
2811     }
2812   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2813     unsigned char OpFlags = 0;
2814
2815     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2816     // external symbols should go through the PLT.
2817     if (Subtarget->isTargetELF() &&
2818         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2819       OpFlags = X86II::MO_PLT;
2820     } else if (Subtarget->isPICStyleStubAny() &&
2821                (!Subtarget->getTargetTriple().isMacOSX() ||
2822                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2823       // PC-relative references to external symbols should go through $stub,
2824       // unless we're building with the leopard linker or later, which
2825       // automatically synthesizes these stubs.
2826       OpFlags = X86II::MO_DARWIN_STUB;
2827     }
2828
2829     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2830                                          OpFlags);
2831   }
2832
2833   // Returns a chain & a flag for retval copy to use.
2834   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2835   SmallVector<SDValue, 8> Ops;
2836
2837   if (!IsSibcall && isTailCall) {
2838     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2839                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2840     InFlag = Chain.getValue(1);
2841   }
2842
2843   Ops.push_back(Chain);
2844   Ops.push_back(Callee);
2845
2846   if (isTailCall)
2847     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2848
2849   // Add argument registers to the end of the list so that they are known live
2850   // into the call.
2851   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2852     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2853                                   RegsToPass[i].second.getValueType()));
2854
2855   // Add a register mask operand representing the call-preserved registers.
2856   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2857   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2858   assert(Mask && "Missing call preserved mask for calling convention");
2859   Ops.push_back(DAG.getRegisterMask(Mask));
2860
2861   if (InFlag.getNode())
2862     Ops.push_back(InFlag);
2863
2864   if (isTailCall) {
2865     // We used to do:
2866     //// If this is the first return lowered for this function, add the regs
2867     //// to the liveout set for the function.
2868     // This isn't right, although it's probably harmless on x86; liveouts
2869     // should be computed from returns not tail calls.  Consider a void
2870     // function making a tail call to a function returning int.
2871     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2872   }
2873
2874   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2875   InFlag = Chain.getValue(1);
2876
2877   // Create the CALLSEQ_END node.
2878   unsigned NumBytesForCalleeToPush;
2879   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2880                        getTargetMachine().Options.GuaranteedTailCallOpt))
2881     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2882   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2883            SR == StackStructReturn)
2884     // If this is a call to a struct-return function, the callee
2885     // pops the hidden struct pointer, so we have to push it back.
2886     // This is common for Darwin/X86, Linux & Mingw32 targets.
2887     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2888     NumBytesForCalleeToPush = 4;
2889   else
2890     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2891
2892   // Returns a flag for retval copy to use.
2893   if (!IsSibcall) {
2894     Chain = DAG.getCALLSEQ_END(Chain,
2895                                DAG.getIntPtrConstant(NumBytes, true),
2896                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2897                                                      true),
2898                                InFlag, dl);
2899     InFlag = Chain.getValue(1);
2900   }
2901
2902   // Handle result values, copying them out of physregs into vregs that we
2903   // return.
2904   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2905                          Ins, dl, DAG, InVals);
2906 }
2907
2908 //===----------------------------------------------------------------------===//
2909 //                Fast Calling Convention (tail call) implementation
2910 //===----------------------------------------------------------------------===//
2911
2912 //  Like std call, callee cleans arguments, convention except that ECX is
2913 //  reserved for storing the tail called function address. Only 2 registers are
2914 //  free for argument passing (inreg). Tail call optimization is performed
2915 //  provided:
2916 //                * tailcallopt is enabled
2917 //                * caller/callee are fastcc
2918 //  On X86_64 architecture with GOT-style position independent code only local
2919 //  (within module) calls are supported at the moment.
2920 //  To keep the stack aligned according to platform abi the function
2921 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2922 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2923 //  If a tail called function callee has more arguments than the caller the
2924 //  caller needs to make sure that there is room to move the RETADDR to. This is
2925 //  achieved by reserving an area the size of the argument delta right after the
2926 //  original REtADDR, but before the saved framepointer or the spilled registers
2927 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2928 //  stack layout:
2929 //    arg1
2930 //    arg2
2931 //    RETADDR
2932 //    [ new RETADDR
2933 //      move area ]
2934 //    (possible EBP)
2935 //    ESI
2936 //    EDI
2937 //    local1 ..
2938
2939 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2940 /// for a 16 byte align requirement.
2941 unsigned
2942 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2943                                                SelectionDAG& DAG) const {
2944   MachineFunction &MF = DAG.getMachineFunction();
2945   const TargetMachine &TM = MF.getTarget();
2946   const X86RegisterInfo *RegInfo =
2947     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2948   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2949   unsigned StackAlignment = TFI.getStackAlignment();
2950   uint64_t AlignMask = StackAlignment - 1;
2951   int64_t Offset = StackSize;
2952   unsigned SlotSize = RegInfo->getSlotSize();
2953   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2954     // Number smaller than 12 so just add the difference.
2955     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2956   } else {
2957     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2958     Offset = ((~AlignMask) & Offset) + StackAlignment +
2959       (StackAlignment-SlotSize);
2960   }
2961   return Offset;
2962 }
2963
2964 /// MatchingStackOffset - Return true if the given stack call argument is
2965 /// already available in the same position (relatively) of the caller's
2966 /// incoming argument stack.
2967 static
2968 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2969                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2970                          const X86InstrInfo *TII) {
2971   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2972   int FI = INT_MAX;
2973   if (Arg.getOpcode() == ISD::CopyFromReg) {
2974     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2975     if (!TargetRegisterInfo::isVirtualRegister(VR))
2976       return false;
2977     MachineInstr *Def = MRI->getVRegDef(VR);
2978     if (!Def)
2979       return false;
2980     if (!Flags.isByVal()) {
2981       if (!TII->isLoadFromStackSlot(Def, FI))
2982         return false;
2983     } else {
2984       unsigned Opcode = Def->getOpcode();
2985       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2986           Def->getOperand(1).isFI()) {
2987         FI = Def->getOperand(1).getIndex();
2988         Bytes = Flags.getByValSize();
2989       } else
2990         return false;
2991     }
2992   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2993     if (Flags.isByVal())
2994       // ByVal argument is passed in as a pointer but it's now being
2995       // dereferenced. e.g.
2996       // define @foo(%struct.X* %A) {
2997       //   tail call @bar(%struct.X* byval %A)
2998       // }
2999       return false;
3000     SDValue Ptr = Ld->getBasePtr();
3001     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3002     if (!FINode)
3003       return false;
3004     FI = FINode->getIndex();
3005   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3006     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3007     FI = FINode->getIndex();
3008     Bytes = Flags.getByValSize();
3009   } else
3010     return false;
3011
3012   assert(FI != INT_MAX);
3013   if (!MFI->isFixedObjectIndex(FI))
3014     return false;
3015   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3016 }
3017
3018 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3019 /// for tail call optimization. Targets which want to do tail call
3020 /// optimization should implement this function.
3021 bool
3022 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3023                                                      CallingConv::ID CalleeCC,
3024                                                      bool isVarArg,
3025                                                      bool isCalleeStructRet,
3026                                                      bool isCallerStructRet,
3027                                                      Type *RetTy,
3028                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3029                                     const SmallVectorImpl<SDValue> &OutVals,
3030                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3031                                                      SelectionDAG &DAG) const {
3032   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3033     return false;
3034
3035   // If -tailcallopt is specified, make fastcc functions tail-callable.
3036   const MachineFunction &MF = DAG.getMachineFunction();
3037   const Function *CallerF = MF.getFunction();
3038
3039   // If the function return type is x86_fp80 and the callee return type is not,
3040   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3041   // perform a tailcall optimization here.
3042   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3043     return false;
3044
3045   CallingConv::ID CallerCC = CallerF->getCallingConv();
3046   bool CCMatch = CallerCC == CalleeCC;
3047   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3048   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3049
3050   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3051     if (IsTailCallConvention(CalleeCC) && CCMatch)
3052       return true;
3053     return false;
3054   }
3055
3056   // Look for obvious safe cases to perform tail call optimization that do not
3057   // require ABI changes. This is what gcc calls sibcall.
3058
3059   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3060   // emit a special epilogue.
3061   const X86RegisterInfo *RegInfo =
3062     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3063   if (RegInfo->needsStackRealignment(MF))
3064     return false;
3065
3066   // Also avoid sibcall optimization if either caller or callee uses struct
3067   // return semantics.
3068   if (isCalleeStructRet || isCallerStructRet)
3069     return false;
3070
3071   // An stdcall caller is expected to clean up its arguments; the callee
3072   // isn't going to do that.
3073   if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
3074     return false;
3075
3076   // Do not sibcall optimize vararg calls unless all arguments are passed via
3077   // registers.
3078   if (isVarArg && !Outs.empty()) {
3079
3080     // Optimizing for varargs on Win64 is unlikely to be safe without
3081     // additional testing.
3082     if (IsCalleeWin64 || IsCallerWin64)
3083       return false;
3084
3085     SmallVector<CCValAssign, 16> ArgLocs;
3086     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3087                    getTargetMachine(), ArgLocs, *DAG.getContext());
3088
3089     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3090     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3091       if (!ArgLocs[i].isRegLoc())
3092         return false;
3093   }
3094
3095   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3096   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3097   // this into a sibcall.
3098   bool Unused = false;
3099   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3100     if (!Ins[i].Used) {
3101       Unused = true;
3102       break;
3103     }
3104   }
3105   if (Unused) {
3106     SmallVector<CCValAssign, 16> RVLocs;
3107     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3108                    getTargetMachine(), RVLocs, *DAG.getContext());
3109     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3110     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3111       CCValAssign &VA = RVLocs[i];
3112       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3113         return false;
3114     }
3115   }
3116
3117   // If the calling conventions do not match, then we'd better make sure the
3118   // results are returned in the same way as what the caller expects.
3119   if (!CCMatch) {
3120     SmallVector<CCValAssign, 16> RVLocs1;
3121     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3122                     getTargetMachine(), RVLocs1, *DAG.getContext());
3123     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3124
3125     SmallVector<CCValAssign, 16> RVLocs2;
3126     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3127                     getTargetMachine(), RVLocs2, *DAG.getContext());
3128     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3129
3130     if (RVLocs1.size() != RVLocs2.size())
3131       return false;
3132     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3133       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3134         return false;
3135       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3136         return false;
3137       if (RVLocs1[i].isRegLoc()) {
3138         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3139           return false;
3140       } else {
3141         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3142           return false;
3143       }
3144     }
3145   }
3146
3147   // If the callee takes no arguments then go on to check the results of the
3148   // call.
3149   if (!Outs.empty()) {
3150     // Check if stack adjustment is needed. For now, do not do this if any
3151     // argument is passed on the stack.
3152     SmallVector<CCValAssign, 16> ArgLocs;
3153     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3154                    getTargetMachine(), ArgLocs, *DAG.getContext());
3155
3156     // Allocate shadow area for Win64
3157     if (IsCalleeWin64)
3158       CCInfo.AllocateStack(32, 8);
3159
3160     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3161     if (CCInfo.getNextStackOffset()) {
3162       MachineFunction &MF = DAG.getMachineFunction();
3163       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3164         return false;
3165
3166       // Check if the arguments are already laid out in the right way as
3167       // the caller's fixed stack objects.
3168       MachineFrameInfo *MFI = MF.getFrameInfo();
3169       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3170       const X86InstrInfo *TII =
3171         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3172       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3173         CCValAssign &VA = ArgLocs[i];
3174         SDValue Arg = OutVals[i];
3175         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3176         if (VA.getLocInfo() == CCValAssign::Indirect)
3177           return false;
3178         if (!VA.isRegLoc()) {
3179           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3180                                    MFI, MRI, TII))
3181             return false;
3182         }
3183       }
3184     }
3185
3186     // If the tailcall address may be in a register, then make sure it's
3187     // possible to register allocate for it. In 32-bit, the call address can
3188     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3189     // callee-saved registers are restored. These happen to be the same
3190     // registers used to pass 'inreg' arguments so watch out for those.
3191     if (!Subtarget->is64Bit() &&
3192         ((!isa<GlobalAddressSDNode>(Callee) &&
3193           !isa<ExternalSymbolSDNode>(Callee)) ||
3194          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3195       unsigned NumInRegs = 0;
3196       // In PIC we need an extra register to formulate the address computation
3197       // for the callee.
3198       unsigned MaxInRegs =
3199           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3200
3201       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3202         CCValAssign &VA = ArgLocs[i];
3203         if (!VA.isRegLoc())
3204           continue;
3205         unsigned Reg = VA.getLocReg();
3206         switch (Reg) {
3207         default: break;
3208         case X86::EAX: case X86::EDX: case X86::ECX:
3209           if (++NumInRegs == MaxInRegs)
3210             return false;
3211           break;
3212         }
3213       }
3214     }
3215   }
3216
3217   return true;
3218 }
3219
3220 FastISel *
3221 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3222                                   const TargetLibraryInfo *libInfo) const {
3223   return X86::createFastISel(funcInfo, libInfo);
3224 }
3225
3226 //===----------------------------------------------------------------------===//
3227 //                           Other Lowering Hooks
3228 //===----------------------------------------------------------------------===//
3229
3230 static bool MayFoldLoad(SDValue Op) {
3231   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3232 }
3233
3234 static bool MayFoldIntoStore(SDValue Op) {
3235   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3236 }
3237
3238 static bool isTargetShuffle(unsigned Opcode) {
3239   switch(Opcode) {
3240   default: return false;
3241   case X86ISD::PSHUFD:
3242   case X86ISD::PSHUFHW:
3243   case X86ISD::PSHUFLW:
3244   case X86ISD::SHUFP:
3245   case X86ISD::PALIGNR:
3246   case X86ISD::MOVLHPS:
3247   case X86ISD::MOVLHPD:
3248   case X86ISD::MOVHLPS:
3249   case X86ISD::MOVLPS:
3250   case X86ISD::MOVLPD:
3251   case X86ISD::MOVSHDUP:
3252   case X86ISD::MOVSLDUP:
3253   case X86ISD::MOVDDUP:
3254   case X86ISD::MOVSS:
3255   case X86ISD::MOVSD:
3256   case X86ISD::UNPCKL:
3257   case X86ISD::UNPCKH:
3258   case X86ISD::VPERMILP:
3259   case X86ISD::VPERM2X128:
3260   case X86ISD::VPERMI:
3261     return true;
3262   }
3263 }
3264
3265 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3266                                     SDValue V1, SelectionDAG &DAG) {
3267   switch(Opc) {
3268   default: llvm_unreachable("Unknown x86 shuffle node");
3269   case X86ISD::MOVSHDUP:
3270   case X86ISD::MOVSLDUP:
3271   case X86ISD::MOVDDUP:
3272     return DAG.getNode(Opc, dl, VT, V1);
3273   }
3274 }
3275
3276 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3277                                     SDValue V1, unsigned TargetMask,
3278                                     SelectionDAG &DAG) {
3279   switch(Opc) {
3280   default: llvm_unreachable("Unknown x86 shuffle node");
3281   case X86ISD::PSHUFD:
3282   case X86ISD::PSHUFHW:
3283   case X86ISD::PSHUFLW:
3284   case X86ISD::VPERMILP:
3285   case X86ISD::VPERMI:
3286     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3287   }
3288 }
3289
3290 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3291                                     SDValue V1, SDValue V2, unsigned TargetMask,
3292                                     SelectionDAG &DAG) {
3293   switch(Opc) {
3294   default: llvm_unreachable("Unknown x86 shuffle node");
3295   case X86ISD::PALIGNR:
3296   case X86ISD::SHUFP:
3297   case X86ISD::VPERM2X128:
3298     return DAG.getNode(Opc, dl, VT, V1, V2,
3299                        DAG.getConstant(TargetMask, MVT::i8));
3300   }
3301 }
3302
3303 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3304                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3305   switch(Opc) {
3306   default: llvm_unreachable("Unknown x86 shuffle node");
3307   case X86ISD::MOVLHPS:
3308   case X86ISD::MOVLHPD:
3309   case X86ISD::MOVHLPS:
3310   case X86ISD::MOVLPS:
3311   case X86ISD::MOVLPD:
3312   case X86ISD::MOVSS:
3313   case X86ISD::MOVSD:
3314   case X86ISD::UNPCKL:
3315   case X86ISD::UNPCKH:
3316     return DAG.getNode(Opc, dl, VT, V1, V2);
3317   }
3318 }
3319
3320 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3321   MachineFunction &MF = DAG.getMachineFunction();
3322   const X86RegisterInfo *RegInfo =
3323     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3324   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3325   int ReturnAddrIndex = FuncInfo->getRAIndex();
3326
3327   if (ReturnAddrIndex == 0) {
3328     // Set up a frame object for the return address.
3329     unsigned SlotSize = RegInfo->getSlotSize();
3330     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3331                                                            -(int64_t)SlotSize,
3332                                                            false);
3333     FuncInfo->setRAIndex(ReturnAddrIndex);
3334   }
3335
3336   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3337 }
3338
3339 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3340                                        bool hasSymbolicDisplacement) {
3341   // Offset should fit into 32 bit immediate field.
3342   if (!isInt<32>(Offset))
3343     return false;
3344
3345   // If we don't have a symbolic displacement - we don't have any extra
3346   // restrictions.
3347   if (!hasSymbolicDisplacement)
3348     return true;
3349
3350   // FIXME: Some tweaks might be needed for medium code model.
3351   if (M != CodeModel::Small && M != CodeModel::Kernel)
3352     return false;
3353
3354   // For small code model we assume that latest object is 16MB before end of 31
3355   // bits boundary. We may also accept pretty large negative constants knowing
3356   // that all objects are in the positive half of address space.
3357   if (M == CodeModel::Small && Offset < 16*1024*1024)
3358     return true;
3359
3360   // For kernel code model we know that all object resist in the negative half
3361   // of 32bits address space. We may not accept negative offsets, since they may
3362   // be just off and we may accept pretty large positive ones.
3363   if (M == CodeModel::Kernel && Offset > 0)
3364     return true;
3365
3366   return false;
3367 }
3368
3369 /// isCalleePop - Determines whether the callee is required to pop its
3370 /// own arguments. Callee pop is necessary to support tail calls.
3371 bool X86::isCalleePop(CallingConv::ID CallingConv,
3372                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3373   if (IsVarArg)
3374     return false;
3375
3376   switch (CallingConv) {
3377   default:
3378     return false;
3379   case CallingConv::X86_StdCall:
3380     return !is64Bit;
3381   case CallingConv::X86_FastCall:
3382     return !is64Bit;
3383   case CallingConv::X86_ThisCall:
3384     return !is64Bit;
3385   case CallingConv::Fast:
3386     return TailCallOpt;
3387   case CallingConv::GHC:
3388     return TailCallOpt;
3389   case CallingConv::HiPE:
3390     return TailCallOpt;
3391   }
3392 }
3393
3394 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3395 /// specific condition code, returning the condition code and the LHS/RHS of the
3396 /// comparison to make.
3397 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3398                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3399   if (!isFP) {
3400     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3401       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3402         // X > -1   -> X == 0, jump !sign.
3403         RHS = DAG.getConstant(0, RHS.getValueType());
3404         return X86::COND_NS;
3405       }
3406       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3407         // X < 0   -> X == 0, jump on sign.
3408         return X86::COND_S;
3409       }
3410       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3411         // X < 1   -> X <= 0
3412         RHS = DAG.getConstant(0, RHS.getValueType());
3413         return X86::COND_LE;
3414       }
3415     }
3416
3417     switch (SetCCOpcode) {
3418     default: llvm_unreachable("Invalid integer condition!");
3419     case ISD::SETEQ:  return X86::COND_E;
3420     case ISD::SETGT:  return X86::COND_G;
3421     case ISD::SETGE:  return X86::COND_GE;
3422     case ISD::SETLT:  return X86::COND_L;
3423     case ISD::SETLE:  return X86::COND_LE;
3424     case ISD::SETNE:  return X86::COND_NE;
3425     case ISD::SETULT: return X86::COND_B;
3426     case ISD::SETUGT: return X86::COND_A;
3427     case ISD::SETULE: return X86::COND_BE;
3428     case ISD::SETUGE: return X86::COND_AE;
3429     }
3430   }
3431
3432   // First determine if it is required or is profitable to flip the operands.
3433
3434   // If LHS is a foldable load, but RHS is not, flip the condition.
3435   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3436       !ISD::isNON_EXTLoad(RHS.getNode())) {
3437     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3438     std::swap(LHS, RHS);
3439   }
3440
3441   switch (SetCCOpcode) {
3442   default: break;
3443   case ISD::SETOLT:
3444   case ISD::SETOLE:
3445   case ISD::SETUGT:
3446   case ISD::SETUGE:
3447     std::swap(LHS, RHS);
3448     break;
3449   }
3450
3451   // On a floating point condition, the flags are set as follows:
3452   // ZF  PF  CF   op
3453   //  0 | 0 | 0 | X > Y
3454   //  0 | 0 | 1 | X < Y
3455   //  1 | 0 | 0 | X == Y
3456   //  1 | 1 | 1 | unordered
3457   switch (SetCCOpcode) {
3458   default: llvm_unreachable("Condcode should be pre-legalized away");
3459   case ISD::SETUEQ:
3460   case ISD::SETEQ:   return X86::COND_E;
3461   case ISD::SETOLT:              // flipped
3462   case ISD::SETOGT:
3463   case ISD::SETGT:   return X86::COND_A;
3464   case ISD::SETOLE:              // flipped
3465   case ISD::SETOGE:
3466   case ISD::SETGE:   return X86::COND_AE;
3467   case ISD::SETUGT:              // flipped
3468   case ISD::SETULT:
3469   case ISD::SETLT:   return X86::COND_B;
3470   case ISD::SETUGE:              // flipped
3471   case ISD::SETULE:
3472   case ISD::SETLE:   return X86::COND_BE;
3473   case ISD::SETONE:
3474   case ISD::SETNE:   return X86::COND_NE;
3475   case ISD::SETUO:   return X86::COND_P;
3476   case ISD::SETO:    return X86::COND_NP;
3477   case ISD::SETOEQ:
3478   case ISD::SETUNE:  return X86::COND_INVALID;
3479   }
3480 }
3481
3482 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3483 /// code. Current x86 isa includes the following FP cmov instructions:
3484 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3485 static bool hasFPCMov(unsigned X86CC) {
3486   switch (X86CC) {
3487   default:
3488     return false;
3489   case X86::COND_B:
3490   case X86::COND_BE:
3491   case X86::COND_E:
3492   case X86::COND_P:
3493   case X86::COND_A:
3494   case X86::COND_AE:
3495   case X86::COND_NE:
3496   case X86::COND_NP:
3497     return true;
3498   }
3499 }
3500
3501 /// isFPImmLegal - Returns true if the target can instruction select the
3502 /// specified FP immediate natively. If false, the legalizer will
3503 /// materialize the FP immediate as a load from a constant pool.
3504 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3505   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3506     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3507       return true;
3508   }
3509   return false;
3510 }
3511
3512 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3513 /// the specified range (L, H].
3514 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3515   return (Val < 0) || (Val >= Low && Val < Hi);
3516 }
3517
3518 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3519 /// specified value.
3520 static bool isUndefOrEqual(int Val, int CmpVal) {
3521   return (Val < 0 || Val == CmpVal);
3522 }
3523
3524 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3525 /// from position Pos and ending in Pos+Size, falls within the specified
3526 /// sequential range (L, L+Pos]. or is undef.
3527 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3528                                        unsigned Pos, unsigned Size, int Low) {
3529   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3530     if (!isUndefOrEqual(Mask[i], Low))
3531       return false;
3532   return true;
3533 }
3534
3535 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3536 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3537 /// the second operand.
3538 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3539   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3540     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3541   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3542     return (Mask[0] < 2 && Mask[1] < 2);
3543   return false;
3544 }
3545
3546 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3547 /// is suitable for input to PSHUFHW.
3548 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3549   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3550     return false;
3551
3552   // Lower quadword copied in order or undef.
3553   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3554     return false;
3555
3556   // Upper quadword shuffled.
3557   for (unsigned i = 4; i != 8; ++i)
3558     if (!isUndefOrInRange(Mask[i], 4, 8))
3559       return false;
3560
3561   if (VT == MVT::v16i16) {
3562     // Lower quadword copied in order or undef.
3563     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3564       return false;
3565
3566     // Upper quadword shuffled.
3567     for (unsigned i = 12; i != 16; ++i)
3568       if (!isUndefOrInRange(Mask[i], 12, 16))
3569         return false;
3570   }
3571
3572   return true;
3573 }
3574
3575 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3576 /// is suitable for input to PSHUFLW.
3577 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3578   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3579     return false;
3580
3581   // Upper quadword copied in order.
3582   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3583     return false;
3584
3585   // Lower quadword shuffled.
3586   for (unsigned i = 0; i != 4; ++i)
3587     if (!isUndefOrInRange(Mask[i], 0, 4))
3588       return false;
3589
3590   if (VT == MVT::v16i16) {
3591     // Upper quadword copied in order.
3592     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3593       return false;
3594
3595     // Lower quadword shuffled.
3596     for (unsigned i = 8; i != 12; ++i)
3597       if (!isUndefOrInRange(Mask[i], 8, 12))
3598         return false;
3599   }
3600
3601   return true;
3602 }
3603
3604 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3605 /// is suitable for input to PALIGNR.
3606 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3607                           const X86Subtarget *Subtarget) {
3608   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3609       (VT.is256BitVector() && !Subtarget->hasInt256()))
3610     return false;
3611
3612   unsigned NumElts = VT.getVectorNumElements();
3613   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3614   unsigned NumLaneElts = NumElts/NumLanes;
3615
3616   // Do not handle 64-bit element shuffles with palignr.
3617   if (NumLaneElts == 2)
3618     return false;
3619
3620   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3621     unsigned i;
3622     for (i = 0; i != NumLaneElts; ++i) {
3623       if (Mask[i+l] >= 0)
3624         break;
3625     }
3626
3627     // Lane is all undef, go to next lane
3628     if (i == NumLaneElts)
3629       continue;
3630
3631     int Start = Mask[i+l];
3632
3633     // Make sure its in this lane in one of the sources
3634     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3635         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3636       return false;
3637
3638     // If not lane 0, then we must match lane 0
3639     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3640       return false;
3641
3642     // Correct second source to be contiguous with first source
3643     if (Start >= (int)NumElts)
3644       Start -= NumElts - NumLaneElts;
3645
3646     // Make sure we're shifting in the right direction.
3647     if (Start <= (int)(i+l))
3648       return false;
3649
3650     Start -= i;
3651
3652     // Check the rest of the elements to see if they are consecutive.
3653     for (++i; i != NumLaneElts; ++i) {
3654       int Idx = Mask[i+l];
3655
3656       // Make sure its in this lane
3657       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3658           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3659         return false;
3660
3661       // If not lane 0, then we must match lane 0
3662       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3663         return false;
3664
3665       if (Idx >= (int)NumElts)
3666         Idx -= NumElts - NumLaneElts;
3667
3668       if (!isUndefOrEqual(Idx, Start+i))
3669         return false;
3670
3671     }
3672   }
3673
3674   return true;
3675 }
3676
3677 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3678 /// the two vector operands have swapped position.
3679 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3680                                      unsigned NumElems) {
3681   for (unsigned i = 0; i != NumElems; ++i) {
3682     int idx = Mask[i];
3683     if (idx < 0)
3684       continue;
3685     else if (idx < (int)NumElems)
3686       Mask[i] = idx + NumElems;
3687     else
3688       Mask[i] = idx - NumElems;
3689   }
3690 }
3691
3692 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3693 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3694 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3695 /// reverse of what x86 shuffles want.
3696 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3697
3698   unsigned NumElems = VT.getVectorNumElements();
3699   unsigned NumLanes = VT.getSizeInBits()/128;
3700   unsigned NumLaneElems = NumElems/NumLanes;
3701
3702   if (NumLaneElems != 2 && NumLaneElems != 4)
3703     return false;
3704
3705   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3706   bool symetricMaskRequired =
3707     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3708
3709   // VSHUFPSY divides the resulting vector into 4 chunks.
3710   // The sources are also splitted into 4 chunks, and each destination
3711   // chunk must come from a different source chunk.
3712   //
3713   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3714   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3715   //
3716   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3717   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3718   //
3719   // VSHUFPDY divides the resulting vector into 4 chunks.
3720   // The sources are also splitted into 4 chunks, and each destination
3721   // chunk must come from a different source chunk.
3722   //
3723   //  SRC1 =>      X3       X2       X1       X0
3724   //  SRC2 =>      Y3       Y2       Y1       Y0
3725   //
3726   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3727   //
3728   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3729   unsigned HalfLaneElems = NumLaneElems/2;
3730   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3731     for (unsigned i = 0; i != NumLaneElems; ++i) {
3732       int Idx = Mask[i+l];
3733       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3734       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3735         return false;
3736       // For VSHUFPSY, the mask of the second half must be the same as the
3737       // first but with the appropriate offsets. This works in the same way as
3738       // VPERMILPS works with masks.
3739       if (!symetricMaskRequired || Idx < 0)
3740         continue;
3741       if (MaskVal[i] < 0) {
3742         MaskVal[i] = Idx - l;
3743         continue;
3744       }
3745       if ((signed)(Idx - l) != MaskVal[i])
3746         return false;
3747     }
3748   }
3749
3750   return true;
3751 }
3752
3753 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3754 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3755 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3756   if (!VT.is128BitVector())
3757     return false;
3758
3759   unsigned NumElems = VT.getVectorNumElements();
3760
3761   if (NumElems != 4)
3762     return false;
3763
3764   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3765   return isUndefOrEqual(Mask[0], 6) &&
3766          isUndefOrEqual(Mask[1], 7) &&
3767          isUndefOrEqual(Mask[2], 2) &&
3768          isUndefOrEqual(Mask[3], 3);
3769 }
3770
3771 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3772 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3773 /// <2, 3, 2, 3>
3774 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3775   if (!VT.is128BitVector())
3776     return false;
3777
3778   unsigned NumElems = VT.getVectorNumElements();
3779
3780   if (NumElems != 4)
3781     return false;
3782
3783   return isUndefOrEqual(Mask[0], 2) &&
3784          isUndefOrEqual(Mask[1], 3) &&
3785          isUndefOrEqual(Mask[2], 2) &&
3786          isUndefOrEqual(Mask[3], 3);
3787 }
3788
3789 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3790 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3791 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3792   if (!VT.is128BitVector())
3793     return false;
3794
3795   unsigned NumElems = VT.getVectorNumElements();
3796
3797   if (NumElems != 2 && NumElems != 4)
3798     return false;
3799
3800   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3801     if (!isUndefOrEqual(Mask[i], i + NumElems))
3802       return false;
3803
3804   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3805     if (!isUndefOrEqual(Mask[i], i))
3806       return false;
3807
3808   return true;
3809 }
3810
3811 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3812 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3813 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3814   if (!VT.is128BitVector())
3815     return false;
3816
3817   unsigned NumElems = VT.getVectorNumElements();
3818
3819   if (NumElems != 2 && NumElems != 4)
3820     return false;
3821
3822   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3823     if (!isUndefOrEqual(Mask[i], i))
3824       return false;
3825
3826   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3827     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3828       return false;
3829
3830   return true;
3831 }
3832
3833 //
3834 // Some special combinations that can be optimized.
3835 //
3836 static
3837 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3838                                SelectionDAG &DAG) {
3839   MVT VT = SVOp->getSimpleValueType(0);
3840   SDLoc dl(SVOp);
3841
3842   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3843     return SDValue();
3844
3845   ArrayRef<int> Mask = SVOp->getMask();
3846
3847   // These are the special masks that may be optimized.
3848   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3849   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3850   bool MatchEvenMask = true;
3851   bool MatchOddMask  = true;
3852   for (int i=0; i<8; ++i) {
3853     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3854       MatchEvenMask = false;
3855     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3856       MatchOddMask = false;
3857   }
3858
3859   if (!MatchEvenMask && !MatchOddMask)
3860     return SDValue();
3861
3862   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3863
3864   SDValue Op0 = SVOp->getOperand(0);
3865   SDValue Op1 = SVOp->getOperand(1);
3866
3867   if (MatchEvenMask) {
3868     // Shift the second operand right to 32 bits.
3869     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3870     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3871   } else {
3872     // Shift the first operand left to 32 bits.
3873     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3874     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3875   }
3876   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3877   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3878 }
3879
3880 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3881 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3882 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3883                          bool HasInt256, bool V2IsSplat = false) {
3884
3885   assert(VT.getSizeInBits() >= 128 &&
3886          "Unsupported vector type for unpckl");
3887
3888   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3889   unsigned NumLanes;
3890   unsigned NumOf256BitLanes;
3891   unsigned NumElts = VT.getVectorNumElements();
3892   if (VT.is256BitVector()) {
3893     if (NumElts != 4 && NumElts != 8 &&
3894         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3895     return false;
3896     NumLanes = 2;
3897     NumOf256BitLanes = 1;
3898   } else if (VT.is512BitVector()) {
3899     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3900            "Unsupported vector type for unpckh");
3901     NumLanes = 2;
3902     NumOf256BitLanes = 2;
3903   } else {
3904     NumLanes = 1;
3905     NumOf256BitLanes = 1;
3906   }
3907
3908   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3909   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3910
3911   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3912     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3913       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3914         int BitI  = Mask[l256*NumEltsInStride+l+i];
3915         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3916         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3917           return false;
3918         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3919           return false;
3920         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3921           return false;
3922       }
3923     }
3924   }
3925   return true;
3926 }
3927
3928 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3929 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3930 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3931                          bool HasInt256, bool V2IsSplat = false) {
3932   assert(VT.getSizeInBits() >= 128 &&
3933          "Unsupported vector type for unpckh");
3934
3935   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3936   unsigned NumLanes;
3937   unsigned NumOf256BitLanes;
3938   unsigned NumElts = VT.getVectorNumElements();
3939   if (VT.is256BitVector()) {
3940     if (NumElts != 4 && NumElts != 8 &&
3941         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3942     return false;
3943     NumLanes = 2;
3944     NumOf256BitLanes = 1;
3945   } else if (VT.is512BitVector()) {
3946     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3947            "Unsupported vector type for unpckh");
3948     NumLanes = 2;
3949     NumOf256BitLanes = 2;
3950   } else {
3951     NumLanes = 1;
3952     NumOf256BitLanes = 1;
3953   }
3954
3955   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3956   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3957
3958   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3959     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3960       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3961         int BitI  = Mask[l256*NumEltsInStride+l+i];
3962         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3963         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3964           return false;
3965         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3966           return false;
3967         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3968           return false;
3969       }
3970     }
3971   }
3972   return true;
3973 }
3974
3975 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3976 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3977 /// <0, 0, 1, 1>
3978 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3979   unsigned NumElts = VT.getVectorNumElements();
3980   bool Is256BitVec = VT.is256BitVector();
3981
3982   if (VT.is512BitVector())
3983     return false;
3984   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3985          "Unsupported vector type for unpckh");
3986
3987   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
3988       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3989     return false;
3990
3991   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3992   // FIXME: Need a better way to get rid of this, there's no latency difference
3993   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3994   // the former later. We should also remove the "_undef" special mask.
3995   if (NumElts == 4 && Is256BitVec)
3996     return false;
3997
3998   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3999   // independently on 128-bit lanes.
4000   unsigned NumLanes = VT.getSizeInBits()/128;
4001   unsigned NumLaneElts = NumElts/NumLanes;
4002
4003   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4004     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4005       int BitI  = Mask[l+i];
4006       int BitI1 = Mask[l+i+1];
4007
4008       if (!isUndefOrEqual(BitI, j))
4009         return false;
4010       if (!isUndefOrEqual(BitI1, j))
4011         return false;
4012     }
4013   }
4014
4015   return true;
4016 }
4017
4018 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4019 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4020 /// <2, 2, 3, 3>
4021 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4022   unsigned NumElts = VT.getVectorNumElements();
4023
4024   if (VT.is512BitVector())
4025     return false;
4026
4027   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4028          "Unsupported vector type for unpckh");
4029
4030   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4031       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4032     return false;
4033
4034   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4035   // independently on 128-bit lanes.
4036   unsigned NumLanes = VT.getSizeInBits()/128;
4037   unsigned NumLaneElts = NumElts/NumLanes;
4038
4039   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4040     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4041       int BitI  = Mask[l+i];
4042       int BitI1 = Mask[l+i+1];
4043       if (!isUndefOrEqual(BitI, j))
4044         return false;
4045       if (!isUndefOrEqual(BitI1, j))
4046         return false;
4047     }
4048   }
4049   return true;
4050 }
4051
4052 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4053 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4054 /// MOVSD, and MOVD, i.e. setting the lowest element.
4055 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4056   if (VT.getVectorElementType().getSizeInBits() < 32)
4057     return false;
4058   if (!VT.is128BitVector())
4059     return false;
4060
4061   unsigned NumElts = VT.getVectorNumElements();
4062
4063   if (!isUndefOrEqual(Mask[0], NumElts))
4064     return false;
4065
4066   for (unsigned i = 1; i != NumElts; ++i)
4067     if (!isUndefOrEqual(Mask[i], i))
4068       return false;
4069
4070   return true;
4071 }
4072
4073 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4074 /// as permutations between 128-bit chunks or halves. As an example: this
4075 /// shuffle bellow:
4076 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4077 /// The first half comes from the second half of V1 and the second half from the
4078 /// the second half of V2.
4079 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4080   if (!HasFp256 || !VT.is256BitVector())
4081     return false;
4082
4083   // The shuffle result is divided into half A and half B. In total the two
4084   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4085   // B must come from C, D, E or F.
4086   unsigned HalfSize = VT.getVectorNumElements()/2;
4087   bool MatchA = false, MatchB = false;
4088
4089   // Check if A comes from one of C, D, E, F.
4090   for (unsigned Half = 0; Half != 4; ++Half) {
4091     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4092       MatchA = true;
4093       break;
4094     }
4095   }
4096
4097   // Check if B comes from one of C, D, E, F.
4098   for (unsigned Half = 0; Half != 4; ++Half) {
4099     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4100       MatchB = true;
4101       break;
4102     }
4103   }
4104
4105   return MatchA && MatchB;
4106 }
4107
4108 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4109 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4110 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4111   MVT VT = SVOp->getSimpleValueType(0);
4112
4113   unsigned HalfSize = VT.getVectorNumElements()/2;
4114
4115   unsigned FstHalf = 0, SndHalf = 0;
4116   for (unsigned i = 0; i < HalfSize; ++i) {
4117     if (SVOp->getMaskElt(i) > 0) {
4118       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4119       break;
4120     }
4121   }
4122   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4123     if (SVOp->getMaskElt(i) > 0) {
4124       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4125       break;
4126     }
4127   }
4128
4129   return (FstHalf | (SndHalf << 4));
4130 }
4131
4132 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4133 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4134   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4135   if (EltSize < 32)
4136     return false;
4137
4138   unsigned NumElts = VT.getVectorNumElements();
4139   Imm8 = 0;
4140   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4141     for (unsigned i = 0; i != NumElts; ++i) {
4142       if (Mask[i] < 0)
4143         continue;
4144       Imm8 |= Mask[i] << (i*2);
4145     }
4146     return true;
4147   }
4148
4149   unsigned LaneSize = 4;
4150   SmallVector<int, 4> MaskVal(LaneSize, -1);
4151
4152   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4153     for (unsigned i = 0; i != LaneSize; ++i) {
4154       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4155         return false;
4156       if (Mask[i+l] < 0)
4157         continue;
4158       if (MaskVal[i] < 0) {
4159         MaskVal[i] = Mask[i+l] - l;
4160         Imm8 |= MaskVal[i] << (i*2);
4161         continue;
4162       }
4163       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4164         return false;
4165     }
4166   }
4167   return true;
4168 }
4169
4170 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4171 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4172 /// Note that VPERMIL mask matching is different depending whether theunderlying
4173 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4174 /// to the same elements of the low, but to the higher half of the source.
4175 /// In VPERMILPD the two lanes could be shuffled independently of each other
4176 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4177 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4178   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4179   if (VT.getSizeInBits() < 256 || EltSize < 32)
4180     return false;
4181   bool symetricMaskRequired = (EltSize == 32);
4182   unsigned NumElts = VT.getVectorNumElements();
4183
4184   unsigned NumLanes = VT.getSizeInBits()/128;
4185   unsigned LaneSize = NumElts/NumLanes;
4186   // 2 or 4 elements in one lane
4187   
4188   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4189   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4190     for (unsigned i = 0; i != LaneSize; ++i) {
4191       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4192         return false;
4193       if (symetricMaskRequired) {
4194         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4195           ExpectedMaskVal[i] = Mask[i+l] - l;
4196           continue;
4197         }
4198         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4199           return false;
4200       }
4201     }
4202   }
4203   return true;
4204 }
4205
4206 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4207 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4208 /// element of vector 2 and the other elements to come from vector 1 in order.
4209 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4210                                bool V2IsSplat = false, bool V2IsUndef = false) {
4211   if (!VT.is128BitVector())
4212     return false;
4213
4214   unsigned NumOps = VT.getVectorNumElements();
4215   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4216     return false;
4217
4218   if (!isUndefOrEqual(Mask[0], 0))
4219     return false;
4220
4221   for (unsigned i = 1; i != NumOps; ++i)
4222     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4223           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4224           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4225       return false;
4226
4227   return true;
4228 }
4229
4230 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4231 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4232 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4233 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4234                            const X86Subtarget *Subtarget) {
4235   if (!Subtarget->hasSSE3())
4236     return false;
4237
4238   unsigned NumElems = VT.getVectorNumElements();
4239
4240   if ((VT.is128BitVector() && NumElems != 4) ||
4241       (VT.is256BitVector() && NumElems != 8) ||
4242       (VT.is512BitVector() && NumElems != 16))
4243     return false;
4244
4245   // "i+1" is the value the indexed mask element must have
4246   for (unsigned i = 0; i != NumElems; i += 2)
4247     if (!isUndefOrEqual(Mask[i], i+1) ||
4248         !isUndefOrEqual(Mask[i+1], i+1))
4249       return false;
4250
4251   return true;
4252 }
4253
4254 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4255 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4256 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4257 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4258                            const X86Subtarget *Subtarget) {
4259   if (!Subtarget->hasSSE3())
4260     return false;
4261
4262   unsigned NumElems = VT.getVectorNumElements();
4263
4264   if ((VT.is128BitVector() && NumElems != 4) ||
4265       (VT.is256BitVector() && NumElems != 8) ||
4266       (VT.is512BitVector() && NumElems != 16))
4267     return false;
4268
4269   // "i" is the value the indexed mask element must have
4270   for (unsigned i = 0; i != NumElems; i += 2)
4271     if (!isUndefOrEqual(Mask[i], i) ||
4272         !isUndefOrEqual(Mask[i+1], i))
4273       return false;
4274
4275   return true;
4276 }
4277
4278 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4279 /// specifies a shuffle of elements that is suitable for input to 256-bit
4280 /// version of MOVDDUP.
4281 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4282   if (!HasFp256 || !VT.is256BitVector())
4283     return false;
4284
4285   unsigned NumElts = VT.getVectorNumElements();
4286   if (NumElts != 4)
4287     return false;
4288
4289   for (unsigned i = 0; i != NumElts/2; ++i)
4290     if (!isUndefOrEqual(Mask[i], 0))
4291       return false;
4292   for (unsigned i = NumElts/2; i != NumElts; ++i)
4293     if (!isUndefOrEqual(Mask[i], NumElts/2))
4294       return false;
4295   return true;
4296 }
4297
4298 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4299 /// specifies a shuffle of elements that is suitable for input to 128-bit
4300 /// version of MOVDDUP.
4301 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4302   if (!VT.is128BitVector())
4303     return false;
4304
4305   unsigned e = VT.getVectorNumElements() / 2;
4306   for (unsigned i = 0; i != e; ++i)
4307     if (!isUndefOrEqual(Mask[i], i))
4308       return false;
4309   for (unsigned i = 0; i != e; ++i)
4310     if (!isUndefOrEqual(Mask[e+i], i))
4311       return false;
4312   return true;
4313 }
4314
4315 /// isVEXTRACTIndex - Return true if the specified
4316 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4317 /// suitable for instruction that extract 128 or 256 bit vectors
4318 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4319   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4320   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4321     return false;
4322
4323   // The index should be aligned on a vecWidth-bit boundary.
4324   uint64_t Index =
4325     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4326
4327   MVT VT = N->getSimpleValueType(0);
4328   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4329   bool Result = (Index * ElSize) % vecWidth == 0;
4330
4331   return Result;
4332 }
4333
4334 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4335 /// operand specifies a subvector insert that is suitable for input to
4336 /// insertion of 128 or 256-bit subvectors
4337 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4338   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4339   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4340     return false;
4341   // The index should be aligned on a vecWidth-bit boundary.
4342   uint64_t Index =
4343     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4344
4345   MVT VT = N->getSimpleValueType(0);
4346   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4347   bool Result = (Index * ElSize) % vecWidth == 0;
4348
4349   return Result;
4350 }
4351
4352 bool X86::isVINSERT128Index(SDNode *N) {
4353   return isVINSERTIndex(N, 128);
4354 }
4355
4356 bool X86::isVINSERT256Index(SDNode *N) {
4357   return isVINSERTIndex(N, 256);
4358 }
4359
4360 bool X86::isVEXTRACT128Index(SDNode *N) {
4361   return isVEXTRACTIndex(N, 128);
4362 }
4363
4364 bool X86::isVEXTRACT256Index(SDNode *N) {
4365   return isVEXTRACTIndex(N, 256);
4366 }
4367
4368 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4369 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4370 /// Handles 128-bit and 256-bit.
4371 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4372   MVT VT = N->getSimpleValueType(0);
4373
4374   assert((VT.getSizeInBits() >= 128) &&
4375          "Unsupported vector type for PSHUF/SHUFP");
4376
4377   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4378   // independently on 128-bit lanes.
4379   unsigned NumElts = VT.getVectorNumElements();
4380   unsigned NumLanes = VT.getSizeInBits()/128;
4381   unsigned NumLaneElts = NumElts/NumLanes;
4382
4383   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4384          "Only supports 2, 4 or 8 elements per lane");
4385
4386   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4387   unsigned Mask = 0;
4388   for (unsigned i = 0; i != NumElts; ++i) {
4389     int Elt = N->getMaskElt(i);
4390     if (Elt < 0) continue;
4391     Elt &= NumLaneElts - 1;
4392     unsigned ShAmt = (i << Shift) % 8;
4393     Mask |= Elt << ShAmt;
4394   }
4395
4396   return Mask;
4397 }
4398
4399 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4400 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4401 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4402   MVT VT = N->getSimpleValueType(0);
4403
4404   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4405          "Unsupported vector type for PSHUFHW");
4406
4407   unsigned NumElts = VT.getVectorNumElements();
4408
4409   unsigned Mask = 0;
4410   for (unsigned l = 0; l != NumElts; l += 8) {
4411     // 8 nodes per lane, but we only care about the last 4.
4412     for (unsigned i = 0; i < 4; ++i) {
4413       int Elt = N->getMaskElt(l+i+4);
4414       if (Elt < 0) continue;
4415       Elt &= 0x3; // only 2-bits.
4416       Mask |= Elt << (i * 2);
4417     }
4418   }
4419
4420   return Mask;
4421 }
4422
4423 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4424 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4425 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4426   MVT VT = N->getSimpleValueType(0);
4427
4428   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4429          "Unsupported vector type for PSHUFHW");
4430
4431   unsigned NumElts = VT.getVectorNumElements();
4432
4433   unsigned Mask = 0;
4434   for (unsigned l = 0; l != NumElts; l += 8) {
4435     // 8 nodes per lane, but we only care about the first 4.
4436     for (unsigned i = 0; i < 4; ++i) {
4437       int Elt = N->getMaskElt(l+i);
4438       if (Elt < 0) continue;
4439       Elt &= 0x3; // only 2-bits
4440       Mask |= Elt << (i * 2);
4441     }
4442   }
4443
4444   return Mask;
4445 }
4446
4447 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4448 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4449 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4450   MVT VT = SVOp->getSimpleValueType(0);
4451   unsigned EltSize = VT.is512BitVector() ? 1 :
4452     VT.getVectorElementType().getSizeInBits() >> 3;
4453
4454   unsigned NumElts = VT.getVectorNumElements();
4455   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4456   unsigned NumLaneElts = NumElts/NumLanes;
4457
4458   int Val = 0;
4459   unsigned i;
4460   for (i = 0; i != NumElts; ++i) {
4461     Val = SVOp->getMaskElt(i);
4462     if (Val >= 0)
4463       break;
4464   }
4465   if (Val >= (int)NumElts)
4466     Val -= NumElts - NumLaneElts;
4467
4468   assert(Val - i > 0 && "PALIGNR imm should be positive");
4469   return (Val - i) * EltSize;
4470 }
4471
4472 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4473   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4474   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4475     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4476
4477   uint64_t Index =
4478     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4479
4480   MVT VecVT = N->getOperand(0).getSimpleValueType();
4481   MVT ElVT = VecVT.getVectorElementType();
4482
4483   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4484   return Index / NumElemsPerChunk;
4485 }
4486
4487 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4488   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4489   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4490     llvm_unreachable("Illegal insert subvector for VINSERT");
4491
4492   uint64_t Index =
4493     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4494
4495   MVT VecVT = N->getSimpleValueType(0);
4496   MVT ElVT = VecVT.getVectorElementType();
4497
4498   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4499   return Index / NumElemsPerChunk;
4500 }
4501
4502 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4503 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4504 /// and VINSERTI128 instructions.
4505 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4506   return getExtractVEXTRACTImmediate(N, 128);
4507 }
4508
4509 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4510 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4511 /// and VINSERTI64x4 instructions.
4512 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4513   return getExtractVEXTRACTImmediate(N, 256);
4514 }
4515
4516 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4517 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4518 /// and VINSERTI128 instructions.
4519 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4520   return getInsertVINSERTImmediate(N, 128);
4521 }
4522
4523 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4524 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4525 /// and VINSERTI64x4 instructions.
4526 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4527   return getInsertVINSERTImmediate(N, 256);
4528 }
4529
4530 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4531 /// constant +0.0.
4532 bool X86::isZeroNode(SDValue Elt) {
4533   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4534     return CN->isNullValue();
4535   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4536     return CFP->getValueAPF().isPosZero();
4537   return false;
4538 }
4539
4540 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4541 /// their permute mask.
4542 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4543                                     SelectionDAG &DAG) {
4544   MVT VT = SVOp->getSimpleValueType(0);
4545   unsigned NumElems = VT.getVectorNumElements();
4546   SmallVector<int, 8> MaskVec;
4547
4548   for (unsigned i = 0; i != NumElems; ++i) {
4549     int Idx = SVOp->getMaskElt(i);
4550     if (Idx >= 0) {
4551       if (Idx < (int)NumElems)
4552         Idx += NumElems;
4553       else
4554         Idx -= NumElems;
4555     }
4556     MaskVec.push_back(Idx);
4557   }
4558   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4559                               SVOp->getOperand(0), &MaskVec[0]);
4560 }
4561
4562 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4563 /// match movhlps. The lower half elements should come from upper half of
4564 /// V1 (and in order), and the upper half elements should come from the upper
4565 /// half of V2 (and in order).
4566 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4567   if (!VT.is128BitVector())
4568     return false;
4569   if (VT.getVectorNumElements() != 4)
4570     return false;
4571   for (unsigned i = 0, e = 2; i != e; ++i)
4572     if (!isUndefOrEqual(Mask[i], i+2))
4573       return false;
4574   for (unsigned i = 2; i != 4; ++i)
4575     if (!isUndefOrEqual(Mask[i], i+4))
4576       return false;
4577   return true;
4578 }
4579
4580 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4581 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4582 /// required.
4583 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4584   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4585     return false;
4586   N = N->getOperand(0).getNode();
4587   if (!ISD::isNON_EXTLoad(N))
4588     return false;
4589   if (LD)
4590     *LD = cast<LoadSDNode>(N);
4591   return true;
4592 }
4593
4594 // Test whether the given value is a vector value which will be legalized
4595 // into a load.
4596 static bool WillBeConstantPoolLoad(SDNode *N) {
4597   if (N->getOpcode() != ISD::BUILD_VECTOR)
4598     return false;
4599
4600   // Check for any non-constant elements.
4601   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4602     switch (N->getOperand(i).getNode()->getOpcode()) {
4603     case ISD::UNDEF:
4604     case ISD::ConstantFP:
4605     case ISD::Constant:
4606       break;
4607     default:
4608       return false;
4609     }
4610
4611   // Vectors of all-zeros and all-ones are materialized with special
4612   // instructions rather than being loaded.
4613   return !ISD::isBuildVectorAllZeros(N) &&
4614          !ISD::isBuildVectorAllOnes(N);
4615 }
4616
4617 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4618 /// match movlp{s|d}. The lower half elements should come from lower half of
4619 /// V1 (and in order), and the upper half elements should come from the upper
4620 /// half of V2 (and in order). And since V1 will become the source of the
4621 /// MOVLP, it must be either a vector load or a scalar load to vector.
4622 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4623                                ArrayRef<int> Mask, MVT VT) {
4624   if (!VT.is128BitVector())
4625     return false;
4626
4627   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4628     return false;
4629   // Is V2 is a vector load, don't do this transformation. We will try to use
4630   // load folding shufps op.
4631   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4632     return false;
4633
4634   unsigned NumElems = VT.getVectorNumElements();
4635
4636   if (NumElems != 2 && NumElems != 4)
4637     return false;
4638   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4639     if (!isUndefOrEqual(Mask[i], i))
4640       return false;
4641   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4642     if (!isUndefOrEqual(Mask[i], i+NumElems))
4643       return false;
4644   return true;
4645 }
4646
4647 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4648 /// all the same.
4649 static bool isSplatVector(SDNode *N) {
4650   if (N->getOpcode() != ISD::BUILD_VECTOR)
4651     return false;
4652
4653   SDValue SplatValue = N->getOperand(0);
4654   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4655     if (N->getOperand(i) != SplatValue)
4656       return false;
4657   return true;
4658 }
4659
4660 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4661 /// to an zero vector.
4662 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4663 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4664   SDValue V1 = N->getOperand(0);
4665   SDValue V2 = N->getOperand(1);
4666   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4667   for (unsigned i = 0; i != NumElems; ++i) {
4668     int Idx = N->getMaskElt(i);
4669     if (Idx >= (int)NumElems) {
4670       unsigned Opc = V2.getOpcode();
4671       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4672         continue;
4673       if (Opc != ISD::BUILD_VECTOR ||
4674           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4675         return false;
4676     } else if (Idx >= 0) {
4677       unsigned Opc = V1.getOpcode();
4678       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4679         continue;
4680       if (Opc != ISD::BUILD_VECTOR ||
4681           !X86::isZeroNode(V1.getOperand(Idx)))
4682         return false;
4683     }
4684   }
4685   return true;
4686 }
4687
4688 /// getZeroVector - Returns a vector of specified type with all zero elements.
4689 ///
4690 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4691                              SelectionDAG &DAG, SDLoc dl) {
4692   assert(VT.isVector() && "Expected a vector type");
4693
4694   // Always build SSE zero vectors as <4 x i32> bitcasted
4695   // to their dest type. This ensures they get CSE'd.
4696   SDValue Vec;
4697   if (VT.is128BitVector()) {  // SSE
4698     if (Subtarget->hasSSE2()) {  // SSE2
4699       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4700       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4701     } else { // SSE1
4702       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4703       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4704     }
4705   } else if (VT.is256BitVector()) { // AVX
4706     if (Subtarget->hasInt256()) { // AVX2
4707       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4708       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4709       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4710                         array_lengthof(Ops));
4711     } else {
4712       // 256-bit logic and arithmetic instructions in AVX are all
4713       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4714       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4715       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4716       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4717                         array_lengthof(Ops));
4718     }
4719   } else if (VT.is512BitVector()) { // AVX-512
4720       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4721       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4722                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4723       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4724   } else
4725     llvm_unreachable("Unexpected vector type");
4726
4727   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4728 }
4729
4730 /// getOnesVector - Returns a vector of specified type with all bits set.
4731 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4732 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4733 /// Then bitcast to their original type, ensuring they get CSE'd.
4734 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4735                              SDLoc dl) {
4736   assert(VT.isVector() && "Expected a vector type");
4737
4738   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4739   SDValue Vec;
4740   if (VT.is256BitVector()) {
4741     if (HasInt256) { // AVX2
4742       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4743       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4744                         array_lengthof(Ops));
4745     } else { // AVX
4746       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4747       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4748     }
4749   } else if (VT.is128BitVector()) {
4750     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4751   } else
4752     llvm_unreachable("Unexpected vector type");
4753
4754   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4755 }
4756
4757 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4758 /// that point to V2 points to its first element.
4759 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4760   for (unsigned i = 0; i != NumElems; ++i) {
4761     if (Mask[i] > (int)NumElems) {
4762       Mask[i] = NumElems;
4763     }
4764   }
4765 }
4766
4767 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4768 /// operation of specified width.
4769 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4770                        SDValue V2) {
4771   unsigned NumElems = VT.getVectorNumElements();
4772   SmallVector<int, 8> Mask;
4773   Mask.push_back(NumElems);
4774   for (unsigned i = 1; i != NumElems; ++i)
4775     Mask.push_back(i);
4776   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4777 }
4778
4779 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4780 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4781                           SDValue V2) {
4782   unsigned NumElems = VT.getVectorNumElements();
4783   SmallVector<int, 8> Mask;
4784   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4785     Mask.push_back(i);
4786     Mask.push_back(i + NumElems);
4787   }
4788   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4789 }
4790
4791 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4792 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4793                           SDValue V2) {
4794   unsigned NumElems = VT.getVectorNumElements();
4795   SmallVector<int, 8> Mask;
4796   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4797     Mask.push_back(i + Half);
4798     Mask.push_back(i + NumElems + Half);
4799   }
4800   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4801 }
4802
4803 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4804 // a generic shuffle instruction because the target has no such instructions.
4805 // Generate shuffles which repeat i16 and i8 several times until they can be
4806 // represented by v4f32 and then be manipulated by target suported shuffles.
4807 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4808   MVT VT = V.getSimpleValueType();
4809   int NumElems = VT.getVectorNumElements();
4810   SDLoc dl(V);
4811
4812   while (NumElems > 4) {
4813     if (EltNo < NumElems/2) {
4814       V = getUnpackl(DAG, dl, VT, V, V);
4815     } else {
4816       V = getUnpackh(DAG, dl, VT, V, V);
4817       EltNo -= NumElems/2;
4818     }
4819     NumElems >>= 1;
4820   }
4821   return V;
4822 }
4823
4824 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4825 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4826   MVT VT = V.getSimpleValueType();
4827   SDLoc dl(V);
4828
4829   if (VT.is128BitVector()) {
4830     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4831     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4832     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4833                              &SplatMask[0]);
4834   } else if (VT.is256BitVector()) {
4835     // To use VPERMILPS to splat scalars, the second half of indicies must
4836     // refer to the higher part, which is a duplication of the lower one,
4837     // because VPERMILPS can only handle in-lane permutations.
4838     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4839                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4840
4841     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4842     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4843                              &SplatMask[0]);
4844   } else
4845     llvm_unreachable("Vector size not supported");
4846
4847   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4848 }
4849
4850 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4851 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4852   MVT SrcVT = SV->getSimpleValueType(0);
4853   SDValue V1 = SV->getOperand(0);
4854   SDLoc dl(SV);
4855
4856   int EltNo = SV->getSplatIndex();
4857   int NumElems = SrcVT.getVectorNumElements();
4858   bool Is256BitVec = SrcVT.is256BitVector();
4859
4860   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4861          "Unknown how to promote splat for type");
4862
4863   // Extract the 128-bit part containing the splat element and update
4864   // the splat element index when it refers to the higher register.
4865   if (Is256BitVec) {
4866     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4867     if (EltNo >= NumElems/2)
4868       EltNo -= NumElems/2;
4869   }
4870
4871   // All i16 and i8 vector types can't be used directly by a generic shuffle
4872   // instruction because the target has no such instruction. Generate shuffles
4873   // which repeat i16 and i8 several times until they fit in i32, and then can
4874   // be manipulated by target suported shuffles.
4875   MVT EltVT = SrcVT.getVectorElementType();
4876   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4877     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4878
4879   // Recreate the 256-bit vector and place the same 128-bit vector
4880   // into the low and high part. This is necessary because we want
4881   // to use VPERM* to shuffle the vectors
4882   if (Is256BitVec) {
4883     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4884   }
4885
4886   return getLegalSplat(DAG, V1, EltNo);
4887 }
4888
4889 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4890 /// vector of zero or undef vector.  This produces a shuffle where the low
4891 /// element of V2 is swizzled into the zero/undef vector, landing at element
4892 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4893 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4894                                            bool IsZero,
4895                                            const X86Subtarget *Subtarget,
4896                                            SelectionDAG &DAG) {
4897   MVT VT = V2.getSimpleValueType();
4898   SDValue V1 = IsZero
4899     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4900   unsigned NumElems = VT.getVectorNumElements();
4901   SmallVector<int, 16> MaskVec;
4902   for (unsigned i = 0; i != NumElems; ++i)
4903     // If this is the insertion idx, put the low elt of V2 here.
4904     MaskVec.push_back(i == Idx ? NumElems : i);
4905   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4906 }
4907
4908 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4909 /// target specific opcode. Returns true if the Mask could be calculated.
4910 /// Sets IsUnary to true if only uses one source.
4911 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4912                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4913   unsigned NumElems = VT.getVectorNumElements();
4914   SDValue ImmN;
4915
4916   IsUnary = false;
4917   switch(N->getOpcode()) {
4918   case X86ISD::SHUFP:
4919     ImmN = N->getOperand(N->getNumOperands()-1);
4920     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4921     break;
4922   case X86ISD::UNPCKH:
4923     DecodeUNPCKHMask(VT, Mask);
4924     break;
4925   case X86ISD::UNPCKL:
4926     DecodeUNPCKLMask(VT, Mask);
4927     break;
4928   case X86ISD::MOVHLPS:
4929     DecodeMOVHLPSMask(NumElems, Mask);
4930     break;
4931   case X86ISD::MOVLHPS:
4932     DecodeMOVLHPSMask(NumElems, Mask);
4933     break;
4934   case X86ISD::PALIGNR:
4935     ImmN = N->getOperand(N->getNumOperands()-1);
4936     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4937     break;
4938   case X86ISD::PSHUFD:
4939   case X86ISD::VPERMILP:
4940     ImmN = N->getOperand(N->getNumOperands()-1);
4941     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4942     IsUnary = true;
4943     break;
4944   case X86ISD::PSHUFHW:
4945     ImmN = N->getOperand(N->getNumOperands()-1);
4946     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4947     IsUnary = true;
4948     break;
4949   case X86ISD::PSHUFLW:
4950     ImmN = N->getOperand(N->getNumOperands()-1);
4951     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4952     IsUnary = true;
4953     break;
4954   case X86ISD::VPERMI:
4955     ImmN = N->getOperand(N->getNumOperands()-1);
4956     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4957     IsUnary = true;
4958     break;
4959   case X86ISD::MOVSS:
4960   case X86ISD::MOVSD: {
4961     // The index 0 always comes from the first element of the second source,
4962     // this is why MOVSS and MOVSD are used in the first place. The other
4963     // elements come from the other positions of the first source vector
4964     Mask.push_back(NumElems);
4965     for (unsigned i = 1; i != NumElems; ++i) {
4966       Mask.push_back(i);
4967     }
4968     break;
4969   }
4970   case X86ISD::VPERM2X128:
4971     ImmN = N->getOperand(N->getNumOperands()-1);
4972     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4973     if (Mask.empty()) return false;
4974     break;
4975   case X86ISD::MOVDDUP:
4976   case X86ISD::MOVLHPD:
4977   case X86ISD::MOVLPD:
4978   case X86ISD::MOVLPS:
4979   case X86ISD::MOVSHDUP:
4980   case X86ISD::MOVSLDUP:
4981     // Not yet implemented
4982     return false;
4983   default: llvm_unreachable("unknown target shuffle node");
4984   }
4985
4986   return true;
4987 }
4988
4989 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4990 /// element of the result of the vector shuffle.
4991 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4992                                    unsigned Depth) {
4993   if (Depth == 6)
4994     return SDValue();  // Limit search depth.
4995
4996   SDValue V = SDValue(N, 0);
4997   EVT VT = V.getValueType();
4998   unsigned Opcode = V.getOpcode();
4999
5000   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5001   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5002     int Elt = SV->getMaskElt(Index);
5003
5004     if (Elt < 0)
5005       return DAG.getUNDEF(VT.getVectorElementType());
5006
5007     unsigned NumElems = VT.getVectorNumElements();
5008     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5009                                          : SV->getOperand(1);
5010     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5011   }
5012
5013   // Recurse into target specific vector shuffles to find scalars.
5014   if (isTargetShuffle(Opcode)) {
5015     MVT ShufVT = V.getSimpleValueType();
5016     unsigned NumElems = ShufVT.getVectorNumElements();
5017     SmallVector<int, 16> ShuffleMask;
5018     bool IsUnary;
5019
5020     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5021       return SDValue();
5022
5023     int Elt = ShuffleMask[Index];
5024     if (Elt < 0)
5025       return DAG.getUNDEF(ShufVT.getVectorElementType());
5026
5027     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5028                                          : N->getOperand(1);
5029     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5030                                Depth+1);
5031   }
5032
5033   // Actual nodes that may contain scalar elements
5034   if (Opcode == ISD::BITCAST) {
5035     V = V.getOperand(0);
5036     EVT SrcVT = V.getValueType();
5037     unsigned NumElems = VT.getVectorNumElements();
5038
5039     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5040       return SDValue();
5041   }
5042
5043   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5044     return (Index == 0) ? V.getOperand(0)
5045                         : DAG.getUNDEF(VT.getVectorElementType());
5046
5047   if (V.getOpcode() == ISD::BUILD_VECTOR)
5048     return V.getOperand(Index);
5049
5050   return SDValue();
5051 }
5052
5053 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5054 /// shuffle operation which come from a consecutively from a zero. The
5055 /// search can start in two different directions, from left or right.
5056 /// We count undefs as zeros until PreferredNum is reached.
5057 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5058                                          unsigned NumElems, bool ZerosFromLeft,
5059                                          SelectionDAG &DAG,
5060                                          unsigned PreferredNum = -1U) {
5061   unsigned NumZeros = 0;
5062   for (unsigned i = 0; i != NumElems; ++i) {
5063     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5064     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5065     if (!Elt.getNode())
5066       break;
5067
5068     if (X86::isZeroNode(Elt))
5069       ++NumZeros;
5070     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5071       NumZeros = std::min(NumZeros + 1, PreferredNum);
5072     else
5073       break;
5074   }
5075
5076   return NumZeros;
5077 }
5078
5079 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5080 /// correspond consecutively to elements from one of the vector operands,
5081 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5082 static
5083 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5084                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5085                               unsigned NumElems, unsigned &OpNum) {
5086   bool SeenV1 = false;
5087   bool SeenV2 = false;
5088
5089   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5090     int Idx = SVOp->getMaskElt(i);
5091     // Ignore undef indicies
5092     if (Idx < 0)
5093       continue;
5094
5095     if (Idx < (int)NumElems)
5096       SeenV1 = true;
5097     else
5098       SeenV2 = true;
5099
5100     // Only accept consecutive elements from the same vector
5101     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5102       return false;
5103   }
5104
5105   OpNum = SeenV1 ? 0 : 1;
5106   return true;
5107 }
5108
5109 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5110 /// logical left shift of a vector.
5111 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5112                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5113   unsigned NumElems =
5114     SVOp->getSimpleValueType(0).getVectorNumElements();
5115   unsigned NumZeros = getNumOfConsecutiveZeros(
5116       SVOp, NumElems, false /* check zeros from right */, DAG,
5117       SVOp->getMaskElt(0));
5118   unsigned OpSrc;
5119
5120   if (!NumZeros)
5121     return false;
5122
5123   // Considering the elements in the mask that are not consecutive zeros,
5124   // check if they consecutively come from only one of the source vectors.
5125   //
5126   //               V1 = {X, A, B, C}     0
5127   //                         \  \  \    /
5128   //   vector_shuffle V1, V2 <1, 2, 3, X>
5129   //
5130   if (!isShuffleMaskConsecutive(SVOp,
5131             0,                   // Mask Start Index
5132             NumElems-NumZeros,   // Mask End Index(exclusive)
5133             NumZeros,            // Where to start looking in the src vector
5134             NumElems,            // Number of elements in vector
5135             OpSrc))              // Which source operand ?
5136     return false;
5137
5138   isLeft = false;
5139   ShAmt = NumZeros;
5140   ShVal = SVOp->getOperand(OpSrc);
5141   return true;
5142 }
5143
5144 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5145 /// logical left shift of a vector.
5146 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5147                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5148   unsigned NumElems =
5149     SVOp->getSimpleValueType(0).getVectorNumElements();
5150   unsigned NumZeros = getNumOfConsecutiveZeros(
5151       SVOp, NumElems, true /* check zeros from left */, DAG,
5152       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5153   unsigned OpSrc;
5154
5155   if (!NumZeros)
5156     return false;
5157
5158   // Considering the elements in the mask that are not consecutive zeros,
5159   // check if they consecutively come from only one of the source vectors.
5160   //
5161   //                           0    { A, B, X, X } = V2
5162   //                          / \    /  /
5163   //   vector_shuffle V1, V2 <X, X, 4, 5>
5164   //
5165   if (!isShuffleMaskConsecutive(SVOp,
5166             NumZeros,     // Mask Start Index
5167             NumElems,     // Mask End Index(exclusive)
5168             0,            // Where to start looking in the src vector
5169             NumElems,     // Number of elements in vector
5170             OpSrc))       // Which source operand ?
5171     return false;
5172
5173   isLeft = true;
5174   ShAmt = NumZeros;
5175   ShVal = SVOp->getOperand(OpSrc);
5176   return true;
5177 }
5178
5179 /// isVectorShift - Returns true if the shuffle can be implemented as a
5180 /// logical left or right shift of a vector.
5181 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5182                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5183   // Although the logic below support any bitwidth size, there are no
5184   // shift instructions which handle more than 128-bit vectors.
5185   if (!SVOp->getSimpleValueType(0).is128BitVector())
5186     return false;
5187
5188   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5189       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5190     return true;
5191
5192   return false;
5193 }
5194
5195 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5196 ///
5197 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5198                                        unsigned NumNonZero, unsigned NumZero,
5199                                        SelectionDAG &DAG,
5200                                        const X86Subtarget* Subtarget,
5201                                        const TargetLowering &TLI) {
5202   if (NumNonZero > 8)
5203     return SDValue();
5204
5205   SDLoc dl(Op);
5206   SDValue V(0, 0);
5207   bool First = true;
5208   for (unsigned i = 0; i < 16; ++i) {
5209     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5210     if (ThisIsNonZero && First) {
5211       if (NumZero)
5212         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5213       else
5214         V = DAG.getUNDEF(MVT::v8i16);
5215       First = false;
5216     }
5217
5218     if ((i & 1) != 0) {
5219       SDValue ThisElt(0, 0), LastElt(0, 0);
5220       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5221       if (LastIsNonZero) {
5222         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5223                               MVT::i16, Op.getOperand(i-1));
5224       }
5225       if (ThisIsNonZero) {
5226         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5227         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5228                               ThisElt, DAG.getConstant(8, MVT::i8));
5229         if (LastIsNonZero)
5230           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5231       } else
5232         ThisElt = LastElt;
5233
5234       if (ThisElt.getNode())
5235         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5236                         DAG.getIntPtrConstant(i/2));
5237     }
5238   }
5239
5240   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5241 }
5242
5243 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5244 ///
5245 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5246                                      unsigned NumNonZero, unsigned NumZero,
5247                                      SelectionDAG &DAG,
5248                                      const X86Subtarget* Subtarget,
5249                                      const TargetLowering &TLI) {
5250   if (NumNonZero > 4)
5251     return SDValue();
5252
5253   SDLoc dl(Op);
5254   SDValue V(0, 0);
5255   bool First = true;
5256   for (unsigned i = 0; i < 8; ++i) {
5257     bool isNonZero = (NonZeros & (1 << i)) != 0;
5258     if (isNonZero) {
5259       if (First) {
5260         if (NumZero)
5261           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5262         else
5263           V = DAG.getUNDEF(MVT::v8i16);
5264         First = false;
5265       }
5266       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5267                       MVT::v8i16, V, Op.getOperand(i),
5268                       DAG.getIntPtrConstant(i));
5269     }
5270   }
5271
5272   return V;
5273 }
5274
5275 /// getVShift - Return a vector logical shift node.
5276 ///
5277 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5278                          unsigned NumBits, SelectionDAG &DAG,
5279                          const TargetLowering &TLI, SDLoc dl) {
5280   assert(VT.is128BitVector() && "Unknown type for VShift");
5281   EVT ShVT = MVT::v2i64;
5282   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5283   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5284   return DAG.getNode(ISD::BITCAST, dl, VT,
5285                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5286                              DAG.getConstant(NumBits,
5287                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5288 }
5289
5290 static SDValue
5291 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5292
5293   // Check if the scalar load can be widened into a vector load. And if
5294   // the address is "base + cst" see if the cst can be "absorbed" into
5295   // the shuffle mask.
5296   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5297     SDValue Ptr = LD->getBasePtr();
5298     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5299       return SDValue();
5300     EVT PVT = LD->getValueType(0);
5301     if (PVT != MVT::i32 && PVT != MVT::f32)
5302       return SDValue();
5303
5304     int FI = -1;
5305     int64_t Offset = 0;
5306     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5307       FI = FINode->getIndex();
5308       Offset = 0;
5309     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5310                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5311       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5312       Offset = Ptr.getConstantOperandVal(1);
5313       Ptr = Ptr.getOperand(0);
5314     } else {
5315       return SDValue();
5316     }
5317
5318     // FIXME: 256-bit vector instructions don't require a strict alignment,
5319     // improve this code to support it better.
5320     unsigned RequiredAlign = VT.getSizeInBits()/8;
5321     SDValue Chain = LD->getChain();
5322     // Make sure the stack object alignment is at least 16 or 32.
5323     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5324     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5325       if (MFI->isFixedObjectIndex(FI)) {
5326         // Can't change the alignment. FIXME: It's possible to compute
5327         // the exact stack offset and reference FI + adjust offset instead.
5328         // If someone *really* cares about this. That's the way to implement it.
5329         return SDValue();
5330       } else {
5331         MFI->setObjectAlignment(FI, RequiredAlign);
5332       }
5333     }
5334
5335     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5336     // Ptr + (Offset & ~15).
5337     if (Offset < 0)
5338       return SDValue();
5339     if ((Offset % RequiredAlign) & 3)
5340       return SDValue();
5341     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5342     if (StartOffset)
5343       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5344                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5345
5346     int EltNo = (Offset - StartOffset) >> 2;
5347     unsigned NumElems = VT.getVectorNumElements();
5348
5349     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5350     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5351                              LD->getPointerInfo().getWithOffset(StartOffset),
5352                              false, false, false, 0);
5353
5354     SmallVector<int, 8> Mask;
5355     for (unsigned i = 0; i != NumElems; ++i)
5356       Mask.push_back(EltNo);
5357
5358     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5359   }
5360
5361   return SDValue();
5362 }
5363
5364 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5365 /// vector of type 'VT', see if the elements can be replaced by a single large
5366 /// load which has the same value as a build_vector whose operands are 'elts'.
5367 ///
5368 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5369 ///
5370 /// FIXME: we'd also like to handle the case where the last elements are zero
5371 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5372 /// There's even a handy isZeroNode for that purpose.
5373 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5374                                         SDLoc &DL, SelectionDAG &DAG) {
5375   EVT EltVT = VT.getVectorElementType();
5376   unsigned NumElems = Elts.size();
5377
5378   LoadSDNode *LDBase = NULL;
5379   unsigned LastLoadedElt = -1U;
5380
5381   // For each element in the initializer, see if we've found a load or an undef.
5382   // If we don't find an initial load element, or later load elements are
5383   // non-consecutive, bail out.
5384   for (unsigned i = 0; i < NumElems; ++i) {
5385     SDValue Elt = Elts[i];
5386
5387     if (!Elt.getNode() ||
5388         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5389       return SDValue();
5390     if (!LDBase) {
5391       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5392         return SDValue();
5393       LDBase = cast<LoadSDNode>(Elt.getNode());
5394       LastLoadedElt = i;
5395       continue;
5396     }
5397     if (Elt.getOpcode() == ISD::UNDEF)
5398       continue;
5399
5400     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5401     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5402       return SDValue();
5403     LastLoadedElt = i;
5404   }
5405
5406   // If we have found an entire vector of loads and undefs, then return a large
5407   // load of the entire vector width starting at the base pointer.  If we found
5408   // consecutive loads for the low half, generate a vzext_load node.
5409   if (LastLoadedElt == NumElems - 1) {
5410     SDValue NewLd = SDValue();
5411     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5412       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5413                           LDBase->getPointerInfo(),
5414                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5415                           LDBase->isInvariant(), 0);
5416     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5417                         LDBase->getPointerInfo(),
5418                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5419                         LDBase->isInvariant(), LDBase->getAlignment());
5420
5421     if (LDBase->hasAnyUseOfValue(1)) {
5422       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5423                                      SDValue(LDBase, 1),
5424                                      SDValue(NewLd.getNode(), 1));
5425       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5426       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5427                              SDValue(NewLd.getNode(), 1));
5428     }
5429
5430     return NewLd;
5431   }
5432   if (NumElems == 4 && LastLoadedElt == 1 &&
5433       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5434     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5435     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5436     SDValue ResNode =
5437         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5438                                 array_lengthof(Ops), MVT::i64,
5439                                 LDBase->getPointerInfo(),
5440                                 LDBase->getAlignment(),
5441                                 false/*isVolatile*/, true/*ReadMem*/,
5442                                 false/*WriteMem*/);
5443
5444     // Make sure the newly-created LOAD is in the same position as LDBase in
5445     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5446     // update uses of LDBase's output chain to use the TokenFactor.
5447     if (LDBase->hasAnyUseOfValue(1)) {
5448       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5449                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5450       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5451       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5452                              SDValue(ResNode.getNode(), 1));
5453     }
5454
5455     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5456   }
5457   return SDValue();
5458 }
5459
5460 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5461 /// to generate a splat value for the following cases:
5462 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5463 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5464 /// a scalar load, or a constant.
5465 /// The VBROADCAST node is returned when a pattern is found,
5466 /// or SDValue() otherwise.
5467 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5468                                     SelectionDAG &DAG) {
5469   if (!Subtarget->hasFp256())
5470     return SDValue();
5471
5472   MVT VT = Op.getSimpleValueType();
5473   SDLoc dl(Op);
5474
5475   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5476          "Unsupported vector type for broadcast.");
5477
5478   SDValue Ld;
5479   bool ConstSplatVal;
5480
5481   switch (Op.getOpcode()) {
5482     default:
5483       // Unknown pattern found.
5484       return SDValue();
5485
5486     case ISD::BUILD_VECTOR: {
5487       // The BUILD_VECTOR node must be a splat.
5488       if (!isSplatVector(Op.getNode()))
5489         return SDValue();
5490
5491       Ld = Op.getOperand(0);
5492       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5493                      Ld.getOpcode() == ISD::ConstantFP);
5494
5495       // The suspected load node has several users. Make sure that all
5496       // of its users are from the BUILD_VECTOR node.
5497       // Constants may have multiple users.
5498       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5499         return SDValue();
5500       break;
5501     }
5502
5503     case ISD::VECTOR_SHUFFLE: {
5504       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5505
5506       // Shuffles must have a splat mask where the first element is
5507       // broadcasted.
5508       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5509         return SDValue();
5510
5511       SDValue Sc = Op.getOperand(0);
5512       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5513           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5514
5515         if (!Subtarget->hasInt256())
5516           return SDValue();
5517
5518         // Use the register form of the broadcast instruction available on AVX2.
5519         if (VT.getSizeInBits() >= 256)
5520           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5521         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5522       }
5523
5524       Ld = Sc.getOperand(0);
5525       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5526                        Ld.getOpcode() == ISD::ConstantFP);
5527
5528       // The scalar_to_vector node and the suspected
5529       // load node must have exactly one user.
5530       // Constants may have multiple users.
5531
5532       // AVX-512 has register version of the broadcast
5533       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5534         Ld.getValueType().getSizeInBits() >= 32;
5535       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5536           !hasRegVer))
5537         return SDValue();
5538       break;
5539     }
5540   }
5541
5542   bool IsGE256 = (VT.getSizeInBits() >= 256);
5543
5544   // Handle the broadcasting a single constant scalar from the constant pool
5545   // into a vector. On Sandybridge it is still better to load a constant vector
5546   // from the constant pool and not to broadcast it from a scalar.
5547   if (ConstSplatVal && Subtarget->hasInt256()) {
5548     EVT CVT = Ld.getValueType();
5549     assert(!CVT.isVector() && "Must not broadcast a vector type");
5550     unsigned ScalarSize = CVT.getSizeInBits();
5551
5552     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5553       const Constant *C = 0;
5554       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5555         C = CI->getConstantIntValue();
5556       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5557         C = CF->getConstantFPValue();
5558
5559       assert(C && "Invalid constant type");
5560
5561       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5562       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5563       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5564       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5565                        MachinePointerInfo::getConstantPool(),
5566                        false, false, false, Alignment);
5567
5568       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5569     }
5570   }
5571
5572   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5573   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5574
5575   // Handle AVX2 in-register broadcasts.
5576   if (!IsLoad && Subtarget->hasInt256() &&
5577       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5578     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5579
5580   // The scalar source must be a normal load.
5581   if (!IsLoad)
5582     return SDValue();
5583
5584   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5585     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5586
5587   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5588   // double since there is no vbroadcastsd xmm
5589   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5590     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5591       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5592   }
5593
5594   // Unsupported broadcast.
5595   return SDValue();
5596 }
5597
5598 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5599   MVT VT = Op.getSimpleValueType();
5600
5601   // Skip if insert_vec_elt is not supported.
5602   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5603   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5604     return SDValue();
5605
5606   SDLoc DL(Op);
5607   unsigned NumElems = Op.getNumOperands();
5608
5609   SDValue VecIn1;
5610   SDValue VecIn2;
5611   SmallVector<unsigned, 4> InsertIndices;
5612   SmallVector<int, 8> Mask(NumElems, -1);
5613
5614   for (unsigned i = 0; i != NumElems; ++i) {
5615     unsigned Opc = Op.getOperand(i).getOpcode();
5616
5617     if (Opc == ISD::UNDEF)
5618       continue;
5619
5620     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5621       // Quit if more than 1 elements need inserting.
5622       if (InsertIndices.size() > 1)
5623         return SDValue();
5624
5625       InsertIndices.push_back(i);
5626       continue;
5627     }
5628
5629     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5630     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5631
5632     // Quit if extracted from vector of different type.
5633     if (ExtractedFromVec.getValueType() != VT)
5634       return SDValue();
5635
5636     // Quit if non-constant index.
5637     if (!isa<ConstantSDNode>(ExtIdx))
5638       return SDValue();
5639
5640     if (VecIn1.getNode() == 0)
5641       VecIn1 = ExtractedFromVec;
5642     else if (VecIn1 != ExtractedFromVec) {
5643       if (VecIn2.getNode() == 0)
5644         VecIn2 = ExtractedFromVec;
5645       else if (VecIn2 != ExtractedFromVec)
5646         // Quit if more than 2 vectors to shuffle
5647         return SDValue();
5648     }
5649
5650     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5651
5652     if (ExtractedFromVec == VecIn1)
5653       Mask[i] = Idx;
5654     else if (ExtractedFromVec == VecIn2)
5655       Mask[i] = Idx + NumElems;
5656   }
5657
5658   if (VecIn1.getNode() == 0)
5659     return SDValue();
5660
5661   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5662   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5663   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5664     unsigned Idx = InsertIndices[i];
5665     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5666                      DAG.getIntPtrConstant(Idx));
5667   }
5668
5669   return NV;
5670 }
5671
5672 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5673 SDValue
5674 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5675
5676   MVT VT = Op.getSimpleValueType();
5677   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5678          "Unexpected type in LowerBUILD_VECTORvXi1!");
5679
5680   SDLoc dl(Op);
5681   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5682     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5683     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5684                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5685     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5686                        Ops, VT.getVectorNumElements());
5687   }
5688
5689   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5690     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5691     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5692                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5693     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5694                        Ops, VT.getVectorNumElements());
5695   }
5696
5697   bool AllContants = true;
5698   uint64_t Immediate = 0;
5699   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5700     SDValue In = Op.getOperand(idx);
5701     if (In.getOpcode() == ISD::UNDEF)
5702       continue;
5703     if (!isa<ConstantSDNode>(In)) {
5704       AllContants = false;
5705       break;
5706     }
5707     if (cast<ConstantSDNode>(In)->getZExtValue())
5708       Immediate |= (1ULL << idx);
5709   }
5710
5711   if (AllContants) {
5712     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5713       DAG.getConstant(Immediate, MVT::i16));
5714     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5715                        DAG.getIntPtrConstant(0));
5716   }
5717
5718   // Splat vector (with undefs)
5719   SDValue In = Op.getOperand(0);
5720   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5721     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5722       llvm_unreachable("Unsupported predicate operation");
5723   }
5724
5725   SDValue EFLAGS, X86CC;
5726   if (In.getOpcode() == ISD::SETCC) {
5727     SDValue Op0 = In.getOperand(0);
5728     SDValue Op1 = In.getOperand(1);
5729     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5730     bool isFP = Op1.getValueType().isFloatingPoint();
5731     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5732
5733     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5734
5735     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5736     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5737     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5738   } else if (In.getOpcode() == X86ISD::SETCC) {
5739     X86CC = In.getOperand(0);
5740     EFLAGS = In.getOperand(1);
5741   } else {
5742     // The algorithm:
5743     //   Bit1 = In & 0x1
5744     //   if (Bit1 != 0)
5745     //     ZF = 0
5746     //   else
5747     //     ZF = 1
5748     //   if (ZF == 0)
5749     //     res = allOnes ### CMOVNE -1, %res
5750     //   else
5751     //     res = allZero
5752     MVT InVT = In.getSimpleValueType();
5753     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5754     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5755     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5756   }
5757
5758   if (VT == MVT::v16i1) {
5759     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5760     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5761     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5762           Cst0, Cst1, X86CC, EFLAGS);
5763     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5764   }
5765
5766   if (VT == MVT::v8i1) {
5767     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5768     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5769     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5770           Cst0, Cst1, X86CC, EFLAGS);
5771     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5772     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5773   }
5774   llvm_unreachable("Unsupported predicate operation");
5775 }
5776
5777 SDValue
5778 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5779   SDLoc dl(Op);
5780
5781   MVT VT = Op.getSimpleValueType();
5782   MVT ExtVT = VT.getVectorElementType();
5783   unsigned NumElems = Op.getNumOperands();
5784
5785   // Generate vectors for predicate vectors.
5786   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5787     return LowerBUILD_VECTORvXi1(Op, DAG);
5788
5789   // Vectors containing all zeros can be matched by pxor and xorps later
5790   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5791     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5792     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5793     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5794       return Op;
5795
5796     return getZeroVector(VT, Subtarget, DAG, dl);
5797   }
5798
5799   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5800   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5801   // vpcmpeqd on 256-bit vectors.
5802   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5803     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5804       return Op;
5805
5806     if (!VT.is512BitVector())
5807       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5808   }
5809
5810   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5811   if (Broadcast.getNode())
5812     return Broadcast;
5813
5814   unsigned EVTBits = ExtVT.getSizeInBits();
5815
5816   unsigned NumZero  = 0;
5817   unsigned NumNonZero = 0;
5818   unsigned NonZeros = 0;
5819   bool IsAllConstants = true;
5820   SmallSet<SDValue, 8> Values;
5821   for (unsigned i = 0; i < NumElems; ++i) {
5822     SDValue Elt = Op.getOperand(i);
5823     if (Elt.getOpcode() == ISD::UNDEF)
5824       continue;
5825     Values.insert(Elt);
5826     if (Elt.getOpcode() != ISD::Constant &&
5827         Elt.getOpcode() != ISD::ConstantFP)
5828       IsAllConstants = false;
5829     if (X86::isZeroNode(Elt))
5830       NumZero++;
5831     else {
5832       NonZeros |= (1 << i);
5833       NumNonZero++;
5834     }
5835   }
5836
5837   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5838   if (NumNonZero == 0)
5839     return DAG.getUNDEF(VT);
5840
5841   // Special case for single non-zero, non-undef, element.
5842   if (NumNonZero == 1) {
5843     unsigned Idx = countTrailingZeros(NonZeros);
5844     SDValue Item = Op.getOperand(Idx);
5845
5846     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5847     // the value are obviously zero, truncate the value to i32 and do the
5848     // insertion that way.  Only do this if the value is non-constant or if the
5849     // value is a constant being inserted into element 0.  It is cheaper to do
5850     // a constant pool load than it is to do a movd + shuffle.
5851     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5852         (!IsAllConstants || Idx == 0)) {
5853       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5854         // Handle SSE only.
5855         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5856         EVT VecVT = MVT::v4i32;
5857         unsigned VecElts = 4;
5858
5859         // Truncate the value (which may itself be a constant) to i32, and
5860         // convert it to a vector with movd (S2V+shuffle to zero extend).
5861         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5862         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5863         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5864
5865         // Now we have our 32-bit value zero extended in the low element of
5866         // a vector.  If Idx != 0, swizzle it into place.
5867         if (Idx != 0) {
5868           SmallVector<int, 4> Mask;
5869           Mask.push_back(Idx);
5870           for (unsigned i = 1; i != VecElts; ++i)
5871             Mask.push_back(i);
5872           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5873                                       &Mask[0]);
5874         }
5875         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5876       }
5877     }
5878
5879     // If we have a constant or non-constant insertion into the low element of
5880     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5881     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5882     // depending on what the source datatype is.
5883     if (Idx == 0) {
5884       if (NumZero == 0)
5885         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5886
5887       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5888           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5889         if (VT.is256BitVector() || VT.is512BitVector()) {
5890           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5891           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5892                              Item, DAG.getIntPtrConstant(0));
5893         }
5894         assert(VT.is128BitVector() && "Expected an SSE value type!");
5895         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5896         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5897         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5898       }
5899
5900       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5901         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5902         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5903         if (VT.is256BitVector()) {
5904           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5905           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5906         } else {
5907           assert(VT.is128BitVector() && "Expected an SSE value type!");
5908           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5909         }
5910         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5911       }
5912     }
5913
5914     // Is it a vector logical left shift?
5915     if (NumElems == 2 && Idx == 1 &&
5916         X86::isZeroNode(Op.getOperand(0)) &&
5917         !X86::isZeroNode(Op.getOperand(1))) {
5918       unsigned NumBits = VT.getSizeInBits();
5919       return getVShift(true, VT,
5920                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5921                                    VT, Op.getOperand(1)),
5922                        NumBits/2, DAG, *this, dl);
5923     }
5924
5925     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5926       return SDValue();
5927
5928     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5929     // is a non-constant being inserted into an element other than the low one,
5930     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5931     // movd/movss) to move this into the low element, then shuffle it into
5932     // place.
5933     if (EVTBits == 32) {
5934       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5935
5936       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5937       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5938       SmallVector<int, 8> MaskVec;
5939       for (unsigned i = 0; i != NumElems; ++i)
5940         MaskVec.push_back(i == Idx ? 0 : 1);
5941       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5942     }
5943   }
5944
5945   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5946   if (Values.size() == 1) {
5947     if (EVTBits == 32) {
5948       // Instead of a shuffle like this:
5949       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5950       // Check if it's possible to issue this instead.
5951       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5952       unsigned Idx = countTrailingZeros(NonZeros);
5953       SDValue Item = Op.getOperand(Idx);
5954       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5955         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5956     }
5957     return SDValue();
5958   }
5959
5960   // A vector full of immediates; various special cases are already
5961   // handled, so this is best done with a single constant-pool load.
5962   if (IsAllConstants)
5963     return SDValue();
5964
5965   // For AVX-length vectors, build the individual 128-bit pieces and use
5966   // shuffles to put them in place.
5967   if (VT.is256BitVector()) {
5968     SmallVector<SDValue, 32> V;
5969     for (unsigned i = 0; i != NumElems; ++i)
5970       V.push_back(Op.getOperand(i));
5971
5972     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5973
5974     // Build both the lower and upper subvector.
5975     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5976     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5977                                 NumElems/2);
5978
5979     // Recreate the wider vector with the lower and upper part.
5980     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5981   }
5982
5983   // Let legalizer expand 2-wide build_vectors.
5984   if (EVTBits == 64) {
5985     if (NumNonZero == 1) {
5986       // One half is zero or undef.
5987       unsigned Idx = countTrailingZeros(NonZeros);
5988       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5989                                  Op.getOperand(Idx));
5990       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5991     }
5992     return SDValue();
5993   }
5994
5995   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5996   if (EVTBits == 8 && NumElems == 16) {
5997     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5998                                         Subtarget, *this);
5999     if (V.getNode()) return V;
6000   }
6001
6002   if (EVTBits == 16 && NumElems == 8) {
6003     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6004                                       Subtarget, *this);
6005     if (V.getNode()) return V;
6006   }
6007
6008   // If element VT is == 32 bits, turn it into a number of shuffles.
6009   SmallVector<SDValue, 8> V(NumElems);
6010   if (NumElems == 4 && NumZero > 0) {
6011     for (unsigned i = 0; i < 4; ++i) {
6012       bool isZero = !(NonZeros & (1 << i));
6013       if (isZero)
6014         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6015       else
6016         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6017     }
6018
6019     for (unsigned i = 0; i < 2; ++i) {
6020       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6021         default: break;
6022         case 0:
6023           V[i] = V[i*2];  // Must be a zero vector.
6024           break;
6025         case 1:
6026           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6027           break;
6028         case 2:
6029           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6030           break;
6031         case 3:
6032           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6033           break;
6034       }
6035     }
6036
6037     bool Reverse1 = (NonZeros & 0x3) == 2;
6038     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6039     int MaskVec[] = {
6040       Reverse1 ? 1 : 0,
6041       Reverse1 ? 0 : 1,
6042       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6043       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6044     };
6045     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6046   }
6047
6048   if (Values.size() > 1 && VT.is128BitVector()) {
6049     // Check for a build vector of consecutive loads.
6050     for (unsigned i = 0; i < NumElems; ++i)
6051       V[i] = Op.getOperand(i);
6052
6053     // Check for elements which are consecutive loads.
6054     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6055     if (LD.getNode())
6056       return LD;
6057
6058     // Check for a build vector from mostly shuffle plus few inserting.
6059     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6060     if (Sh.getNode())
6061       return Sh;
6062
6063     // For SSE 4.1, use insertps to put the high elements into the low element.
6064     if (getSubtarget()->hasSSE41()) {
6065       SDValue Result;
6066       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6067         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6068       else
6069         Result = DAG.getUNDEF(VT);
6070
6071       for (unsigned i = 1; i < NumElems; ++i) {
6072         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6073         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6074                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6075       }
6076       return Result;
6077     }
6078
6079     // Otherwise, expand into a number of unpckl*, start by extending each of
6080     // our (non-undef) elements to the full vector width with the element in the
6081     // bottom slot of the vector (which generates no code for SSE).
6082     for (unsigned i = 0; i < NumElems; ++i) {
6083       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6084         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6085       else
6086         V[i] = DAG.getUNDEF(VT);
6087     }
6088
6089     // Next, we iteratively mix elements, e.g. for v4f32:
6090     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6091     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6092     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6093     unsigned EltStride = NumElems >> 1;
6094     while (EltStride != 0) {
6095       for (unsigned i = 0; i < EltStride; ++i) {
6096         // If V[i+EltStride] is undef and this is the first round of mixing,
6097         // then it is safe to just drop this shuffle: V[i] is already in the
6098         // right place, the one element (since it's the first round) being
6099         // inserted as undef can be dropped.  This isn't safe for successive
6100         // rounds because they will permute elements within both vectors.
6101         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6102             EltStride == NumElems/2)
6103           continue;
6104
6105         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6106       }
6107       EltStride >>= 1;
6108     }
6109     return V[0];
6110   }
6111   return SDValue();
6112 }
6113
6114 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6115 // to create 256-bit vectors from two other 128-bit ones.
6116 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6117   SDLoc dl(Op);
6118   MVT ResVT = Op.getSimpleValueType();
6119
6120   assert((ResVT.is256BitVector() ||
6121           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6122
6123   SDValue V1 = Op.getOperand(0);
6124   SDValue V2 = Op.getOperand(1);
6125   unsigned NumElems = ResVT.getVectorNumElements();
6126   if(ResVT.is256BitVector())
6127     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6128
6129   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6130 }
6131
6132 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6133   assert(Op.getNumOperands() == 2);
6134
6135   // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
6136   // from two other 128-bit ones.
6137   return LowerAVXCONCAT_VECTORS(Op, DAG);
6138 }
6139
6140 // Try to lower a shuffle node into a simple blend instruction.
6141 static SDValue
6142 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6143                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6144   SDValue V1 = SVOp->getOperand(0);
6145   SDValue V2 = SVOp->getOperand(1);
6146   SDLoc dl(SVOp);
6147   MVT VT = SVOp->getSimpleValueType(0);
6148   MVT EltVT = VT.getVectorElementType();
6149   unsigned NumElems = VT.getVectorNumElements();
6150
6151   // There is no blend with immediate in AVX-512.
6152   if (VT.is512BitVector())
6153     return SDValue();
6154
6155   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6156     return SDValue();
6157   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6158     return SDValue();
6159
6160   // Check the mask for BLEND and build the value.
6161   unsigned MaskValue = 0;
6162   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6163   unsigned NumLanes = (NumElems-1)/8 + 1;
6164   unsigned NumElemsInLane = NumElems / NumLanes;
6165
6166   // Blend for v16i16 should be symetric for the both lanes.
6167   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6168
6169     int SndLaneEltIdx = (NumLanes == 2) ?
6170       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6171     int EltIdx = SVOp->getMaskElt(i);
6172
6173     if ((EltIdx < 0 || EltIdx == (int)i) &&
6174         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6175       continue;
6176
6177     if (((unsigned)EltIdx == (i + NumElems)) &&
6178         (SndLaneEltIdx < 0 ||
6179          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6180       MaskValue |= (1<<i);
6181     else
6182       return SDValue();
6183   }
6184
6185   // Convert i32 vectors to floating point if it is not AVX2.
6186   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6187   MVT BlendVT = VT;
6188   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6189     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6190                                NumElems);
6191     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6192     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6193   }
6194
6195   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6196                             DAG.getConstant(MaskValue, MVT::i32));
6197   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6198 }
6199
6200 // v8i16 shuffles - Prefer shuffles in the following order:
6201 // 1. [all]   pshuflw, pshufhw, optional move
6202 // 2. [ssse3] 1 x pshufb
6203 // 3. [ssse3] 2 x pshufb + 1 x por
6204 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6205 static SDValue
6206 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6207                          SelectionDAG &DAG) {
6208   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6209   SDValue V1 = SVOp->getOperand(0);
6210   SDValue V2 = SVOp->getOperand(1);
6211   SDLoc dl(SVOp);
6212   SmallVector<int, 8> MaskVals;
6213
6214   // Determine if more than 1 of the words in each of the low and high quadwords
6215   // of the result come from the same quadword of one of the two inputs.  Undef
6216   // mask values count as coming from any quadword, for better codegen.
6217   unsigned LoQuad[] = { 0, 0, 0, 0 };
6218   unsigned HiQuad[] = { 0, 0, 0, 0 };
6219   std::bitset<4> InputQuads;
6220   for (unsigned i = 0; i < 8; ++i) {
6221     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6222     int EltIdx = SVOp->getMaskElt(i);
6223     MaskVals.push_back(EltIdx);
6224     if (EltIdx < 0) {
6225       ++Quad[0];
6226       ++Quad[1];
6227       ++Quad[2];
6228       ++Quad[3];
6229       continue;
6230     }
6231     ++Quad[EltIdx / 4];
6232     InputQuads.set(EltIdx / 4);
6233   }
6234
6235   int BestLoQuad = -1;
6236   unsigned MaxQuad = 1;
6237   for (unsigned i = 0; i < 4; ++i) {
6238     if (LoQuad[i] > MaxQuad) {
6239       BestLoQuad = i;
6240       MaxQuad = LoQuad[i];
6241     }
6242   }
6243
6244   int BestHiQuad = -1;
6245   MaxQuad = 1;
6246   for (unsigned i = 0; i < 4; ++i) {
6247     if (HiQuad[i] > MaxQuad) {
6248       BestHiQuad = i;
6249       MaxQuad = HiQuad[i];
6250     }
6251   }
6252
6253   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6254   // of the two input vectors, shuffle them into one input vector so only a
6255   // single pshufb instruction is necessary. If There are more than 2 input
6256   // quads, disable the next transformation since it does not help SSSE3.
6257   bool V1Used = InputQuads[0] || InputQuads[1];
6258   bool V2Used = InputQuads[2] || InputQuads[3];
6259   if (Subtarget->hasSSSE3()) {
6260     if (InputQuads.count() == 2 && V1Used && V2Used) {
6261       BestLoQuad = InputQuads[0] ? 0 : 1;
6262       BestHiQuad = InputQuads[2] ? 2 : 3;
6263     }
6264     if (InputQuads.count() > 2) {
6265       BestLoQuad = -1;
6266       BestHiQuad = -1;
6267     }
6268   }
6269
6270   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6271   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6272   // words from all 4 input quadwords.
6273   SDValue NewV;
6274   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6275     int MaskV[] = {
6276       BestLoQuad < 0 ? 0 : BestLoQuad,
6277       BestHiQuad < 0 ? 1 : BestHiQuad
6278     };
6279     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6280                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6281                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6282     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6283
6284     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6285     // source words for the shuffle, to aid later transformations.
6286     bool AllWordsInNewV = true;
6287     bool InOrder[2] = { true, true };
6288     for (unsigned i = 0; i != 8; ++i) {
6289       int idx = MaskVals[i];
6290       if (idx != (int)i)
6291         InOrder[i/4] = false;
6292       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6293         continue;
6294       AllWordsInNewV = false;
6295       break;
6296     }
6297
6298     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6299     if (AllWordsInNewV) {
6300       for (int i = 0; i != 8; ++i) {
6301         int idx = MaskVals[i];
6302         if (idx < 0)
6303           continue;
6304         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6305         if ((idx != i) && idx < 4)
6306           pshufhw = false;
6307         if ((idx != i) && idx > 3)
6308           pshuflw = false;
6309       }
6310       V1 = NewV;
6311       V2Used = false;
6312       BestLoQuad = 0;
6313       BestHiQuad = 1;
6314     }
6315
6316     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6317     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6318     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6319       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6320       unsigned TargetMask = 0;
6321       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6322                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6323       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6324       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6325                              getShufflePSHUFLWImmediate(SVOp);
6326       V1 = NewV.getOperand(0);
6327       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6328     }
6329   }
6330
6331   // Promote splats to a larger type which usually leads to more efficient code.
6332   // FIXME: Is this true if pshufb is available?
6333   if (SVOp->isSplat())
6334     return PromoteSplat(SVOp, DAG);
6335
6336   // If we have SSSE3, and all words of the result are from 1 input vector,
6337   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6338   // is present, fall back to case 4.
6339   if (Subtarget->hasSSSE3()) {
6340     SmallVector<SDValue,16> pshufbMask;
6341
6342     // If we have elements from both input vectors, set the high bit of the
6343     // shuffle mask element to zero out elements that come from V2 in the V1
6344     // mask, and elements that come from V1 in the V2 mask, so that the two
6345     // results can be OR'd together.
6346     bool TwoInputs = V1Used && V2Used;
6347     for (unsigned i = 0; i != 8; ++i) {
6348       int EltIdx = MaskVals[i] * 2;
6349       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6350       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6351       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6352       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6353     }
6354     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6355     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6356                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6357                                  MVT::v16i8, &pshufbMask[0], 16));
6358     if (!TwoInputs)
6359       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6360
6361     // Calculate the shuffle mask for the second input, shuffle it, and
6362     // OR it with the first shuffled input.
6363     pshufbMask.clear();
6364     for (unsigned i = 0; i != 8; ++i) {
6365       int EltIdx = MaskVals[i] * 2;
6366       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6367       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6368       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6369       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6370     }
6371     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6372     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6373                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6374                                  MVT::v16i8, &pshufbMask[0], 16));
6375     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6376     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6377   }
6378
6379   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6380   // and update MaskVals with new element order.
6381   std::bitset<8> InOrder;
6382   if (BestLoQuad >= 0) {
6383     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6384     for (int i = 0; i != 4; ++i) {
6385       int idx = MaskVals[i];
6386       if (idx < 0) {
6387         InOrder.set(i);
6388       } else if ((idx / 4) == BestLoQuad) {
6389         MaskV[i] = idx & 3;
6390         InOrder.set(i);
6391       }
6392     }
6393     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6394                                 &MaskV[0]);
6395
6396     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6397       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6398       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6399                                   NewV.getOperand(0),
6400                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6401     }
6402   }
6403
6404   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6405   // and update MaskVals with the new element order.
6406   if (BestHiQuad >= 0) {
6407     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6408     for (unsigned i = 4; i != 8; ++i) {
6409       int idx = MaskVals[i];
6410       if (idx < 0) {
6411         InOrder.set(i);
6412       } else if ((idx / 4) == BestHiQuad) {
6413         MaskV[i] = (idx & 3) + 4;
6414         InOrder.set(i);
6415       }
6416     }
6417     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6418                                 &MaskV[0]);
6419
6420     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6421       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6422       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6423                                   NewV.getOperand(0),
6424                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6425     }
6426   }
6427
6428   // In case BestHi & BestLo were both -1, which means each quadword has a word
6429   // from each of the four input quadwords, calculate the InOrder bitvector now
6430   // before falling through to the insert/extract cleanup.
6431   if (BestLoQuad == -1 && BestHiQuad == -1) {
6432     NewV = V1;
6433     for (int i = 0; i != 8; ++i)
6434       if (MaskVals[i] < 0 || MaskVals[i] == i)
6435         InOrder.set(i);
6436   }
6437
6438   // The other elements are put in the right place using pextrw and pinsrw.
6439   for (unsigned i = 0; i != 8; ++i) {
6440     if (InOrder[i])
6441       continue;
6442     int EltIdx = MaskVals[i];
6443     if (EltIdx < 0)
6444       continue;
6445     SDValue ExtOp = (EltIdx < 8) ?
6446       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6447                   DAG.getIntPtrConstant(EltIdx)) :
6448       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6449                   DAG.getIntPtrConstant(EltIdx - 8));
6450     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6451                        DAG.getIntPtrConstant(i));
6452   }
6453   return NewV;
6454 }
6455
6456 // v16i8 shuffles - Prefer shuffles in the following order:
6457 // 1. [ssse3] 1 x pshufb
6458 // 2. [ssse3] 2 x pshufb + 1 x por
6459 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6460 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6461                                         const X86Subtarget* Subtarget,
6462                                         SelectionDAG &DAG) {
6463   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6464   SDValue V1 = SVOp->getOperand(0);
6465   SDValue V2 = SVOp->getOperand(1);
6466   SDLoc dl(SVOp);
6467   ArrayRef<int> MaskVals = SVOp->getMask();
6468
6469   // Promote splats to a larger type which usually leads to more efficient code.
6470   // FIXME: Is this true if pshufb is available?
6471   if (SVOp->isSplat())
6472     return PromoteSplat(SVOp, DAG);
6473
6474   // If we have SSSE3, case 1 is generated when all result bytes come from
6475   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6476   // present, fall back to case 3.
6477
6478   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6479   if (Subtarget->hasSSSE3()) {
6480     SmallVector<SDValue,16> pshufbMask;
6481
6482     // If all result elements are from one input vector, then only translate
6483     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6484     //
6485     // Otherwise, we have elements from both input vectors, and must zero out
6486     // elements that come from V2 in the first mask, and V1 in the second mask
6487     // so that we can OR them together.
6488     for (unsigned i = 0; i != 16; ++i) {
6489       int EltIdx = MaskVals[i];
6490       if (EltIdx < 0 || EltIdx >= 16)
6491         EltIdx = 0x80;
6492       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6493     }
6494     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6495                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6496                                  MVT::v16i8, &pshufbMask[0], 16));
6497
6498     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6499     // the 2nd operand if it's undefined or zero.
6500     if (V2.getOpcode() == ISD::UNDEF ||
6501         ISD::isBuildVectorAllZeros(V2.getNode()))
6502       return V1;
6503
6504     // Calculate the shuffle mask for the second input, shuffle it, and
6505     // OR it with the first shuffled input.
6506     pshufbMask.clear();
6507     for (unsigned i = 0; i != 16; ++i) {
6508       int EltIdx = MaskVals[i];
6509       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6510       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6511     }
6512     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6513                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6514                                  MVT::v16i8, &pshufbMask[0], 16));
6515     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6516   }
6517
6518   // No SSSE3 - Calculate in place words and then fix all out of place words
6519   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6520   // the 16 different words that comprise the two doublequadword input vectors.
6521   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6522   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6523   SDValue NewV = V1;
6524   for (int i = 0; i != 8; ++i) {
6525     int Elt0 = MaskVals[i*2];
6526     int Elt1 = MaskVals[i*2+1];
6527
6528     // This word of the result is all undef, skip it.
6529     if (Elt0 < 0 && Elt1 < 0)
6530       continue;
6531
6532     // This word of the result is already in the correct place, skip it.
6533     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6534       continue;
6535
6536     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6537     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6538     SDValue InsElt;
6539
6540     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6541     // using a single extract together, load it and store it.
6542     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6543       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6544                            DAG.getIntPtrConstant(Elt1 / 2));
6545       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6546                         DAG.getIntPtrConstant(i));
6547       continue;
6548     }
6549
6550     // If Elt1 is defined, extract it from the appropriate source.  If the
6551     // source byte is not also odd, shift the extracted word left 8 bits
6552     // otherwise clear the bottom 8 bits if we need to do an or.
6553     if (Elt1 >= 0) {
6554       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6555                            DAG.getIntPtrConstant(Elt1 / 2));
6556       if ((Elt1 & 1) == 0)
6557         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6558                              DAG.getConstant(8,
6559                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6560       else if (Elt0 >= 0)
6561         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6562                              DAG.getConstant(0xFF00, MVT::i16));
6563     }
6564     // If Elt0 is defined, extract it from the appropriate source.  If the
6565     // source byte is not also even, shift the extracted word right 8 bits. If
6566     // Elt1 was also defined, OR the extracted values together before
6567     // inserting them in the result.
6568     if (Elt0 >= 0) {
6569       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6570                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6571       if ((Elt0 & 1) != 0)
6572         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6573                               DAG.getConstant(8,
6574                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6575       else if (Elt1 >= 0)
6576         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6577                              DAG.getConstant(0x00FF, MVT::i16));
6578       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6579                          : InsElt0;
6580     }
6581     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6582                        DAG.getIntPtrConstant(i));
6583   }
6584   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6585 }
6586
6587 // v32i8 shuffles - Translate to VPSHUFB if possible.
6588 static
6589 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6590                                  const X86Subtarget *Subtarget,
6591                                  SelectionDAG &DAG) {
6592   MVT VT = SVOp->getSimpleValueType(0);
6593   SDValue V1 = SVOp->getOperand(0);
6594   SDValue V2 = SVOp->getOperand(1);
6595   SDLoc dl(SVOp);
6596   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6597
6598   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6599   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6600   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6601
6602   // VPSHUFB may be generated if
6603   // (1) one of input vector is undefined or zeroinitializer.
6604   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6605   // And (2) the mask indexes don't cross the 128-bit lane.
6606   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6607       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6608     return SDValue();
6609
6610   if (V1IsAllZero && !V2IsAllZero) {
6611     CommuteVectorShuffleMask(MaskVals, 32);
6612     V1 = V2;
6613   }
6614   SmallVector<SDValue, 32> pshufbMask;
6615   for (unsigned i = 0; i != 32; i++) {
6616     int EltIdx = MaskVals[i];
6617     if (EltIdx < 0 || EltIdx >= 32)
6618       EltIdx = 0x80;
6619     else {
6620       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6621         // Cross lane is not allowed.
6622         return SDValue();
6623       EltIdx &= 0xf;
6624     }
6625     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6626   }
6627   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6628                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6629                                   MVT::v32i8, &pshufbMask[0], 32));
6630 }
6631
6632 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6633 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6634 /// done when every pair / quad of shuffle mask elements point to elements in
6635 /// the right sequence. e.g.
6636 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6637 static
6638 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6639                                  SelectionDAG &DAG) {
6640   MVT VT = SVOp->getSimpleValueType(0);
6641   SDLoc dl(SVOp);
6642   unsigned NumElems = VT.getVectorNumElements();
6643   MVT NewVT;
6644   unsigned Scale;
6645   switch (VT.SimpleTy) {
6646   default: llvm_unreachable("Unexpected!");
6647   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6648   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6649   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6650   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6651   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6652   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6653   }
6654
6655   SmallVector<int, 8> MaskVec;
6656   for (unsigned i = 0; i != NumElems; i += Scale) {
6657     int StartIdx = -1;
6658     for (unsigned j = 0; j != Scale; ++j) {
6659       int EltIdx = SVOp->getMaskElt(i+j);
6660       if (EltIdx < 0)
6661         continue;
6662       if (StartIdx < 0)
6663         StartIdx = (EltIdx / Scale);
6664       if (EltIdx != (int)(StartIdx*Scale + j))
6665         return SDValue();
6666     }
6667     MaskVec.push_back(StartIdx);
6668   }
6669
6670   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6671   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6672   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6673 }
6674
6675 /// getVZextMovL - Return a zero-extending vector move low node.
6676 ///
6677 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6678                             SDValue SrcOp, SelectionDAG &DAG,
6679                             const X86Subtarget *Subtarget, SDLoc dl) {
6680   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6681     LoadSDNode *LD = NULL;
6682     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6683       LD = dyn_cast<LoadSDNode>(SrcOp);
6684     if (!LD) {
6685       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6686       // instead.
6687       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6688       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6689           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6690           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6691           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6692         // PR2108
6693         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6694         return DAG.getNode(ISD::BITCAST, dl, VT,
6695                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6696                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6697                                                    OpVT,
6698                                                    SrcOp.getOperand(0)
6699                                                           .getOperand(0))));
6700       }
6701     }
6702   }
6703
6704   return DAG.getNode(ISD::BITCAST, dl, VT,
6705                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6706                                  DAG.getNode(ISD::BITCAST, dl,
6707                                              OpVT, SrcOp)));
6708 }
6709
6710 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6711 /// which could not be matched by any known target speficic shuffle
6712 static SDValue
6713 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6714
6715   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6716   if (NewOp.getNode())
6717     return NewOp;
6718
6719   MVT VT = SVOp->getSimpleValueType(0);
6720
6721   unsigned NumElems = VT.getVectorNumElements();
6722   unsigned NumLaneElems = NumElems / 2;
6723
6724   SDLoc dl(SVOp);
6725   MVT EltVT = VT.getVectorElementType();
6726   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6727   SDValue Output[2];
6728
6729   SmallVector<int, 16> Mask;
6730   for (unsigned l = 0; l < 2; ++l) {
6731     // Build a shuffle mask for the output, discovering on the fly which
6732     // input vectors to use as shuffle operands (recorded in InputUsed).
6733     // If building a suitable shuffle vector proves too hard, then bail
6734     // out with UseBuildVector set.
6735     bool UseBuildVector = false;
6736     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6737     unsigned LaneStart = l * NumLaneElems;
6738     for (unsigned i = 0; i != NumLaneElems; ++i) {
6739       // The mask element.  This indexes into the input.
6740       int Idx = SVOp->getMaskElt(i+LaneStart);
6741       if (Idx < 0) {
6742         // the mask element does not index into any input vector.
6743         Mask.push_back(-1);
6744         continue;
6745       }
6746
6747       // The input vector this mask element indexes into.
6748       int Input = Idx / NumLaneElems;
6749
6750       // Turn the index into an offset from the start of the input vector.
6751       Idx -= Input * NumLaneElems;
6752
6753       // Find or create a shuffle vector operand to hold this input.
6754       unsigned OpNo;
6755       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6756         if (InputUsed[OpNo] == Input)
6757           // This input vector is already an operand.
6758           break;
6759         if (InputUsed[OpNo] < 0) {
6760           // Create a new operand for this input vector.
6761           InputUsed[OpNo] = Input;
6762           break;
6763         }
6764       }
6765
6766       if (OpNo >= array_lengthof(InputUsed)) {
6767         // More than two input vectors used!  Give up on trying to create a
6768         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6769         UseBuildVector = true;
6770         break;
6771       }
6772
6773       // Add the mask index for the new shuffle vector.
6774       Mask.push_back(Idx + OpNo * NumLaneElems);
6775     }
6776
6777     if (UseBuildVector) {
6778       SmallVector<SDValue, 16> SVOps;
6779       for (unsigned i = 0; i != NumLaneElems; ++i) {
6780         // The mask element.  This indexes into the input.
6781         int Idx = SVOp->getMaskElt(i+LaneStart);
6782         if (Idx < 0) {
6783           SVOps.push_back(DAG.getUNDEF(EltVT));
6784           continue;
6785         }
6786
6787         // The input vector this mask element indexes into.
6788         int Input = Idx / NumElems;
6789
6790         // Turn the index into an offset from the start of the input vector.
6791         Idx -= Input * NumElems;
6792
6793         // Extract the vector element by hand.
6794         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6795                                     SVOp->getOperand(Input),
6796                                     DAG.getIntPtrConstant(Idx)));
6797       }
6798
6799       // Construct the output using a BUILD_VECTOR.
6800       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6801                               SVOps.size());
6802     } else if (InputUsed[0] < 0) {
6803       // No input vectors were used! The result is undefined.
6804       Output[l] = DAG.getUNDEF(NVT);
6805     } else {
6806       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6807                                         (InputUsed[0] % 2) * NumLaneElems,
6808                                         DAG, dl);
6809       // If only one input was used, use an undefined vector for the other.
6810       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6811         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6812                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6813       // At least one input vector was used. Create a new shuffle vector.
6814       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6815     }
6816
6817     Mask.clear();
6818   }
6819
6820   // Concatenate the result back
6821   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6822 }
6823
6824 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6825 /// 4 elements, and match them with several different shuffle types.
6826 static SDValue
6827 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6828   SDValue V1 = SVOp->getOperand(0);
6829   SDValue V2 = SVOp->getOperand(1);
6830   SDLoc dl(SVOp);
6831   MVT VT = SVOp->getSimpleValueType(0);
6832
6833   assert(VT.is128BitVector() && "Unsupported vector size");
6834
6835   std::pair<int, int> Locs[4];
6836   int Mask1[] = { -1, -1, -1, -1 };
6837   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6838
6839   unsigned NumHi = 0;
6840   unsigned NumLo = 0;
6841   for (unsigned i = 0; i != 4; ++i) {
6842     int Idx = PermMask[i];
6843     if (Idx < 0) {
6844       Locs[i] = std::make_pair(-1, -1);
6845     } else {
6846       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6847       if (Idx < 4) {
6848         Locs[i] = std::make_pair(0, NumLo);
6849         Mask1[NumLo] = Idx;
6850         NumLo++;
6851       } else {
6852         Locs[i] = std::make_pair(1, NumHi);
6853         if (2+NumHi < 4)
6854           Mask1[2+NumHi] = Idx;
6855         NumHi++;
6856       }
6857     }
6858   }
6859
6860   if (NumLo <= 2 && NumHi <= 2) {
6861     // If no more than two elements come from either vector. This can be
6862     // implemented with two shuffles. First shuffle gather the elements.
6863     // The second shuffle, which takes the first shuffle as both of its
6864     // vector operands, put the elements into the right order.
6865     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6866
6867     int Mask2[] = { -1, -1, -1, -1 };
6868
6869     for (unsigned i = 0; i != 4; ++i)
6870       if (Locs[i].first != -1) {
6871         unsigned Idx = (i < 2) ? 0 : 4;
6872         Idx += Locs[i].first * 2 + Locs[i].second;
6873         Mask2[i] = Idx;
6874       }
6875
6876     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6877   }
6878
6879   if (NumLo == 3 || NumHi == 3) {
6880     // Otherwise, we must have three elements from one vector, call it X, and
6881     // one element from the other, call it Y.  First, use a shufps to build an
6882     // intermediate vector with the one element from Y and the element from X
6883     // that will be in the same half in the final destination (the indexes don't
6884     // matter). Then, use a shufps to build the final vector, taking the half
6885     // containing the element from Y from the intermediate, and the other half
6886     // from X.
6887     if (NumHi == 3) {
6888       // Normalize it so the 3 elements come from V1.
6889       CommuteVectorShuffleMask(PermMask, 4);
6890       std::swap(V1, V2);
6891     }
6892
6893     // Find the element from V2.
6894     unsigned HiIndex;
6895     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6896       int Val = PermMask[HiIndex];
6897       if (Val < 0)
6898         continue;
6899       if (Val >= 4)
6900         break;
6901     }
6902
6903     Mask1[0] = PermMask[HiIndex];
6904     Mask1[1] = -1;
6905     Mask1[2] = PermMask[HiIndex^1];
6906     Mask1[3] = -1;
6907     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6908
6909     if (HiIndex >= 2) {
6910       Mask1[0] = PermMask[0];
6911       Mask1[1] = PermMask[1];
6912       Mask1[2] = HiIndex & 1 ? 6 : 4;
6913       Mask1[3] = HiIndex & 1 ? 4 : 6;
6914       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6915     }
6916
6917     Mask1[0] = HiIndex & 1 ? 2 : 0;
6918     Mask1[1] = HiIndex & 1 ? 0 : 2;
6919     Mask1[2] = PermMask[2];
6920     Mask1[3] = PermMask[3];
6921     if (Mask1[2] >= 0)
6922       Mask1[2] += 4;
6923     if (Mask1[3] >= 0)
6924       Mask1[3] += 4;
6925     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6926   }
6927
6928   // Break it into (shuffle shuffle_hi, shuffle_lo).
6929   int LoMask[] = { -1, -1, -1, -1 };
6930   int HiMask[] = { -1, -1, -1, -1 };
6931
6932   int *MaskPtr = LoMask;
6933   unsigned MaskIdx = 0;
6934   unsigned LoIdx = 0;
6935   unsigned HiIdx = 2;
6936   for (unsigned i = 0; i != 4; ++i) {
6937     if (i == 2) {
6938       MaskPtr = HiMask;
6939       MaskIdx = 1;
6940       LoIdx = 0;
6941       HiIdx = 2;
6942     }
6943     int Idx = PermMask[i];
6944     if (Idx < 0) {
6945       Locs[i] = std::make_pair(-1, -1);
6946     } else if (Idx < 4) {
6947       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6948       MaskPtr[LoIdx] = Idx;
6949       LoIdx++;
6950     } else {
6951       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6952       MaskPtr[HiIdx] = Idx;
6953       HiIdx++;
6954     }
6955   }
6956
6957   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6958   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6959   int MaskOps[] = { -1, -1, -1, -1 };
6960   for (unsigned i = 0; i != 4; ++i)
6961     if (Locs[i].first != -1)
6962       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6963   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6964 }
6965
6966 static bool MayFoldVectorLoad(SDValue V) {
6967   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6968     V = V.getOperand(0);
6969
6970   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6971     V = V.getOperand(0);
6972   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6973       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6974     // BUILD_VECTOR (load), undef
6975     V = V.getOperand(0);
6976
6977   return MayFoldLoad(V);
6978 }
6979
6980 static
6981 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6982   MVT VT = Op.getSimpleValueType();
6983
6984   // Canonizalize to v2f64.
6985   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6986   return DAG.getNode(ISD::BITCAST, dl, VT,
6987                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6988                                           V1, DAG));
6989 }
6990
6991 static
6992 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6993                         bool HasSSE2) {
6994   SDValue V1 = Op.getOperand(0);
6995   SDValue V2 = Op.getOperand(1);
6996   MVT VT = Op.getSimpleValueType();
6997
6998   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6999
7000   if (HasSSE2 && VT == MVT::v2f64)
7001     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7002
7003   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7004   return DAG.getNode(ISD::BITCAST, dl, VT,
7005                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7006                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7007                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7008 }
7009
7010 static
7011 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7012   SDValue V1 = Op.getOperand(0);
7013   SDValue V2 = Op.getOperand(1);
7014   MVT VT = Op.getSimpleValueType();
7015
7016   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7017          "unsupported shuffle type");
7018
7019   if (V2.getOpcode() == ISD::UNDEF)
7020     V2 = V1;
7021
7022   // v4i32 or v4f32
7023   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7024 }
7025
7026 static
7027 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7028   SDValue V1 = Op.getOperand(0);
7029   SDValue V2 = Op.getOperand(1);
7030   MVT VT = Op.getSimpleValueType();
7031   unsigned NumElems = VT.getVectorNumElements();
7032
7033   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7034   // operand of these instructions is only memory, so check if there's a
7035   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7036   // same masks.
7037   bool CanFoldLoad = false;
7038
7039   // Trivial case, when V2 comes from a load.
7040   if (MayFoldVectorLoad(V2))
7041     CanFoldLoad = true;
7042
7043   // When V1 is a load, it can be folded later into a store in isel, example:
7044   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7045   //    turns into:
7046   //  (MOVLPSmr addr:$src1, VR128:$src2)
7047   // So, recognize this potential and also use MOVLPS or MOVLPD
7048   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7049     CanFoldLoad = true;
7050
7051   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7052   if (CanFoldLoad) {
7053     if (HasSSE2 && NumElems == 2)
7054       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7055
7056     if (NumElems == 4)
7057       // If we don't care about the second element, proceed to use movss.
7058       if (SVOp->getMaskElt(1) != -1)
7059         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7060   }
7061
7062   // movl and movlp will both match v2i64, but v2i64 is never matched by
7063   // movl earlier because we make it strict to avoid messing with the movlp load
7064   // folding logic (see the code above getMOVLP call). Match it here then,
7065   // this is horrible, but will stay like this until we move all shuffle
7066   // matching to x86 specific nodes. Note that for the 1st condition all
7067   // types are matched with movsd.
7068   if (HasSSE2) {
7069     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7070     // as to remove this logic from here, as much as possible
7071     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7072       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7073     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7074   }
7075
7076   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7077
7078   // Invert the operand order and use SHUFPS to match it.
7079   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7080                               getShuffleSHUFImmediate(SVOp), DAG);
7081 }
7082
7083 // Reduce a vector shuffle to zext.
7084 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7085                                     SelectionDAG &DAG) {
7086   // PMOVZX is only available from SSE41.
7087   if (!Subtarget->hasSSE41())
7088     return SDValue();
7089
7090   MVT VT = Op.getSimpleValueType();
7091
7092   // Only AVX2 support 256-bit vector integer extending.
7093   if (!Subtarget->hasInt256() && VT.is256BitVector())
7094     return SDValue();
7095
7096   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7097   SDLoc DL(Op);
7098   SDValue V1 = Op.getOperand(0);
7099   SDValue V2 = Op.getOperand(1);
7100   unsigned NumElems = VT.getVectorNumElements();
7101
7102   // Extending is an unary operation and the element type of the source vector
7103   // won't be equal to or larger than i64.
7104   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7105       VT.getVectorElementType() == MVT::i64)
7106     return SDValue();
7107
7108   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7109   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7110   while ((1U << Shift) < NumElems) {
7111     if (SVOp->getMaskElt(1U << Shift) == 1)
7112       break;
7113     Shift += 1;
7114     // The maximal ratio is 8, i.e. from i8 to i64.
7115     if (Shift > 3)
7116       return SDValue();
7117   }
7118
7119   // Check the shuffle mask.
7120   unsigned Mask = (1U << Shift) - 1;
7121   for (unsigned i = 0; i != NumElems; ++i) {
7122     int EltIdx = SVOp->getMaskElt(i);
7123     if ((i & Mask) != 0 && EltIdx != -1)
7124       return SDValue();
7125     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7126       return SDValue();
7127   }
7128
7129   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7130   MVT NeVT = MVT::getIntegerVT(NBits);
7131   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7132
7133   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7134     return SDValue();
7135
7136   // Simplify the operand as it's prepared to be fed into shuffle.
7137   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7138   if (V1.getOpcode() == ISD::BITCAST &&
7139       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7140       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7141       V1.getOperand(0).getOperand(0)
7142         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7143     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7144     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7145     ConstantSDNode *CIdx =
7146       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7147     // If it's foldable, i.e. normal load with single use, we will let code
7148     // selection to fold it. Otherwise, we will short the conversion sequence.
7149     if (CIdx && CIdx->getZExtValue() == 0 &&
7150         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7151       MVT FullVT = V.getSimpleValueType();
7152       MVT V1VT = V1.getSimpleValueType();
7153       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7154         // The "ext_vec_elt" node is wider than the result node.
7155         // In this case we should extract subvector from V.
7156         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7157         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7158         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7159                                         FullVT.getVectorNumElements()/Ratio);
7160         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7161                         DAG.getIntPtrConstant(0));
7162       }
7163       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7164     }
7165   }
7166
7167   return DAG.getNode(ISD::BITCAST, DL, VT,
7168                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7169 }
7170
7171 static SDValue
7172 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7173                        SelectionDAG &DAG) {
7174   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7175   MVT VT = Op.getSimpleValueType();
7176   SDLoc dl(Op);
7177   SDValue V1 = Op.getOperand(0);
7178   SDValue V2 = Op.getOperand(1);
7179
7180   if (isZeroShuffle(SVOp))
7181     return getZeroVector(VT, Subtarget, DAG, dl);
7182
7183   // Handle splat operations
7184   if (SVOp->isSplat()) {
7185     // Use vbroadcast whenever the splat comes from a foldable load
7186     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7187     if (Broadcast.getNode())
7188       return Broadcast;
7189   }
7190
7191   // Check integer expanding shuffles.
7192   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7193   if (NewOp.getNode())
7194     return NewOp;
7195
7196   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7197   // do it!
7198   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7199       VT == MVT::v16i16 || VT == MVT::v32i8) {
7200     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7201     if (NewOp.getNode())
7202       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7203   } else if ((VT == MVT::v4i32 ||
7204              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7205     // FIXME: Figure out a cleaner way to do this.
7206     // Try to make use of movq to zero out the top part.
7207     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7208       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7209       if (NewOp.getNode()) {
7210         MVT NewVT = NewOp.getSimpleValueType();
7211         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7212                                NewVT, true, false))
7213           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7214                               DAG, Subtarget, dl);
7215       }
7216     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7217       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7218       if (NewOp.getNode()) {
7219         MVT NewVT = NewOp.getSimpleValueType();
7220         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7221           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7222                               DAG, Subtarget, dl);
7223       }
7224     }
7225   }
7226   return SDValue();
7227 }
7228
7229 SDValue
7230 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7231   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7232   SDValue V1 = Op.getOperand(0);
7233   SDValue V2 = Op.getOperand(1);
7234   MVT VT = Op.getSimpleValueType();
7235   SDLoc dl(Op);
7236   unsigned NumElems = VT.getVectorNumElements();
7237   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7238   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7239   bool V1IsSplat = false;
7240   bool V2IsSplat = false;
7241   bool HasSSE2 = Subtarget->hasSSE2();
7242   bool HasFp256    = Subtarget->hasFp256();
7243   bool HasInt256   = Subtarget->hasInt256();
7244   MachineFunction &MF = DAG.getMachineFunction();
7245   bool OptForSize = MF.getFunction()->getAttributes().
7246     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7247
7248   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7249
7250   if (V1IsUndef && V2IsUndef)
7251     return DAG.getUNDEF(VT);
7252
7253   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7254
7255   // Vector shuffle lowering takes 3 steps:
7256   //
7257   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7258   //    narrowing and commutation of operands should be handled.
7259   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7260   //    shuffle nodes.
7261   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7262   //    so the shuffle can be broken into other shuffles and the legalizer can
7263   //    try the lowering again.
7264   //
7265   // The general idea is that no vector_shuffle operation should be left to
7266   // be matched during isel, all of them must be converted to a target specific
7267   // node here.
7268
7269   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7270   // narrowing and commutation of operands should be handled. The actual code
7271   // doesn't include all of those, work in progress...
7272   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7273   if (NewOp.getNode())
7274     return NewOp;
7275
7276   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7277
7278   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7279   // unpckh_undef). Only use pshufd if speed is more important than size.
7280   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7281     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7282   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7283     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7284
7285   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7286       V2IsUndef && MayFoldVectorLoad(V1))
7287     return getMOVDDup(Op, dl, V1, DAG);
7288
7289   if (isMOVHLPS_v_undef_Mask(M, VT))
7290     return getMOVHighToLow(Op, dl, DAG);
7291
7292   // Use to match splats
7293   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7294       (VT == MVT::v2f64 || VT == MVT::v2i64))
7295     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7296
7297   if (isPSHUFDMask(M, VT)) {
7298     // The actual implementation will match the mask in the if above and then
7299     // during isel it can match several different instructions, not only pshufd
7300     // as its name says, sad but true, emulate the behavior for now...
7301     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7302       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7303
7304     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7305
7306     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7307       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7308
7309     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7310       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7311                                   DAG);
7312
7313     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7314                                 TargetMask, DAG);
7315   }
7316
7317   if (isPALIGNRMask(M, VT, Subtarget))
7318     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7319                                 getShufflePALIGNRImmediate(SVOp),
7320                                 DAG);
7321
7322   // Check if this can be converted into a logical shift.
7323   bool isLeft = false;
7324   unsigned ShAmt = 0;
7325   SDValue ShVal;
7326   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7327   if (isShift && ShVal.hasOneUse()) {
7328     // If the shifted value has multiple uses, it may be cheaper to use
7329     // v_set0 + movlhps or movhlps, etc.
7330     MVT EltVT = VT.getVectorElementType();
7331     ShAmt *= EltVT.getSizeInBits();
7332     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7333   }
7334
7335   if (isMOVLMask(M, VT)) {
7336     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7337       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7338     if (!isMOVLPMask(M, VT)) {
7339       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7340         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7341
7342       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7343         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7344     }
7345   }
7346
7347   // FIXME: fold these into legal mask.
7348   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7349     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7350
7351   if (isMOVHLPSMask(M, VT))
7352     return getMOVHighToLow(Op, dl, DAG);
7353
7354   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7355     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7356
7357   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7358     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7359
7360   if (isMOVLPMask(M, VT))
7361     return getMOVLP(Op, dl, DAG, HasSSE2);
7362
7363   if (ShouldXformToMOVHLPS(M, VT) ||
7364       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7365     return CommuteVectorShuffle(SVOp, DAG);
7366
7367   if (isShift) {
7368     // No better options. Use a vshldq / vsrldq.
7369     MVT EltVT = VT.getVectorElementType();
7370     ShAmt *= EltVT.getSizeInBits();
7371     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7372   }
7373
7374   bool Commuted = false;
7375   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7376   // 1,1,1,1 -> v8i16 though.
7377   V1IsSplat = isSplatVector(V1.getNode());
7378   V2IsSplat = isSplatVector(V2.getNode());
7379
7380   // Canonicalize the splat or undef, if present, to be on the RHS.
7381   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7382     CommuteVectorShuffleMask(M, NumElems);
7383     std::swap(V1, V2);
7384     std::swap(V1IsSplat, V2IsSplat);
7385     Commuted = true;
7386   }
7387
7388   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7389     // Shuffling low element of v1 into undef, just return v1.
7390     if (V2IsUndef)
7391       return V1;
7392     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7393     // the instruction selector will not match, so get a canonical MOVL with
7394     // swapped operands to undo the commute.
7395     return getMOVL(DAG, dl, VT, V2, V1);
7396   }
7397
7398   if (isUNPCKLMask(M, VT, HasInt256))
7399     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7400
7401   if (isUNPCKHMask(M, VT, HasInt256))
7402     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7403
7404   if (V2IsSplat) {
7405     // Normalize mask so all entries that point to V2 points to its first
7406     // element then try to match unpck{h|l} again. If match, return a
7407     // new vector_shuffle with the corrected mask.p
7408     SmallVector<int, 8> NewMask(M.begin(), M.end());
7409     NormalizeMask(NewMask, NumElems);
7410     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7411       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7412     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7413       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7414   }
7415
7416   if (Commuted) {
7417     // Commute is back and try unpck* again.
7418     // FIXME: this seems wrong.
7419     CommuteVectorShuffleMask(M, NumElems);
7420     std::swap(V1, V2);
7421     std::swap(V1IsSplat, V2IsSplat);
7422     Commuted = false;
7423
7424     if (isUNPCKLMask(M, VT, HasInt256))
7425       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7426
7427     if (isUNPCKHMask(M, VT, HasInt256))
7428       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7429   }
7430
7431   // Normalize the node to match x86 shuffle ops if needed
7432   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7433     return CommuteVectorShuffle(SVOp, DAG);
7434
7435   // The checks below are all present in isShuffleMaskLegal, but they are
7436   // inlined here right now to enable us to directly emit target specific
7437   // nodes, and remove one by one until they don't return Op anymore.
7438
7439   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7440       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7441     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7442       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7443   }
7444
7445   if (isPSHUFHWMask(M, VT, HasInt256))
7446     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7447                                 getShufflePSHUFHWImmediate(SVOp),
7448                                 DAG);
7449
7450   if (isPSHUFLWMask(M, VT, HasInt256))
7451     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7452                                 getShufflePSHUFLWImmediate(SVOp),
7453                                 DAG);
7454
7455   if (isSHUFPMask(M, VT))
7456     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7457                                 getShuffleSHUFImmediate(SVOp), DAG);
7458
7459   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7460     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7461   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7462     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7463
7464   //===--------------------------------------------------------------------===//
7465   // Generate target specific nodes for 128 or 256-bit shuffles only
7466   // supported in the AVX instruction set.
7467   //
7468
7469   // Handle VMOVDDUPY permutations
7470   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7471     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7472
7473   // Handle VPERMILPS/D* permutations
7474   if (isVPERMILPMask(M, VT)) {
7475     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7476       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7477                                   getShuffleSHUFImmediate(SVOp), DAG);
7478     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7479                                 getShuffleSHUFImmediate(SVOp), DAG);
7480   }
7481
7482   // Handle VPERM2F128/VPERM2I128 permutations
7483   if (isVPERM2X128Mask(M, VT, HasFp256))
7484     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7485                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7486
7487   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7488   if (BlendOp.getNode())
7489     return BlendOp;
7490
7491   unsigned Imm8;
7492   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7493     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7494
7495   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7496       VT.is512BitVector()) {
7497     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7498     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7499     SmallVector<SDValue, 16> permclMask;
7500     for (unsigned i = 0; i != NumElems; ++i) {
7501       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7502     }
7503
7504     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7505                                 &permclMask[0], NumElems);
7506     if (V2IsUndef)
7507       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7508       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7509                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7510     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7511                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7512   }
7513
7514   //===--------------------------------------------------------------------===//
7515   // Since no target specific shuffle was selected for this generic one,
7516   // lower it into other known shuffles. FIXME: this isn't true yet, but
7517   // this is the plan.
7518   //
7519
7520   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7521   if (VT == MVT::v8i16) {
7522     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7523     if (NewOp.getNode())
7524       return NewOp;
7525   }
7526
7527   if (VT == MVT::v16i8) {
7528     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7529     if (NewOp.getNode())
7530       return NewOp;
7531   }
7532
7533   if (VT == MVT::v32i8) {
7534     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7535     if (NewOp.getNode())
7536       return NewOp;
7537   }
7538
7539   // Handle all 128-bit wide vectors with 4 elements, and match them with
7540   // several different shuffle types.
7541   if (NumElems == 4 && VT.is128BitVector())
7542     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7543
7544   // Handle general 256-bit shuffles
7545   if (VT.is256BitVector())
7546     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7547
7548   return SDValue();
7549 }
7550
7551 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7552   MVT VT = Op.getSimpleValueType();
7553   SDLoc dl(Op);
7554
7555   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7556     return SDValue();
7557
7558   if (VT.getSizeInBits() == 8) {
7559     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7560                                   Op.getOperand(0), Op.getOperand(1));
7561     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7562                                   DAG.getValueType(VT));
7563     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7564   }
7565
7566   if (VT.getSizeInBits() == 16) {
7567     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7568     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7569     if (Idx == 0)
7570       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7571                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7572                                      DAG.getNode(ISD::BITCAST, dl,
7573                                                  MVT::v4i32,
7574                                                  Op.getOperand(0)),
7575                                      Op.getOperand(1)));
7576     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7577                                   Op.getOperand(0), Op.getOperand(1));
7578     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7579                                   DAG.getValueType(VT));
7580     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7581   }
7582
7583   if (VT == MVT::f32) {
7584     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7585     // the result back to FR32 register. It's only worth matching if the
7586     // result has a single use which is a store or a bitcast to i32.  And in
7587     // the case of a store, it's not worth it if the index is a constant 0,
7588     // because a MOVSSmr can be used instead, which is smaller and faster.
7589     if (!Op.hasOneUse())
7590       return SDValue();
7591     SDNode *User = *Op.getNode()->use_begin();
7592     if ((User->getOpcode() != ISD::STORE ||
7593          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7594           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7595         (User->getOpcode() != ISD::BITCAST ||
7596          User->getValueType(0) != MVT::i32))
7597       return SDValue();
7598     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7599                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7600                                               Op.getOperand(0)),
7601                                               Op.getOperand(1));
7602     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7603   }
7604
7605   if (VT == MVT::i32 || VT == MVT::i64) {
7606     // ExtractPS/pextrq works with constant index.
7607     if (isa<ConstantSDNode>(Op.getOperand(1)))
7608       return Op;
7609   }
7610   return SDValue();
7611 }
7612
7613 SDValue
7614 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7615                                            SelectionDAG &DAG) const {
7616   SDLoc dl(Op);
7617   SDValue Vec = Op.getOperand(0);
7618   MVT VecVT = Vec.getSimpleValueType();
7619   SDValue Idx = Op.getOperand(1);
7620   if (!isa<ConstantSDNode>(Idx)) {
7621     if (VecVT.is512BitVector() ||
7622         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7623          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7624
7625       MVT MaskEltVT =
7626         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7627       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7628                                     MaskEltVT.getSizeInBits());
7629       
7630       if (Idx.getSimpleValueType() != MaskEltVT)
7631         if (Idx.getOpcode() == ISD::ZERO_EXTEND ||
7632             Idx.getOpcode() == ISD::SIGN_EXTEND)
7633           Idx = Idx.getOperand(0);
7634       assert(Idx.getSimpleValueType() == MaskEltVT &&
7635              "Unexpected index in insertelement");
7636       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7637                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7638                                 Idx, DAG.getConstant(0, getPointerTy()));
7639       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7640       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7641                         Perm, DAG.getConstant(0, getPointerTy()));
7642     }
7643     return SDValue();
7644   }
7645
7646   // If this is a 256-bit vector result, first extract the 128-bit vector and
7647   // then extract the element from the 128-bit vector.
7648   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7649
7650     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7651     // Get the 128-bit vector.
7652     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7653     MVT EltVT = VecVT.getVectorElementType();
7654
7655     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7656
7657     //if (IdxVal >= NumElems/2)
7658     //  IdxVal -= NumElems/2;
7659     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7660     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7661                        DAG.getConstant(IdxVal, MVT::i32));
7662   }
7663
7664   assert(VecVT.is128BitVector() && "Unexpected vector length");
7665
7666   if (Subtarget->hasSSE41()) {
7667     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7668     if (Res.getNode())
7669       return Res;
7670   }
7671
7672   MVT VT = Op.getSimpleValueType();
7673   // TODO: handle v16i8.
7674   if (VT.getSizeInBits() == 16) {
7675     SDValue Vec = Op.getOperand(0);
7676     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7677     if (Idx == 0)
7678       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7679                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7680                                      DAG.getNode(ISD::BITCAST, dl,
7681                                                  MVT::v4i32, Vec),
7682                                      Op.getOperand(1)));
7683     // Transform it so it match pextrw which produces a 32-bit result.
7684     MVT EltVT = MVT::i32;
7685     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7686                                   Op.getOperand(0), Op.getOperand(1));
7687     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7688                                   DAG.getValueType(VT));
7689     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7690   }
7691
7692   if (VT.getSizeInBits() == 32) {
7693     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7694     if (Idx == 0)
7695       return Op;
7696
7697     // SHUFPS the element to the lowest double word, then movss.
7698     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7699     MVT VVT = Op.getOperand(0).getSimpleValueType();
7700     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7701                                        DAG.getUNDEF(VVT), Mask);
7702     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7703                        DAG.getIntPtrConstant(0));
7704   }
7705
7706   if (VT.getSizeInBits() == 64) {
7707     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7708     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7709     //        to match extract_elt for f64.
7710     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7711     if (Idx == 0)
7712       return Op;
7713
7714     // UNPCKHPD the element to the lowest double word, then movsd.
7715     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7716     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7717     int Mask[2] = { 1, -1 };
7718     MVT VVT = Op.getOperand(0).getSimpleValueType();
7719     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7720                                        DAG.getUNDEF(VVT), Mask);
7721     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7722                        DAG.getIntPtrConstant(0));
7723   }
7724
7725   return SDValue();
7726 }
7727
7728 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7729   MVT VT = Op.getSimpleValueType();
7730   MVT EltVT = VT.getVectorElementType();
7731   SDLoc dl(Op);
7732
7733   SDValue N0 = Op.getOperand(0);
7734   SDValue N1 = Op.getOperand(1);
7735   SDValue N2 = Op.getOperand(2);
7736
7737   if (!VT.is128BitVector())
7738     return SDValue();
7739
7740   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7741       isa<ConstantSDNode>(N2)) {
7742     unsigned Opc;
7743     if (VT == MVT::v8i16)
7744       Opc = X86ISD::PINSRW;
7745     else if (VT == MVT::v16i8)
7746       Opc = X86ISD::PINSRB;
7747     else
7748       Opc = X86ISD::PINSRB;
7749
7750     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7751     // argument.
7752     if (N1.getValueType() != MVT::i32)
7753       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7754     if (N2.getValueType() != MVT::i32)
7755       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7756     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7757   }
7758
7759   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7760     // Bits [7:6] of the constant are the source select.  This will always be
7761     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7762     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7763     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7764     // Bits [5:4] of the constant are the destination select.  This is the
7765     //  value of the incoming immediate.
7766     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7767     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7768     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7769     // Create this as a scalar to vector..
7770     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7771     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7772   }
7773
7774   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7775     // PINSR* works with constant index.
7776     return Op;
7777   }
7778   return SDValue();
7779 }
7780
7781 SDValue
7782 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7783   MVT VT = Op.getSimpleValueType();
7784   MVT EltVT = VT.getVectorElementType();
7785
7786   SDLoc dl(Op);
7787   SDValue N0 = Op.getOperand(0);
7788   SDValue N1 = Op.getOperand(1);
7789   SDValue N2 = Op.getOperand(2);
7790
7791   // If this is a 256-bit vector result, first extract the 128-bit vector,
7792   // insert the element into the extracted half and then place it back.
7793   if (VT.is256BitVector() || VT.is512BitVector()) {
7794     if (!isa<ConstantSDNode>(N2))
7795       return SDValue();
7796
7797     // Get the desired 128-bit vector half.
7798     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7799     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7800
7801     // Insert the element into the desired half.
7802     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7803     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7804
7805     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7806                     DAG.getConstant(IdxIn128, MVT::i32));
7807
7808     // Insert the changed part back to the 256-bit vector
7809     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7810   }
7811
7812   if (Subtarget->hasSSE41())
7813     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7814
7815   if (EltVT == MVT::i8)
7816     return SDValue();
7817
7818   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7819     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7820     // as its second argument.
7821     if (N1.getValueType() != MVT::i32)
7822       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7823     if (N2.getValueType() != MVT::i32)
7824       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7825     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7826   }
7827   return SDValue();
7828 }
7829
7830 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7831   SDLoc dl(Op);
7832   MVT OpVT = Op.getSimpleValueType();
7833
7834   // If this is a 256-bit vector result, first insert into a 128-bit
7835   // vector and then insert into the 256-bit vector.
7836   if (!OpVT.is128BitVector()) {
7837     // Insert into a 128-bit vector.
7838     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7839     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7840                                  OpVT.getVectorNumElements() / SizeFactor);
7841
7842     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7843
7844     // Insert the 128-bit vector.
7845     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7846   }
7847
7848   if (OpVT == MVT::v1i64 &&
7849       Op.getOperand(0).getValueType() == MVT::i64)
7850     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7851
7852   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7853   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7854   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7855                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7856 }
7857
7858 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7859 // a simple subregister reference or explicit instructions to grab
7860 // upper bits of a vector.
7861 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7862                                       SelectionDAG &DAG) {
7863   SDLoc dl(Op);
7864   SDValue In =  Op.getOperand(0);
7865   SDValue Idx = Op.getOperand(1);
7866   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7867   MVT ResVT   = Op.getSimpleValueType();
7868   MVT InVT    = In.getSimpleValueType();
7869
7870   if (Subtarget->hasFp256()) {
7871     if (ResVT.is128BitVector() &&
7872         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7873         isa<ConstantSDNode>(Idx)) {
7874       return Extract128BitVector(In, IdxVal, DAG, dl);
7875     }
7876     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7877         isa<ConstantSDNode>(Idx)) {
7878       return Extract256BitVector(In, IdxVal, DAG, dl);
7879     }
7880   }
7881   return SDValue();
7882 }
7883
7884 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7885 // simple superregister reference or explicit instructions to insert
7886 // the upper bits of a vector.
7887 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7888                                      SelectionDAG &DAG) {
7889   if (Subtarget->hasFp256()) {
7890     SDLoc dl(Op.getNode());
7891     SDValue Vec = Op.getNode()->getOperand(0);
7892     SDValue SubVec = Op.getNode()->getOperand(1);
7893     SDValue Idx = Op.getNode()->getOperand(2);
7894
7895     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7896          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7897         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
7898         isa<ConstantSDNode>(Idx)) {
7899       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7900       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7901     }
7902
7903     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7904         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
7905         isa<ConstantSDNode>(Idx)) {
7906       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7907       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7908     }
7909   }
7910   return SDValue();
7911 }
7912
7913 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7914 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7915 // one of the above mentioned nodes. It has to be wrapped because otherwise
7916 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7917 // be used to form addressing mode. These wrapped nodes will be selected
7918 // into MOV32ri.
7919 SDValue
7920 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7921   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7922
7923   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7924   // global base reg.
7925   unsigned char OpFlag = 0;
7926   unsigned WrapperKind = X86ISD::Wrapper;
7927   CodeModel::Model M = getTargetMachine().getCodeModel();
7928
7929   if (Subtarget->isPICStyleRIPRel() &&
7930       (M == CodeModel::Small || M == CodeModel::Kernel))
7931     WrapperKind = X86ISD::WrapperRIP;
7932   else if (Subtarget->isPICStyleGOT())
7933     OpFlag = X86II::MO_GOTOFF;
7934   else if (Subtarget->isPICStyleStubPIC())
7935     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7936
7937   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7938                                              CP->getAlignment(),
7939                                              CP->getOffset(), OpFlag);
7940   SDLoc DL(CP);
7941   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7942   // With PIC, the address is actually $g + Offset.
7943   if (OpFlag) {
7944     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7945                          DAG.getNode(X86ISD::GlobalBaseReg,
7946                                      SDLoc(), getPointerTy()),
7947                          Result);
7948   }
7949
7950   return Result;
7951 }
7952
7953 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7954   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7955
7956   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7957   // global base reg.
7958   unsigned char OpFlag = 0;
7959   unsigned WrapperKind = X86ISD::Wrapper;
7960   CodeModel::Model M = getTargetMachine().getCodeModel();
7961
7962   if (Subtarget->isPICStyleRIPRel() &&
7963       (M == CodeModel::Small || M == CodeModel::Kernel))
7964     WrapperKind = X86ISD::WrapperRIP;
7965   else if (Subtarget->isPICStyleGOT())
7966     OpFlag = X86II::MO_GOTOFF;
7967   else if (Subtarget->isPICStyleStubPIC())
7968     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7969
7970   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7971                                           OpFlag);
7972   SDLoc DL(JT);
7973   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7974
7975   // With PIC, the address is actually $g + Offset.
7976   if (OpFlag)
7977     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7978                          DAG.getNode(X86ISD::GlobalBaseReg,
7979                                      SDLoc(), getPointerTy()),
7980                          Result);
7981
7982   return Result;
7983 }
7984
7985 SDValue
7986 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7987   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7988
7989   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7990   // global base reg.
7991   unsigned char OpFlag = 0;
7992   unsigned WrapperKind = X86ISD::Wrapper;
7993   CodeModel::Model M = getTargetMachine().getCodeModel();
7994
7995   if (Subtarget->isPICStyleRIPRel() &&
7996       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7997     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7998       OpFlag = X86II::MO_GOTPCREL;
7999     WrapperKind = X86ISD::WrapperRIP;
8000   } else if (Subtarget->isPICStyleGOT()) {
8001     OpFlag = X86II::MO_GOT;
8002   } else if (Subtarget->isPICStyleStubPIC()) {
8003     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8004   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8005     OpFlag = X86II::MO_DARWIN_NONLAZY;
8006   }
8007
8008   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8009
8010   SDLoc DL(Op);
8011   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8012
8013   // With PIC, the address is actually $g + Offset.
8014   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8015       !Subtarget->is64Bit()) {
8016     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8017                          DAG.getNode(X86ISD::GlobalBaseReg,
8018                                      SDLoc(), getPointerTy()),
8019                          Result);
8020   }
8021
8022   // For symbols that require a load from a stub to get the address, emit the
8023   // load.
8024   if (isGlobalStubReference(OpFlag))
8025     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8026                          MachinePointerInfo::getGOT(), false, false, false, 0);
8027
8028   return Result;
8029 }
8030
8031 SDValue
8032 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8033   // Create the TargetBlockAddressAddress node.
8034   unsigned char OpFlags =
8035     Subtarget->ClassifyBlockAddressReference();
8036   CodeModel::Model M = getTargetMachine().getCodeModel();
8037   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8038   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8039   SDLoc dl(Op);
8040   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8041                                              OpFlags);
8042
8043   if (Subtarget->isPICStyleRIPRel() &&
8044       (M == CodeModel::Small || M == CodeModel::Kernel))
8045     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8046   else
8047     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8048
8049   // With PIC, the address is actually $g + Offset.
8050   if (isGlobalRelativeToPICBase(OpFlags)) {
8051     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8052                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8053                          Result);
8054   }
8055
8056   return Result;
8057 }
8058
8059 SDValue
8060 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8061                                       int64_t Offset, SelectionDAG &DAG) const {
8062   // Create the TargetGlobalAddress node, folding in the constant
8063   // offset if it is legal.
8064   unsigned char OpFlags =
8065     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8066   CodeModel::Model M = getTargetMachine().getCodeModel();
8067   SDValue Result;
8068   if (OpFlags == X86II::MO_NO_FLAG &&
8069       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8070     // A direct static reference to a global.
8071     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8072     Offset = 0;
8073   } else {
8074     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8075   }
8076
8077   if (Subtarget->isPICStyleRIPRel() &&
8078       (M == CodeModel::Small || M == CodeModel::Kernel))
8079     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8080   else
8081     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8082
8083   // With PIC, the address is actually $g + Offset.
8084   if (isGlobalRelativeToPICBase(OpFlags)) {
8085     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8086                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8087                          Result);
8088   }
8089
8090   // For globals that require a load from a stub to get the address, emit the
8091   // load.
8092   if (isGlobalStubReference(OpFlags))
8093     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8094                          MachinePointerInfo::getGOT(), false, false, false, 0);
8095
8096   // If there was a non-zero offset that we didn't fold, create an explicit
8097   // addition for it.
8098   if (Offset != 0)
8099     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8100                          DAG.getConstant(Offset, getPointerTy()));
8101
8102   return Result;
8103 }
8104
8105 SDValue
8106 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8107   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8108   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8109   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8110 }
8111
8112 static SDValue
8113 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8114            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8115            unsigned char OperandFlags, bool LocalDynamic = false) {
8116   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8117   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8118   SDLoc dl(GA);
8119   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8120                                            GA->getValueType(0),
8121                                            GA->getOffset(),
8122                                            OperandFlags);
8123
8124   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8125                                            : X86ISD::TLSADDR;
8126
8127   if (InFlag) {
8128     SDValue Ops[] = { Chain,  TGA, *InFlag };
8129     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8130   } else {
8131     SDValue Ops[]  = { Chain, TGA };
8132     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8133   }
8134
8135   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8136   MFI->setAdjustsStack(true);
8137
8138   SDValue Flag = Chain.getValue(1);
8139   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8140 }
8141
8142 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8143 static SDValue
8144 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8145                                 const EVT PtrVT) {
8146   SDValue InFlag;
8147   SDLoc dl(GA);  // ? function entry point might be better
8148   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8149                                    DAG.getNode(X86ISD::GlobalBaseReg,
8150                                                SDLoc(), PtrVT), InFlag);
8151   InFlag = Chain.getValue(1);
8152
8153   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8154 }
8155
8156 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8157 static SDValue
8158 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8159                                 const EVT PtrVT) {
8160   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8161                     X86::RAX, X86II::MO_TLSGD);
8162 }
8163
8164 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8165                                            SelectionDAG &DAG,
8166                                            const EVT PtrVT,
8167                                            bool is64Bit) {
8168   SDLoc dl(GA);
8169
8170   // Get the start address of the TLS block for this module.
8171   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8172       .getInfo<X86MachineFunctionInfo>();
8173   MFI->incNumLocalDynamicTLSAccesses();
8174
8175   SDValue Base;
8176   if (is64Bit) {
8177     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8178                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8179   } else {
8180     SDValue InFlag;
8181     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8182         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8183     InFlag = Chain.getValue(1);
8184     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8185                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8186   }
8187
8188   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8189   // of Base.
8190
8191   // Build x@dtpoff.
8192   unsigned char OperandFlags = X86II::MO_DTPOFF;
8193   unsigned WrapperKind = X86ISD::Wrapper;
8194   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8195                                            GA->getValueType(0),
8196                                            GA->getOffset(), OperandFlags);
8197   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8198
8199   // Add x@dtpoff with the base.
8200   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8201 }
8202
8203 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8204 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8205                                    const EVT PtrVT, TLSModel::Model model,
8206                                    bool is64Bit, bool isPIC) {
8207   SDLoc dl(GA);
8208
8209   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8210   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8211                                                          is64Bit ? 257 : 256));
8212
8213   SDValue ThreadPointer =
8214       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8215                   MachinePointerInfo(Ptr), false, false, false, 0);
8216
8217   unsigned char OperandFlags = 0;
8218   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8219   // initialexec.
8220   unsigned WrapperKind = X86ISD::Wrapper;
8221   if (model == TLSModel::LocalExec) {
8222     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8223   } else if (model == TLSModel::InitialExec) {
8224     if (is64Bit) {
8225       OperandFlags = X86II::MO_GOTTPOFF;
8226       WrapperKind = X86ISD::WrapperRIP;
8227     } else {
8228       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8229     }
8230   } else {
8231     llvm_unreachable("Unexpected model");
8232   }
8233
8234   // emit "addl x@ntpoff,%eax" (local exec)
8235   // or "addl x@indntpoff,%eax" (initial exec)
8236   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8237   SDValue TGA =
8238       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8239                                  GA->getOffset(), OperandFlags);
8240   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8241
8242   if (model == TLSModel::InitialExec) {
8243     if (isPIC && !is64Bit) {
8244       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8245                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8246                            Offset);
8247     }
8248
8249     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8250                          MachinePointerInfo::getGOT(), false, false, false, 0);
8251   }
8252
8253   // The address of the thread local variable is the add of the thread
8254   // pointer with the offset of the variable.
8255   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8256 }
8257
8258 SDValue
8259 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8260
8261   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8262   const GlobalValue *GV = GA->getGlobal();
8263
8264   if (Subtarget->isTargetELF()) {
8265     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8266
8267     switch (model) {
8268       case TLSModel::GeneralDynamic:
8269         if (Subtarget->is64Bit())
8270           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8271         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8272       case TLSModel::LocalDynamic:
8273         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8274                                            Subtarget->is64Bit());
8275       case TLSModel::InitialExec:
8276       case TLSModel::LocalExec:
8277         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8278                                    Subtarget->is64Bit(),
8279                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8280     }
8281     llvm_unreachable("Unknown TLS model.");
8282   }
8283
8284   if (Subtarget->isTargetDarwin()) {
8285     // Darwin only has one model of TLS.  Lower to that.
8286     unsigned char OpFlag = 0;
8287     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8288                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8289
8290     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8291     // global base reg.
8292     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8293                   !Subtarget->is64Bit();
8294     if (PIC32)
8295       OpFlag = X86II::MO_TLVP_PIC_BASE;
8296     else
8297       OpFlag = X86II::MO_TLVP;
8298     SDLoc DL(Op);
8299     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8300                                                 GA->getValueType(0),
8301                                                 GA->getOffset(), OpFlag);
8302     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8303
8304     // With PIC32, the address is actually $g + Offset.
8305     if (PIC32)
8306       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8307                            DAG.getNode(X86ISD::GlobalBaseReg,
8308                                        SDLoc(), getPointerTy()),
8309                            Offset);
8310
8311     // Lowering the machine isd will make sure everything is in the right
8312     // location.
8313     SDValue Chain = DAG.getEntryNode();
8314     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8315     SDValue Args[] = { Chain, Offset };
8316     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8317
8318     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8319     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8320     MFI->setAdjustsStack(true);
8321
8322     // And our return value (tls address) is in the standard call return value
8323     // location.
8324     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8325     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8326                               Chain.getValue(1));
8327   }
8328
8329   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8330     // Just use the implicit TLS architecture
8331     // Need to generate someting similar to:
8332     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8333     //                                  ; from TEB
8334     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8335     //   mov     rcx, qword [rdx+rcx*8]
8336     //   mov     eax, .tls$:tlsvar
8337     //   [rax+rcx] contains the address
8338     // Windows 64bit: gs:0x58
8339     // Windows 32bit: fs:__tls_array
8340
8341     // If GV is an alias then use the aliasee for determining
8342     // thread-localness.
8343     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8344       GV = GA->resolveAliasedGlobal(false);
8345     SDLoc dl(GA);
8346     SDValue Chain = DAG.getEntryNode();
8347
8348     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8349     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8350     // use its literal value of 0x2C.
8351     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8352                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8353                                                              256)
8354                                         : Type::getInt32PtrTy(*DAG.getContext(),
8355                                                               257));
8356
8357     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8358       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8359         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8360
8361     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8362                                         MachinePointerInfo(Ptr),
8363                                         false, false, false, 0);
8364
8365     // Load the _tls_index variable
8366     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8367     if (Subtarget->is64Bit())
8368       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8369                            IDX, MachinePointerInfo(), MVT::i32,
8370                            false, false, 0);
8371     else
8372       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8373                         false, false, false, 0);
8374
8375     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8376                                     getPointerTy());
8377     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8378
8379     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8380     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8381                       false, false, false, 0);
8382
8383     // Get the offset of start of .tls section
8384     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8385                                              GA->getValueType(0),
8386                                              GA->getOffset(), X86II::MO_SECREL);
8387     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8388
8389     // The address of the thread local variable is the add of the thread
8390     // pointer with the offset of the variable.
8391     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8392   }
8393
8394   llvm_unreachable("TLS not implemented for this target.");
8395 }
8396
8397 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8398 /// and take a 2 x i32 value to shift plus a shift amount.
8399 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8400   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8401   EVT VT = Op.getValueType();
8402   unsigned VTBits = VT.getSizeInBits();
8403   SDLoc dl(Op);
8404   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8405   SDValue ShOpLo = Op.getOperand(0);
8406   SDValue ShOpHi = Op.getOperand(1);
8407   SDValue ShAmt  = Op.getOperand(2);
8408   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8409                                      DAG.getConstant(VTBits - 1, MVT::i8))
8410                        : DAG.getConstant(0, VT);
8411
8412   SDValue Tmp2, Tmp3;
8413   if (Op.getOpcode() == ISD::SHL_PARTS) {
8414     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8415     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8416   } else {
8417     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8418     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8419   }
8420
8421   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8422                                 DAG.getConstant(VTBits, MVT::i8));
8423   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8424                              AndNode, DAG.getConstant(0, MVT::i8));
8425
8426   SDValue Hi, Lo;
8427   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8428   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8429   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8430
8431   if (Op.getOpcode() == ISD::SHL_PARTS) {
8432     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8433     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8434   } else {
8435     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8436     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8437   }
8438
8439   SDValue Ops[2] = { Lo, Hi };
8440   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8441 }
8442
8443 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8444                                            SelectionDAG &DAG) const {
8445   EVT SrcVT = Op.getOperand(0).getValueType();
8446
8447   if (SrcVT.isVector())
8448     return SDValue();
8449
8450   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8451          "Unknown SINT_TO_FP to lower!");
8452
8453   // These are really Legal; return the operand so the caller accepts it as
8454   // Legal.
8455   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8456     return Op;
8457   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8458       Subtarget->is64Bit()) {
8459     return Op;
8460   }
8461
8462   SDLoc dl(Op);
8463   unsigned Size = SrcVT.getSizeInBits()/8;
8464   MachineFunction &MF = DAG.getMachineFunction();
8465   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8466   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8467   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8468                                StackSlot,
8469                                MachinePointerInfo::getFixedStack(SSFI),
8470                                false, false, 0);
8471   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8472 }
8473
8474 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8475                                      SDValue StackSlot,
8476                                      SelectionDAG &DAG) const {
8477   // Build the FILD
8478   SDLoc DL(Op);
8479   SDVTList Tys;
8480   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8481   if (useSSE)
8482     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8483   else
8484     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8485
8486   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8487
8488   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8489   MachineMemOperand *MMO;
8490   if (FI) {
8491     int SSFI = FI->getIndex();
8492     MMO =
8493       DAG.getMachineFunction()
8494       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8495                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8496   } else {
8497     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8498     StackSlot = StackSlot.getOperand(1);
8499   }
8500   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8501   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8502                                            X86ISD::FILD, DL,
8503                                            Tys, Ops, array_lengthof(Ops),
8504                                            SrcVT, MMO);
8505
8506   if (useSSE) {
8507     Chain = Result.getValue(1);
8508     SDValue InFlag = Result.getValue(2);
8509
8510     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8511     // shouldn't be necessary except that RFP cannot be live across
8512     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8513     MachineFunction &MF = DAG.getMachineFunction();
8514     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8515     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8516     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8517     Tys = DAG.getVTList(MVT::Other);
8518     SDValue Ops[] = {
8519       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8520     };
8521     MachineMemOperand *MMO =
8522       DAG.getMachineFunction()
8523       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8524                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8525
8526     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8527                                     Ops, array_lengthof(Ops),
8528                                     Op.getValueType(), MMO);
8529     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8530                          MachinePointerInfo::getFixedStack(SSFI),
8531                          false, false, false, 0);
8532   }
8533
8534   return Result;
8535 }
8536
8537 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8538 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8539                                                SelectionDAG &DAG) const {
8540   // This algorithm is not obvious. Here it is what we're trying to output:
8541   /*
8542      movq       %rax,  %xmm0
8543      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8544      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8545      #ifdef __SSE3__
8546        haddpd   %xmm0, %xmm0
8547      #else
8548        pshufd   $0x4e, %xmm0, %xmm1
8549        addpd    %xmm1, %xmm0
8550      #endif
8551   */
8552
8553   SDLoc dl(Op);
8554   LLVMContext *Context = DAG.getContext();
8555
8556   // Build some magic constants.
8557   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8558   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8559   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8560
8561   SmallVector<Constant*,2> CV1;
8562   CV1.push_back(
8563     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8564                                       APInt(64, 0x4330000000000000ULL))));
8565   CV1.push_back(
8566     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8567                                       APInt(64, 0x4530000000000000ULL))));
8568   Constant *C1 = ConstantVector::get(CV1);
8569   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8570
8571   // Load the 64-bit value into an XMM register.
8572   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8573                             Op.getOperand(0));
8574   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8575                               MachinePointerInfo::getConstantPool(),
8576                               false, false, false, 16);
8577   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8578                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8579                               CLod0);
8580
8581   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8582                               MachinePointerInfo::getConstantPool(),
8583                               false, false, false, 16);
8584   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8585   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8586   SDValue Result;
8587
8588   if (Subtarget->hasSSE3()) {
8589     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8590     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8591   } else {
8592     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8593     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8594                                            S2F, 0x4E, DAG);
8595     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8596                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8597                          Sub);
8598   }
8599
8600   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8601                      DAG.getIntPtrConstant(0));
8602 }
8603
8604 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8605 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8606                                                SelectionDAG &DAG) const {
8607   SDLoc dl(Op);
8608   // FP constant to bias correct the final result.
8609   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8610                                    MVT::f64);
8611
8612   // Load the 32-bit value into an XMM register.
8613   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8614                              Op.getOperand(0));
8615
8616   // Zero out the upper parts of the register.
8617   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8618
8619   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8620                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8621                      DAG.getIntPtrConstant(0));
8622
8623   // Or the load with the bias.
8624   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8625                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8626                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8627                                                    MVT::v2f64, Load)),
8628                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8629                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8630                                                    MVT::v2f64, Bias)));
8631   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8632                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8633                    DAG.getIntPtrConstant(0));
8634
8635   // Subtract the bias.
8636   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8637
8638   // Handle final rounding.
8639   EVT DestVT = Op.getValueType();
8640
8641   if (DestVT.bitsLT(MVT::f64))
8642     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8643                        DAG.getIntPtrConstant(0));
8644   if (DestVT.bitsGT(MVT::f64))
8645     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8646
8647   // Handle final rounding.
8648   return Sub;
8649 }
8650
8651 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8652                                                SelectionDAG &DAG) const {
8653   SDValue N0 = Op.getOperand(0);
8654   EVT SVT = N0.getValueType();
8655   SDLoc dl(Op);
8656
8657   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8658           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8659          "Custom UINT_TO_FP is not supported!");
8660
8661   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8662                              SVT.getVectorNumElements());
8663   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8664                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8665 }
8666
8667 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8668                                            SelectionDAG &DAG) const {
8669   SDValue N0 = Op.getOperand(0);
8670   SDLoc dl(Op);
8671
8672   if (Op.getValueType().isVector())
8673     return lowerUINT_TO_FP_vec(Op, DAG);
8674
8675   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8676   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8677   // the optimization here.
8678   if (DAG.SignBitIsZero(N0))
8679     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8680
8681   EVT SrcVT = N0.getValueType();
8682   EVT DstVT = Op.getValueType();
8683   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8684     return LowerUINT_TO_FP_i64(Op, DAG);
8685   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8686     return LowerUINT_TO_FP_i32(Op, DAG);
8687   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8688     return SDValue();
8689
8690   // Make a 64-bit buffer, and use it to build an FILD.
8691   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8692   if (SrcVT == MVT::i32) {
8693     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8694     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8695                                      getPointerTy(), StackSlot, WordOff);
8696     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8697                                   StackSlot, MachinePointerInfo(),
8698                                   false, false, 0);
8699     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8700                                   OffsetSlot, MachinePointerInfo(),
8701                                   false, false, 0);
8702     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8703     return Fild;
8704   }
8705
8706   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8707   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8708                                StackSlot, MachinePointerInfo(),
8709                                false, false, 0);
8710   // For i64 source, we need to add the appropriate power of 2 if the input
8711   // was negative.  This is the same as the optimization in
8712   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8713   // we must be careful to do the computation in x87 extended precision, not
8714   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8715   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8716   MachineMemOperand *MMO =
8717     DAG.getMachineFunction()
8718     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8719                           MachineMemOperand::MOLoad, 8, 8);
8720
8721   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8722   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8723   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8724                                          array_lengthof(Ops), MVT::i64, MMO);
8725
8726   APInt FF(32, 0x5F800000ULL);
8727
8728   // Check whether the sign bit is set.
8729   SDValue SignSet = DAG.getSetCC(dl,
8730                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8731                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8732                                  ISD::SETLT);
8733
8734   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8735   SDValue FudgePtr = DAG.getConstantPool(
8736                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8737                                          getPointerTy());
8738
8739   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8740   SDValue Zero = DAG.getIntPtrConstant(0);
8741   SDValue Four = DAG.getIntPtrConstant(4);
8742   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8743                                Zero, Four);
8744   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8745
8746   // Load the value out, extending it from f32 to f80.
8747   // FIXME: Avoid the extend by constructing the right constant pool?
8748   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8749                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8750                                  MVT::f32, false, false, 4);
8751   // Extend everything to 80 bits to force it to be done on x87.
8752   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8753   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8754 }
8755
8756 std::pair<SDValue,SDValue>
8757 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8758                                     bool IsSigned, bool IsReplace) const {
8759   SDLoc DL(Op);
8760
8761   EVT DstTy = Op.getValueType();
8762
8763   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8764     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8765     DstTy = MVT::i64;
8766   }
8767
8768   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8769          DstTy.getSimpleVT() >= MVT::i16 &&
8770          "Unknown FP_TO_INT to lower!");
8771
8772   // These are really Legal.
8773   if (DstTy == MVT::i32 &&
8774       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8775     return std::make_pair(SDValue(), SDValue());
8776   if (Subtarget->is64Bit() &&
8777       DstTy == MVT::i64 &&
8778       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8779     return std::make_pair(SDValue(), SDValue());
8780
8781   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8782   // stack slot, or into the FTOL runtime function.
8783   MachineFunction &MF = DAG.getMachineFunction();
8784   unsigned MemSize = DstTy.getSizeInBits()/8;
8785   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8786   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8787
8788   unsigned Opc;
8789   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8790     Opc = X86ISD::WIN_FTOL;
8791   else
8792     switch (DstTy.getSimpleVT().SimpleTy) {
8793     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8794     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8795     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8796     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8797     }
8798
8799   SDValue Chain = DAG.getEntryNode();
8800   SDValue Value = Op.getOperand(0);
8801   EVT TheVT = Op.getOperand(0).getValueType();
8802   // FIXME This causes a redundant load/store if the SSE-class value is already
8803   // in memory, such as if it is on the callstack.
8804   if (isScalarFPTypeInSSEReg(TheVT)) {
8805     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8806     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8807                          MachinePointerInfo::getFixedStack(SSFI),
8808                          false, false, 0);
8809     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8810     SDValue Ops[] = {
8811       Chain, StackSlot, DAG.getValueType(TheVT)
8812     };
8813
8814     MachineMemOperand *MMO =
8815       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8816                               MachineMemOperand::MOLoad, MemSize, MemSize);
8817     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8818                                     array_lengthof(Ops), DstTy, MMO);
8819     Chain = Value.getValue(1);
8820     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8821     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8822   }
8823
8824   MachineMemOperand *MMO =
8825     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8826                             MachineMemOperand::MOStore, MemSize, MemSize);
8827
8828   if (Opc != X86ISD::WIN_FTOL) {
8829     // Build the FP_TO_INT*_IN_MEM
8830     SDValue Ops[] = { Chain, Value, StackSlot };
8831     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8832                                            Ops, array_lengthof(Ops), DstTy,
8833                                            MMO);
8834     return std::make_pair(FIST, StackSlot);
8835   } else {
8836     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8837       DAG.getVTList(MVT::Other, MVT::Glue),
8838       Chain, Value);
8839     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8840       MVT::i32, ftol.getValue(1));
8841     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8842       MVT::i32, eax.getValue(2));
8843     SDValue Ops[] = { eax, edx };
8844     SDValue pair = IsReplace
8845       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8846       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8847     return std::make_pair(pair, SDValue());
8848   }
8849 }
8850
8851 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8852                               const X86Subtarget *Subtarget) {
8853   MVT VT = Op->getSimpleValueType(0);
8854   SDValue In = Op->getOperand(0);
8855   MVT InVT = In.getSimpleValueType();
8856   SDLoc dl(Op);
8857
8858   // Optimize vectors in AVX mode:
8859   //
8860   //   v8i16 -> v8i32
8861   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8862   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8863   //   Concat upper and lower parts.
8864   //
8865   //   v4i32 -> v4i64
8866   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8867   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8868   //   Concat upper and lower parts.
8869   //
8870
8871   if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8872       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8873     return SDValue();
8874
8875   if (Subtarget->hasInt256())
8876     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8877
8878   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8879   SDValue Undef = DAG.getUNDEF(InVT);
8880   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8881   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8882   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8883
8884   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8885                              VT.getVectorNumElements()/2);
8886
8887   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8888   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8889
8890   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8891 }
8892
8893 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8894                                         SelectionDAG &DAG) {
8895   MVT VT = Op->getValueType(0).getSimpleVT();
8896   SDValue In = Op->getOperand(0);
8897   MVT InVT = In.getValueType().getSimpleVT();
8898   SDLoc DL(Op);
8899   unsigned int NumElts = VT.getVectorNumElements();
8900   if (NumElts != 8 && NumElts != 16)
8901     return SDValue();
8902
8903   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8904     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8905
8906   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8907   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8908   // Now we have only mask extension
8909   assert(InVT.getVectorElementType() == MVT::i1);
8910   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8911   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8912   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8913   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8914   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8915                            MachinePointerInfo::getConstantPool(),
8916                            false, false, false, Alignment);
8917
8918   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8919   if (VT.is512BitVector())
8920     return Brcst;
8921   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8922 }
8923
8924 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8925                                SelectionDAG &DAG) {
8926   if (Subtarget->hasFp256()) {
8927     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8928     if (Res.getNode())
8929       return Res;
8930   }
8931
8932   return SDValue();
8933 }
8934
8935 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8936                                 SelectionDAG &DAG) {
8937   SDLoc DL(Op);
8938   MVT VT = Op.getSimpleValueType();
8939   SDValue In = Op.getOperand(0);
8940   MVT SVT = In.getSimpleValueType();
8941
8942   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8943     return LowerZERO_EXTEND_AVX512(Op, DAG);
8944
8945   if (Subtarget->hasFp256()) {
8946     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8947     if (Res.getNode())
8948       return Res;
8949   }
8950
8951   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8952       VT.getVectorNumElements() != SVT.getVectorNumElements())
8953     return SDValue();
8954
8955   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8956
8957   // AVX2 has better support of integer extending.
8958   if (Subtarget->hasInt256())
8959     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8960
8961   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8962   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8963   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8964                            DAG.getVectorShuffle(MVT::v8i16, DL, In,
8965                                                 DAG.getUNDEF(MVT::v8i16),
8966                                                 &Mask[0]));
8967
8968   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8969 }
8970
8971 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8972   SDLoc DL(Op);
8973   MVT VT = Op.getSimpleValueType();  
8974   SDValue In = Op.getOperand(0);
8975   MVT InVT = In.getSimpleValueType();
8976   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8977          "Invalid TRUNCATE operation");
8978
8979   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8980     if (VT.getVectorElementType().getSizeInBits() >=8)
8981       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8982
8983     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8984     unsigned NumElts = InVT.getVectorNumElements();
8985     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8986     if (InVT.getSizeInBits() < 512) {
8987       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8988       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8989       InVT = ExtVT;
8990     }
8991     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8992     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8993     SDValue CP = DAG.getConstantPool(C, getPointerTy());
8994     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8995     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8996                            MachinePointerInfo::getConstantPool(),
8997                            false, false, false, Alignment);
8998     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8999     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9000     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9001   }
9002
9003   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9004     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9005     if (Subtarget->hasInt256()) {
9006       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9007       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9008       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9009                                 ShufMask);
9010       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9011                          DAG.getIntPtrConstant(0));
9012     }
9013
9014     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9015     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9016                                DAG.getIntPtrConstant(0));
9017     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9018                                DAG.getIntPtrConstant(2));
9019
9020     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9021     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9022
9023     // The PSHUFD mask:
9024     static const int ShufMask1[] = {0, 2, 0, 0};
9025     SDValue Undef = DAG.getUNDEF(VT);
9026     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9027     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9028
9029     // The MOVLHPS mask:
9030     static const int ShufMask2[] = {0, 1, 4, 5};
9031     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9032   }
9033
9034   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9035     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9036     if (Subtarget->hasInt256()) {
9037       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9038
9039       SmallVector<SDValue,32> pshufbMask;
9040       for (unsigned i = 0; i < 2; ++i) {
9041         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9042         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9043         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9044         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9045         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9046         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9047         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9048         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9049         for (unsigned j = 0; j < 8; ++j)
9050           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9051       }
9052       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9053                                &pshufbMask[0], 32);
9054       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9055       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9056
9057       static const int ShufMask[] = {0,  2,  -1,  -1};
9058       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9059                                 &ShufMask[0]);
9060       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9061                        DAG.getIntPtrConstant(0));
9062       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9063     }
9064
9065     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9066                                DAG.getIntPtrConstant(0));
9067
9068     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9069                                DAG.getIntPtrConstant(4));
9070
9071     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9072     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9073
9074     // The PSHUFB mask:
9075     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9076                                    -1, -1, -1, -1, -1, -1, -1, -1};
9077
9078     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9079     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9080     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9081
9082     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9083     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9084
9085     // The MOVLHPS Mask:
9086     static const int ShufMask2[] = {0, 1, 4, 5};
9087     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9088     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9089   }
9090
9091   // Handle truncation of V256 to V128 using shuffles.
9092   if (!VT.is128BitVector() || !InVT.is256BitVector())
9093     return SDValue();
9094
9095   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9096
9097   unsigned NumElems = VT.getVectorNumElements();
9098   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9099                              NumElems * 2);
9100
9101   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9102   // Prepare truncation shuffle mask
9103   for (unsigned i = 0; i != NumElems; ++i)
9104     MaskVec[i] = i * 2;
9105   SDValue V = DAG.getVectorShuffle(NVT, DL,
9106                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9107                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9108   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9109                      DAG.getIntPtrConstant(0));
9110 }
9111
9112 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9113                                            SelectionDAG &DAG) const {
9114   MVT VT = Op.getSimpleValueType();
9115   if (VT.isVector()) {
9116     if (VT == MVT::v8i16)
9117       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9118                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9119                                      MVT::v8i32, Op.getOperand(0)));
9120     return SDValue();
9121   }
9122
9123   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9124     /*IsSigned=*/ true, /*IsReplace=*/ false);
9125   SDValue FIST = Vals.first, StackSlot = Vals.second;
9126   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9127   if (FIST.getNode() == 0) return Op;
9128
9129   if (StackSlot.getNode())
9130     // Load the result.
9131     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9132                        FIST, StackSlot, MachinePointerInfo(),
9133                        false, false, false, 0);
9134
9135   // The node is the result.
9136   return FIST;
9137 }
9138
9139 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9140                                            SelectionDAG &DAG) const {
9141   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9142     /*IsSigned=*/ false, /*IsReplace=*/ false);
9143   SDValue FIST = Vals.first, StackSlot = Vals.second;
9144   assert(FIST.getNode() && "Unexpected failure");
9145
9146   if (StackSlot.getNode())
9147     // Load the result.
9148     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9149                        FIST, StackSlot, MachinePointerInfo(),
9150                        false, false, false, 0);
9151
9152   // The node is the result.
9153   return FIST;
9154 }
9155
9156 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9157   SDLoc DL(Op);
9158   MVT VT = Op.getSimpleValueType();
9159   SDValue In = Op.getOperand(0);
9160   MVT SVT = In.getSimpleValueType();
9161
9162   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9163
9164   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9165                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9166                                  In, DAG.getUNDEF(SVT)));
9167 }
9168
9169 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9170   LLVMContext *Context = DAG.getContext();
9171   SDLoc dl(Op);
9172   MVT VT = Op.getSimpleValueType();
9173   MVT EltVT = VT;
9174   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9175   if (VT.isVector()) {
9176     EltVT = VT.getVectorElementType();
9177     NumElts = VT.getVectorNumElements();
9178   }
9179   Constant *C;
9180   if (EltVT == MVT::f64)
9181     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9182                                           APInt(64, ~(1ULL << 63))));
9183   else
9184     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9185                                           APInt(32, ~(1U << 31))));
9186   C = ConstantVector::getSplat(NumElts, C);
9187   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9188   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9189   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9190                              MachinePointerInfo::getConstantPool(),
9191                              false, false, false, Alignment);
9192   if (VT.isVector()) {
9193     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9194     return DAG.getNode(ISD::BITCAST, dl, VT,
9195                        DAG.getNode(ISD::AND, dl, ANDVT,
9196                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9197                                                Op.getOperand(0)),
9198                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9199   }
9200   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9201 }
9202
9203 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9204   LLVMContext *Context = DAG.getContext();
9205   SDLoc dl(Op);
9206   MVT VT = Op.getSimpleValueType();
9207   MVT EltVT = VT;
9208   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9209   if (VT.isVector()) {
9210     EltVT = VT.getVectorElementType();
9211     NumElts = VT.getVectorNumElements();
9212   }
9213   Constant *C;
9214   if (EltVT == MVT::f64)
9215     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9216                                           APInt(64, 1ULL << 63)));
9217   else
9218     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9219                                           APInt(32, 1U << 31)));
9220   C = ConstantVector::getSplat(NumElts, C);
9221   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9222   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9223   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9224                              MachinePointerInfo::getConstantPool(),
9225                              false, false, false, Alignment);
9226   if (VT.isVector()) {
9227     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9228     return DAG.getNode(ISD::BITCAST, dl, VT,
9229                        DAG.getNode(ISD::XOR, dl, XORVT,
9230                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9231                                                Op.getOperand(0)),
9232                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9233   }
9234
9235   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9236 }
9237
9238 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9239   LLVMContext *Context = DAG.getContext();
9240   SDValue Op0 = Op.getOperand(0);
9241   SDValue Op1 = Op.getOperand(1);
9242   SDLoc dl(Op);
9243   MVT VT = Op.getSimpleValueType();
9244   MVT SrcVT = Op1.getSimpleValueType();
9245
9246   // If second operand is smaller, extend it first.
9247   if (SrcVT.bitsLT(VT)) {
9248     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9249     SrcVT = VT;
9250   }
9251   // And if it is bigger, shrink it first.
9252   if (SrcVT.bitsGT(VT)) {
9253     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9254     SrcVT = VT;
9255   }
9256
9257   // At this point the operands and the result should have the same
9258   // type, and that won't be f80 since that is not custom lowered.
9259
9260   // First get the sign bit of second operand.
9261   SmallVector<Constant*,4> CV;
9262   if (SrcVT == MVT::f64) {
9263     const fltSemantics &Sem = APFloat::IEEEdouble;
9264     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9265     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9266   } else {
9267     const fltSemantics &Sem = APFloat::IEEEsingle;
9268     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9269     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9270     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9271     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9272   }
9273   Constant *C = ConstantVector::get(CV);
9274   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9275   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9276                               MachinePointerInfo::getConstantPool(),
9277                               false, false, false, 16);
9278   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9279
9280   // Shift sign bit right or left if the two operands have different types.
9281   if (SrcVT.bitsGT(VT)) {
9282     // Op0 is MVT::f32, Op1 is MVT::f64.
9283     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9284     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9285                           DAG.getConstant(32, MVT::i32));
9286     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9287     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9288                           DAG.getIntPtrConstant(0));
9289   }
9290
9291   // Clear first operand sign bit.
9292   CV.clear();
9293   if (VT == MVT::f64) {
9294     const fltSemantics &Sem = APFloat::IEEEdouble;
9295     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9296                                                    APInt(64, ~(1ULL << 63)))));
9297     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9298   } else {
9299     const fltSemantics &Sem = APFloat::IEEEsingle;
9300     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9301                                                    APInt(32, ~(1U << 31)))));
9302     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9303     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9304     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9305   }
9306   C = ConstantVector::get(CV);
9307   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9308   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9309                               MachinePointerInfo::getConstantPool(),
9310                               false, false, false, 16);
9311   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9312
9313   // Or the value with the sign bit.
9314   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9315 }
9316
9317 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9318   SDValue N0 = Op.getOperand(0);
9319   SDLoc dl(Op);
9320   MVT VT = Op.getSimpleValueType();
9321
9322   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9323   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9324                                   DAG.getConstant(1, VT));
9325   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9326 }
9327
9328 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9329 //
9330 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9331                                       SelectionDAG &DAG) {
9332   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9333
9334   if (!Subtarget->hasSSE41())
9335     return SDValue();
9336
9337   if (!Op->hasOneUse())
9338     return SDValue();
9339
9340   SDNode *N = Op.getNode();
9341   SDLoc DL(N);
9342
9343   SmallVector<SDValue, 8> Opnds;
9344   DenseMap<SDValue, unsigned> VecInMap;
9345   EVT VT = MVT::Other;
9346
9347   // Recognize a special case where a vector is casted into wide integer to
9348   // test all 0s.
9349   Opnds.push_back(N->getOperand(0));
9350   Opnds.push_back(N->getOperand(1));
9351
9352   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9353     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9354     // BFS traverse all OR'd operands.
9355     if (I->getOpcode() == ISD::OR) {
9356       Opnds.push_back(I->getOperand(0));
9357       Opnds.push_back(I->getOperand(1));
9358       // Re-evaluate the number of nodes to be traversed.
9359       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9360       continue;
9361     }
9362
9363     // Quit if a non-EXTRACT_VECTOR_ELT
9364     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9365       return SDValue();
9366
9367     // Quit if without a constant index.
9368     SDValue Idx = I->getOperand(1);
9369     if (!isa<ConstantSDNode>(Idx))
9370       return SDValue();
9371
9372     SDValue ExtractedFromVec = I->getOperand(0);
9373     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9374     if (M == VecInMap.end()) {
9375       VT = ExtractedFromVec.getValueType();
9376       // Quit if not 128/256-bit vector.
9377       if (!VT.is128BitVector() && !VT.is256BitVector())
9378         return SDValue();
9379       // Quit if not the same type.
9380       if (VecInMap.begin() != VecInMap.end() &&
9381           VT != VecInMap.begin()->first.getValueType())
9382         return SDValue();
9383       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9384     }
9385     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9386   }
9387
9388   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9389          "Not extracted from 128-/256-bit vector.");
9390
9391   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9392   SmallVector<SDValue, 8> VecIns;
9393
9394   for (DenseMap<SDValue, unsigned>::const_iterator
9395         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9396     // Quit if not all elements are used.
9397     if (I->second != FullMask)
9398       return SDValue();
9399     VecIns.push_back(I->first);
9400   }
9401
9402   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9403
9404   // Cast all vectors into TestVT for PTEST.
9405   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9406     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9407
9408   // If more than one full vectors are evaluated, OR them first before PTEST.
9409   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9410     // Each iteration will OR 2 nodes and append the result until there is only
9411     // 1 node left, i.e. the final OR'd value of all vectors.
9412     SDValue LHS = VecIns[Slot];
9413     SDValue RHS = VecIns[Slot + 1];
9414     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9415   }
9416
9417   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9418                      VecIns.back(), VecIns.back());
9419 }
9420
9421 /// Emit nodes that will be selected as "test Op0,Op0", or something
9422 /// equivalent.
9423 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9424                                     SelectionDAG &DAG) const {
9425   SDLoc dl(Op);
9426
9427   // CF and OF aren't always set the way we want. Determine which
9428   // of these we need.
9429   bool NeedCF = false;
9430   bool NeedOF = false;
9431   switch (X86CC) {
9432   default: break;
9433   case X86::COND_A: case X86::COND_AE:
9434   case X86::COND_B: case X86::COND_BE:
9435     NeedCF = true;
9436     break;
9437   case X86::COND_G: case X86::COND_GE:
9438   case X86::COND_L: case X86::COND_LE:
9439   case X86::COND_O: case X86::COND_NO:
9440     NeedOF = true;
9441     break;
9442   }
9443
9444   // See if we can use the EFLAGS value from the operand instead of
9445   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9446   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9447   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9448     // Emit a CMP with 0, which is the TEST pattern.
9449     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9450                        DAG.getConstant(0, Op.getValueType()));
9451
9452   unsigned Opcode = 0;
9453   unsigned NumOperands = 0;
9454
9455   // Truncate operations may prevent the merge of the SETCC instruction
9456   // and the arithmetic instruction before it. Attempt to truncate the operands
9457   // of the arithmetic instruction and use a reduced bit-width instruction.
9458   bool NeedTruncation = false;
9459   SDValue ArithOp = Op;
9460   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9461     SDValue Arith = Op->getOperand(0);
9462     // Both the trunc and the arithmetic op need to have one user each.
9463     if (Arith->hasOneUse())
9464       switch (Arith.getOpcode()) {
9465         default: break;
9466         case ISD::ADD:
9467         case ISD::SUB:
9468         case ISD::AND:
9469         case ISD::OR:
9470         case ISD::XOR: {
9471           NeedTruncation = true;
9472           ArithOp = Arith;
9473         }
9474       }
9475   }
9476
9477   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9478   // which may be the result of a CAST.  We use the variable 'Op', which is the
9479   // non-casted variable when we check for possible users.
9480   switch (ArithOp.getOpcode()) {
9481   case ISD::ADD:
9482     // Due to an isel shortcoming, be conservative if this add is likely to be
9483     // selected as part of a load-modify-store instruction. When the root node
9484     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9485     // uses of other nodes in the match, such as the ADD in this case. This
9486     // leads to the ADD being left around and reselected, with the result being
9487     // two adds in the output.  Alas, even if none our users are stores, that
9488     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9489     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9490     // climbing the DAG back to the root, and it doesn't seem to be worth the
9491     // effort.
9492     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9493          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9494       if (UI->getOpcode() != ISD::CopyToReg &&
9495           UI->getOpcode() != ISD::SETCC &&
9496           UI->getOpcode() != ISD::STORE)
9497         goto default_case;
9498
9499     if (ConstantSDNode *C =
9500         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9501       // An add of one will be selected as an INC.
9502       if (C->getAPIntValue() == 1) {
9503         Opcode = X86ISD::INC;
9504         NumOperands = 1;
9505         break;
9506       }
9507
9508       // An add of negative one (subtract of one) will be selected as a DEC.
9509       if (C->getAPIntValue().isAllOnesValue()) {
9510         Opcode = X86ISD::DEC;
9511         NumOperands = 1;
9512         break;
9513       }
9514     }
9515
9516     // Otherwise use a regular EFLAGS-setting add.
9517     Opcode = X86ISD::ADD;
9518     NumOperands = 2;
9519     break;
9520   case ISD::AND: {
9521     // If the primary and result isn't used, don't bother using X86ISD::AND,
9522     // because a TEST instruction will be better.
9523     bool NonFlagUse = false;
9524     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9525            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9526       SDNode *User = *UI;
9527       unsigned UOpNo = UI.getOperandNo();
9528       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9529         // Look pass truncate.
9530         UOpNo = User->use_begin().getOperandNo();
9531         User = *User->use_begin();
9532       }
9533
9534       if (User->getOpcode() != ISD::BRCOND &&
9535           User->getOpcode() != ISD::SETCC &&
9536           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9537         NonFlagUse = true;
9538         break;
9539       }
9540     }
9541
9542     if (!NonFlagUse)
9543       break;
9544   }
9545     // FALL THROUGH
9546   case ISD::SUB:
9547   case ISD::OR:
9548   case ISD::XOR:
9549     // Due to the ISEL shortcoming noted above, be conservative if this op is
9550     // likely to be selected as part of a load-modify-store instruction.
9551     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9552            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9553       if (UI->getOpcode() == ISD::STORE)
9554         goto default_case;
9555
9556     // Otherwise use a regular EFLAGS-setting instruction.
9557     switch (ArithOp.getOpcode()) {
9558     default: llvm_unreachable("unexpected operator!");
9559     case ISD::SUB: Opcode = X86ISD::SUB; break;
9560     case ISD::XOR: Opcode = X86ISD::XOR; break;
9561     case ISD::AND: Opcode = X86ISD::AND; break;
9562     case ISD::OR: {
9563       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9564         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9565         if (EFLAGS.getNode())
9566           return EFLAGS;
9567       }
9568       Opcode = X86ISD::OR;
9569       break;
9570     }
9571     }
9572
9573     NumOperands = 2;
9574     break;
9575   case X86ISD::ADD:
9576   case X86ISD::SUB:
9577   case X86ISD::INC:
9578   case X86ISD::DEC:
9579   case X86ISD::OR:
9580   case X86ISD::XOR:
9581   case X86ISD::AND:
9582     return SDValue(Op.getNode(), 1);
9583   default:
9584   default_case:
9585     break;
9586   }
9587
9588   // If we found that truncation is beneficial, perform the truncation and
9589   // update 'Op'.
9590   if (NeedTruncation) {
9591     EVT VT = Op.getValueType();
9592     SDValue WideVal = Op->getOperand(0);
9593     EVT WideVT = WideVal.getValueType();
9594     unsigned ConvertedOp = 0;
9595     // Use a target machine opcode to prevent further DAGCombine
9596     // optimizations that may separate the arithmetic operations
9597     // from the setcc node.
9598     switch (WideVal.getOpcode()) {
9599       default: break;
9600       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9601       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9602       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9603       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9604       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9605     }
9606
9607     if (ConvertedOp) {
9608       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9609       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9610         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9611         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9612         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9613       }
9614     }
9615   }
9616
9617   if (Opcode == 0)
9618     // Emit a CMP with 0, which is the TEST pattern.
9619     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9620                        DAG.getConstant(0, Op.getValueType()));
9621
9622   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9623   SmallVector<SDValue, 4> Ops;
9624   for (unsigned i = 0; i != NumOperands; ++i)
9625     Ops.push_back(Op.getOperand(i));
9626
9627   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9628   DAG.ReplaceAllUsesWith(Op, New);
9629   return SDValue(New.getNode(), 1);
9630 }
9631
9632 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9633 /// equivalent.
9634 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9635                                    SelectionDAG &DAG) const {
9636   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9637     if (C->getAPIntValue() == 0)
9638       return EmitTest(Op0, X86CC, DAG);
9639
9640   SDLoc dl(Op0);
9641   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9642        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9643     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9644     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9645     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9646                               Op0, Op1);
9647     return SDValue(Sub.getNode(), 1);
9648   }
9649   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9650 }
9651
9652 /// Convert a comparison if required by the subtarget.
9653 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9654                                                  SelectionDAG &DAG) const {
9655   // If the subtarget does not support the FUCOMI instruction, floating-point
9656   // comparisons have to be converted.
9657   if (Subtarget->hasCMov() ||
9658       Cmp.getOpcode() != X86ISD::CMP ||
9659       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9660       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9661     return Cmp;
9662
9663   // The instruction selector will select an FUCOM instruction instead of
9664   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9665   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9666   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9667   SDLoc dl(Cmp);
9668   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9669   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9670   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9671                             DAG.getConstant(8, MVT::i8));
9672   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9673   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9674 }
9675
9676 static bool isAllOnes(SDValue V) {
9677   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9678   return C && C->isAllOnesValue();
9679 }
9680
9681 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9682 /// if it's possible.
9683 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9684                                      SDLoc dl, SelectionDAG &DAG) const {
9685   SDValue Op0 = And.getOperand(0);
9686   SDValue Op1 = And.getOperand(1);
9687   if (Op0.getOpcode() == ISD::TRUNCATE)
9688     Op0 = Op0.getOperand(0);
9689   if (Op1.getOpcode() == ISD::TRUNCATE)
9690     Op1 = Op1.getOperand(0);
9691
9692   SDValue LHS, RHS;
9693   if (Op1.getOpcode() == ISD::SHL)
9694     std::swap(Op0, Op1);
9695   if (Op0.getOpcode() == ISD::SHL) {
9696     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9697       if (And00C->getZExtValue() == 1) {
9698         // If we looked past a truncate, check that it's only truncating away
9699         // known zeros.
9700         unsigned BitWidth = Op0.getValueSizeInBits();
9701         unsigned AndBitWidth = And.getValueSizeInBits();
9702         if (BitWidth > AndBitWidth) {
9703           APInt Zeros, Ones;
9704           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9705           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9706             return SDValue();
9707         }
9708         LHS = Op1;
9709         RHS = Op0.getOperand(1);
9710       }
9711   } else if (Op1.getOpcode() == ISD::Constant) {
9712     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9713     uint64_t AndRHSVal = AndRHS->getZExtValue();
9714     SDValue AndLHS = Op0;
9715
9716     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9717       LHS = AndLHS.getOperand(0);
9718       RHS = AndLHS.getOperand(1);
9719     }
9720
9721     // Use BT if the immediate can't be encoded in a TEST instruction.
9722     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9723       LHS = AndLHS;
9724       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9725     }
9726   }
9727
9728   if (LHS.getNode()) {
9729     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9730     // instruction.  Since the shift amount is in-range-or-undefined, we know
9731     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9732     // the encoding for the i16 version is larger than the i32 version.
9733     // Also promote i16 to i32 for performance / code size reason.
9734     if (LHS.getValueType() == MVT::i8 ||
9735         LHS.getValueType() == MVT::i16)
9736       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9737
9738     // If the operand types disagree, extend the shift amount to match.  Since
9739     // BT ignores high bits (like shifts) we can use anyextend.
9740     if (LHS.getValueType() != RHS.getValueType())
9741       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9742
9743     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9744     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9745     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9746                        DAG.getConstant(Cond, MVT::i8), BT);
9747   }
9748
9749   return SDValue();
9750 }
9751
9752 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9753 /// mask CMPs.
9754 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9755                               SDValue &Op1) {
9756   unsigned SSECC;
9757   bool Swap = false;
9758
9759   // SSE Condition code mapping:
9760   //  0 - EQ
9761   //  1 - LT
9762   //  2 - LE
9763   //  3 - UNORD
9764   //  4 - NEQ
9765   //  5 - NLT
9766   //  6 - NLE
9767   //  7 - ORD
9768   switch (SetCCOpcode) {
9769   default: llvm_unreachable("Unexpected SETCC condition");
9770   case ISD::SETOEQ:
9771   case ISD::SETEQ:  SSECC = 0; break;
9772   case ISD::SETOGT:
9773   case ISD::SETGT:  Swap = true; // Fallthrough
9774   case ISD::SETLT:
9775   case ISD::SETOLT: SSECC = 1; break;
9776   case ISD::SETOGE:
9777   case ISD::SETGE:  Swap = true; // Fallthrough
9778   case ISD::SETLE:
9779   case ISD::SETOLE: SSECC = 2; break;
9780   case ISD::SETUO:  SSECC = 3; break;
9781   case ISD::SETUNE:
9782   case ISD::SETNE:  SSECC = 4; break;
9783   case ISD::SETULE: Swap = true; // Fallthrough
9784   case ISD::SETUGE: SSECC = 5; break;
9785   case ISD::SETULT: Swap = true; // Fallthrough
9786   case ISD::SETUGT: SSECC = 6; break;
9787   case ISD::SETO:   SSECC = 7; break;
9788   case ISD::SETUEQ:
9789   case ISD::SETONE: SSECC = 8; break;
9790   }
9791   if (Swap)
9792     std::swap(Op0, Op1);
9793
9794   return SSECC;
9795 }
9796
9797 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9798 // ones, and then concatenate the result back.
9799 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9800   MVT VT = Op.getSimpleValueType();
9801
9802   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9803          "Unsupported value type for operation");
9804
9805   unsigned NumElems = VT.getVectorNumElements();
9806   SDLoc dl(Op);
9807   SDValue CC = Op.getOperand(2);
9808
9809   // Extract the LHS vectors
9810   SDValue LHS = Op.getOperand(0);
9811   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9812   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9813
9814   // Extract the RHS vectors
9815   SDValue RHS = Op.getOperand(1);
9816   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9817   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9818
9819   // Issue the operation on the smaller types and concatenate the result back
9820   MVT EltVT = VT.getVectorElementType();
9821   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9822   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9823                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9824                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9825 }
9826
9827 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9828   SDValue Op0 = Op.getOperand(0);
9829   SDValue Op1 = Op.getOperand(1);
9830   SDValue CC = Op.getOperand(2);
9831   MVT VT = Op.getSimpleValueType();
9832
9833   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9834          Op.getValueType().getScalarType() == MVT::i1 &&
9835          "Cannot set masked compare for this operation");
9836
9837   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9838   SDLoc dl(Op);
9839
9840   bool Unsigned = false;
9841   unsigned SSECC;
9842   switch (SetCCOpcode) {
9843   default: llvm_unreachable("Unexpected SETCC condition");
9844   case ISD::SETNE:  SSECC = 4; break;
9845   case ISD::SETEQ:  SSECC = 0; break;
9846   case ISD::SETUGT: Unsigned = true;
9847   case ISD::SETGT:  SSECC = 6; break; // NLE
9848   case ISD::SETULT: Unsigned = true;
9849   case ISD::SETLT:  SSECC = 1; break;
9850   case ISD::SETUGE: Unsigned = true;
9851   case ISD::SETGE:  SSECC = 5; break; // NLT
9852   case ISD::SETULE: Unsigned = true;
9853   case ISD::SETLE:  SSECC = 2; break;
9854   }
9855   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9856   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9857                      DAG.getConstant(SSECC, MVT::i8));
9858
9859 }
9860
9861 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9862                            SelectionDAG &DAG) {
9863   SDValue Op0 = Op.getOperand(0);
9864   SDValue Op1 = Op.getOperand(1);
9865   SDValue CC = Op.getOperand(2);
9866   MVT VT = Op.getSimpleValueType();
9867   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9868   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9869   SDLoc dl(Op);
9870
9871   if (isFP) {
9872 #ifndef NDEBUG
9873     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9874     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9875 #endif
9876
9877     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9878     unsigned Opc = X86ISD::CMPP;
9879     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9880       assert(VT.getVectorNumElements() <= 16);
9881       Opc = X86ISD::CMPM;
9882     }
9883     // In the two special cases we can't handle, emit two comparisons.
9884     if (SSECC == 8) {
9885       unsigned CC0, CC1;
9886       unsigned CombineOpc;
9887       if (SetCCOpcode == ISD::SETUEQ) {
9888         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9889       } else {
9890         assert(SetCCOpcode == ISD::SETONE);
9891         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9892       }
9893
9894       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9895                                  DAG.getConstant(CC0, MVT::i8));
9896       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9897                                  DAG.getConstant(CC1, MVT::i8));
9898       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9899     }
9900     // Handle all other FP comparisons here.
9901     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9902                        DAG.getConstant(SSECC, MVT::i8));
9903   }
9904
9905   // Break 256-bit integer vector compare into smaller ones.
9906   if (VT.is256BitVector() && !Subtarget->hasInt256())
9907     return Lower256IntVSETCC(Op, DAG);
9908
9909   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9910   EVT OpVT = Op1.getValueType();
9911   if (Subtarget->hasAVX512()) {
9912     if (Op1.getValueType().is512BitVector() ||
9913         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9914       return LowerIntVSETCC_AVX512(Op, DAG);
9915
9916     // In AVX-512 architecture setcc returns mask with i1 elements,
9917     // But there is no compare instruction for i8 and i16 elements.
9918     // We are not talking about 512-bit operands in this case, these
9919     // types are illegal.
9920     if (MaskResult &&
9921         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9922          OpVT.getVectorElementType().getSizeInBits() >= 8))
9923       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9924                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9925   }
9926
9927   // We are handling one of the integer comparisons here.  Since SSE only has
9928   // GT and EQ comparisons for integer, swapping operands and multiple
9929   // operations may be required for some comparisons.
9930   unsigned Opc;
9931   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9932   
9933   switch (SetCCOpcode) {
9934   default: llvm_unreachable("Unexpected SETCC condition");
9935   case ISD::SETNE:  Invert = true;
9936   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9937   case ISD::SETLT:  Swap = true;
9938   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9939   case ISD::SETGE:  Swap = true;
9940   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9941                     Invert = true; break;
9942   case ISD::SETULT: Swap = true;
9943   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9944                     FlipSigns = true; break;
9945   case ISD::SETUGE: Swap = true;
9946   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9947                     FlipSigns = true; Invert = true; break;
9948   }
9949   
9950   // Special case: Use min/max operations for SETULE/SETUGE
9951   MVT VET = VT.getVectorElementType();
9952   bool hasMinMax =
9953        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9954     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9955   
9956   if (hasMinMax) {
9957     switch (SetCCOpcode) {
9958     default: break;
9959     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9960     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9961     }
9962     
9963     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9964   }
9965   
9966   if (Swap)
9967     std::swap(Op0, Op1);
9968
9969   // Check that the operation in question is available (most are plain SSE2,
9970   // but PCMPGTQ and PCMPEQQ have different requirements).
9971   if (VT == MVT::v2i64) {
9972     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9973       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9974
9975       // First cast everything to the right type.
9976       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9977       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9978
9979       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9980       // bits of the inputs before performing those operations. The lower
9981       // compare is always unsigned.
9982       SDValue SB;
9983       if (FlipSigns) {
9984         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9985       } else {
9986         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9987         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9988         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9989                          Sign, Zero, Sign, Zero);
9990       }
9991       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9992       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9993
9994       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9995       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9996       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9997
9998       // Create masks for only the low parts/high parts of the 64 bit integers.
9999       static const int MaskHi[] = { 1, 1, 3, 3 };
10000       static const int MaskLo[] = { 0, 0, 2, 2 };
10001       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10002       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10003       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10004
10005       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10006       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10007
10008       if (Invert)
10009         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10010
10011       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10012     }
10013
10014     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10015       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10016       // pcmpeqd + pshufd + pand.
10017       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10018
10019       // First cast everything to the right type.
10020       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10021       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10022
10023       // Do the compare.
10024       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10025
10026       // Make sure the lower and upper halves are both all-ones.
10027       static const int Mask[] = { 1, 0, 3, 2 };
10028       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10029       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10030
10031       if (Invert)
10032         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10033
10034       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10035     }
10036   }
10037
10038   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10039   // bits of the inputs before performing those operations.
10040   if (FlipSigns) {
10041     EVT EltVT = VT.getVectorElementType();
10042     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10043     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10044     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10045   }
10046
10047   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10048
10049   // If the logical-not of the result is required, perform that now.
10050   if (Invert)
10051     Result = DAG.getNOT(dl, Result, VT);
10052   
10053   if (MinMax)
10054     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10055
10056   return Result;
10057 }
10058
10059 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10060
10061   MVT VT = Op.getSimpleValueType();
10062
10063   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10064
10065   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10066   SDValue Op0 = Op.getOperand(0);
10067   SDValue Op1 = Op.getOperand(1);
10068   SDLoc dl(Op);
10069   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10070
10071   // Optimize to BT if possible.
10072   // Lower (X & (1 << N)) == 0 to BT(X, N).
10073   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10074   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10075   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10076       Op1.getOpcode() == ISD::Constant &&
10077       cast<ConstantSDNode>(Op1)->isNullValue() &&
10078       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10079     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10080     if (NewSetCC.getNode())
10081       return NewSetCC;
10082   }
10083
10084   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10085   // these.
10086   if (Op1.getOpcode() == ISD::Constant &&
10087       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10088        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10089       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10090
10091     // If the input is a setcc, then reuse the input setcc or use a new one with
10092     // the inverted condition.
10093     if (Op0.getOpcode() == X86ISD::SETCC) {
10094       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10095       bool Invert = (CC == ISD::SETNE) ^
10096         cast<ConstantSDNode>(Op1)->isNullValue();
10097       if (!Invert) return Op0;
10098
10099       CCode = X86::GetOppositeBranchCondition(CCode);
10100       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10101                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10102     }
10103   }
10104
10105   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10106   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10107   if (X86CC == X86::COND_INVALID)
10108     return SDValue();
10109
10110   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10111   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10112   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10113                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10114 }
10115
10116 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10117 static bool isX86LogicalCmp(SDValue Op) {
10118   unsigned Opc = Op.getNode()->getOpcode();
10119   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10120       Opc == X86ISD::SAHF)
10121     return true;
10122   if (Op.getResNo() == 1 &&
10123       (Opc == X86ISD::ADD ||
10124        Opc == X86ISD::SUB ||
10125        Opc == X86ISD::ADC ||
10126        Opc == X86ISD::SBB ||
10127        Opc == X86ISD::SMUL ||
10128        Opc == X86ISD::UMUL ||
10129        Opc == X86ISD::INC ||
10130        Opc == X86ISD::DEC ||
10131        Opc == X86ISD::OR ||
10132        Opc == X86ISD::XOR ||
10133        Opc == X86ISD::AND))
10134     return true;
10135
10136   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10137     return true;
10138
10139   return false;
10140 }
10141
10142 static bool isZero(SDValue V) {
10143   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10144   return C && C->isNullValue();
10145 }
10146
10147 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10148   if (V.getOpcode() != ISD::TRUNCATE)
10149     return false;
10150
10151   SDValue VOp0 = V.getOperand(0);
10152   unsigned InBits = VOp0.getValueSizeInBits();
10153   unsigned Bits = V.getValueSizeInBits();
10154   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10155 }
10156
10157 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10158   bool addTest = true;
10159   SDValue Cond  = Op.getOperand(0);
10160   SDValue Op1 = Op.getOperand(1);
10161   SDValue Op2 = Op.getOperand(2);
10162   SDLoc DL(Op);
10163   EVT VT = Op1.getValueType();
10164   SDValue CC;
10165
10166   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10167   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10168   // sequence later on.
10169   if (Cond.getOpcode() == ISD::SETCC &&
10170       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10171        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10172       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10173     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10174     int SSECC = translateX86FSETCC(
10175         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10176
10177     if (SSECC != 8) {
10178       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10179       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10180                                 DAG.getConstant(SSECC, MVT::i8));
10181       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10182       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10183       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10184     }
10185   }
10186
10187   if (Cond.getOpcode() == ISD::SETCC) {
10188     SDValue NewCond = LowerSETCC(Cond, DAG);
10189     if (NewCond.getNode())
10190       Cond = NewCond;
10191   }
10192
10193   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10194   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10195   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10196   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10197   if (Cond.getOpcode() == X86ISD::SETCC &&
10198       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10199       isZero(Cond.getOperand(1).getOperand(1))) {
10200     SDValue Cmp = Cond.getOperand(1);
10201
10202     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10203
10204     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10205         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10206       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10207
10208       SDValue CmpOp0 = Cmp.getOperand(0);
10209       // Apply further optimizations for special cases
10210       // (select (x != 0), -1, 0) -> neg & sbb
10211       // (select (x == 0), 0, -1) -> neg & sbb
10212       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10213         if (YC->isNullValue() &&
10214             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10215           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10216           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10217                                     DAG.getConstant(0, CmpOp0.getValueType()),
10218                                     CmpOp0);
10219           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10220                                     DAG.getConstant(X86::COND_B, MVT::i8),
10221                                     SDValue(Neg.getNode(), 1));
10222           return Res;
10223         }
10224
10225       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10226                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10227       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10228
10229       SDValue Res =   // Res = 0 or -1.
10230         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10231                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10232
10233       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10234         Res = DAG.getNOT(DL, Res, Res.getValueType());
10235
10236       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10237       if (N2C == 0 || !N2C->isNullValue())
10238         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10239       return Res;
10240     }
10241   }
10242
10243   // Look past (and (setcc_carry (cmp ...)), 1).
10244   if (Cond.getOpcode() == ISD::AND &&
10245       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10246     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10247     if (C && C->getAPIntValue() == 1)
10248       Cond = Cond.getOperand(0);
10249   }
10250
10251   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10252   // setting operand in place of the X86ISD::SETCC.
10253   unsigned CondOpcode = Cond.getOpcode();
10254   if (CondOpcode == X86ISD::SETCC ||
10255       CondOpcode == X86ISD::SETCC_CARRY) {
10256     CC = Cond.getOperand(0);
10257
10258     SDValue Cmp = Cond.getOperand(1);
10259     unsigned Opc = Cmp.getOpcode();
10260     MVT VT = Op.getSimpleValueType();
10261
10262     bool IllegalFPCMov = false;
10263     if (VT.isFloatingPoint() && !VT.isVector() &&
10264         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10265       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10266
10267     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10268         Opc == X86ISD::BT) { // FIXME
10269       Cond = Cmp;
10270       addTest = false;
10271     }
10272   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10273              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10274              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10275               Cond.getOperand(0).getValueType() != MVT::i8)) {
10276     SDValue LHS = Cond.getOperand(0);
10277     SDValue RHS = Cond.getOperand(1);
10278     unsigned X86Opcode;
10279     unsigned X86Cond;
10280     SDVTList VTs;
10281     switch (CondOpcode) {
10282     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10283     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10284     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10285     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10286     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10287     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10288     default: llvm_unreachable("unexpected overflowing operator");
10289     }
10290     if (CondOpcode == ISD::UMULO)
10291       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10292                           MVT::i32);
10293     else
10294       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10295
10296     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10297
10298     if (CondOpcode == ISD::UMULO)
10299       Cond = X86Op.getValue(2);
10300     else
10301       Cond = X86Op.getValue(1);
10302
10303     CC = DAG.getConstant(X86Cond, MVT::i8);
10304     addTest = false;
10305   }
10306
10307   if (addTest) {
10308     // Look pass the truncate if the high bits are known zero.
10309     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10310         Cond = Cond.getOperand(0);
10311
10312     // We know the result of AND is compared against zero. Try to match
10313     // it to BT.
10314     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10315       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10316       if (NewSetCC.getNode()) {
10317         CC = NewSetCC.getOperand(0);
10318         Cond = NewSetCC.getOperand(1);
10319         addTest = false;
10320       }
10321     }
10322   }
10323
10324   if (addTest) {
10325     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10326     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10327   }
10328
10329   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10330   // a <  b ?  0 : -1 -> RES = setcc_carry
10331   // a >= b ? -1 :  0 -> RES = setcc_carry
10332   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10333   if (Cond.getOpcode() == X86ISD::SUB) {
10334     Cond = ConvertCmpIfNecessary(Cond, DAG);
10335     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10336
10337     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10338         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10339       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10340                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10341       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10342         return DAG.getNOT(DL, Res, Res.getValueType());
10343       return Res;
10344     }
10345   }
10346
10347   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10348   // widen the cmov and push the truncate through. This avoids introducing a new
10349   // branch during isel and doesn't add any extensions.
10350   if (Op.getValueType() == MVT::i8 &&
10351       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10352     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10353     if (T1.getValueType() == T2.getValueType() &&
10354         // Blacklist CopyFromReg to avoid partial register stalls.
10355         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10356       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10357       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10358       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10359     }
10360   }
10361
10362   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10363   // condition is true.
10364   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10365   SDValue Ops[] = { Op2, Op1, CC, Cond };
10366   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10367 }
10368
10369 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10370   MVT VT = Op->getSimpleValueType(0);
10371   SDValue In = Op->getOperand(0);
10372   MVT InVT = In.getSimpleValueType();
10373   SDLoc dl(Op);
10374
10375   unsigned int NumElts = VT.getVectorNumElements();
10376   if (NumElts != 8 && NumElts != 16)
10377     return SDValue();
10378
10379   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10380     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10381
10382   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10383   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10384
10385   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10386   Constant *C = ConstantInt::get(*DAG.getContext(),
10387     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10388
10389   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10390   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10391   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10392                           MachinePointerInfo::getConstantPool(),
10393                           false, false, false, Alignment);
10394   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10395   if (VT.is512BitVector())
10396     return Brcst;
10397   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10398 }
10399
10400 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10401                                 SelectionDAG &DAG) {
10402   MVT VT = Op->getSimpleValueType(0);
10403   SDValue In = Op->getOperand(0);
10404   MVT InVT = In.getSimpleValueType();
10405   SDLoc dl(Op);
10406
10407   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10408     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10409
10410   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10411       (VT != MVT::v8i32 || InVT != MVT::v8i16))
10412     return SDValue();
10413
10414   if (Subtarget->hasInt256())
10415     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10416
10417   // Optimize vectors in AVX mode
10418   // Sign extend  v8i16 to v8i32 and
10419   //              v4i32 to v4i64
10420   //
10421   // Divide input vector into two parts
10422   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10423   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10424   // concat the vectors to original VT
10425
10426   unsigned NumElems = InVT.getVectorNumElements();
10427   SDValue Undef = DAG.getUNDEF(InVT);
10428
10429   SmallVector<int,8> ShufMask1(NumElems, -1);
10430   for (unsigned i = 0; i != NumElems/2; ++i)
10431     ShufMask1[i] = i;
10432
10433   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10434
10435   SmallVector<int,8> ShufMask2(NumElems, -1);
10436   for (unsigned i = 0; i != NumElems/2; ++i)
10437     ShufMask2[i] = i + NumElems/2;
10438
10439   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10440
10441   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10442                                 VT.getVectorNumElements()/2);
10443
10444   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10445   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10446
10447   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10448 }
10449
10450 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10451 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10452 // from the AND / OR.
10453 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10454   Opc = Op.getOpcode();
10455   if (Opc != ISD::OR && Opc != ISD::AND)
10456     return false;
10457   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10458           Op.getOperand(0).hasOneUse() &&
10459           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10460           Op.getOperand(1).hasOneUse());
10461 }
10462
10463 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10464 // 1 and that the SETCC node has a single use.
10465 static bool isXor1OfSetCC(SDValue Op) {
10466   if (Op.getOpcode() != ISD::XOR)
10467     return false;
10468   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10469   if (N1C && N1C->getAPIntValue() == 1) {
10470     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10471       Op.getOperand(0).hasOneUse();
10472   }
10473   return false;
10474 }
10475
10476 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10477   bool addTest = true;
10478   SDValue Chain = Op.getOperand(0);
10479   SDValue Cond  = Op.getOperand(1);
10480   SDValue Dest  = Op.getOperand(2);
10481   SDLoc dl(Op);
10482   SDValue CC;
10483   bool Inverted = false;
10484
10485   if (Cond.getOpcode() == ISD::SETCC) {
10486     // Check for setcc([su]{add,sub,mul}o == 0).
10487     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10488         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10489         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10490         Cond.getOperand(0).getResNo() == 1 &&
10491         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10492          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10493          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10494          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10495          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10496          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10497       Inverted = true;
10498       Cond = Cond.getOperand(0);
10499     } else {
10500       SDValue NewCond = LowerSETCC(Cond, DAG);
10501       if (NewCond.getNode())
10502         Cond = NewCond;
10503     }
10504   }
10505 #if 0
10506   // FIXME: LowerXALUO doesn't handle these!!
10507   else if (Cond.getOpcode() == X86ISD::ADD  ||
10508            Cond.getOpcode() == X86ISD::SUB  ||
10509            Cond.getOpcode() == X86ISD::SMUL ||
10510            Cond.getOpcode() == X86ISD::UMUL)
10511     Cond = LowerXALUO(Cond, DAG);
10512 #endif
10513
10514   // Look pass (and (setcc_carry (cmp ...)), 1).
10515   if (Cond.getOpcode() == ISD::AND &&
10516       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10517     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10518     if (C && C->getAPIntValue() == 1)
10519       Cond = Cond.getOperand(0);
10520   }
10521
10522   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10523   // setting operand in place of the X86ISD::SETCC.
10524   unsigned CondOpcode = Cond.getOpcode();
10525   if (CondOpcode == X86ISD::SETCC ||
10526       CondOpcode == X86ISD::SETCC_CARRY) {
10527     CC = Cond.getOperand(0);
10528
10529     SDValue Cmp = Cond.getOperand(1);
10530     unsigned Opc = Cmp.getOpcode();
10531     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10532     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10533       Cond = Cmp;
10534       addTest = false;
10535     } else {
10536       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10537       default: break;
10538       case X86::COND_O:
10539       case X86::COND_B:
10540         // These can only come from an arithmetic instruction with overflow,
10541         // e.g. SADDO, UADDO.
10542         Cond = Cond.getNode()->getOperand(1);
10543         addTest = false;
10544         break;
10545       }
10546     }
10547   }
10548   CondOpcode = Cond.getOpcode();
10549   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10550       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10551       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10552        Cond.getOperand(0).getValueType() != MVT::i8)) {
10553     SDValue LHS = Cond.getOperand(0);
10554     SDValue RHS = Cond.getOperand(1);
10555     unsigned X86Opcode;
10556     unsigned X86Cond;
10557     SDVTList VTs;
10558     switch (CondOpcode) {
10559     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10560     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10561     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10562     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10563     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10564     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10565     default: llvm_unreachable("unexpected overflowing operator");
10566     }
10567     if (Inverted)
10568       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10569     if (CondOpcode == ISD::UMULO)
10570       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10571                           MVT::i32);
10572     else
10573       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10574
10575     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10576
10577     if (CondOpcode == ISD::UMULO)
10578       Cond = X86Op.getValue(2);
10579     else
10580       Cond = X86Op.getValue(1);
10581
10582     CC = DAG.getConstant(X86Cond, MVT::i8);
10583     addTest = false;
10584   } else {
10585     unsigned CondOpc;
10586     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10587       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10588       if (CondOpc == ISD::OR) {
10589         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10590         // two branches instead of an explicit OR instruction with a
10591         // separate test.
10592         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10593             isX86LogicalCmp(Cmp)) {
10594           CC = Cond.getOperand(0).getOperand(0);
10595           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10596                               Chain, Dest, CC, Cmp);
10597           CC = Cond.getOperand(1).getOperand(0);
10598           Cond = Cmp;
10599           addTest = false;
10600         }
10601       } else { // ISD::AND
10602         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10603         // two branches instead of an explicit AND instruction with a
10604         // separate test. However, we only do this if this block doesn't
10605         // have a fall-through edge, because this requires an explicit
10606         // jmp when the condition is false.
10607         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10608             isX86LogicalCmp(Cmp) &&
10609             Op.getNode()->hasOneUse()) {
10610           X86::CondCode CCode =
10611             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10612           CCode = X86::GetOppositeBranchCondition(CCode);
10613           CC = DAG.getConstant(CCode, MVT::i8);
10614           SDNode *User = *Op.getNode()->use_begin();
10615           // Look for an unconditional branch following this conditional branch.
10616           // We need this because we need to reverse the successors in order
10617           // to implement FCMP_OEQ.
10618           if (User->getOpcode() == ISD::BR) {
10619             SDValue FalseBB = User->getOperand(1);
10620             SDNode *NewBR =
10621               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10622             assert(NewBR == User);
10623             (void)NewBR;
10624             Dest = FalseBB;
10625
10626             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10627                                 Chain, Dest, CC, Cmp);
10628             X86::CondCode CCode =
10629               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10630             CCode = X86::GetOppositeBranchCondition(CCode);
10631             CC = DAG.getConstant(CCode, MVT::i8);
10632             Cond = Cmp;
10633             addTest = false;
10634           }
10635         }
10636       }
10637     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10638       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10639       // It should be transformed during dag combiner except when the condition
10640       // is set by a arithmetics with overflow node.
10641       X86::CondCode CCode =
10642         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10643       CCode = X86::GetOppositeBranchCondition(CCode);
10644       CC = DAG.getConstant(CCode, MVT::i8);
10645       Cond = Cond.getOperand(0).getOperand(1);
10646       addTest = false;
10647     } else if (Cond.getOpcode() == ISD::SETCC &&
10648                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10649       // For FCMP_OEQ, we can emit
10650       // two branches instead of an explicit AND instruction with a
10651       // separate test. However, we only do this if this block doesn't
10652       // have a fall-through edge, because this requires an explicit
10653       // jmp when the condition is false.
10654       if (Op.getNode()->hasOneUse()) {
10655         SDNode *User = *Op.getNode()->use_begin();
10656         // Look for an unconditional branch following this conditional branch.
10657         // We need this because we need to reverse the successors in order
10658         // to implement FCMP_OEQ.
10659         if (User->getOpcode() == ISD::BR) {
10660           SDValue FalseBB = User->getOperand(1);
10661           SDNode *NewBR =
10662             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10663           assert(NewBR == User);
10664           (void)NewBR;
10665           Dest = FalseBB;
10666
10667           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10668                                     Cond.getOperand(0), Cond.getOperand(1));
10669           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10670           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10671           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10672                               Chain, Dest, CC, Cmp);
10673           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10674           Cond = Cmp;
10675           addTest = false;
10676         }
10677       }
10678     } else if (Cond.getOpcode() == ISD::SETCC &&
10679                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10680       // For FCMP_UNE, we can emit
10681       // two branches instead of an explicit AND instruction with a
10682       // separate test. However, we only do this if this block doesn't
10683       // have a fall-through edge, because this requires an explicit
10684       // jmp when the condition is false.
10685       if (Op.getNode()->hasOneUse()) {
10686         SDNode *User = *Op.getNode()->use_begin();
10687         // Look for an unconditional branch following this conditional branch.
10688         // We need this because we need to reverse the successors in order
10689         // to implement FCMP_UNE.
10690         if (User->getOpcode() == ISD::BR) {
10691           SDValue FalseBB = User->getOperand(1);
10692           SDNode *NewBR =
10693             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10694           assert(NewBR == User);
10695           (void)NewBR;
10696
10697           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10698                                     Cond.getOperand(0), Cond.getOperand(1));
10699           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10700           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10701           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10702                               Chain, Dest, CC, Cmp);
10703           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10704           Cond = Cmp;
10705           addTest = false;
10706           Dest = FalseBB;
10707         }
10708       }
10709     }
10710   }
10711
10712   if (addTest) {
10713     // Look pass the truncate if the high bits are known zero.
10714     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10715         Cond = Cond.getOperand(0);
10716
10717     // We know the result of AND is compared against zero. Try to match
10718     // it to BT.
10719     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10720       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10721       if (NewSetCC.getNode()) {
10722         CC = NewSetCC.getOperand(0);
10723         Cond = NewSetCC.getOperand(1);
10724         addTest = false;
10725       }
10726     }
10727   }
10728
10729   if (addTest) {
10730     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10731     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10732   }
10733   Cond = ConvertCmpIfNecessary(Cond, DAG);
10734   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10735                      Chain, Dest, CC, Cond);
10736 }
10737
10738 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10739 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10740 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10741 // that the guard pages used by the OS virtual memory manager are allocated in
10742 // correct sequence.
10743 SDValue
10744 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10745                                            SelectionDAG &DAG) const {
10746   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10747           getTargetMachine().Options.EnableSegmentedStacks) &&
10748          "This should be used only on Windows targets or when segmented stacks "
10749          "are being used");
10750   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10751   SDLoc dl(Op);
10752
10753   // Get the inputs.
10754   SDValue Chain = Op.getOperand(0);
10755   SDValue Size  = Op.getOperand(1);
10756   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10757   EVT VT = Op.getNode()->getValueType(0);
10758
10759   bool Is64Bit = Subtarget->is64Bit();
10760   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10761
10762   if (getTargetMachine().Options.EnableSegmentedStacks) {
10763     MachineFunction &MF = DAG.getMachineFunction();
10764     MachineRegisterInfo &MRI = MF.getRegInfo();
10765
10766     if (Is64Bit) {
10767       // The 64 bit implementation of segmented stacks needs to clobber both r10
10768       // r11. This makes it impossible to use it along with nested parameters.
10769       const Function *F = MF.getFunction();
10770
10771       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10772            I != E; ++I)
10773         if (I->hasNestAttr())
10774           report_fatal_error("Cannot use segmented stacks with functions that "
10775                              "have nested arguments.");
10776     }
10777
10778     const TargetRegisterClass *AddrRegClass =
10779       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10780     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10781     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10782     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10783                                 DAG.getRegister(Vreg, SPTy));
10784     SDValue Ops1[2] = { Value, Chain };
10785     return DAG.getMergeValues(Ops1, 2, dl);
10786   } else {
10787     SDValue Flag;
10788     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10789
10790     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10791     Flag = Chain.getValue(1);
10792     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10793
10794     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10795
10796     const X86RegisterInfo *RegInfo =
10797       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10798     unsigned SPReg = RegInfo->getStackRegister();
10799     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10800     Chain = SP.getValue(1);
10801
10802     if (Align) {
10803       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10804                        DAG.getConstant(-(uint64_t)Align, VT));
10805       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10806     }
10807
10808     SDValue Ops1[2] = { SP, Chain };
10809     return DAG.getMergeValues(Ops1, 2, dl);
10810   }
10811 }
10812
10813 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10814   MachineFunction &MF = DAG.getMachineFunction();
10815   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10816
10817   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10818   SDLoc DL(Op);
10819
10820   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10821     // vastart just stores the address of the VarArgsFrameIndex slot into the
10822     // memory location argument.
10823     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10824                                    getPointerTy());
10825     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10826                         MachinePointerInfo(SV), false, false, 0);
10827   }
10828
10829   // __va_list_tag:
10830   //   gp_offset         (0 - 6 * 8)
10831   //   fp_offset         (48 - 48 + 8 * 16)
10832   //   overflow_arg_area (point to parameters coming in memory).
10833   //   reg_save_area
10834   SmallVector<SDValue, 8> MemOps;
10835   SDValue FIN = Op.getOperand(1);
10836   // Store gp_offset
10837   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10838                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10839                                                MVT::i32),
10840                                FIN, MachinePointerInfo(SV), false, false, 0);
10841   MemOps.push_back(Store);
10842
10843   // Store fp_offset
10844   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10845                     FIN, DAG.getIntPtrConstant(4));
10846   Store = DAG.getStore(Op.getOperand(0), DL,
10847                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10848                                        MVT::i32),
10849                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10850   MemOps.push_back(Store);
10851
10852   // Store ptr to overflow_arg_area
10853   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10854                     FIN, DAG.getIntPtrConstant(4));
10855   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10856                                     getPointerTy());
10857   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10858                        MachinePointerInfo(SV, 8),
10859                        false, false, 0);
10860   MemOps.push_back(Store);
10861
10862   // Store ptr to reg_save_area.
10863   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10864                     FIN, DAG.getIntPtrConstant(8));
10865   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10866                                     getPointerTy());
10867   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10868                        MachinePointerInfo(SV, 16), false, false, 0);
10869   MemOps.push_back(Store);
10870   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10871                      &MemOps[0], MemOps.size());
10872 }
10873
10874 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10875   assert(Subtarget->is64Bit() &&
10876          "LowerVAARG only handles 64-bit va_arg!");
10877   assert((Subtarget->isTargetLinux() ||
10878           Subtarget->isTargetDarwin()) &&
10879           "Unhandled target in LowerVAARG");
10880   assert(Op.getNode()->getNumOperands() == 4);
10881   SDValue Chain = Op.getOperand(0);
10882   SDValue SrcPtr = Op.getOperand(1);
10883   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10884   unsigned Align = Op.getConstantOperandVal(3);
10885   SDLoc dl(Op);
10886
10887   EVT ArgVT = Op.getNode()->getValueType(0);
10888   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10889   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10890   uint8_t ArgMode;
10891
10892   // Decide which area this value should be read from.
10893   // TODO: Implement the AMD64 ABI in its entirety. This simple
10894   // selection mechanism works only for the basic types.
10895   if (ArgVT == MVT::f80) {
10896     llvm_unreachable("va_arg for f80 not yet implemented");
10897   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10898     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10899   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10900     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10901   } else {
10902     llvm_unreachable("Unhandled argument type in LowerVAARG");
10903   }
10904
10905   if (ArgMode == 2) {
10906     // Sanity Check: Make sure using fp_offset makes sense.
10907     assert(!getTargetMachine().Options.UseSoftFloat &&
10908            !(DAG.getMachineFunction()
10909                 .getFunction()->getAttributes()
10910                 .hasAttribute(AttributeSet::FunctionIndex,
10911                               Attribute::NoImplicitFloat)) &&
10912            Subtarget->hasSSE1());
10913   }
10914
10915   // Insert VAARG_64 node into the DAG
10916   // VAARG_64 returns two values: Variable Argument Address, Chain
10917   SmallVector<SDValue, 11> InstOps;
10918   InstOps.push_back(Chain);
10919   InstOps.push_back(SrcPtr);
10920   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10921   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10922   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10923   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10924   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10925                                           VTs, &InstOps[0], InstOps.size(),
10926                                           MVT::i64,
10927                                           MachinePointerInfo(SV),
10928                                           /*Align=*/0,
10929                                           /*Volatile=*/false,
10930                                           /*ReadMem=*/true,
10931                                           /*WriteMem=*/true);
10932   Chain = VAARG.getValue(1);
10933
10934   // Load the next argument and return it
10935   return DAG.getLoad(ArgVT, dl,
10936                      Chain,
10937                      VAARG,
10938                      MachinePointerInfo(),
10939                      false, false, false, 0);
10940 }
10941
10942 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10943                            SelectionDAG &DAG) {
10944   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10945   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10946   SDValue Chain = Op.getOperand(0);
10947   SDValue DstPtr = Op.getOperand(1);
10948   SDValue SrcPtr = Op.getOperand(2);
10949   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10950   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10951   SDLoc DL(Op);
10952
10953   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10954                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10955                        false,
10956                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10957 }
10958
10959 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10960 // may or may not be a constant. Takes immediate version of shift as input.
10961 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10962                                    SDValue SrcOp, SDValue ShAmt,
10963                                    SelectionDAG &DAG) {
10964   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10965
10966   if (isa<ConstantSDNode>(ShAmt)) {
10967     // Constant may be a TargetConstant. Use a regular constant.
10968     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
10969     switch (Opc) {
10970       default: llvm_unreachable("Unknown target vector shift node");
10971       case X86ISD::VSHLI:
10972       case X86ISD::VSRLI:
10973       case X86ISD::VSRAI:
10974         return DAG.getNode(Opc, dl, VT, SrcOp,
10975                            DAG.getConstant(ShiftAmt, MVT::i32));
10976     }
10977   }
10978
10979   // Change opcode to non-immediate version
10980   switch (Opc) {
10981     default: llvm_unreachable("Unknown target vector shift node");
10982     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10983     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10984     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10985   }
10986
10987   // Need to build a vector containing shift amount
10988   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10989   SDValue ShOps[4];
10990   ShOps[0] = ShAmt;
10991   ShOps[1] = DAG.getConstant(0, MVT::i32);
10992   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10993   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10994
10995   // The return type has to be a 128-bit type with the same element
10996   // type as the input type.
10997   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10998   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10999
11000   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11001   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11002 }
11003
11004 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11005   SDLoc dl(Op);
11006   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11007   switch (IntNo) {
11008   default: return SDValue();    // Don't custom lower most intrinsics.
11009   // Comparison intrinsics.
11010   case Intrinsic::x86_sse_comieq_ss:
11011   case Intrinsic::x86_sse_comilt_ss:
11012   case Intrinsic::x86_sse_comile_ss:
11013   case Intrinsic::x86_sse_comigt_ss:
11014   case Intrinsic::x86_sse_comige_ss:
11015   case Intrinsic::x86_sse_comineq_ss:
11016   case Intrinsic::x86_sse_ucomieq_ss:
11017   case Intrinsic::x86_sse_ucomilt_ss:
11018   case Intrinsic::x86_sse_ucomile_ss:
11019   case Intrinsic::x86_sse_ucomigt_ss:
11020   case Intrinsic::x86_sse_ucomige_ss:
11021   case Intrinsic::x86_sse_ucomineq_ss:
11022   case Intrinsic::x86_sse2_comieq_sd:
11023   case Intrinsic::x86_sse2_comilt_sd:
11024   case Intrinsic::x86_sse2_comile_sd:
11025   case Intrinsic::x86_sse2_comigt_sd:
11026   case Intrinsic::x86_sse2_comige_sd:
11027   case Intrinsic::x86_sse2_comineq_sd:
11028   case Intrinsic::x86_sse2_ucomieq_sd:
11029   case Intrinsic::x86_sse2_ucomilt_sd:
11030   case Intrinsic::x86_sse2_ucomile_sd:
11031   case Intrinsic::x86_sse2_ucomigt_sd:
11032   case Intrinsic::x86_sse2_ucomige_sd:
11033   case Intrinsic::x86_sse2_ucomineq_sd: {
11034     unsigned Opc;
11035     ISD::CondCode CC;
11036     switch (IntNo) {
11037     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11038     case Intrinsic::x86_sse_comieq_ss:
11039     case Intrinsic::x86_sse2_comieq_sd:
11040       Opc = X86ISD::COMI;
11041       CC = ISD::SETEQ;
11042       break;
11043     case Intrinsic::x86_sse_comilt_ss:
11044     case Intrinsic::x86_sse2_comilt_sd:
11045       Opc = X86ISD::COMI;
11046       CC = ISD::SETLT;
11047       break;
11048     case Intrinsic::x86_sse_comile_ss:
11049     case Intrinsic::x86_sse2_comile_sd:
11050       Opc = X86ISD::COMI;
11051       CC = ISD::SETLE;
11052       break;
11053     case Intrinsic::x86_sse_comigt_ss:
11054     case Intrinsic::x86_sse2_comigt_sd:
11055       Opc = X86ISD::COMI;
11056       CC = ISD::SETGT;
11057       break;
11058     case Intrinsic::x86_sse_comige_ss:
11059     case Intrinsic::x86_sse2_comige_sd:
11060       Opc = X86ISD::COMI;
11061       CC = ISD::SETGE;
11062       break;
11063     case Intrinsic::x86_sse_comineq_ss:
11064     case Intrinsic::x86_sse2_comineq_sd:
11065       Opc = X86ISD::COMI;
11066       CC = ISD::SETNE;
11067       break;
11068     case Intrinsic::x86_sse_ucomieq_ss:
11069     case Intrinsic::x86_sse2_ucomieq_sd:
11070       Opc = X86ISD::UCOMI;
11071       CC = ISD::SETEQ;
11072       break;
11073     case Intrinsic::x86_sse_ucomilt_ss:
11074     case Intrinsic::x86_sse2_ucomilt_sd:
11075       Opc = X86ISD::UCOMI;
11076       CC = ISD::SETLT;
11077       break;
11078     case Intrinsic::x86_sse_ucomile_ss:
11079     case Intrinsic::x86_sse2_ucomile_sd:
11080       Opc = X86ISD::UCOMI;
11081       CC = ISD::SETLE;
11082       break;
11083     case Intrinsic::x86_sse_ucomigt_ss:
11084     case Intrinsic::x86_sse2_ucomigt_sd:
11085       Opc = X86ISD::UCOMI;
11086       CC = ISD::SETGT;
11087       break;
11088     case Intrinsic::x86_sse_ucomige_ss:
11089     case Intrinsic::x86_sse2_ucomige_sd:
11090       Opc = X86ISD::UCOMI;
11091       CC = ISD::SETGE;
11092       break;
11093     case Intrinsic::x86_sse_ucomineq_ss:
11094     case Intrinsic::x86_sse2_ucomineq_sd:
11095       Opc = X86ISD::UCOMI;
11096       CC = ISD::SETNE;
11097       break;
11098     }
11099
11100     SDValue LHS = Op.getOperand(1);
11101     SDValue RHS = Op.getOperand(2);
11102     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11103     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11104     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11105     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11106                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11107     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11108   }
11109
11110   // Arithmetic intrinsics.
11111   case Intrinsic::x86_sse2_pmulu_dq:
11112   case Intrinsic::x86_avx2_pmulu_dq:
11113     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11114                        Op.getOperand(1), Op.getOperand(2));
11115
11116   // SSE2/AVX2 sub with unsigned saturation intrinsics
11117   case Intrinsic::x86_sse2_psubus_b:
11118   case Intrinsic::x86_sse2_psubus_w:
11119   case Intrinsic::x86_avx2_psubus_b:
11120   case Intrinsic::x86_avx2_psubus_w:
11121     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11122                        Op.getOperand(1), Op.getOperand(2));
11123
11124   // SSE3/AVX horizontal add/sub intrinsics
11125   case Intrinsic::x86_sse3_hadd_ps:
11126   case Intrinsic::x86_sse3_hadd_pd:
11127   case Intrinsic::x86_avx_hadd_ps_256:
11128   case Intrinsic::x86_avx_hadd_pd_256:
11129   case Intrinsic::x86_sse3_hsub_ps:
11130   case Intrinsic::x86_sse3_hsub_pd:
11131   case Intrinsic::x86_avx_hsub_ps_256:
11132   case Intrinsic::x86_avx_hsub_pd_256:
11133   case Intrinsic::x86_ssse3_phadd_w_128:
11134   case Intrinsic::x86_ssse3_phadd_d_128:
11135   case Intrinsic::x86_avx2_phadd_w:
11136   case Intrinsic::x86_avx2_phadd_d:
11137   case Intrinsic::x86_ssse3_phsub_w_128:
11138   case Intrinsic::x86_ssse3_phsub_d_128:
11139   case Intrinsic::x86_avx2_phsub_w:
11140   case Intrinsic::x86_avx2_phsub_d: {
11141     unsigned Opcode;
11142     switch (IntNo) {
11143     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11144     case Intrinsic::x86_sse3_hadd_ps:
11145     case Intrinsic::x86_sse3_hadd_pd:
11146     case Intrinsic::x86_avx_hadd_ps_256:
11147     case Intrinsic::x86_avx_hadd_pd_256:
11148       Opcode = X86ISD::FHADD;
11149       break;
11150     case Intrinsic::x86_sse3_hsub_ps:
11151     case Intrinsic::x86_sse3_hsub_pd:
11152     case Intrinsic::x86_avx_hsub_ps_256:
11153     case Intrinsic::x86_avx_hsub_pd_256:
11154       Opcode = X86ISD::FHSUB;
11155       break;
11156     case Intrinsic::x86_ssse3_phadd_w_128:
11157     case Intrinsic::x86_ssse3_phadd_d_128:
11158     case Intrinsic::x86_avx2_phadd_w:
11159     case Intrinsic::x86_avx2_phadd_d:
11160       Opcode = X86ISD::HADD;
11161       break;
11162     case Intrinsic::x86_ssse3_phsub_w_128:
11163     case Intrinsic::x86_ssse3_phsub_d_128:
11164     case Intrinsic::x86_avx2_phsub_w:
11165     case Intrinsic::x86_avx2_phsub_d:
11166       Opcode = X86ISD::HSUB;
11167       break;
11168     }
11169     return DAG.getNode(Opcode, dl, Op.getValueType(),
11170                        Op.getOperand(1), Op.getOperand(2));
11171   }
11172
11173   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11174   case Intrinsic::x86_sse2_pmaxu_b:
11175   case Intrinsic::x86_sse41_pmaxuw:
11176   case Intrinsic::x86_sse41_pmaxud:
11177   case Intrinsic::x86_avx2_pmaxu_b:
11178   case Intrinsic::x86_avx2_pmaxu_w:
11179   case Intrinsic::x86_avx2_pmaxu_d:
11180   case Intrinsic::x86_sse2_pminu_b:
11181   case Intrinsic::x86_sse41_pminuw:
11182   case Intrinsic::x86_sse41_pminud:
11183   case Intrinsic::x86_avx2_pminu_b:
11184   case Intrinsic::x86_avx2_pminu_w:
11185   case Intrinsic::x86_avx2_pminu_d:
11186   case Intrinsic::x86_sse41_pmaxsb:
11187   case Intrinsic::x86_sse2_pmaxs_w:
11188   case Intrinsic::x86_sse41_pmaxsd:
11189   case Intrinsic::x86_avx2_pmaxs_b:
11190   case Intrinsic::x86_avx2_pmaxs_w:
11191   case Intrinsic::x86_avx2_pmaxs_d:
11192   case Intrinsic::x86_sse41_pminsb:
11193   case Intrinsic::x86_sse2_pmins_w:
11194   case Intrinsic::x86_sse41_pminsd:
11195   case Intrinsic::x86_avx2_pmins_b:
11196   case Intrinsic::x86_avx2_pmins_w:
11197   case Intrinsic::x86_avx2_pmins_d: {
11198     unsigned Opcode;
11199     switch (IntNo) {
11200     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11201     case Intrinsic::x86_sse2_pmaxu_b:
11202     case Intrinsic::x86_sse41_pmaxuw:
11203     case Intrinsic::x86_sse41_pmaxud:
11204     case Intrinsic::x86_avx2_pmaxu_b:
11205     case Intrinsic::x86_avx2_pmaxu_w:
11206     case Intrinsic::x86_avx2_pmaxu_d:
11207       Opcode = X86ISD::UMAX;
11208       break;
11209     case Intrinsic::x86_sse2_pminu_b:
11210     case Intrinsic::x86_sse41_pminuw:
11211     case Intrinsic::x86_sse41_pminud:
11212     case Intrinsic::x86_avx2_pminu_b:
11213     case Intrinsic::x86_avx2_pminu_w:
11214     case Intrinsic::x86_avx2_pminu_d:
11215       Opcode = X86ISD::UMIN;
11216       break;
11217     case Intrinsic::x86_sse41_pmaxsb:
11218     case Intrinsic::x86_sse2_pmaxs_w:
11219     case Intrinsic::x86_sse41_pmaxsd:
11220     case Intrinsic::x86_avx2_pmaxs_b:
11221     case Intrinsic::x86_avx2_pmaxs_w:
11222     case Intrinsic::x86_avx2_pmaxs_d:
11223       Opcode = X86ISD::SMAX;
11224       break;
11225     case Intrinsic::x86_sse41_pminsb:
11226     case Intrinsic::x86_sse2_pmins_w:
11227     case Intrinsic::x86_sse41_pminsd:
11228     case Intrinsic::x86_avx2_pmins_b:
11229     case Intrinsic::x86_avx2_pmins_w:
11230     case Intrinsic::x86_avx2_pmins_d:
11231       Opcode = X86ISD::SMIN;
11232       break;
11233     }
11234     return DAG.getNode(Opcode, dl, Op.getValueType(),
11235                        Op.getOperand(1), Op.getOperand(2));
11236   }
11237
11238   // SSE/SSE2/AVX floating point max/min intrinsics.
11239   case Intrinsic::x86_sse_max_ps:
11240   case Intrinsic::x86_sse2_max_pd:
11241   case Intrinsic::x86_avx_max_ps_256:
11242   case Intrinsic::x86_avx_max_pd_256:
11243   case Intrinsic::x86_avx512_max_ps_512:
11244   case Intrinsic::x86_avx512_max_pd_512:
11245   case Intrinsic::x86_sse_min_ps:
11246   case Intrinsic::x86_sse2_min_pd:
11247   case Intrinsic::x86_avx_min_ps_256:
11248   case Intrinsic::x86_avx_min_pd_256:
11249   case Intrinsic::x86_avx512_min_ps_512:
11250   case Intrinsic::x86_avx512_min_pd_512:  {
11251     unsigned Opcode;
11252     switch (IntNo) {
11253     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11254     case Intrinsic::x86_sse_max_ps:
11255     case Intrinsic::x86_sse2_max_pd:
11256     case Intrinsic::x86_avx_max_ps_256:
11257     case Intrinsic::x86_avx_max_pd_256:
11258     case Intrinsic::x86_avx512_max_ps_512:
11259     case Intrinsic::x86_avx512_max_pd_512:
11260       Opcode = X86ISD::FMAX;
11261       break;
11262     case Intrinsic::x86_sse_min_ps:
11263     case Intrinsic::x86_sse2_min_pd:
11264     case Intrinsic::x86_avx_min_ps_256:
11265     case Intrinsic::x86_avx_min_pd_256:
11266     case Intrinsic::x86_avx512_min_ps_512:
11267     case Intrinsic::x86_avx512_min_pd_512:
11268       Opcode = X86ISD::FMIN;
11269       break;
11270     }
11271     return DAG.getNode(Opcode, dl, Op.getValueType(),
11272                        Op.getOperand(1), Op.getOperand(2));
11273   }
11274
11275   // AVX2 variable shift intrinsics
11276   case Intrinsic::x86_avx2_psllv_d:
11277   case Intrinsic::x86_avx2_psllv_q:
11278   case Intrinsic::x86_avx2_psllv_d_256:
11279   case Intrinsic::x86_avx2_psllv_q_256:
11280   case Intrinsic::x86_avx2_psrlv_d:
11281   case Intrinsic::x86_avx2_psrlv_q:
11282   case Intrinsic::x86_avx2_psrlv_d_256:
11283   case Intrinsic::x86_avx2_psrlv_q_256:
11284   case Intrinsic::x86_avx2_psrav_d:
11285   case Intrinsic::x86_avx2_psrav_d_256: {
11286     unsigned Opcode;
11287     switch (IntNo) {
11288     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11289     case Intrinsic::x86_avx2_psllv_d:
11290     case Intrinsic::x86_avx2_psllv_q:
11291     case Intrinsic::x86_avx2_psllv_d_256:
11292     case Intrinsic::x86_avx2_psllv_q_256:
11293       Opcode = ISD::SHL;
11294       break;
11295     case Intrinsic::x86_avx2_psrlv_d:
11296     case Intrinsic::x86_avx2_psrlv_q:
11297     case Intrinsic::x86_avx2_psrlv_d_256:
11298     case Intrinsic::x86_avx2_psrlv_q_256:
11299       Opcode = ISD::SRL;
11300       break;
11301     case Intrinsic::x86_avx2_psrav_d:
11302     case Intrinsic::x86_avx2_psrav_d_256:
11303       Opcode = ISD::SRA;
11304       break;
11305     }
11306     return DAG.getNode(Opcode, dl, Op.getValueType(),
11307                        Op.getOperand(1), Op.getOperand(2));
11308   }
11309
11310   case Intrinsic::x86_ssse3_pshuf_b_128:
11311   case Intrinsic::x86_avx2_pshuf_b:
11312     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11313                        Op.getOperand(1), Op.getOperand(2));
11314
11315   case Intrinsic::x86_ssse3_psign_b_128:
11316   case Intrinsic::x86_ssse3_psign_w_128:
11317   case Intrinsic::x86_ssse3_psign_d_128:
11318   case Intrinsic::x86_avx2_psign_b:
11319   case Intrinsic::x86_avx2_psign_w:
11320   case Intrinsic::x86_avx2_psign_d:
11321     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11322                        Op.getOperand(1), Op.getOperand(2));
11323
11324   case Intrinsic::x86_sse41_insertps:
11325     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11326                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11327
11328   case Intrinsic::x86_avx_vperm2f128_ps_256:
11329   case Intrinsic::x86_avx_vperm2f128_pd_256:
11330   case Intrinsic::x86_avx_vperm2f128_si_256:
11331   case Intrinsic::x86_avx2_vperm2i128:
11332     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11333                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11334
11335   case Intrinsic::x86_avx2_permd:
11336   case Intrinsic::x86_avx2_permps:
11337     // Operands intentionally swapped. Mask is last operand to intrinsic,
11338     // but second operand for node/instruction.
11339     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11340                        Op.getOperand(2), Op.getOperand(1));
11341
11342   case Intrinsic::x86_sse_sqrt_ps:
11343   case Intrinsic::x86_sse2_sqrt_pd:
11344   case Intrinsic::x86_avx_sqrt_ps_256:
11345   case Intrinsic::x86_avx_sqrt_pd_256:
11346     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11347
11348   // ptest and testp intrinsics. The intrinsic these come from are designed to
11349   // return an integer value, not just an instruction so lower it to the ptest
11350   // or testp pattern and a setcc for the result.
11351   case Intrinsic::x86_sse41_ptestz:
11352   case Intrinsic::x86_sse41_ptestc:
11353   case Intrinsic::x86_sse41_ptestnzc:
11354   case Intrinsic::x86_avx_ptestz_256:
11355   case Intrinsic::x86_avx_ptestc_256:
11356   case Intrinsic::x86_avx_ptestnzc_256:
11357   case Intrinsic::x86_avx_vtestz_ps:
11358   case Intrinsic::x86_avx_vtestc_ps:
11359   case Intrinsic::x86_avx_vtestnzc_ps:
11360   case Intrinsic::x86_avx_vtestz_pd:
11361   case Intrinsic::x86_avx_vtestc_pd:
11362   case Intrinsic::x86_avx_vtestnzc_pd:
11363   case Intrinsic::x86_avx_vtestz_ps_256:
11364   case Intrinsic::x86_avx_vtestc_ps_256:
11365   case Intrinsic::x86_avx_vtestnzc_ps_256:
11366   case Intrinsic::x86_avx_vtestz_pd_256:
11367   case Intrinsic::x86_avx_vtestc_pd_256:
11368   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11369     bool IsTestPacked = false;
11370     unsigned X86CC;
11371     switch (IntNo) {
11372     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11373     case Intrinsic::x86_avx_vtestz_ps:
11374     case Intrinsic::x86_avx_vtestz_pd:
11375     case Intrinsic::x86_avx_vtestz_ps_256:
11376     case Intrinsic::x86_avx_vtestz_pd_256:
11377       IsTestPacked = true; // Fallthrough
11378     case Intrinsic::x86_sse41_ptestz:
11379     case Intrinsic::x86_avx_ptestz_256:
11380       // ZF = 1
11381       X86CC = X86::COND_E;
11382       break;
11383     case Intrinsic::x86_avx_vtestc_ps:
11384     case Intrinsic::x86_avx_vtestc_pd:
11385     case Intrinsic::x86_avx_vtestc_ps_256:
11386     case Intrinsic::x86_avx_vtestc_pd_256:
11387       IsTestPacked = true; // Fallthrough
11388     case Intrinsic::x86_sse41_ptestc:
11389     case Intrinsic::x86_avx_ptestc_256:
11390       // CF = 1
11391       X86CC = X86::COND_B;
11392       break;
11393     case Intrinsic::x86_avx_vtestnzc_ps:
11394     case Intrinsic::x86_avx_vtestnzc_pd:
11395     case Intrinsic::x86_avx_vtestnzc_ps_256:
11396     case Intrinsic::x86_avx_vtestnzc_pd_256:
11397       IsTestPacked = true; // Fallthrough
11398     case Intrinsic::x86_sse41_ptestnzc:
11399     case Intrinsic::x86_avx_ptestnzc_256:
11400       // ZF and CF = 0
11401       X86CC = X86::COND_A;
11402       break;
11403     }
11404
11405     SDValue LHS = Op.getOperand(1);
11406     SDValue RHS = Op.getOperand(2);
11407     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11408     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11409     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11410     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11411     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11412   }
11413   case Intrinsic::x86_avx512_kortestz:
11414   case Intrinsic::x86_avx512_kortestc: {
11415     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11416     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11417     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11418     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11419     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11420     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11421     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11422   }
11423
11424   // SSE/AVX shift intrinsics
11425   case Intrinsic::x86_sse2_psll_w:
11426   case Intrinsic::x86_sse2_psll_d:
11427   case Intrinsic::x86_sse2_psll_q:
11428   case Intrinsic::x86_avx2_psll_w:
11429   case Intrinsic::x86_avx2_psll_d:
11430   case Intrinsic::x86_avx2_psll_q:
11431   case Intrinsic::x86_sse2_psrl_w:
11432   case Intrinsic::x86_sse2_psrl_d:
11433   case Intrinsic::x86_sse2_psrl_q:
11434   case Intrinsic::x86_avx2_psrl_w:
11435   case Intrinsic::x86_avx2_psrl_d:
11436   case Intrinsic::x86_avx2_psrl_q:
11437   case Intrinsic::x86_sse2_psra_w:
11438   case Intrinsic::x86_sse2_psra_d:
11439   case Intrinsic::x86_avx2_psra_w:
11440   case Intrinsic::x86_avx2_psra_d: {
11441     unsigned Opcode;
11442     switch (IntNo) {
11443     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11444     case Intrinsic::x86_sse2_psll_w:
11445     case Intrinsic::x86_sse2_psll_d:
11446     case Intrinsic::x86_sse2_psll_q:
11447     case Intrinsic::x86_avx2_psll_w:
11448     case Intrinsic::x86_avx2_psll_d:
11449     case Intrinsic::x86_avx2_psll_q:
11450       Opcode = X86ISD::VSHL;
11451       break;
11452     case Intrinsic::x86_sse2_psrl_w:
11453     case Intrinsic::x86_sse2_psrl_d:
11454     case Intrinsic::x86_sse2_psrl_q:
11455     case Intrinsic::x86_avx2_psrl_w:
11456     case Intrinsic::x86_avx2_psrl_d:
11457     case Intrinsic::x86_avx2_psrl_q:
11458       Opcode = X86ISD::VSRL;
11459       break;
11460     case Intrinsic::x86_sse2_psra_w:
11461     case Intrinsic::x86_sse2_psra_d:
11462     case Intrinsic::x86_avx2_psra_w:
11463     case Intrinsic::x86_avx2_psra_d:
11464       Opcode = X86ISD::VSRA;
11465       break;
11466     }
11467     return DAG.getNode(Opcode, dl, Op.getValueType(),
11468                        Op.getOperand(1), Op.getOperand(2));
11469   }
11470
11471   // SSE/AVX immediate shift intrinsics
11472   case Intrinsic::x86_sse2_pslli_w:
11473   case Intrinsic::x86_sse2_pslli_d:
11474   case Intrinsic::x86_sse2_pslli_q:
11475   case Intrinsic::x86_avx2_pslli_w:
11476   case Intrinsic::x86_avx2_pslli_d:
11477   case Intrinsic::x86_avx2_pslli_q:
11478   case Intrinsic::x86_sse2_psrli_w:
11479   case Intrinsic::x86_sse2_psrli_d:
11480   case Intrinsic::x86_sse2_psrli_q:
11481   case Intrinsic::x86_avx2_psrli_w:
11482   case Intrinsic::x86_avx2_psrli_d:
11483   case Intrinsic::x86_avx2_psrli_q:
11484   case Intrinsic::x86_sse2_psrai_w:
11485   case Intrinsic::x86_sse2_psrai_d:
11486   case Intrinsic::x86_avx2_psrai_w:
11487   case Intrinsic::x86_avx2_psrai_d: {
11488     unsigned Opcode;
11489     switch (IntNo) {
11490     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11491     case Intrinsic::x86_sse2_pslli_w:
11492     case Intrinsic::x86_sse2_pslli_d:
11493     case Intrinsic::x86_sse2_pslli_q:
11494     case Intrinsic::x86_avx2_pslli_w:
11495     case Intrinsic::x86_avx2_pslli_d:
11496     case Intrinsic::x86_avx2_pslli_q:
11497       Opcode = X86ISD::VSHLI;
11498       break;
11499     case Intrinsic::x86_sse2_psrli_w:
11500     case Intrinsic::x86_sse2_psrli_d:
11501     case Intrinsic::x86_sse2_psrli_q:
11502     case Intrinsic::x86_avx2_psrli_w:
11503     case Intrinsic::x86_avx2_psrli_d:
11504     case Intrinsic::x86_avx2_psrli_q:
11505       Opcode = X86ISD::VSRLI;
11506       break;
11507     case Intrinsic::x86_sse2_psrai_w:
11508     case Intrinsic::x86_sse2_psrai_d:
11509     case Intrinsic::x86_avx2_psrai_w:
11510     case Intrinsic::x86_avx2_psrai_d:
11511       Opcode = X86ISD::VSRAI;
11512       break;
11513     }
11514     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11515                                Op.getOperand(1), Op.getOperand(2), DAG);
11516   }
11517
11518   case Intrinsic::x86_sse42_pcmpistria128:
11519   case Intrinsic::x86_sse42_pcmpestria128:
11520   case Intrinsic::x86_sse42_pcmpistric128:
11521   case Intrinsic::x86_sse42_pcmpestric128:
11522   case Intrinsic::x86_sse42_pcmpistrio128:
11523   case Intrinsic::x86_sse42_pcmpestrio128:
11524   case Intrinsic::x86_sse42_pcmpistris128:
11525   case Intrinsic::x86_sse42_pcmpestris128:
11526   case Intrinsic::x86_sse42_pcmpistriz128:
11527   case Intrinsic::x86_sse42_pcmpestriz128: {
11528     unsigned Opcode;
11529     unsigned X86CC;
11530     switch (IntNo) {
11531     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11532     case Intrinsic::x86_sse42_pcmpistria128:
11533       Opcode = X86ISD::PCMPISTRI;
11534       X86CC = X86::COND_A;
11535       break;
11536     case Intrinsic::x86_sse42_pcmpestria128:
11537       Opcode = X86ISD::PCMPESTRI;
11538       X86CC = X86::COND_A;
11539       break;
11540     case Intrinsic::x86_sse42_pcmpistric128:
11541       Opcode = X86ISD::PCMPISTRI;
11542       X86CC = X86::COND_B;
11543       break;
11544     case Intrinsic::x86_sse42_pcmpestric128:
11545       Opcode = X86ISD::PCMPESTRI;
11546       X86CC = X86::COND_B;
11547       break;
11548     case Intrinsic::x86_sse42_pcmpistrio128:
11549       Opcode = X86ISD::PCMPISTRI;
11550       X86CC = X86::COND_O;
11551       break;
11552     case Intrinsic::x86_sse42_pcmpestrio128:
11553       Opcode = X86ISD::PCMPESTRI;
11554       X86CC = X86::COND_O;
11555       break;
11556     case Intrinsic::x86_sse42_pcmpistris128:
11557       Opcode = X86ISD::PCMPISTRI;
11558       X86CC = X86::COND_S;
11559       break;
11560     case Intrinsic::x86_sse42_pcmpestris128:
11561       Opcode = X86ISD::PCMPESTRI;
11562       X86CC = X86::COND_S;
11563       break;
11564     case Intrinsic::x86_sse42_pcmpistriz128:
11565       Opcode = X86ISD::PCMPISTRI;
11566       X86CC = X86::COND_E;
11567       break;
11568     case Intrinsic::x86_sse42_pcmpestriz128:
11569       Opcode = X86ISD::PCMPESTRI;
11570       X86CC = X86::COND_E;
11571       break;
11572     }
11573     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11574     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11575     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11576     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11577                                 DAG.getConstant(X86CC, MVT::i8),
11578                                 SDValue(PCMP.getNode(), 1));
11579     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11580   }
11581
11582   case Intrinsic::x86_sse42_pcmpistri128:
11583   case Intrinsic::x86_sse42_pcmpestri128: {
11584     unsigned Opcode;
11585     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11586       Opcode = X86ISD::PCMPISTRI;
11587     else
11588       Opcode = X86ISD::PCMPESTRI;
11589
11590     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11591     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11592     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11593   }
11594   case Intrinsic::x86_fma_vfmadd_ps:
11595   case Intrinsic::x86_fma_vfmadd_pd:
11596   case Intrinsic::x86_fma_vfmsub_ps:
11597   case Intrinsic::x86_fma_vfmsub_pd:
11598   case Intrinsic::x86_fma_vfnmadd_ps:
11599   case Intrinsic::x86_fma_vfnmadd_pd:
11600   case Intrinsic::x86_fma_vfnmsub_ps:
11601   case Intrinsic::x86_fma_vfnmsub_pd:
11602   case Intrinsic::x86_fma_vfmaddsub_ps:
11603   case Intrinsic::x86_fma_vfmaddsub_pd:
11604   case Intrinsic::x86_fma_vfmsubadd_ps:
11605   case Intrinsic::x86_fma_vfmsubadd_pd:
11606   case Intrinsic::x86_fma_vfmadd_ps_256:
11607   case Intrinsic::x86_fma_vfmadd_pd_256:
11608   case Intrinsic::x86_fma_vfmsub_ps_256:
11609   case Intrinsic::x86_fma_vfmsub_pd_256:
11610   case Intrinsic::x86_fma_vfnmadd_ps_256:
11611   case Intrinsic::x86_fma_vfnmadd_pd_256:
11612   case Intrinsic::x86_fma_vfnmsub_ps_256:
11613   case Intrinsic::x86_fma_vfnmsub_pd_256:
11614   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11615   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11616   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11617   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11618     unsigned Opc;
11619     switch (IntNo) {
11620     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11621     case Intrinsic::x86_fma_vfmadd_ps:
11622     case Intrinsic::x86_fma_vfmadd_pd:
11623     case Intrinsic::x86_fma_vfmadd_ps_256:
11624     case Intrinsic::x86_fma_vfmadd_pd_256:
11625       Opc = X86ISD::FMADD;
11626       break;
11627     case Intrinsic::x86_fma_vfmsub_ps:
11628     case Intrinsic::x86_fma_vfmsub_pd:
11629     case Intrinsic::x86_fma_vfmsub_ps_256:
11630     case Intrinsic::x86_fma_vfmsub_pd_256:
11631       Opc = X86ISD::FMSUB;
11632       break;
11633     case Intrinsic::x86_fma_vfnmadd_ps:
11634     case Intrinsic::x86_fma_vfnmadd_pd:
11635     case Intrinsic::x86_fma_vfnmadd_ps_256:
11636     case Intrinsic::x86_fma_vfnmadd_pd_256:
11637       Opc = X86ISD::FNMADD;
11638       break;
11639     case Intrinsic::x86_fma_vfnmsub_ps:
11640     case Intrinsic::x86_fma_vfnmsub_pd:
11641     case Intrinsic::x86_fma_vfnmsub_ps_256:
11642     case Intrinsic::x86_fma_vfnmsub_pd_256:
11643       Opc = X86ISD::FNMSUB;
11644       break;
11645     case Intrinsic::x86_fma_vfmaddsub_ps:
11646     case Intrinsic::x86_fma_vfmaddsub_pd:
11647     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11648     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11649       Opc = X86ISD::FMADDSUB;
11650       break;
11651     case Intrinsic::x86_fma_vfmsubadd_ps:
11652     case Intrinsic::x86_fma_vfmsubadd_pd:
11653     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11654     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11655       Opc = X86ISD::FMSUBADD;
11656       break;
11657     }
11658
11659     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11660                        Op.getOperand(2), Op.getOperand(3));
11661   }
11662   }
11663 }
11664
11665 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11666                              SDValue Base, SDValue Index,
11667                              SDValue ScaleOp, SDValue Chain,
11668                              const X86Subtarget * Subtarget) {
11669   SDLoc dl(Op);
11670   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11671   assert(C && "Invalid scale type");
11672   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11673   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11674   EVT MaskVT = MVT::getVectorVT(MVT::i1, 
11675                                 Index.getValueType().getVectorNumElements());
11676   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11677   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11678   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11679   SDValue Segment = DAG.getRegister(0, MVT::i32);
11680   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11681   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11682   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11683   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11684 }
11685
11686 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11687                               SDValue Src, SDValue Mask, SDValue Base,
11688                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11689                               const X86Subtarget * Subtarget) {
11690   SDLoc dl(Op);
11691   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11692   assert(C && "Invalid scale type");
11693   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11694   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11695                                 Index.getValueType().getVectorNumElements());
11696   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11697   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11698   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11699   SDValue Segment = DAG.getRegister(0, MVT::i32);
11700   if (Src.getOpcode() == ISD::UNDEF)
11701     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11702   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11703   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11704   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11705   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11706 }
11707
11708 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11709                               SDValue Src, SDValue Base, SDValue Index,
11710                               SDValue ScaleOp, SDValue Chain) {
11711   SDLoc dl(Op);
11712   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11713   assert(C && "Invalid scale type");
11714   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11715   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11716   SDValue Segment = DAG.getRegister(0, MVT::i32);
11717   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11718                                 Index.getValueType().getVectorNumElements());
11719   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11720   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11721   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11722   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11723   return SDValue(Res, 1);
11724 }
11725
11726 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11727                                SDValue Src, SDValue Mask, SDValue Base,
11728                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11729   SDLoc dl(Op);
11730   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11731   assert(C && "Invalid scale type");
11732   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11733   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11734   SDValue Segment = DAG.getRegister(0, MVT::i32);
11735   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11736                                 Index.getValueType().getVectorNumElements());
11737   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11738   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11739   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11740   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11741   return SDValue(Res, 1);
11742 }
11743
11744 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11745                                       SelectionDAG &DAG) {
11746   SDLoc dl(Op);
11747   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11748   switch (IntNo) {
11749   default: return SDValue();    // Don't custom lower most intrinsics.
11750
11751   // RDRAND/RDSEED intrinsics.
11752   case Intrinsic::x86_rdrand_16:
11753   case Intrinsic::x86_rdrand_32:
11754   case Intrinsic::x86_rdrand_64:
11755   case Intrinsic::x86_rdseed_16:
11756   case Intrinsic::x86_rdseed_32:
11757   case Intrinsic::x86_rdseed_64: {
11758     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11759                        IntNo == Intrinsic::x86_rdseed_32 ||
11760                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11761                                                             X86ISD::RDRAND;
11762     // Emit the node with the right value type.
11763     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11764     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11765
11766     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11767     // Otherwise return the value from Rand, which is always 0, casted to i32.
11768     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11769                       DAG.getConstant(1, Op->getValueType(1)),
11770                       DAG.getConstant(X86::COND_B, MVT::i32),
11771                       SDValue(Result.getNode(), 1) };
11772     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11773                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11774                                   Ops, array_lengthof(Ops));
11775
11776     // Return { result, isValid, chain }.
11777     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11778                        SDValue(Result.getNode(), 2));
11779   }
11780   //int_gather(index, base, scale);
11781   case Intrinsic::x86_avx512_gather_qpd_512:
11782   case Intrinsic::x86_avx512_gather_qps_512:
11783   case Intrinsic::x86_avx512_gather_dpd_512:
11784   case Intrinsic::x86_avx512_gather_qpi_512:
11785   case Intrinsic::x86_avx512_gather_qpq_512:
11786   case Intrinsic::x86_avx512_gather_dpq_512:
11787   case Intrinsic::x86_avx512_gather_dps_512:
11788   case Intrinsic::x86_avx512_gather_dpi_512: {
11789     unsigned Opc;
11790     switch (IntNo) {
11791       default: llvm_unreachable("Unexpected intrinsic!");
11792       case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11793       case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11794       case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11795       case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11796       case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11797       case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11798       case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11799       case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11800     }
11801     SDValue Chain = Op.getOperand(0);
11802     SDValue Index = Op.getOperand(2);
11803     SDValue Base  = Op.getOperand(3);
11804     SDValue Scale = Op.getOperand(4);
11805     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11806   }
11807   //int_gather_mask(v1, mask, index, base, scale);
11808   case Intrinsic::x86_avx512_gather_qps_mask_512:
11809   case Intrinsic::x86_avx512_gather_qpd_mask_512:
11810   case Intrinsic::x86_avx512_gather_dpd_mask_512:
11811   case Intrinsic::x86_avx512_gather_dps_mask_512:
11812   case Intrinsic::x86_avx512_gather_qpi_mask_512:
11813   case Intrinsic::x86_avx512_gather_qpq_mask_512:
11814   case Intrinsic::x86_avx512_gather_dpi_mask_512:
11815   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11816     unsigned Opc;
11817     switch (IntNo) {
11818       default: llvm_unreachable("Unexpected intrinsic!");
11819       case Intrinsic::x86_avx512_gather_qps_mask_512: 
11820         Opc = X86::VGATHERQPSZrm; break;
11821       case Intrinsic::x86_avx512_gather_qpd_mask_512:
11822         Opc = X86::VGATHERQPDZrm; break;
11823       case Intrinsic::x86_avx512_gather_dpd_mask_512:
11824         Opc = X86::VGATHERDPDZrm; break;
11825       case Intrinsic::x86_avx512_gather_dps_mask_512:
11826         Opc = X86::VGATHERDPSZrm; break;
11827       case Intrinsic::x86_avx512_gather_qpi_mask_512:
11828         Opc = X86::VPGATHERQDZrm; break;
11829       case Intrinsic::x86_avx512_gather_qpq_mask_512:
11830         Opc = X86::VPGATHERQQZrm; break;
11831       case Intrinsic::x86_avx512_gather_dpi_mask_512:
11832         Opc = X86::VPGATHERDDZrm; break;
11833       case Intrinsic::x86_avx512_gather_dpq_mask_512:
11834         Opc = X86::VPGATHERDQZrm; break;
11835     }
11836     SDValue Chain = Op.getOperand(0);
11837     SDValue Src   = Op.getOperand(2);
11838     SDValue Mask  = Op.getOperand(3);
11839     SDValue Index = Op.getOperand(4);
11840     SDValue Base  = Op.getOperand(5);
11841     SDValue Scale = Op.getOperand(6);
11842     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11843                           Subtarget);
11844   }
11845   //int_scatter(base, index, v1, scale);
11846   case Intrinsic::x86_avx512_scatter_qpd_512:
11847   case Intrinsic::x86_avx512_scatter_qps_512:
11848   case Intrinsic::x86_avx512_scatter_dpd_512:
11849   case Intrinsic::x86_avx512_scatter_qpi_512:
11850   case Intrinsic::x86_avx512_scatter_qpq_512:
11851   case Intrinsic::x86_avx512_scatter_dpq_512:
11852   case Intrinsic::x86_avx512_scatter_dps_512:
11853   case Intrinsic::x86_avx512_scatter_dpi_512: {
11854     unsigned Opc;
11855     switch (IntNo) {
11856       default: llvm_unreachable("Unexpected intrinsic!");
11857       case Intrinsic::x86_avx512_scatter_qpd_512: 
11858         Opc = X86::VSCATTERQPDZmr; break;
11859       case Intrinsic::x86_avx512_scatter_qps_512:
11860         Opc = X86::VSCATTERQPSZmr; break;
11861       case Intrinsic::x86_avx512_scatter_dpd_512:
11862         Opc = X86::VSCATTERDPDZmr; break;
11863       case Intrinsic::x86_avx512_scatter_dps_512:
11864         Opc = X86::VSCATTERDPSZmr; break;
11865       case Intrinsic::x86_avx512_scatter_qpi_512:
11866         Opc = X86::VPSCATTERQDZmr; break;
11867       case Intrinsic::x86_avx512_scatter_qpq_512:
11868         Opc = X86::VPSCATTERQQZmr; break;
11869       case Intrinsic::x86_avx512_scatter_dpq_512:
11870         Opc = X86::VPSCATTERDQZmr; break;
11871       case Intrinsic::x86_avx512_scatter_dpi_512:
11872         Opc = X86::VPSCATTERDDZmr; break;
11873     }
11874     SDValue Chain = Op.getOperand(0);
11875     SDValue Base  = Op.getOperand(2);
11876     SDValue Index = Op.getOperand(3);
11877     SDValue Src   = Op.getOperand(4);
11878     SDValue Scale = Op.getOperand(5);
11879     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11880   }
11881   //int_scatter_mask(base, mask, index, v1, scale);
11882   case Intrinsic::x86_avx512_scatter_qps_mask_512:
11883   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11884   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11885   case Intrinsic::x86_avx512_scatter_dps_mask_512:
11886   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11887   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11888   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11889   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11890     unsigned Opc;
11891     switch (IntNo) {
11892       default: llvm_unreachable("Unexpected intrinsic!");
11893       case Intrinsic::x86_avx512_scatter_qpd_mask_512: 
11894         Opc = X86::VSCATTERQPDZmr; break;
11895       case Intrinsic::x86_avx512_scatter_qps_mask_512:
11896         Opc = X86::VSCATTERQPSZmr; break;
11897       case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11898         Opc = X86::VSCATTERDPDZmr; break;
11899       case Intrinsic::x86_avx512_scatter_dps_mask_512:
11900         Opc = X86::VSCATTERDPSZmr; break;
11901       case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11902         Opc = X86::VPSCATTERQDZmr; break;
11903       case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11904         Opc = X86::VPSCATTERQQZmr; break;
11905       case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11906         Opc = X86::VPSCATTERDQZmr; break;
11907       case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11908         Opc = X86::VPSCATTERDDZmr; break;
11909     }
11910     SDValue Chain = Op.getOperand(0);
11911     SDValue Base  = Op.getOperand(2);
11912     SDValue Mask  = Op.getOperand(3);
11913     SDValue Index = Op.getOperand(4);
11914     SDValue Src   = Op.getOperand(5);
11915     SDValue Scale = Op.getOperand(6);
11916     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11917   }
11918   // XTEST intrinsics.
11919   case Intrinsic::x86_xtest: {
11920     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11921     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11922     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11923                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11924                                 InTrans);
11925     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11926     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11927                        Ret, SDValue(InTrans.getNode(), 1));
11928   }
11929   }
11930 }
11931
11932 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11933                                            SelectionDAG &DAG) const {
11934   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11935   MFI->setReturnAddressIsTaken(true);
11936
11937   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11938   SDLoc dl(Op);
11939   EVT PtrVT = getPointerTy();
11940
11941   if (Depth > 0) {
11942     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11943     const X86RegisterInfo *RegInfo =
11944       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11945     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11946     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11947                        DAG.getNode(ISD::ADD, dl, PtrVT,
11948                                    FrameAddr, Offset),
11949                        MachinePointerInfo(), false, false, false, 0);
11950   }
11951
11952   // Just load the return address.
11953   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11954   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11955                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11956 }
11957
11958 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11959   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11960   MFI->setFrameAddressIsTaken(true);
11961
11962   EVT VT = Op.getValueType();
11963   SDLoc dl(Op);  // FIXME probably not meaningful
11964   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11965   const X86RegisterInfo *RegInfo =
11966     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11967   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11968   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11969           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11970          "Invalid Frame Register!");
11971   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11972   while (Depth--)
11973     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11974                             MachinePointerInfo(),
11975                             false, false, false, 0);
11976   return FrameAddr;
11977 }
11978
11979 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11980                                                      SelectionDAG &DAG) const {
11981   const X86RegisterInfo *RegInfo =
11982     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11983   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11984 }
11985
11986 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11987   SDValue Chain     = Op.getOperand(0);
11988   SDValue Offset    = Op.getOperand(1);
11989   SDValue Handler   = Op.getOperand(2);
11990   SDLoc dl      (Op);
11991
11992   EVT PtrVT = getPointerTy();
11993   const X86RegisterInfo *RegInfo =
11994     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11995   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11996   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11997           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11998          "Invalid Frame Register!");
11999   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12000   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12001
12002   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12003                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12004   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12005   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12006                        false, false, 0);
12007   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12008
12009   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12010                      DAG.getRegister(StoreAddrReg, PtrVT));
12011 }
12012
12013 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12014                                                SelectionDAG &DAG) const {
12015   SDLoc DL(Op);
12016   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12017                      DAG.getVTList(MVT::i32, MVT::Other),
12018                      Op.getOperand(0), Op.getOperand(1));
12019 }
12020
12021 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12022                                                 SelectionDAG &DAG) const {
12023   SDLoc DL(Op);
12024   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12025                      Op.getOperand(0), Op.getOperand(1));
12026 }
12027
12028 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12029   return Op.getOperand(0);
12030 }
12031
12032 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12033                                                 SelectionDAG &DAG) const {
12034   SDValue Root = Op.getOperand(0);
12035   SDValue Trmp = Op.getOperand(1); // trampoline
12036   SDValue FPtr = Op.getOperand(2); // nested function
12037   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12038   SDLoc dl (Op);
12039
12040   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12041   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12042
12043   if (Subtarget->is64Bit()) {
12044     SDValue OutChains[6];
12045
12046     // Large code-model.
12047     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12048     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12049
12050     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12051     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12052
12053     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12054
12055     // Load the pointer to the nested function into R11.
12056     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12057     SDValue Addr = Trmp;
12058     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12059                                 Addr, MachinePointerInfo(TrmpAddr),
12060                                 false, false, 0);
12061
12062     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12063                        DAG.getConstant(2, MVT::i64));
12064     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12065                                 MachinePointerInfo(TrmpAddr, 2),
12066                                 false, false, 2);
12067
12068     // Load the 'nest' parameter value into R10.
12069     // R10 is specified in X86CallingConv.td
12070     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12071     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12072                        DAG.getConstant(10, MVT::i64));
12073     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12074                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12075                                 false, false, 0);
12076
12077     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12078                        DAG.getConstant(12, MVT::i64));
12079     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12080                                 MachinePointerInfo(TrmpAddr, 12),
12081                                 false, false, 2);
12082
12083     // Jump to the nested function.
12084     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12085     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12086                        DAG.getConstant(20, MVT::i64));
12087     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12088                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12089                                 false, false, 0);
12090
12091     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12092     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12093                        DAG.getConstant(22, MVT::i64));
12094     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12095                                 MachinePointerInfo(TrmpAddr, 22),
12096                                 false, false, 0);
12097
12098     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12099   } else {
12100     const Function *Func =
12101       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12102     CallingConv::ID CC = Func->getCallingConv();
12103     unsigned NestReg;
12104
12105     switch (CC) {
12106     default:
12107       llvm_unreachable("Unsupported calling convention");
12108     case CallingConv::C:
12109     case CallingConv::X86_StdCall: {
12110       // Pass 'nest' parameter in ECX.
12111       // Must be kept in sync with X86CallingConv.td
12112       NestReg = X86::ECX;
12113
12114       // Check that ECX wasn't needed by an 'inreg' parameter.
12115       FunctionType *FTy = Func->getFunctionType();
12116       const AttributeSet &Attrs = Func->getAttributes();
12117
12118       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12119         unsigned InRegCount = 0;
12120         unsigned Idx = 1;
12121
12122         for (FunctionType::param_iterator I = FTy->param_begin(),
12123              E = FTy->param_end(); I != E; ++I, ++Idx)
12124           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12125             // FIXME: should only count parameters that are lowered to integers.
12126             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12127
12128         if (InRegCount > 2) {
12129           report_fatal_error("Nest register in use - reduce number of inreg"
12130                              " parameters!");
12131         }
12132       }
12133       break;
12134     }
12135     case CallingConv::X86_FastCall:
12136     case CallingConv::X86_ThisCall:
12137     case CallingConv::Fast:
12138       // Pass 'nest' parameter in EAX.
12139       // Must be kept in sync with X86CallingConv.td
12140       NestReg = X86::EAX;
12141       break;
12142     }
12143
12144     SDValue OutChains[4];
12145     SDValue Addr, Disp;
12146
12147     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12148                        DAG.getConstant(10, MVT::i32));
12149     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12150
12151     // This is storing the opcode for MOV32ri.
12152     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12153     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12154     OutChains[0] = DAG.getStore(Root, dl,
12155                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12156                                 Trmp, MachinePointerInfo(TrmpAddr),
12157                                 false, false, 0);
12158
12159     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12160                        DAG.getConstant(1, MVT::i32));
12161     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12162                                 MachinePointerInfo(TrmpAddr, 1),
12163                                 false, false, 1);
12164
12165     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12166     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12167                        DAG.getConstant(5, MVT::i32));
12168     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12169                                 MachinePointerInfo(TrmpAddr, 5),
12170                                 false, false, 1);
12171
12172     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12173                        DAG.getConstant(6, MVT::i32));
12174     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12175                                 MachinePointerInfo(TrmpAddr, 6),
12176                                 false, false, 1);
12177
12178     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12179   }
12180 }
12181
12182 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12183                                             SelectionDAG &DAG) const {
12184   /*
12185    The rounding mode is in bits 11:10 of FPSR, and has the following
12186    settings:
12187      00 Round to nearest
12188      01 Round to -inf
12189      10 Round to +inf
12190      11 Round to 0
12191
12192   FLT_ROUNDS, on the other hand, expects the following:
12193     -1 Undefined
12194      0 Round to 0
12195      1 Round to nearest
12196      2 Round to +inf
12197      3 Round to -inf
12198
12199   To perform the conversion, we do:
12200     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12201   */
12202
12203   MachineFunction &MF = DAG.getMachineFunction();
12204   const TargetMachine &TM = MF.getTarget();
12205   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12206   unsigned StackAlignment = TFI.getStackAlignment();
12207   EVT VT = Op.getValueType();
12208   SDLoc DL(Op);
12209
12210   // Save FP Control Word to stack slot
12211   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12212   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12213
12214   MachineMemOperand *MMO =
12215    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12216                            MachineMemOperand::MOStore, 2, 2);
12217
12218   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12219   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12220                                           DAG.getVTList(MVT::Other),
12221                                           Ops, array_lengthof(Ops), MVT::i16,
12222                                           MMO);
12223
12224   // Load FP Control Word from stack slot
12225   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12226                             MachinePointerInfo(), false, false, false, 0);
12227
12228   // Transform as necessary
12229   SDValue CWD1 =
12230     DAG.getNode(ISD::SRL, DL, MVT::i16,
12231                 DAG.getNode(ISD::AND, DL, MVT::i16,
12232                             CWD, DAG.getConstant(0x800, MVT::i16)),
12233                 DAG.getConstant(11, MVT::i8));
12234   SDValue CWD2 =
12235     DAG.getNode(ISD::SRL, DL, MVT::i16,
12236                 DAG.getNode(ISD::AND, DL, MVT::i16,
12237                             CWD, DAG.getConstant(0x400, MVT::i16)),
12238                 DAG.getConstant(9, MVT::i8));
12239
12240   SDValue RetVal =
12241     DAG.getNode(ISD::AND, DL, MVT::i16,
12242                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12243                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12244                             DAG.getConstant(1, MVT::i16)),
12245                 DAG.getConstant(3, MVT::i16));
12246
12247   return DAG.getNode((VT.getSizeInBits() < 16 ?
12248                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12249 }
12250
12251 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12252   EVT VT = Op.getValueType();
12253   EVT OpVT = VT;
12254   unsigned NumBits = VT.getSizeInBits();
12255   SDLoc dl(Op);
12256
12257   Op = Op.getOperand(0);
12258   if (VT == MVT::i8) {
12259     // Zero extend to i32 since there is not an i8 bsr.
12260     OpVT = MVT::i32;
12261     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12262   }
12263
12264   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12265   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12266   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12267
12268   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12269   SDValue Ops[] = {
12270     Op,
12271     DAG.getConstant(NumBits+NumBits-1, OpVT),
12272     DAG.getConstant(X86::COND_E, MVT::i8),
12273     Op.getValue(1)
12274   };
12275   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12276
12277   // Finally xor with NumBits-1.
12278   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12279
12280   if (VT == MVT::i8)
12281     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12282   return Op;
12283 }
12284
12285 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12286   EVT VT = Op.getValueType();
12287   EVT OpVT = VT;
12288   unsigned NumBits = VT.getSizeInBits();
12289   SDLoc dl(Op);
12290
12291   Op = Op.getOperand(0);
12292   if (VT == MVT::i8) {
12293     // Zero extend to i32 since there is not an i8 bsr.
12294     OpVT = MVT::i32;
12295     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12296   }
12297
12298   // Issue a bsr (scan bits in reverse).
12299   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12300   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12301
12302   // And xor with NumBits-1.
12303   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12304
12305   if (VT == MVT::i8)
12306     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12307   return Op;
12308 }
12309
12310 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12311   EVT VT = Op.getValueType();
12312   unsigned NumBits = VT.getSizeInBits();
12313   SDLoc dl(Op);
12314   Op = Op.getOperand(0);
12315
12316   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12317   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12318   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12319
12320   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12321   SDValue Ops[] = {
12322     Op,
12323     DAG.getConstant(NumBits, VT),
12324     DAG.getConstant(X86::COND_E, MVT::i8),
12325     Op.getValue(1)
12326   };
12327   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12328 }
12329
12330 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12331 // ones, and then concatenate the result back.
12332 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12333   EVT VT = Op.getValueType();
12334
12335   assert(VT.is256BitVector() && VT.isInteger() &&
12336          "Unsupported value type for operation");
12337
12338   unsigned NumElems = VT.getVectorNumElements();
12339   SDLoc dl(Op);
12340
12341   // Extract the LHS vectors
12342   SDValue LHS = Op.getOperand(0);
12343   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12344   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12345
12346   // Extract the RHS vectors
12347   SDValue RHS = Op.getOperand(1);
12348   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12349   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12350
12351   MVT EltVT = VT.getVectorElementType().getSimpleVT();
12352   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12353
12354   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12355                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12356                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12357 }
12358
12359 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12360   assert(Op.getValueType().is256BitVector() &&
12361          Op.getValueType().isInteger() &&
12362          "Only handle AVX 256-bit vector integer operation");
12363   return Lower256IntArith(Op, DAG);
12364 }
12365
12366 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12367   assert(Op.getValueType().is256BitVector() &&
12368          Op.getValueType().isInteger() &&
12369          "Only handle AVX 256-bit vector integer operation");
12370   return Lower256IntArith(Op, DAG);
12371 }
12372
12373 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12374                         SelectionDAG &DAG) {
12375   SDLoc dl(Op);
12376   EVT VT = Op.getValueType();
12377
12378   // Decompose 256-bit ops into smaller 128-bit ops.
12379   if (VT.is256BitVector() && !Subtarget->hasInt256())
12380     return Lower256IntArith(Op, DAG);
12381
12382   SDValue A = Op.getOperand(0);
12383   SDValue B = Op.getOperand(1);
12384
12385   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12386   if (VT == MVT::v4i32) {
12387     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12388            "Should not custom lower when pmuldq is available!");
12389
12390     // Extract the odd parts.
12391     static const int UnpackMask[] = { 1, -1, 3, -1 };
12392     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12393     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12394
12395     // Multiply the even parts.
12396     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12397     // Now multiply odd parts.
12398     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12399
12400     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12401     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12402
12403     // Merge the two vectors back together with a shuffle. This expands into 2
12404     // shuffles.
12405     static const int ShufMask[] = { 0, 4, 2, 6 };
12406     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12407   }
12408
12409   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12410          "Only know how to lower V2I64/V4I64 multiply");
12411
12412   //  Ahi = psrlqi(a, 32);
12413   //  Bhi = psrlqi(b, 32);
12414   //
12415   //  AloBlo = pmuludq(a, b);
12416   //  AloBhi = pmuludq(a, Bhi);
12417   //  AhiBlo = pmuludq(Ahi, b);
12418
12419   //  AloBhi = psllqi(AloBhi, 32);
12420   //  AhiBlo = psllqi(AhiBlo, 32);
12421   //  return AloBlo + AloBhi + AhiBlo;
12422
12423   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
12424
12425   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12426   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
12427
12428   // Bit cast to 32-bit vectors for MULUDQ
12429   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12430   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12431   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12432   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12433   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12434
12435   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12436   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12437   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12438
12439   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12440   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
12441
12442   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12443   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12444 }
12445
12446 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12447   EVT VT = Op.getValueType();
12448   EVT EltTy = VT.getVectorElementType();
12449   unsigned NumElts = VT.getVectorNumElements();
12450   SDValue N0 = Op.getOperand(0);
12451   SDLoc dl(Op);
12452
12453   // Lower sdiv X, pow2-const.
12454   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12455   if (!C)
12456     return SDValue();
12457
12458   APInt SplatValue, SplatUndef;
12459   unsigned SplatBitSize;
12460   bool HasAnyUndefs;
12461   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12462                           HasAnyUndefs) ||
12463       EltTy.getSizeInBits() < SplatBitSize)
12464     return SDValue();
12465
12466   if ((SplatValue != 0) &&
12467       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12468     unsigned lg2 = SplatValue.countTrailingZeros();
12469     // Splat the sign bit.
12470     SmallVector<SDValue, 16> Sz(NumElts,
12471                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12472                                                 EltTy));
12473     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12474                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12475                                           NumElts));
12476     // Add (N0 < 0) ? abs2 - 1 : 0;
12477     SmallVector<SDValue, 16> Amt(NumElts,
12478                                  DAG.getConstant(EltTy.getSizeInBits() - lg2,
12479                                                  EltTy));
12480     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12481                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12482                                           NumElts));
12483     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12484     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(lg2, EltTy));
12485     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12486                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12487                                           NumElts));
12488
12489     // If we're dividing by a positive value, we're done.  Otherwise, we must
12490     // negate the result.
12491     if (SplatValue.isNonNegative())
12492       return SRA;
12493
12494     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12495     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12496     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12497   }
12498   return SDValue();
12499 }
12500
12501 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12502                                          const X86Subtarget *Subtarget) {
12503   EVT VT = Op.getValueType();
12504   SDLoc dl(Op);
12505   SDValue R = Op.getOperand(0);
12506   SDValue Amt = Op.getOperand(1);
12507
12508   // Optimize shl/srl/sra with constant shift amount.
12509   if (isSplatVector(Amt.getNode())) {
12510     SDValue SclrAmt = Amt->getOperand(0);
12511     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12512       uint64_t ShiftAmt = C->getZExtValue();
12513
12514       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12515           (Subtarget->hasInt256() &&
12516            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12517           (Subtarget->hasAVX512() &&
12518            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12519         if (Op.getOpcode() == ISD::SHL)
12520           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12521                              DAG.getConstant(ShiftAmt, MVT::i32));
12522         if (Op.getOpcode() == ISD::SRL)
12523           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12524                              DAG.getConstant(ShiftAmt, MVT::i32));
12525         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12526           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12527                              DAG.getConstant(ShiftAmt, MVT::i32));
12528       }
12529
12530       if (VT == MVT::v16i8) {
12531         if (Op.getOpcode() == ISD::SHL) {
12532           // Make a large shift.
12533           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12534                                     DAG.getConstant(ShiftAmt, MVT::i32));
12535           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12536           // Zero out the rightmost bits.
12537           SmallVector<SDValue, 16> V(16,
12538                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12539                                                      MVT::i8));
12540           return DAG.getNode(ISD::AND, dl, VT, SHL,
12541                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12542         }
12543         if (Op.getOpcode() == ISD::SRL) {
12544           // Make a large shift.
12545           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12546                                     DAG.getConstant(ShiftAmt, MVT::i32));
12547           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12548           // Zero out the leftmost bits.
12549           SmallVector<SDValue, 16> V(16,
12550                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12551                                                      MVT::i8));
12552           return DAG.getNode(ISD::AND, dl, VT, SRL,
12553                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12554         }
12555         if (Op.getOpcode() == ISD::SRA) {
12556           if (ShiftAmt == 7) {
12557             // R s>> 7  ===  R s< 0
12558             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12559             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12560           }
12561
12562           // R s>> a === ((R u>> a) ^ m) - m
12563           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12564           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12565                                                          MVT::i8));
12566           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12567           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12568           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12569           return Res;
12570         }
12571         llvm_unreachable("Unknown shift opcode.");
12572       }
12573
12574       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12575         if (Op.getOpcode() == ISD::SHL) {
12576           // Make a large shift.
12577           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12578                                     DAG.getConstant(ShiftAmt, MVT::i32));
12579           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12580           // Zero out the rightmost bits.
12581           SmallVector<SDValue, 32> V(32,
12582                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12583                                                      MVT::i8));
12584           return DAG.getNode(ISD::AND, dl, VT, SHL,
12585                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12586         }
12587         if (Op.getOpcode() == ISD::SRL) {
12588           // Make a large shift.
12589           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12590                                     DAG.getConstant(ShiftAmt, MVT::i32));
12591           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12592           // Zero out the leftmost bits.
12593           SmallVector<SDValue, 32> V(32,
12594                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12595                                                      MVT::i8));
12596           return DAG.getNode(ISD::AND, dl, VT, SRL,
12597                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12598         }
12599         if (Op.getOpcode() == ISD::SRA) {
12600           if (ShiftAmt == 7) {
12601             // R s>> 7  ===  R s< 0
12602             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12603             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12604           }
12605
12606           // R s>> a === ((R u>> a) ^ m) - m
12607           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12608           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12609                                                          MVT::i8));
12610           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12611           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12612           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12613           return Res;
12614         }
12615         llvm_unreachable("Unknown shift opcode.");
12616       }
12617     }
12618   }
12619
12620   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12621   if (!Subtarget->is64Bit() &&
12622       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12623       Amt.getOpcode() == ISD::BITCAST &&
12624       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12625     Amt = Amt.getOperand(0);
12626     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12627                      VT.getVectorNumElements();
12628     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12629     uint64_t ShiftAmt = 0;
12630     for (unsigned i = 0; i != Ratio; ++i) {
12631       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12632       if (C == 0)
12633         return SDValue();
12634       // 6 == Log2(64)
12635       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12636     }
12637     // Check remaining shift amounts.
12638     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12639       uint64_t ShAmt = 0;
12640       for (unsigned j = 0; j != Ratio; ++j) {
12641         ConstantSDNode *C =
12642           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12643         if (C == 0)
12644           return SDValue();
12645         // 6 == Log2(64)
12646         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12647       }
12648       if (ShAmt != ShiftAmt)
12649         return SDValue();
12650     }
12651     switch (Op.getOpcode()) {
12652     default:
12653       llvm_unreachable("Unknown shift opcode!");
12654     case ISD::SHL:
12655       return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12656                          DAG.getConstant(ShiftAmt, MVT::i32));
12657     case ISD::SRL:
12658       return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12659                          DAG.getConstant(ShiftAmt, MVT::i32));
12660     case ISD::SRA:
12661       return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12662                          DAG.getConstant(ShiftAmt, MVT::i32));
12663     }
12664   }
12665
12666   return SDValue();
12667 }
12668
12669 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12670                                         const X86Subtarget* Subtarget) {
12671   EVT VT = Op.getValueType();
12672   SDLoc dl(Op);
12673   SDValue R = Op.getOperand(0);
12674   SDValue Amt = Op.getOperand(1);
12675
12676   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12677       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12678       (Subtarget->hasInt256() &&
12679        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12680         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12681        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12682     SDValue BaseShAmt;
12683     EVT EltVT = VT.getVectorElementType();
12684
12685     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12686       unsigned NumElts = VT.getVectorNumElements();
12687       unsigned i, j;
12688       for (i = 0; i != NumElts; ++i) {
12689         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12690           continue;
12691         break;
12692       }
12693       for (j = i; j != NumElts; ++j) {
12694         SDValue Arg = Amt.getOperand(j);
12695         if (Arg.getOpcode() == ISD::UNDEF) continue;
12696         if (Arg != Amt.getOperand(i))
12697           break;
12698       }
12699       if (i != NumElts && j == NumElts)
12700         BaseShAmt = Amt.getOperand(i);
12701     } else {
12702       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12703         Amt = Amt.getOperand(0);
12704       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12705                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12706         SDValue InVec = Amt.getOperand(0);
12707         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12708           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12709           unsigned i = 0;
12710           for (; i != NumElts; ++i) {
12711             SDValue Arg = InVec.getOperand(i);
12712             if (Arg.getOpcode() == ISD::UNDEF) continue;
12713             BaseShAmt = Arg;
12714             break;
12715           }
12716         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12717            if (ConstantSDNode *C =
12718                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12719              unsigned SplatIdx =
12720                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12721              if (C->getZExtValue() == SplatIdx)
12722                BaseShAmt = InVec.getOperand(1);
12723            }
12724         }
12725         if (BaseShAmt.getNode() == 0)
12726           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12727                                   DAG.getIntPtrConstant(0));
12728       }
12729     }
12730
12731     if (BaseShAmt.getNode()) {
12732       if (EltVT.bitsGT(MVT::i32))
12733         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12734       else if (EltVT.bitsLT(MVT::i32))
12735         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12736
12737       switch (Op.getOpcode()) {
12738       default:
12739         llvm_unreachable("Unknown shift opcode!");
12740       case ISD::SHL:
12741         switch (VT.getSimpleVT().SimpleTy) {
12742         default: return SDValue();
12743         case MVT::v2i64:
12744         case MVT::v4i32:
12745         case MVT::v8i16:
12746         case MVT::v4i64:
12747         case MVT::v8i32:
12748         case MVT::v16i16:
12749         case MVT::v16i32:
12750         case MVT::v8i64:
12751           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12752         }
12753       case ISD::SRA:
12754         switch (VT.getSimpleVT().SimpleTy) {
12755         default: return SDValue();
12756         case MVT::v4i32:
12757         case MVT::v8i16:
12758         case MVT::v8i32:
12759         case MVT::v16i16:
12760         case MVT::v16i32:
12761         case MVT::v8i64:
12762           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12763         }
12764       case ISD::SRL:
12765         switch (VT.getSimpleVT().SimpleTy) {
12766         default: return SDValue();
12767         case MVT::v2i64:
12768         case MVT::v4i32:
12769         case MVT::v8i16:
12770         case MVT::v4i64:
12771         case MVT::v8i32:
12772         case MVT::v16i16:
12773         case MVT::v16i32:
12774         case MVT::v8i64:
12775           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12776         }
12777       }
12778     }
12779   }
12780
12781   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12782   if (!Subtarget->is64Bit() &&
12783       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12784       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12785       Amt.getOpcode() == ISD::BITCAST &&
12786       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12787     Amt = Amt.getOperand(0);
12788     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12789                      VT.getVectorNumElements();
12790     std::vector<SDValue> Vals(Ratio);
12791     for (unsigned i = 0; i != Ratio; ++i)
12792       Vals[i] = Amt.getOperand(i);
12793     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12794       for (unsigned j = 0; j != Ratio; ++j)
12795         if (Vals[j] != Amt.getOperand(i + j))
12796           return SDValue();
12797     }
12798     switch (Op.getOpcode()) {
12799     default:
12800       llvm_unreachable("Unknown shift opcode!");
12801     case ISD::SHL:
12802       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12803     case ISD::SRL:
12804       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12805     case ISD::SRA:
12806       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12807     }
12808   }
12809
12810   return SDValue();
12811 }
12812
12813 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12814                           SelectionDAG &DAG) {
12815
12816   EVT VT = Op.getValueType();
12817   SDLoc dl(Op);
12818   SDValue R = Op.getOperand(0);
12819   SDValue Amt = Op.getOperand(1);
12820   SDValue V;
12821
12822   if (!Subtarget->hasSSE2())
12823     return SDValue();
12824
12825   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12826   if (V.getNode())
12827     return V;
12828
12829   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12830   if (V.getNode())
12831       return V;
12832
12833   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12834     return Op;
12835   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12836   if (Subtarget->hasInt256()) {
12837     if (Op.getOpcode() == ISD::SRL &&
12838         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12839          VT == MVT::v4i64 || VT == MVT::v8i32))
12840       return Op;
12841     if (Op.getOpcode() == ISD::SHL &&
12842         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12843          VT == MVT::v4i64 || VT == MVT::v8i32))
12844       return Op;
12845     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12846       return Op;
12847   }
12848
12849   // Lower SHL with variable shift amount.
12850   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12851     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12852
12853     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12854     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12855     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12856     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12857   }
12858   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12859     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12860
12861     // a = a << 5;
12862     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12863     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12864
12865     // Turn 'a' into a mask suitable for VSELECT
12866     SDValue VSelM = DAG.getConstant(0x80, VT);
12867     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12868     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12869
12870     SDValue CM1 = DAG.getConstant(0x0f, VT);
12871     SDValue CM2 = DAG.getConstant(0x3f, VT);
12872
12873     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12874     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12875     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12876                             DAG.getConstant(4, MVT::i32), DAG);
12877     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12878     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12879
12880     // a += a
12881     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12882     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12883     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12884
12885     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12886     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12887     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12888                             DAG.getConstant(2, MVT::i32), DAG);
12889     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12890     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12891
12892     // a += a
12893     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12894     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12895     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12896
12897     // return VSELECT(r, r+r, a);
12898     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12899                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12900     return R;
12901   }
12902
12903   // Decompose 256-bit shifts into smaller 128-bit shifts.
12904   if (VT.is256BitVector()) {
12905     unsigned NumElems = VT.getVectorNumElements();
12906     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12907     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12908
12909     // Extract the two vectors
12910     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12911     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12912
12913     // Recreate the shift amount vectors
12914     SDValue Amt1, Amt2;
12915     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12916       // Constant shift amount
12917       SmallVector<SDValue, 4> Amt1Csts;
12918       SmallVector<SDValue, 4> Amt2Csts;
12919       for (unsigned i = 0; i != NumElems/2; ++i)
12920         Amt1Csts.push_back(Amt->getOperand(i));
12921       for (unsigned i = NumElems/2; i != NumElems; ++i)
12922         Amt2Csts.push_back(Amt->getOperand(i));
12923
12924       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12925                                  &Amt1Csts[0], NumElems/2);
12926       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12927                                  &Amt2Csts[0], NumElems/2);
12928     } else {
12929       // Variable shift amount
12930       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12931       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12932     }
12933
12934     // Issue new vector shifts for the smaller types
12935     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12936     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12937
12938     // Concatenate the result back
12939     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12940   }
12941
12942   return SDValue();
12943 }
12944
12945 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12946   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12947   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12948   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12949   // has only one use.
12950   SDNode *N = Op.getNode();
12951   SDValue LHS = N->getOperand(0);
12952   SDValue RHS = N->getOperand(1);
12953   unsigned BaseOp = 0;
12954   unsigned Cond = 0;
12955   SDLoc DL(Op);
12956   switch (Op.getOpcode()) {
12957   default: llvm_unreachable("Unknown ovf instruction!");
12958   case ISD::SADDO:
12959     // A subtract of one will be selected as a INC. Note that INC doesn't
12960     // set CF, so we can't do this for UADDO.
12961     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12962       if (C->isOne()) {
12963         BaseOp = X86ISD::INC;
12964         Cond = X86::COND_O;
12965         break;
12966       }
12967     BaseOp = X86ISD::ADD;
12968     Cond = X86::COND_O;
12969     break;
12970   case ISD::UADDO:
12971     BaseOp = X86ISD::ADD;
12972     Cond = X86::COND_B;
12973     break;
12974   case ISD::SSUBO:
12975     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12976     // set CF, so we can't do this for USUBO.
12977     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12978       if (C->isOne()) {
12979         BaseOp = X86ISD::DEC;
12980         Cond = X86::COND_O;
12981         break;
12982       }
12983     BaseOp = X86ISD::SUB;
12984     Cond = X86::COND_O;
12985     break;
12986   case ISD::USUBO:
12987     BaseOp = X86ISD::SUB;
12988     Cond = X86::COND_B;
12989     break;
12990   case ISD::SMULO:
12991     BaseOp = X86ISD::SMUL;
12992     Cond = X86::COND_O;
12993     break;
12994   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12995     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12996                                  MVT::i32);
12997     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
12998
12999     SDValue SetCC =
13000       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13001                   DAG.getConstant(X86::COND_O, MVT::i32),
13002                   SDValue(Sum.getNode(), 2));
13003
13004     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13005   }
13006   }
13007
13008   // Also sets EFLAGS.
13009   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13010   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13011
13012   SDValue SetCC =
13013     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13014                 DAG.getConstant(Cond, MVT::i32),
13015                 SDValue(Sum.getNode(), 1));
13016
13017   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13018 }
13019
13020 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13021                                                   SelectionDAG &DAG) const {
13022   SDLoc dl(Op);
13023   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13024   EVT VT = Op.getValueType();
13025
13026   if (!Subtarget->hasSSE2() || !VT.isVector())
13027     return SDValue();
13028
13029   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13030                       ExtraVT.getScalarType().getSizeInBits();
13031   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
13032
13033   switch (VT.getSimpleVT().SimpleTy) {
13034     default: return SDValue();
13035     case MVT::v8i32:
13036     case MVT::v16i16:
13037       if (!Subtarget->hasFp256())
13038         return SDValue();
13039       if (!Subtarget->hasInt256()) {
13040         // needs to be split
13041         unsigned NumElems = VT.getVectorNumElements();
13042
13043         // Extract the LHS vectors
13044         SDValue LHS = Op.getOperand(0);
13045         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13046         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13047
13048         MVT EltVT = VT.getVectorElementType().getSimpleVT();
13049         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13050
13051         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13052         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13053         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13054                                    ExtraNumElems/2);
13055         SDValue Extra = DAG.getValueType(ExtraVT);
13056
13057         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13058         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13059
13060         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13061       }
13062       // fall through
13063     case MVT::v4i32:
13064     case MVT::v8i16: {
13065       // (sext (vzext x)) -> (vsext x)
13066       SDValue Op0 = Op.getOperand(0);
13067       SDValue Op00 = Op0.getOperand(0);
13068       SDValue Tmp1;
13069       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13070       if (Op0.getOpcode() == ISD::BITCAST &&
13071           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
13072         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13073       if (Tmp1.getNode()) {
13074         SDValue Tmp1Op0 = Tmp1.getOperand(0);
13075         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13076                "This optimization is invalid without a VZEXT.");
13077         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13078       }
13079
13080       // If the above didn't work, then just use Shift-Left + Shift-Right.
13081       Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
13082       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
13083     }
13084   }
13085 }
13086
13087 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13088                                  SelectionDAG &DAG) {
13089   SDLoc dl(Op);
13090   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13091     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13092   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13093     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13094
13095   // The only fence that needs an instruction is a sequentially-consistent
13096   // cross-thread fence.
13097   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13098     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13099     // no-sse2). There isn't any reason to disable it if the target processor
13100     // supports it.
13101     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13102       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13103
13104     SDValue Chain = Op.getOperand(0);
13105     SDValue Zero = DAG.getConstant(0, MVT::i32);
13106     SDValue Ops[] = {
13107       DAG.getRegister(X86::ESP, MVT::i32), // Base
13108       DAG.getTargetConstant(1, MVT::i8),   // Scale
13109       DAG.getRegister(0, MVT::i32),        // Index
13110       DAG.getTargetConstant(0, MVT::i32),  // Disp
13111       DAG.getRegister(0, MVT::i32),        // Segment.
13112       Zero,
13113       Chain
13114     };
13115     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13116     return SDValue(Res, 0);
13117   }
13118
13119   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13120   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13121 }
13122
13123 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13124                              SelectionDAG &DAG) {
13125   EVT T = Op.getValueType();
13126   SDLoc DL(Op);
13127   unsigned Reg = 0;
13128   unsigned size = 0;
13129   switch(T.getSimpleVT().SimpleTy) {
13130   default: llvm_unreachable("Invalid value type!");
13131   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13132   case MVT::i16: Reg = X86::AX;  size = 2; break;
13133   case MVT::i32: Reg = X86::EAX; size = 4; break;
13134   case MVT::i64:
13135     assert(Subtarget->is64Bit() && "Node not type legal!");
13136     Reg = X86::RAX; size = 8;
13137     break;
13138   }
13139   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13140                                     Op.getOperand(2), SDValue());
13141   SDValue Ops[] = { cpIn.getValue(0),
13142                     Op.getOperand(1),
13143                     Op.getOperand(3),
13144                     DAG.getTargetConstant(size, MVT::i8),
13145                     cpIn.getValue(1) };
13146   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13147   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13148   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13149                                            Ops, array_lengthof(Ops), T, MMO);
13150   SDValue cpOut =
13151     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13152   return cpOut;
13153 }
13154
13155 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13156                                      SelectionDAG &DAG) {
13157   assert(Subtarget->is64Bit() && "Result not type legalized?");
13158   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13159   SDValue TheChain = Op.getOperand(0);
13160   SDLoc dl(Op);
13161   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13162   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13163   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13164                                    rax.getValue(2));
13165   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13166                             DAG.getConstant(32, MVT::i8));
13167   SDValue Ops[] = {
13168     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13169     rdx.getValue(1)
13170   };
13171   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13172 }
13173
13174 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13175                             SelectionDAG &DAG) {
13176   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13177   MVT DstVT = Op.getSimpleValueType();
13178   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13179          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13180   assert((DstVT == MVT::i64 ||
13181           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13182          "Unexpected custom BITCAST");
13183   // i64 <=> MMX conversions are Legal.
13184   if (SrcVT==MVT::i64 && DstVT.isVector())
13185     return Op;
13186   if (DstVT==MVT::i64 && SrcVT.isVector())
13187     return Op;
13188   // MMX <=> MMX conversions are Legal.
13189   if (SrcVT.isVector() && DstVT.isVector())
13190     return Op;
13191   // All other conversions need to be expanded.
13192   return SDValue();
13193 }
13194
13195 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13196   SDNode *Node = Op.getNode();
13197   SDLoc dl(Node);
13198   EVT T = Node->getValueType(0);
13199   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13200                               DAG.getConstant(0, T), Node->getOperand(2));
13201   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13202                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13203                        Node->getOperand(0),
13204                        Node->getOperand(1), negOp,
13205                        cast<AtomicSDNode>(Node)->getSrcValue(),
13206                        cast<AtomicSDNode>(Node)->getAlignment(),
13207                        cast<AtomicSDNode>(Node)->getOrdering(),
13208                        cast<AtomicSDNode>(Node)->getSynchScope());
13209 }
13210
13211 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13212   SDNode *Node = Op.getNode();
13213   SDLoc dl(Node);
13214   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13215
13216   // Convert seq_cst store -> xchg
13217   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13218   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13219   //        (The only way to get a 16-byte store is cmpxchg16b)
13220   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13221   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13222       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13223     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13224                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13225                                  Node->getOperand(0),
13226                                  Node->getOperand(1), Node->getOperand(2),
13227                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13228                                  cast<AtomicSDNode>(Node)->getOrdering(),
13229                                  cast<AtomicSDNode>(Node)->getSynchScope());
13230     return Swap.getValue(1);
13231   }
13232   // Other atomic stores have a simple pattern.
13233   return Op;
13234 }
13235
13236 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13237   EVT VT = Op.getNode()->getValueType(0);
13238
13239   // Let legalize expand this if it isn't a legal type yet.
13240   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13241     return SDValue();
13242
13243   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13244
13245   unsigned Opc;
13246   bool ExtraOp = false;
13247   switch (Op.getOpcode()) {
13248   default: llvm_unreachable("Invalid code");
13249   case ISD::ADDC: Opc = X86ISD::ADD; break;
13250   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13251   case ISD::SUBC: Opc = X86ISD::SUB; break;
13252   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13253   }
13254
13255   if (!ExtraOp)
13256     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13257                        Op.getOperand(1));
13258   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13259                      Op.getOperand(1), Op.getOperand(2));
13260 }
13261
13262 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13263                             SelectionDAG &DAG) {
13264   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13265
13266   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13267   // which returns the values as { float, float } (in XMM0) or
13268   // { double, double } (which is returned in XMM0, XMM1).
13269   SDLoc dl(Op);
13270   SDValue Arg = Op.getOperand(0);
13271   EVT ArgVT = Arg.getValueType();
13272   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13273
13274   TargetLowering::ArgListTy Args;
13275   TargetLowering::ArgListEntry Entry;
13276
13277   Entry.Node = Arg;
13278   Entry.Ty = ArgTy;
13279   Entry.isSExt = false;
13280   Entry.isZExt = false;
13281   Args.push_back(Entry);
13282
13283   bool isF64 = ArgVT == MVT::f64;
13284   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13285   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13286   // the results are returned via SRet in memory.
13287   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13288   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13289   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13290
13291   Type *RetTy = isF64
13292     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13293     : (Type*)VectorType::get(ArgTy, 4);
13294   TargetLowering::
13295     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13296                          false, false, false, false, 0,
13297                          CallingConv::C, /*isTaillCall=*/false,
13298                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13299                          Callee, Args, DAG, dl);
13300   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13301
13302   if (isF64)
13303     // Returned in xmm0 and xmm1.
13304     return CallResult.first;
13305
13306   // Returned in bits 0:31 and 32:64 xmm0.
13307   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13308                                CallResult.first, DAG.getIntPtrConstant(0));
13309   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13310                                CallResult.first, DAG.getIntPtrConstant(1));
13311   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13312   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13313 }
13314
13315 /// LowerOperation - Provide custom lowering hooks for some operations.
13316 ///
13317 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13318   switch (Op.getOpcode()) {
13319   default: llvm_unreachable("Should not custom lower this!");
13320   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13321   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13322   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13323   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13324   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13325   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13326   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13327   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13328   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13329   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13330   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13331   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13332   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13333   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13334   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13335   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13336   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13337   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13338   case ISD::SHL_PARTS:
13339   case ISD::SRA_PARTS:
13340   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13341   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13342   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13343   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13344   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13345   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13346   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13347   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13348   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13349   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13350   case ISD::FABS:               return LowerFABS(Op, DAG);
13351   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13352   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13353   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13354   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13355   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13356   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13357   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13358   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13359   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13360   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13361   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13362   case ISD::INTRINSIC_VOID:
13363   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13364   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13365   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13366   case ISD::FRAME_TO_ARGS_OFFSET:
13367                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13368   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13369   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13370   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13371   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13372   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13373   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13374   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13375   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13376   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13377   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13378   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13379   case ISD::SRA:
13380   case ISD::SRL:
13381   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13382   case ISD::SADDO:
13383   case ISD::UADDO:
13384   case ISD::SSUBO:
13385   case ISD::USUBO:
13386   case ISD::SMULO:
13387   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13388   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13389   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13390   case ISD::ADDC:
13391   case ISD::ADDE:
13392   case ISD::SUBC:
13393   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13394   case ISD::ADD:                return LowerADD(Op, DAG);
13395   case ISD::SUB:                return LowerSUB(Op, DAG);
13396   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13397   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13398   }
13399 }
13400
13401 static void ReplaceATOMIC_LOAD(SDNode *Node,
13402                                   SmallVectorImpl<SDValue> &Results,
13403                                   SelectionDAG &DAG) {
13404   SDLoc dl(Node);
13405   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13406
13407   // Convert wide load -> cmpxchg8b/cmpxchg16b
13408   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13409   //        (The only way to get a 16-byte load is cmpxchg16b)
13410   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13411   SDValue Zero = DAG.getConstant(0, VT);
13412   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13413                                Node->getOperand(0),
13414                                Node->getOperand(1), Zero, Zero,
13415                                cast<AtomicSDNode>(Node)->getMemOperand(),
13416                                cast<AtomicSDNode>(Node)->getOrdering(),
13417                                cast<AtomicSDNode>(Node)->getSynchScope());
13418   Results.push_back(Swap.getValue(0));
13419   Results.push_back(Swap.getValue(1));
13420 }
13421
13422 static void
13423 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13424                         SelectionDAG &DAG, unsigned NewOp) {
13425   SDLoc dl(Node);
13426   assert (Node->getValueType(0) == MVT::i64 &&
13427           "Only know how to expand i64 atomics");
13428
13429   SDValue Chain = Node->getOperand(0);
13430   SDValue In1 = Node->getOperand(1);
13431   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13432                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13433   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13434                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13435   SDValue Ops[] = { Chain, In1, In2L, In2H };
13436   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13437   SDValue Result =
13438     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13439                             cast<MemSDNode>(Node)->getMemOperand());
13440   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13441   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13442   Results.push_back(Result.getValue(2));
13443 }
13444
13445 /// ReplaceNodeResults - Replace a node with an illegal result type
13446 /// with a new node built out of custom code.
13447 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13448                                            SmallVectorImpl<SDValue>&Results,
13449                                            SelectionDAG &DAG) const {
13450   SDLoc dl(N);
13451   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13452   switch (N->getOpcode()) {
13453   default:
13454     llvm_unreachable("Do not know how to custom type legalize this operation!");
13455   case ISD::SIGN_EXTEND_INREG:
13456   case ISD::ADDC:
13457   case ISD::ADDE:
13458   case ISD::SUBC:
13459   case ISD::SUBE:
13460     // We don't want to expand or promote these.
13461     return;
13462   case ISD::FP_TO_SINT:
13463   case ISD::FP_TO_UINT: {
13464     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13465
13466     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13467       return;
13468
13469     std::pair<SDValue,SDValue> Vals =
13470         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13471     SDValue FIST = Vals.first, StackSlot = Vals.second;
13472     if (FIST.getNode() != 0) {
13473       EVT VT = N->getValueType(0);
13474       // Return a load from the stack slot.
13475       if (StackSlot.getNode() != 0)
13476         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13477                                       MachinePointerInfo(),
13478                                       false, false, false, 0));
13479       else
13480         Results.push_back(FIST);
13481     }
13482     return;
13483   }
13484   case ISD::UINT_TO_FP: {
13485     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13486     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13487         N->getValueType(0) != MVT::v2f32)
13488       return;
13489     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13490                                  N->getOperand(0));
13491     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13492                                      MVT::f64);
13493     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13494     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13495                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13496     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13497     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13498     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13499     return;
13500   }
13501   case ISD::FP_ROUND: {
13502     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13503         return;
13504     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13505     Results.push_back(V);
13506     return;
13507   }
13508   case ISD::READCYCLECOUNTER: {
13509     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13510     SDValue TheChain = N->getOperand(0);
13511     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13512     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13513                                      rd.getValue(1));
13514     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13515                                      eax.getValue(2));
13516     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13517     SDValue Ops[] = { eax, edx };
13518     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13519                                   array_lengthof(Ops)));
13520     Results.push_back(edx.getValue(1));
13521     return;
13522   }
13523   case ISD::ATOMIC_CMP_SWAP: {
13524     EVT T = N->getValueType(0);
13525     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13526     bool Regs64bit = T == MVT::i128;
13527     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13528     SDValue cpInL, cpInH;
13529     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13530                         DAG.getConstant(0, HalfT));
13531     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13532                         DAG.getConstant(1, HalfT));
13533     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13534                              Regs64bit ? X86::RAX : X86::EAX,
13535                              cpInL, SDValue());
13536     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13537                              Regs64bit ? X86::RDX : X86::EDX,
13538                              cpInH, cpInL.getValue(1));
13539     SDValue swapInL, swapInH;
13540     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13541                           DAG.getConstant(0, HalfT));
13542     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13543                           DAG.getConstant(1, HalfT));
13544     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13545                                Regs64bit ? X86::RBX : X86::EBX,
13546                                swapInL, cpInH.getValue(1));
13547     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13548                                Regs64bit ? X86::RCX : X86::ECX,
13549                                swapInH, swapInL.getValue(1));
13550     SDValue Ops[] = { swapInH.getValue(0),
13551                       N->getOperand(1),
13552                       swapInH.getValue(1) };
13553     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13554     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13555     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13556                                   X86ISD::LCMPXCHG8_DAG;
13557     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13558                                              Ops, array_lengthof(Ops), T, MMO);
13559     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13560                                         Regs64bit ? X86::RAX : X86::EAX,
13561                                         HalfT, Result.getValue(1));
13562     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13563                                         Regs64bit ? X86::RDX : X86::EDX,
13564                                         HalfT, cpOutL.getValue(2));
13565     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13566     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13567     Results.push_back(cpOutH.getValue(1));
13568     return;
13569   }
13570   case ISD::ATOMIC_LOAD_ADD:
13571   case ISD::ATOMIC_LOAD_AND:
13572   case ISD::ATOMIC_LOAD_NAND:
13573   case ISD::ATOMIC_LOAD_OR:
13574   case ISD::ATOMIC_LOAD_SUB:
13575   case ISD::ATOMIC_LOAD_XOR:
13576   case ISD::ATOMIC_LOAD_MAX:
13577   case ISD::ATOMIC_LOAD_MIN:
13578   case ISD::ATOMIC_LOAD_UMAX:
13579   case ISD::ATOMIC_LOAD_UMIN:
13580   case ISD::ATOMIC_SWAP: {
13581     unsigned Opc;
13582     switch (N->getOpcode()) {
13583     default: llvm_unreachable("Unexpected opcode");
13584     case ISD::ATOMIC_LOAD_ADD:
13585       Opc = X86ISD::ATOMADD64_DAG;
13586       break;
13587     case ISD::ATOMIC_LOAD_AND:
13588       Opc = X86ISD::ATOMAND64_DAG;
13589       break;
13590     case ISD::ATOMIC_LOAD_NAND:
13591       Opc = X86ISD::ATOMNAND64_DAG;
13592       break;
13593     case ISD::ATOMIC_LOAD_OR:
13594       Opc = X86ISD::ATOMOR64_DAG;
13595       break;
13596     case ISD::ATOMIC_LOAD_SUB:
13597       Opc = X86ISD::ATOMSUB64_DAG;
13598       break;
13599     case ISD::ATOMIC_LOAD_XOR:
13600       Opc = X86ISD::ATOMXOR64_DAG;
13601       break;
13602     case ISD::ATOMIC_LOAD_MAX:
13603       Opc = X86ISD::ATOMMAX64_DAG;
13604       break;
13605     case ISD::ATOMIC_LOAD_MIN:
13606       Opc = X86ISD::ATOMMIN64_DAG;
13607       break;
13608     case ISD::ATOMIC_LOAD_UMAX:
13609       Opc = X86ISD::ATOMUMAX64_DAG;
13610       break;
13611     case ISD::ATOMIC_LOAD_UMIN:
13612       Opc = X86ISD::ATOMUMIN64_DAG;
13613       break;
13614     case ISD::ATOMIC_SWAP:
13615       Opc = X86ISD::ATOMSWAP64_DAG;
13616       break;
13617     }
13618     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13619     return;
13620   }
13621   case ISD::ATOMIC_LOAD:
13622     ReplaceATOMIC_LOAD(N, Results, DAG);
13623   }
13624 }
13625
13626 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13627   switch (Opcode) {
13628   default: return NULL;
13629   case X86ISD::BSF:                return "X86ISD::BSF";
13630   case X86ISD::BSR:                return "X86ISD::BSR";
13631   case X86ISD::SHLD:               return "X86ISD::SHLD";
13632   case X86ISD::SHRD:               return "X86ISD::SHRD";
13633   case X86ISD::FAND:               return "X86ISD::FAND";
13634   case X86ISD::FANDN:              return "X86ISD::FANDN";
13635   case X86ISD::FOR:                return "X86ISD::FOR";
13636   case X86ISD::FXOR:               return "X86ISD::FXOR";
13637   case X86ISD::FSRL:               return "X86ISD::FSRL";
13638   case X86ISD::FILD:               return "X86ISD::FILD";
13639   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13640   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13641   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13642   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13643   case X86ISD::FLD:                return "X86ISD::FLD";
13644   case X86ISD::FST:                return "X86ISD::FST";
13645   case X86ISD::CALL:               return "X86ISD::CALL";
13646   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13647   case X86ISD::BT:                 return "X86ISD::BT";
13648   case X86ISD::CMP:                return "X86ISD::CMP";
13649   case X86ISD::COMI:               return "X86ISD::COMI";
13650   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13651   case X86ISD::CMPM:               return "X86ISD::CMPM";
13652   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13653   case X86ISD::SETCC:              return "X86ISD::SETCC";
13654   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13655   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13656   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13657   case X86ISD::CMOV:               return "X86ISD::CMOV";
13658   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13659   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13660   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13661   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13662   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13663   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13664   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13665   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13666   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13667   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13668   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13669   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13670   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13671   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13672   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13673   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13674   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13675   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13676   case X86ISD::HADD:               return "X86ISD::HADD";
13677   case X86ISD::HSUB:               return "X86ISD::HSUB";
13678   case X86ISD::FHADD:              return "X86ISD::FHADD";
13679   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13680   case X86ISD::UMAX:               return "X86ISD::UMAX";
13681   case X86ISD::UMIN:               return "X86ISD::UMIN";
13682   case X86ISD::SMAX:               return "X86ISD::SMAX";
13683   case X86ISD::SMIN:               return "X86ISD::SMIN";
13684   case X86ISD::FMAX:               return "X86ISD::FMAX";
13685   case X86ISD::FMIN:               return "X86ISD::FMIN";
13686   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13687   case X86ISD::FMINC:              return "X86ISD::FMINC";
13688   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13689   case X86ISD::FRCP:               return "X86ISD::FRCP";
13690   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13691   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13692   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13693   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13694   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13695   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13696   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13697   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13698   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13699   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13700   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13701   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13702   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13703   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13704   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13705   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13706   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13707   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13708   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13709   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13710   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13711   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13712   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13713   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13714   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13715   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13716   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13717   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13718   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13719   case X86ISD::VSHL:               return "X86ISD::VSHL";
13720   case X86ISD::VSRL:               return "X86ISD::VSRL";
13721   case X86ISD::VSRA:               return "X86ISD::VSRA";
13722   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13723   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13724   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13725   case X86ISD::CMPP:               return "X86ISD::CMPP";
13726   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13727   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13728   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13729   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13730   case X86ISD::ADD:                return "X86ISD::ADD";
13731   case X86ISD::SUB:                return "X86ISD::SUB";
13732   case X86ISD::ADC:                return "X86ISD::ADC";
13733   case X86ISD::SBB:                return "X86ISD::SBB";
13734   case X86ISD::SMUL:               return "X86ISD::SMUL";
13735   case X86ISD::UMUL:               return "X86ISD::UMUL";
13736   case X86ISD::INC:                return "X86ISD::INC";
13737   case X86ISD::DEC:                return "X86ISD::DEC";
13738   case X86ISD::OR:                 return "X86ISD::OR";
13739   case X86ISD::XOR:                return "X86ISD::XOR";
13740   case X86ISD::AND:                return "X86ISD::AND";
13741   case X86ISD::BLSI:               return "X86ISD::BLSI";
13742   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13743   case X86ISD::BLSR:               return "X86ISD::BLSR";
13744   case X86ISD::BZHI:               return "X86ISD::BZHI";
13745   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13746   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13747   case X86ISD::PTEST:              return "X86ISD::PTEST";
13748   case X86ISD::TESTP:              return "X86ISD::TESTP";
13749   case X86ISD::TESTM:              return "X86ISD::TESTM";
13750   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13751   case X86ISD::KTEST:              return "X86ISD::KTEST";
13752   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13753   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13754   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13755   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13756   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13757   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13758   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13759   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13760   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13761   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13762   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13763   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13764   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13765   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13766   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13767   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13768   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13769   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13770   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13771   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13772   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13773   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13774   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13775   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13776   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13777   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13778   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13779   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13780   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13781   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13782   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13783   case X86ISD::SAHF:               return "X86ISD::SAHF";
13784   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13785   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13786   case X86ISD::FMADD:              return "X86ISD::FMADD";
13787   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13788   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13789   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13790   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13791   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13792   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13793   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13794   case X86ISD::XTEST:              return "X86ISD::XTEST";
13795   }
13796 }
13797
13798 // isLegalAddressingMode - Return true if the addressing mode represented
13799 // by AM is legal for this target, for a load/store of the specified type.
13800 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13801                                               Type *Ty) const {
13802   // X86 supports extremely general addressing modes.
13803   CodeModel::Model M = getTargetMachine().getCodeModel();
13804   Reloc::Model R = getTargetMachine().getRelocationModel();
13805
13806   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13807   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13808     return false;
13809
13810   if (AM.BaseGV) {
13811     unsigned GVFlags =
13812       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13813
13814     // If a reference to this global requires an extra load, we can't fold it.
13815     if (isGlobalStubReference(GVFlags))
13816       return false;
13817
13818     // If BaseGV requires a register for the PIC base, we cannot also have a
13819     // BaseReg specified.
13820     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13821       return false;
13822
13823     // If lower 4G is not available, then we must use rip-relative addressing.
13824     if ((M != CodeModel::Small || R != Reloc::Static) &&
13825         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13826       return false;
13827   }
13828
13829   switch (AM.Scale) {
13830   case 0:
13831   case 1:
13832   case 2:
13833   case 4:
13834   case 8:
13835     // These scales always work.
13836     break;
13837   case 3:
13838   case 5:
13839   case 9:
13840     // These scales are formed with basereg+scalereg.  Only accept if there is
13841     // no basereg yet.
13842     if (AM.HasBaseReg)
13843       return false;
13844     break;
13845   default:  // Other stuff never works.
13846     return false;
13847   }
13848
13849   return true;
13850 }
13851
13852 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13853   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13854     return false;
13855   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13856   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13857   return NumBits1 > NumBits2;
13858 }
13859
13860 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13861   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13862     return false;
13863
13864   if (!isTypeLegal(EVT::getEVT(Ty1)))
13865     return false;
13866
13867   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13868
13869   // Assuming the caller doesn't have a zeroext or signext return parameter,
13870   // truncation all the way down to i1 is valid.
13871   return true;
13872 }
13873
13874 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13875   return isInt<32>(Imm);
13876 }
13877
13878 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13879   // Can also use sub to handle negated immediates.
13880   return isInt<32>(Imm);
13881 }
13882
13883 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13884   if (!VT1.isInteger() || !VT2.isInteger())
13885     return false;
13886   unsigned NumBits1 = VT1.getSizeInBits();
13887   unsigned NumBits2 = VT2.getSizeInBits();
13888   return NumBits1 > NumBits2;
13889 }
13890
13891 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13892   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13893   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13894 }
13895
13896 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13897   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13898   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13899 }
13900
13901 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13902   EVT VT1 = Val.getValueType();
13903   if (isZExtFree(VT1, VT2))
13904     return true;
13905
13906   if (Val.getOpcode() != ISD::LOAD)
13907     return false;
13908
13909   if (!VT1.isSimple() || !VT1.isInteger() ||
13910       !VT2.isSimple() || !VT2.isInteger())
13911     return false;
13912
13913   switch (VT1.getSimpleVT().SimpleTy) {
13914   default: break;
13915   case MVT::i8:
13916   case MVT::i16:
13917   case MVT::i32:
13918     // X86 has 8, 16, and 32-bit zero-extending loads.
13919     return true;
13920   }
13921
13922   return false;
13923 }
13924
13925 bool
13926 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13927   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13928     return false;
13929
13930   VT = VT.getScalarType();
13931
13932   if (!VT.isSimple())
13933     return false;
13934
13935   switch (VT.getSimpleVT().SimpleTy) {
13936   case MVT::f32:
13937   case MVT::f64:
13938     return true;
13939   default:
13940     break;
13941   }
13942
13943   return false;
13944 }
13945
13946 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13947   // i16 instructions are longer (0x66 prefix) and potentially slower.
13948   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13949 }
13950
13951 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13952 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13953 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13954 /// are assumed to be legal.
13955 bool
13956 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13957                                       EVT VT) const {
13958   if (!VT.isSimple())
13959     return false;
13960
13961   MVT SVT = VT.getSimpleVT();
13962
13963   // Very little shuffling can be done for 64-bit vectors right now.
13964   if (VT.getSizeInBits() == 64)
13965     return false;
13966
13967   // FIXME: pshufb, blends, shifts.
13968   return (SVT.getVectorNumElements() == 2 ||
13969           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13970           isMOVLMask(M, SVT) ||
13971           isSHUFPMask(M, SVT) ||
13972           isPSHUFDMask(M, SVT) ||
13973           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13974           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13975           isPALIGNRMask(M, SVT, Subtarget) ||
13976           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13977           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13978           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13979           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13980 }
13981
13982 bool
13983 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13984                                           EVT VT) const {
13985   if (!VT.isSimple())
13986     return false;
13987
13988   MVT SVT = VT.getSimpleVT();
13989   unsigned NumElts = SVT.getVectorNumElements();
13990   // FIXME: This collection of masks seems suspect.
13991   if (NumElts == 2)
13992     return true;
13993   if (NumElts == 4 && SVT.is128BitVector()) {
13994     return (isMOVLMask(Mask, SVT)  ||
13995             isCommutedMOVLMask(Mask, SVT, true) ||
13996             isSHUFPMask(Mask, SVT) ||
13997             isSHUFPMask(Mask, SVT, /* Commuted */ true));
13998   }
13999   return false;
14000 }
14001
14002 //===----------------------------------------------------------------------===//
14003 //                           X86 Scheduler Hooks
14004 //===----------------------------------------------------------------------===//
14005
14006 /// Utility function to emit xbegin specifying the start of an RTM region.
14007 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14008                                      const TargetInstrInfo *TII) {
14009   DebugLoc DL = MI->getDebugLoc();
14010
14011   const BasicBlock *BB = MBB->getBasicBlock();
14012   MachineFunction::iterator I = MBB;
14013   ++I;
14014
14015   // For the v = xbegin(), we generate
14016   //
14017   // thisMBB:
14018   //  xbegin sinkMBB
14019   //
14020   // mainMBB:
14021   //  eax = -1
14022   //
14023   // sinkMBB:
14024   //  v = eax
14025
14026   MachineBasicBlock *thisMBB = MBB;
14027   MachineFunction *MF = MBB->getParent();
14028   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14029   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14030   MF->insert(I, mainMBB);
14031   MF->insert(I, sinkMBB);
14032
14033   // Transfer the remainder of BB and its successor edges to sinkMBB.
14034   sinkMBB->splice(sinkMBB->begin(), MBB,
14035                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14036   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14037
14038   // thisMBB:
14039   //  xbegin sinkMBB
14040   //  # fallthrough to mainMBB
14041   //  # abortion to sinkMBB
14042   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14043   thisMBB->addSuccessor(mainMBB);
14044   thisMBB->addSuccessor(sinkMBB);
14045
14046   // mainMBB:
14047   //  EAX = -1
14048   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14049   mainMBB->addSuccessor(sinkMBB);
14050
14051   // sinkMBB:
14052   // EAX is live into the sinkMBB
14053   sinkMBB->addLiveIn(X86::EAX);
14054   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14055           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14056     .addReg(X86::EAX);
14057
14058   MI->eraseFromParent();
14059   return sinkMBB;
14060 }
14061
14062 // Get CMPXCHG opcode for the specified data type.
14063 static unsigned getCmpXChgOpcode(EVT VT) {
14064   switch (VT.getSimpleVT().SimpleTy) {
14065   case MVT::i8:  return X86::LCMPXCHG8;
14066   case MVT::i16: return X86::LCMPXCHG16;
14067   case MVT::i32: return X86::LCMPXCHG32;
14068   case MVT::i64: return X86::LCMPXCHG64;
14069   default:
14070     break;
14071   }
14072   llvm_unreachable("Invalid operand size!");
14073 }
14074
14075 // Get LOAD opcode for the specified data type.
14076 static unsigned getLoadOpcode(EVT VT) {
14077   switch (VT.getSimpleVT().SimpleTy) {
14078   case MVT::i8:  return X86::MOV8rm;
14079   case MVT::i16: return X86::MOV16rm;
14080   case MVT::i32: return X86::MOV32rm;
14081   case MVT::i64: return X86::MOV64rm;
14082   default:
14083     break;
14084   }
14085   llvm_unreachable("Invalid operand size!");
14086 }
14087
14088 // Get opcode of the non-atomic one from the specified atomic instruction.
14089 static unsigned getNonAtomicOpcode(unsigned Opc) {
14090   switch (Opc) {
14091   case X86::ATOMAND8:  return X86::AND8rr;
14092   case X86::ATOMAND16: return X86::AND16rr;
14093   case X86::ATOMAND32: return X86::AND32rr;
14094   case X86::ATOMAND64: return X86::AND64rr;
14095   case X86::ATOMOR8:   return X86::OR8rr;
14096   case X86::ATOMOR16:  return X86::OR16rr;
14097   case X86::ATOMOR32:  return X86::OR32rr;
14098   case X86::ATOMOR64:  return X86::OR64rr;
14099   case X86::ATOMXOR8:  return X86::XOR8rr;
14100   case X86::ATOMXOR16: return X86::XOR16rr;
14101   case X86::ATOMXOR32: return X86::XOR32rr;
14102   case X86::ATOMXOR64: return X86::XOR64rr;
14103   }
14104   llvm_unreachable("Unhandled atomic-load-op opcode!");
14105 }
14106
14107 // Get opcode of the non-atomic one from the specified atomic instruction with
14108 // extra opcode.
14109 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14110                                                unsigned &ExtraOpc) {
14111   switch (Opc) {
14112   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14113   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14114   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14115   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14116   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14117   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14118   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14119   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14120   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14121   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14122   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14123   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14124   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14125   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14126   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14127   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14128   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14129   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14130   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14131   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14132   }
14133   llvm_unreachable("Unhandled atomic-load-op opcode!");
14134 }
14135
14136 // Get opcode of the non-atomic one from the specified atomic instruction for
14137 // 64-bit data type on 32-bit target.
14138 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14139   switch (Opc) {
14140   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14141   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14142   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14143   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14144   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14145   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14146   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14147   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14148   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14149   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14150   }
14151   llvm_unreachable("Unhandled atomic-load-op opcode!");
14152 }
14153
14154 // Get opcode of the non-atomic one from the specified atomic instruction for
14155 // 64-bit data type on 32-bit target with extra opcode.
14156 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14157                                                    unsigned &HiOpc,
14158                                                    unsigned &ExtraOpc) {
14159   switch (Opc) {
14160   case X86::ATOMNAND6432:
14161     ExtraOpc = X86::NOT32r;
14162     HiOpc = X86::AND32rr;
14163     return X86::AND32rr;
14164   }
14165   llvm_unreachable("Unhandled atomic-load-op opcode!");
14166 }
14167
14168 // Get pseudo CMOV opcode from the specified data type.
14169 static unsigned getPseudoCMOVOpc(EVT VT) {
14170   switch (VT.getSimpleVT().SimpleTy) {
14171   case MVT::i8:  return X86::CMOV_GR8;
14172   case MVT::i16: return X86::CMOV_GR16;
14173   case MVT::i32: return X86::CMOV_GR32;
14174   default:
14175     break;
14176   }
14177   llvm_unreachable("Unknown CMOV opcode!");
14178 }
14179
14180 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14181 // They will be translated into a spin-loop or compare-exchange loop from
14182 //
14183 //    ...
14184 //    dst = atomic-fetch-op MI.addr, MI.val
14185 //    ...
14186 //
14187 // to
14188 //
14189 //    ...
14190 //    t1 = LOAD MI.addr
14191 // loop:
14192 //    t4 = phi(t1, t3 / loop)
14193 //    t2 = OP MI.val, t4
14194 //    EAX = t4
14195 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14196 //    t3 = EAX
14197 //    JNE loop
14198 // sink:
14199 //    dst = t3
14200 //    ...
14201 MachineBasicBlock *
14202 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14203                                        MachineBasicBlock *MBB) const {
14204   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14205   DebugLoc DL = MI->getDebugLoc();
14206
14207   MachineFunction *MF = MBB->getParent();
14208   MachineRegisterInfo &MRI = MF->getRegInfo();
14209
14210   const BasicBlock *BB = MBB->getBasicBlock();
14211   MachineFunction::iterator I = MBB;
14212   ++I;
14213
14214   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14215          "Unexpected number of operands");
14216
14217   assert(MI->hasOneMemOperand() &&
14218          "Expected atomic-load-op to have one memoperand");
14219
14220   // Memory Reference
14221   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14222   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14223
14224   unsigned DstReg, SrcReg;
14225   unsigned MemOpndSlot;
14226
14227   unsigned CurOp = 0;
14228
14229   DstReg = MI->getOperand(CurOp++).getReg();
14230   MemOpndSlot = CurOp;
14231   CurOp += X86::AddrNumOperands;
14232   SrcReg = MI->getOperand(CurOp++).getReg();
14233
14234   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14235   MVT::SimpleValueType VT = *RC->vt_begin();
14236   unsigned t1 = MRI.createVirtualRegister(RC);
14237   unsigned t2 = MRI.createVirtualRegister(RC);
14238   unsigned t3 = MRI.createVirtualRegister(RC);
14239   unsigned t4 = MRI.createVirtualRegister(RC);
14240   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14241
14242   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14243   unsigned LOADOpc = getLoadOpcode(VT);
14244
14245   // For the atomic load-arith operator, we generate
14246   //
14247   //  thisMBB:
14248   //    t1 = LOAD [MI.addr]
14249   //  mainMBB:
14250   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14251   //    t1 = OP MI.val, EAX
14252   //    EAX = t4
14253   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14254   //    t3 = EAX
14255   //    JNE mainMBB
14256   //  sinkMBB:
14257   //    dst = t3
14258
14259   MachineBasicBlock *thisMBB = MBB;
14260   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14261   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14262   MF->insert(I, mainMBB);
14263   MF->insert(I, sinkMBB);
14264
14265   MachineInstrBuilder MIB;
14266
14267   // Transfer the remainder of BB and its successor edges to sinkMBB.
14268   sinkMBB->splice(sinkMBB->begin(), MBB,
14269                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14270   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14271
14272   // thisMBB:
14273   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14274   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14275     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14276     if (NewMO.isReg())
14277       NewMO.setIsKill(false);
14278     MIB.addOperand(NewMO);
14279   }
14280   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14281     unsigned flags = (*MMOI)->getFlags();
14282     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14283     MachineMemOperand *MMO =
14284       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14285                                (*MMOI)->getSize(),
14286                                (*MMOI)->getBaseAlignment(),
14287                                (*MMOI)->getTBAAInfo(),
14288                                (*MMOI)->getRanges());
14289     MIB.addMemOperand(MMO);
14290   }
14291
14292   thisMBB->addSuccessor(mainMBB);
14293
14294   // mainMBB:
14295   MachineBasicBlock *origMainMBB = mainMBB;
14296
14297   // Add a PHI.
14298   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14299                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14300
14301   unsigned Opc = MI->getOpcode();
14302   switch (Opc) {
14303   default:
14304     llvm_unreachable("Unhandled atomic-load-op opcode!");
14305   case X86::ATOMAND8:
14306   case X86::ATOMAND16:
14307   case X86::ATOMAND32:
14308   case X86::ATOMAND64:
14309   case X86::ATOMOR8:
14310   case X86::ATOMOR16:
14311   case X86::ATOMOR32:
14312   case X86::ATOMOR64:
14313   case X86::ATOMXOR8:
14314   case X86::ATOMXOR16:
14315   case X86::ATOMXOR32:
14316   case X86::ATOMXOR64: {
14317     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14318     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14319       .addReg(t4);
14320     break;
14321   }
14322   case X86::ATOMNAND8:
14323   case X86::ATOMNAND16:
14324   case X86::ATOMNAND32:
14325   case X86::ATOMNAND64: {
14326     unsigned Tmp = MRI.createVirtualRegister(RC);
14327     unsigned NOTOpc;
14328     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14329     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14330       .addReg(t4);
14331     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14332     break;
14333   }
14334   case X86::ATOMMAX8:
14335   case X86::ATOMMAX16:
14336   case X86::ATOMMAX32:
14337   case X86::ATOMMAX64:
14338   case X86::ATOMMIN8:
14339   case X86::ATOMMIN16:
14340   case X86::ATOMMIN32:
14341   case X86::ATOMMIN64:
14342   case X86::ATOMUMAX8:
14343   case X86::ATOMUMAX16:
14344   case X86::ATOMUMAX32:
14345   case X86::ATOMUMAX64:
14346   case X86::ATOMUMIN8:
14347   case X86::ATOMUMIN16:
14348   case X86::ATOMUMIN32:
14349   case X86::ATOMUMIN64: {
14350     unsigned CMPOpc;
14351     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14352
14353     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14354       .addReg(SrcReg)
14355       .addReg(t4);
14356
14357     if (Subtarget->hasCMov()) {
14358       if (VT != MVT::i8) {
14359         // Native support
14360         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14361           .addReg(SrcReg)
14362           .addReg(t4);
14363       } else {
14364         // Promote i8 to i32 to use CMOV32
14365         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14366         const TargetRegisterClass *RC32 =
14367           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14368         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14369         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14370         unsigned Tmp = MRI.createVirtualRegister(RC32);
14371
14372         unsigned Undef = MRI.createVirtualRegister(RC32);
14373         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14374
14375         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14376           .addReg(Undef)
14377           .addReg(SrcReg)
14378           .addImm(X86::sub_8bit);
14379         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14380           .addReg(Undef)
14381           .addReg(t4)
14382           .addImm(X86::sub_8bit);
14383
14384         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14385           .addReg(SrcReg32)
14386           .addReg(AccReg32);
14387
14388         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14389           .addReg(Tmp, 0, X86::sub_8bit);
14390       }
14391     } else {
14392       // Use pseudo select and lower them.
14393       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14394              "Invalid atomic-load-op transformation!");
14395       unsigned SelOpc = getPseudoCMOVOpc(VT);
14396       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14397       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14398       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14399               .addReg(SrcReg).addReg(t4)
14400               .addImm(CC);
14401       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14402       // Replace the original PHI node as mainMBB is changed after CMOV
14403       // lowering.
14404       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14405         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14406       Phi->eraseFromParent();
14407     }
14408     break;
14409   }
14410   }
14411
14412   // Copy PhyReg back from virtual register.
14413   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14414     .addReg(t4);
14415
14416   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14417   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14418     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14419     if (NewMO.isReg())
14420       NewMO.setIsKill(false);
14421     MIB.addOperand(NewMO);
14422   }
14423   MIB.addReg(t2);
14424   MIB.setMemRefs(MMOBegin, MMOEnd);
14425
14426   // Copy PhyReg back to virtual register.
14427   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14428     .addReg(PhyReg);
14429
14430   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14431
14432   mainMBB->addSuccessor(origMainMBB);
14433   mainMBB->addSuccessor(sinkMBB);
14434
14435   // sinkMBB:
14436   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14437           TII->get(TargetOpcode::COPY), DstReg)
14438     .addReg(t3);
14439
14440   MI->eraseFromParent();
14441   return sinkMBB;
14442 }
14443
14444 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14445 // instructions. They will be translated into a spin-loop or compare-exchange
14446 // loop from
14447 //
14448 //    ...
14449 //    dst = atomic-fetch-op MI.addr, MI.val
14450 //    ...
14451 //
14452 // to
14453 //
14454 //    ...
14455 //    t1L = LOAD [MI.addr + 0]
14456 //    t1H = LOAD [MI.addr + 4]
14457 // loop:
14458 //    t4L = phi(t1L, t3L / loop)
14459 //    t4H = phi(t1H, t3H / loop)
14460 //    t2L = OP MI.val.lo, t4L
14461 //    t2H = OP MI.val.hi, t4H
14462 //    EAX = t4L
14463 //    EDX = t4H
14464 //    EBX = t2L
14465 //    ECX = t2H
14466 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14467 //    t3L = EAX
14468 //    t3H = EDX
14469 //    JNE loop
14470 // sink:
14471 //    dstL = t3L
14472 //    dstH = t3H
14473 //    ...
14474 MachineBasicBlock *
14475 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14476                                            MachineBasicBlock *MBB) const {
14477   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14478   DebugLoc DL = MI->getDebugLoc();
14479
14480   MachineFunction *MF = MBB->getParent();
14481   MachineRegisterInfo &MRI = MF->getRegInfo();
14482
14483   const BasicBlock *BB = MBB->getBasicBlock();
14484   MachineFunction::iterator I = MBB;
14485   ++I;
14486
14487   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14488          "Unexpected number of operands");
14489
14490   assert(MI->hasOneMemOperand() &&
14491          "Expected atomic-load-op32 to have one memoperand");
14492
14493   // Memory Reference
14494   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14495   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14496
14497   unsigned DstLoReg, DstHiReg;
14498   unsigned SrcLoReg, SrcHiReg;
14499   unsigned MemOpndSlot;
14500
14501   unsigned CurOp = 0;
14502
14503   DstLoReg = MI->getOperand(CurOp++).getReg();
14504   DstHiReg = MI->getOperand(CurOp++).getReg();
14505   MemOpndSlot = CurOp;
14506   CurOp += X86::AddrNumOperands;
14507   SrcLoReg = MI->getOperand(CurOp++).getReg();
14508   SrcHiReg = MI->getOperand(CurOp++).getReg();
14509
14510   const TargetRegisterClass *RC = &X86::GR32RegClass;
14511   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14512
14513   unsigned t1L = MRI.createVirtualRegister(RC);
14514   unsigned t1H = MRI.createVirtualRegister(RC);
14515   unsigned t2L = MRI.createVirtualRegister(RC);
14516   unsigned t2H = MRI.createVirtualRegister(RC);
14517   unsigned t3L = MRI.createVirtualRegister(RC);
14518   unsigned t3H = MRI.createVirtualRegister(RC);
14519   unsigned t4L = MRI.createVirtualRegister(RC);
14520   unsigned t4H = MRI.createVirtualRegister(RC);
14521
14522   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14523   unsigned LOADOpc = X86::MOV32rm;
14524
14525   // For the atomic load-arith operator, we generate
14526   //
14527   //  thisMBB:
14528   //    t1L = LOAD [MI.addr + 0]
14529   //    t1H = LOAD [MI.addr + 4]
14530   //  mainMBB:
14531   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14532   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14533   //    t2L = OP MI.val.lo, t4L
14534   //    t2H = OP MI.val.hi, t4H
14535   //    EBX = t2L
14536   //    ECX = t2H
14537   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14538   //    t3L = EAX
14539   //    t3H = EDX
14540   //    JNE loop
14541   //  sinkMBB:
14542   //    dstL = t3L
14543   //    dstH = t3H
14544
14545   MachineBasicBlock *thisMBB = MBB;
14546   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14547   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14548   MF->insert(I, mainMBB);
14549   MF->insert(I, sinkMBB);
14550
14551   MachineInstrBuilder MIB;
14552
14553   // Transfer the remainder of BB and its successor edges to sinkMBB.
14554   sinkMBB->splice(sinkMBB->begin(), MBB,
14555                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14556   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14557
14558   // thisMBB:
14559   // Lo
14560   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14561   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14562     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14563     if (NewMO.isReg())
14564       NewMO.setIsKill(false);
14565     MIB.addOperand(NewMO);
14566   }
14567   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14568     unsigned flags = (*MMOI)->getFlags();
14569     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14570     MachineMemOperand *MMO =
14571       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14572                                (*MMOI)->getSize(),
14573                                (*MMOI)->getBaseAlignment(),
14574                                (*MMOI)->getTBAAInfo(),
14575                                (*MMOI)->getRanges());
14576     MIB.addMemOperand(MMO);
14577   };
14578   MachineInstr *LowMI = MIB;
14579
14580   // Hi
14581   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14582   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14583     if (i == X86::AddrDisp) {
14584       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14585     } else {
14586       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14587       if (NewMO.isReg())
14588         NewMO.setIsKill(false);
14589       MIB.addOperand(NewMO);
14590     }
14591   }
14592   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14593
14594   thisMBB->addSuccessor(mainMBB);
14595
14596   // mainMBB:
14597   MachineBasicBlock *origMainMBB = mainMBB;
14598
14599   // Add PHIs.
14600   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14601                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14602   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14603                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14604
14605   unsigned Opc = MI->getOpcode();
14606   switch (Opc) {
14607   default:
14608     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14609   case X86::ATOMAND6432:
14610   case X86::ATOMOR6432:
14611   case X86::ATOMXOR6432:
14612   case X86::ATOMADD6432:
14613   case X86::ATOMSUB6432: {
14614     unsigned HiOpc;
14615     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14616     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14617       .addReg(SrcLoReg);
14618     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14619       .addReg(SrcHiReg);
14620     break;
14621   }
14622   case X86::ATOMNAND6432: {
14623     unsigned HiOpc, NOTOpc;
14624     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14625     unsigned TmpL = MRI.createVirtualRegister(RC);
14626     unsigned TmpH = MRI.createVirtualRegister(RC);
14627     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14628       .addReg(t4L);
14629     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14630       .addReg(t4H);
14631     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14632     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14633     break;
14634   }
14635   case X86::ATOMMAX6432:
14636   case X86::ATOMMIN6432:
14637   case X86::ATOMUMAX6432:
14638   case X86::ATOMUMIN6432: {
14639     unsigned HiOpc;
14640     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14641     unsigned cL = MRI.createVirtualRegister(RC8);
14642     unsigned cH = MRI.createVirtualRegister(RC8);
14643     unsigned cL32 = MRI.createVirtualRegister(RC);
14644     unsigned cH32 = MRI.createVirtualRegister(RC);
14645     unsigned cc = MRI.createVirtualRegister(RC);
14646     // cl := cmp src_lo, lo
14647     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14648       .addReg(SrcLoReg).addReg(t4L);
14649     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14650     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14651     // ch := cmp src_hi, hi
14652     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14653       .addReg(SrcHiReg).addReg(t4H);
14654     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14655     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14656     // cc := if (src_hi == hi) ? cl : ch;
14657     if (Subtarget->hasCMov()) {
14658       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14659         .addReg(cH32).addReg(cL32);
14660     } else {
14661       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14662               .addReg(cH32).addReg(cL32)
14663               .addImm(X86::COND_E);
14664       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14665     }
14666     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14667     if (Subtarget->hasCMov()) {
14668       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14669         .addReg(SrcLoReg).addReg(t4L);
14670       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14671         .addReg(SrcHiReg).addReg(t4H);
14672     } else {
14673       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14674               .addReg(SrcLoReg).addReg(t4L)
14675               .addImm(X86::COND_NE);
14676       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14677       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14678       // 2nd CMOV lowering.
14679       mainMBB->addLiveIn(X86::EFLAGS);
14680       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14681               .addReg(SrcHiReg).addReg(t4H)
14682               .addImm(X86::COND_NE);
14683       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14684       // Replace the original PHI node as mainMBB is changed after CMOV
14685       // lowering.
14686       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14687         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14688       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14689         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14690       PhiL->eraseFromParent();
14691       PhiH->eraseFromParent();
14692     }
14693     break;
14694   }
14695   case X86::ATOMSWAP6432: {
14696     unsigned HiOpc;
14697     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14698     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14699     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14700     break;
14701   }
14702   }
14703
14704   // Copy EDX:EAX back from HiReg:LoReg
14705   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14706   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14707   // Copy ECX:EBX from t1H:t1L
14708   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14709   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14710
14711   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14712   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14713     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14714     if (NewMO.isReg())
14715       NewMO.setIsKill(false);
14716     MIB.addOperand(NewMO);
14717   }
14718   MIB.setMemRefs(MMOBegin, MMOEnd);
14719
14720   // Copy EDX:EAX back to t3H:t3L
14721   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14722   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14723
14724   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14725
14726   mainMBB->addSuccessor(origMainMBB);
14727   mainMBB->addSuccessor(sinkMBB);
14728
14729   // sinkMBB:
14730   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14731           TII->get(TargetOpcode::COPY), DstLoReg)
14732     .addReg(t3L);
14733   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14734           TII->get(TargetOpcode::COPY), DstHiReg)
14735     .addReg(t3H);
14736
14737   MI->eraseFromParent();
14738   return sinkMBB;
14739 }
14740
14741 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14742 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14743 // in the .td file.
14744 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14745                                        const TargetInstrInfo *TII) {
14746   unsigned Opc;
14747   switch (MI->getOpcode()) {
14748   default: llvm_unreachable("illegal opcode!");
14749   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14750   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14751   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14752   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14753   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14754   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14755   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14756   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14757   }
14758
14759   DebugLoc dl = MI->getDebugLoc();
14760   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14761
14762   unsigned NumArgs = MI->getNumOperands();
14763   for (unsigned i = 1; i < NumArgs; ++i) {
14764     MachineOperand &Op = MI->getOperand(i);
14765     if (!(Op.isReg() && Op.isImplicit()))
14766       MIB.addOperand(Op);
14767   }
14768   if (MI->hasOneMemOperand())
14769     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14770
14771   BuildMI(*BB, MI, dl,
14772     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14773     .addReg(X86::XMM0);
14774
14775   MI->eraseFromParent();
14776   return BB;
14777 }
14778
14779 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14780 // defs in an instruction pattern
14781 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14782                                        const TargetInstrInfo *TII) {
14783   unsigned Opc;
14784   switch (MI->getOpcode()) {
14785   default: llvm_unreachable("illegal opcode!");
14786   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14787   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14788   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14789   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14790   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14791   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14792   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14793   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14794   }
14795
14796   DebugLoc dl = MI->getDebugLoc();
14797   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14798
14799   unsigned NumArgs = MI->getNumOperands(); // remove the results
14800   for (unsigned i = 1; i < NumArgs; ++i) {
14801     MachineOperand &Op = MI->getOperand(i);
14802     if (!(Op.isReg() && Op.isImplicit()))
14803       MIB.addOperand(Op);
14804   }
14805   if (MI->hasOneMemOperand())
14806     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14807
14808   BuildMI(*BB, MI, dl,
14809     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14810     .addReg(X86::ECX);
14811
14812   MI->eraseFromParent();
14813   return BB;
14814 }
14815
14816 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14817                                        const TargetInstrInfo *TII,
14818                                        const X86Subtarget* Subtarget) {
14819   DebugLoc dl = MI->getDebugLoc();
14820
14821   // Address into RAX/EAX, other two args into ECX, EDX.
14822   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14823   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14824   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14825   for (int i = 0; i < X86::AddrNumOperands; ++i)
14826     MIB.addOperand(MI->getOperand(i));
14827
14828   unsigned ValOps = X86::AddrNumOperands;
14829   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14830     .addReg(MI->getOperand(ValOps).getReg());
14831   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14832     .addReg(MI->getOperand(ValOps+1).getReg());
14833
14834   // The instruction doesn't actually take any operands though.
14835   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14836
14837   MI->eraseFromParent(); // The pseudo is gone now.
14838   return BB;
14839 }
14840
14841 MachineBasicBlock *
14842 X86TargetLowering::EmitVAARG64WithCustomInserter(
14843                    MachineInstr *MI,
14844                    MachineBasicBlock *MBB) const {
14845   // Emit va_arg instruction on X86-64.
14846
14847   // Operands to this pseudo-instruction:
14848   // 0  ) Output        : destination address (reg)
14849   // 1-5) Input         : va_list address (addr, i64mem)
14850   // 6  ) ArgSize       : Size (in bytes) of vararg type
14851   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14852   // 8  ) Align         : Alignment of type
14853   // 9  ) EFLAGS (implicit-def)
14854
14855   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14856   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14857
14858   unsigned DestReg = MI->getOperand(0).getReg();
14859   MachineOperand &Base = MI->getOperand(1);
14860   MachineOperand &Scale = MI->getOperand(2);
14861   MachineOperand &Index = MI->getOperand(3);
14862   MachineOperand &Disp = MI->getOperand(4);
14863   MachineOperand &Segment = MI->getOperand(5);
14864   unsigned ArgSize = MI->getOperand(6).getImm();
14865   unsigned ArgMode = MI->getOperand(7).getImm();
14866   unsigned Align = MI->getOperand(8).getImm();
14867
14868   // Memory Reference
14869   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14870   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14871   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14872
14873   // Machine Information
14874   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14875   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14876   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14877   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14878   DebugLoc DL = MI->getDebugLoc();
14879
14880   // struct va_list {
14881   //   i32   gp_offset
14882   //   i32   fp_offset
14883   //   i64   overflow_area (address)
14884   //   i64   reg_save_area (address)
14885   // }
14886   // sizeof(va_list) = 24
14887   // alignment(va_list) = 8
14888
14889   unsigned TotalNumIntRegs = 6;
14890   unsigned TotalNumXMMRegs = 8;
14891   bool UseGPOffset = (ArgMode == 1);
14892   bool UseFPOffset = (ArgMode == 2);
14893   unsigned MaxOffset = TotalNumIntRegs * 8 +
14894                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14895
14896   /* Align ArgSize to a multiple of 8 */
14897   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14898   bool NeedsAlign = (Align > 8);
14899
14900   MachineBasicBlock *thisMBB = MBB;
14901   MachineBasicBlock *overflowMBB;
14902   MachineBasicBlock *offsetMBB;
14903   MachineBasicBlock *endMBB;
14904
14905   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14906   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14907   unsigned OffsetReg = 0;
14908
14909   if (!UseGPOffset && !UseFPOffset) {
14910     // If we only pull from the overflow region, we don't create a branch.
14911     // We don't need to alter control flow.
14912     OffsetDestReg = 0; // unused
14913     OverflowDestReg = DestReg;
14914
14915     offsetMBB = NULL;
14916     overflowMBB = thisMBB;
14917     endMBB = thisMBB;
14918   } else {
14919     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14920     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14921     // If not, pull from overflow_area. (branch to overflowMBB)
14922     //
14923     //       thisMBB
14924     //         |     .
14925     //         |        .
14926     //     offsetMBB   overflowMBB
14927     //         |        .
14928     //         |     .
14929     //        endMBB
14930
14931     // Registers for the PHI in endMBB
14932     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14933     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14934
14935     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14936     MachineFunction *MF = MBB->getParent();
14937     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14938     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14939     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14940
14941     MachineFunction::iterator MBBIter = MBB;
14942     ++MBBIter;
14943
14944     // Insert the new basic blocks
14945     MF->insert(MBBIter, offsetMBB);
14946     MF->insert(MBBIter, overflowMBB);
14947     MF->insert(MBBIter, endMBB);
14948
14949     // Transfer the remainder of MBB and its successor edges to endMBB.
14950     endMBB->splice(endMBB->begin(), thisMBB,
14951                     llvm::next(MachineBasicBlock::iterator(MI)),
14952                     thisMBB->end());
14953     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14954
14955     // Make offsetMBB and overflowMBB successors of thisMBB
14956     thisMBB->addSuccessor(offsetMBB);
14957     thisMBB->addSuccessor(overflowMBB);
14958
14959     // endMBB is a successor of both offsetMBB and overflowMBB
14960     offsetMBB->addSuccessor(endMBB);
14961     overflowMBB->addSuccessor(endMBB);
14962
14963     // Load the offset value into a register
14964     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14965     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14966       .addOperand(Base)
14967       .addOperand(Scale)
14968       .addOperand(Index)
14969       .addDisp(Disp, UseFPOffset ? 4 : 0)
14970       .addOperand(Segment)
14971       .setMemRefs(MMOBegin, MMOEnd);
14972
14973     // Check if there is enough room left to pull this argument.
14974     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14975       .addReg(OffsetReg)
14976       .addImm(MaxOffset + 8 - ArgSizeA8);
14977
14978     // Branch to "overflowMBB" if offset >= max
14979     // Fall through to "offsetMBB" otherwise
14980     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14981       .addMBB(overflowMBB);
14982   }
14983
14984   // In offsetMBB, emit code to use the reg_save_area.
14985   if (offsetMBB) {
14986     assert(OffsetReg != 0);
14987
14988     // Read the reg_save_area address.
14989     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14990     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14991       .addOperand(Base)
14992       .addOperand(Scale)
14993       .addOperand(Index)
14994       .addDisp(Disp, 16)
14995       .addOperand(Segment)
14996       .setMemRefs(MMOBegin, MMOEnd);
14997
14998     // Zero-extend the offset
14999     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15000       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15001         .addImm(0)
15002         .addReg(OffsetReg)
15003         .addImm(X86::sub_32bit);
15004
15005     // Add the offset to the reg_save_area to get the final address.
15006     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15007       .addReg(OffsetReg64)
15008       .addReg(RegSaveReg);
15009
15010     // Compute the offset for the next argument
15011     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15012     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15013       .addReg(OffsetReg)
15014       .addImm(UseFPOffset ? 16 : 8);
15015
15016     // Store it back into the va_list.
15017     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15018       .addOperand(Base)
15019       .addOperand(Scale)
15020       .addOperand(Index)
15021       .addDisp(Disp, UseFPOffset ? 4 : 0)
15022       .addOperand(Segment)
15023       .addReg(NextOffsetReg)
15024       .setMemRefs(MMOBegin, MMOEnd);
15025
15026     // Jump to endMBB
15027     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15028       .addMBB(endMBB);
15029   }
15030
15031   //
15032   // Emit code to use overflow area
15033   //
15034
15035   // Load the overflow_area address into a register.
15036   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15037   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15038     .addOperand(Base)
15039     .addOperand(Scale)
15040     .addOperand(Index)
15041     .addDisp(Disp, 8)
15042     .addOperand(Segment)
15043     .setMemRefs(MMOBegin, MMOEnd);
15044
15045   // If we need to align it, do so. Otherwise, just copy the address
15046   // to OverflowDestReg.
15047   if (NeedsAlign) {
15048     // Align the overflow address
15049     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15050     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15051
15052     // aligned_addr = (addr + (align-1)) & ~(align-1)
15053     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15054       .addReg(OverflowAddrReg)
15055       .addImm(Align-1);
15056
15057     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15058       .addReg(TmpReg)
15059       .addImm(~(uint64_t)(Align-1));
15060   } else {
15061     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15062       .addReg(OverflowAddrReg);
15063   }
15064
15065   // Compute the next overflow address after this argument.
15066   // (the overflow address should be kept 8-byte aligned)
15067   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15068   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15069     .addReg(OverflowDestReg)
15070     .addImm(ArgSizeA8);
15071
15072   // Store the new overflow address.
15073   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15074     .addOperand(Base)
15075     .addOperand(Scale)
15076     .addOperand(Index)
15077     .addDisp(Disp, 8)
15078     .addOperand(Segment)
15079     .addReg(NextAddrReg)
15080     .setMemRefs(MMOBegin, MMOEnd);
15081
15082   // If we branched, emit the PHI to the front of endMBB.
15083   if (offsetMBB) {
15084     BuildMI(*endMBB, endMBB->begin(), DL,
15085             TII->get(X86::PHI), DestReg)
15086       .addReg(OffsetDestReg).addMBB(offsetMBB)
15087       .addReg(OverflowDestReg).addMBB(overflowMBB);
15088   }
15089
15090   // Erase the pseudo instruction
15091   MI->eraseFromParent();
15092
15093   return endMBB;
15094 }
15095
15096 MachineBasicBlock *
15097 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15098                                                  MachineInstr *MI,
15099                                                  MachineBasicBlock *MBB) const {
15100   // Emit code to save XMM registers to the stack. The ABI says that the
15101   // number of registers to save is given in %al, so it's theoretically
15102   // possible to do an indirect jump trick to avoid saving all of them,
15103   // however this code takes a simpler approach and just executes all
15104   // of the stores if %al is non-zero. It's less code, and it's probably
15105   // easier on the hardware branch predictor, and stores aren't all that
15106   // expensive anyway.
15107
15108   // Create the new basic blocks. One block contains all the XMM stores,
15109   // and one block is the final destination regardless of whether any
15110   // stores were performed.
15111   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15112   MachineFunction *F = MBB->getParent();
15113   MachineFunction::iterator MBBIter = MBB;
15114   ++MBBIter;
15115   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15116   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15117   F->insert(MBBIter, XMMSaveMBB);
15118   F->insert(MBBIter, EndMBB);
15119
15120   // Transfer the remainder of MBB and its successor edges to EndMBB.
15121   EndMBB->splice(EndMBB->begin(), MBB,
15122                  llvm::next(MachineBasicBlock::iterator(MI)),
15123                  MBB->end());
15124   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15125
15126   // The original block will now fall through to the XMM save block.
15127   MBB->addSuccessor(XMMSaveMBB);
15128   // The XMMSaveMBB will fall through to the end block.
15129   XMMSaveMBB->addSuccessor(EndMBB);
15130
15131   // Now add the instructions.
15132   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15133   DebugLoc DL = MI->getDebugLoc();
15134
15135   unsigned CountReg = MI->getOperand(0).getReg();
15136   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15137   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15138
15139   if (!Subtarget->isTargetWin64()) {
15140     // If %al is 0, branch around the XMM save block.
15141     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15142     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15143     MBB->addSuccessor(EndMBB);
15144   }
15145
15146   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15147   // In the XMM save block, save all the XMM argument registers.
15148   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15149     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15150     MachineMemOperand *MMO =
15151       F->getMachineMemOperand(
15152           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15153         MachineMemOperand::MOStore,
15154         /*Size=*/16, /*Align=*/16);
15155     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15156       .addFrameIndex(RegSaveFrameIndex)
15157       .addImm(/*Scale=*/1)
15158       .addReg(/*IndexReg=*/0)
15159       .addImm(/*Disp=*/Offset)
15160       .addReg(/*Segment=*/0)
15161       .addReg(MI->getOperand(i).getReg())
15162       .addMemOperand(MMO);
15163   }
15164
15165   MI->eraseFromParent();   // The pseudo instruction is gone now.
15166
15167   return EndMBB;
15168 }
15169
15170 // The EFLAGS operand of SelectItr might be missing a kill marker
15171 // because there were multiple uses of EFLAGS, and ISel didn't know
15172 // which to mark. Figure out whether SelectItr should have had a
15173 // kill marker, and set it if it should. Returns the correct kill
15174 // marker value.
15175 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15176                                      MachineBasicBlock* BB,
15177                                      const TargetRegisterInfo* TRI) {
15178   // Scan forward through BB for a use/def of EFLAGS.
15179   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15180   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15181     const MachineInstr& mi = *miI;
15182     if (mi.readsRegister(X86::EFLAGS))
15183       return false;
15184     if (mi.definesRegister(X86::EFLAGS))
15185       break; // Should have kill-flag - update below.
15186   }
15187
15188   // If we hit the end of the block, check whether EFLAGS is live into a
15189   // successor.
15190   if (miI == BB->end()) {
15191     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15192                                           sEnd = BB->succ_end();
15193          sItr != sEnd; ++sItr) {
15194       MachineBasicBlock* succ = *sItr;
15195       if (succ->isLiveIn(X86::EFLAGS))
15196         return false;
15197     }
15198   }
15199
15200   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15201   // out. SelectMI should have a kill flag on EFLAGS.
15202   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15203   return true;
15204 }
15205
15206 MachineBasicBlock *
15207 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15208                                      MachineBasicBlock *BB) const {
15209   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15210   DebugLoc DL = MI->getDebugLoc();
15211
15212   // To "insert" a SELECT_CC instruction, we actually have to insert the
15213   // diamond control-flow pattern.  The incoming instruction knows the
15214   // destination vreg to set, the condition code register to branch on, the
15215   // true/false values to select between, and a branch opcode to use.
15216   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15217   MachineFunction::iterator It = BB;
15218   ++It;
15219
15220   //  thisMBB:
15221   //  ...
15222   //   TrueVal = ...
15223   //   cmpTY ccX, r1, r2
15224   //   bCC copy1MBB
15225   //   fallthrough --> copy0MBB
15226   MachineBasicBlock *thisMBB = BB;
15227   MachineFunction *F = BB->getParent();
15228   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15229   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15230   F->insert(It, copy0MBB);
15231   F->insert(It, sinkMBB);
15232
15233   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15234   // live into the sink and copy blocks.
15235   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15236   if (!MI->killsRegister(X86::EFLAGS) &&
15237       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15238     copy0MBB->addLiveIn(X86::EFLAGS);
15239     sinkMBB->addLiveIn(X86::EFLAGS);
15240   }
15241
15242   // Transfer the remainder of BB and its successor edges to sinkMBB.
15243   sinkMBB->splice(sinkMBB->begin(), BB,
15244                   llvm::next(MachineBasicBlock::iterator(MI)),
15245                   BB->end());
15246   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15247
15248   // Add the true and fallthrough blocks as its successors.
15249   BB->addSuccessor(copy0MBB);
15250   BB->addSuccessor(sinkMBB);
15251
15252   // Create the conditional branch instruction.
15253   unsigned Opc =
15254     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15255   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15256
15257   //  copy0MBB:
15258   //   %FalseValue = ...
15259   //   # fallthrough to sinkMBB
15260   copy0MBB->addSuccessor(sinkMBB);
15261
15262   //  sinkMBB:
15263   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15264   //  ...
15265   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15266           TII->get(X86::PHI), MI->getOperand(0).getReg())
15267     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15268     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15269
15270   MI->eraseFromParent();   // The pseudo instruction is gone now.
15271   return sinkMBB;
15272 }
15273
15274 MachineBasicBlock *
15275 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15276                                         bool Is64Bit) const {
15277   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15278   DebugLoc DL = MI->getDebugLoc();
15279   MachineFunction *MF = BB->getParent();
15280   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15281
15282   assert(getTargetMachine().Options.EnableSegmentedStacks);
15283
15284   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15285   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15286
15287   // BB:
15288   //  ... [Till the alloca]
15289   // If stacklet is not large enough, jump to mallocMBB
15290   //
15291   // bumpMBB:
15292   //  Allocate by subtracting from RSP
15293   //  Jump to continueMBB
15294   //
15295   // mallocMBB:
15296   //  Allocate by call to runtime
15297   //
15298   // continueMBB:
15299   //  ...
15300   //  [rest of original BB]
15301   //
15302
15303   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15304   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15305   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15306
15307   MachineRegisterInfo &MRI = MF->getRegInfo();
15308   const TargetRegisterClass *AddrRegClass =
15309     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15310
15311   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15312     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15313     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15314     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15315     sizeVReg = MI->getOperand(1).getReg(),
15316     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15317
15318   MachineFunction::iterator MBBIter = BB;
15319   ++MBBIter;
15320
15321   MF->insert(MBBIter, bumpMBB);
15322   MF->insert(MBBIter, mallocMBB);
15323   MF->insert(MBBIter, continueMBB);
15324
15325   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15326                       (MachineBasicBlock::iterator(MI)), BB->end());
15327   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15328
15329   // Add code to the main basic block to check if the stack limit has been hit,
15330   // and if so, jump to mallocMBB otherwise to bumpMBB.
15331   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15332   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15333     .addReg(tmpSPVReg).addReg(sizeVReg);
15334   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15335     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15336     .addReg(SPLimitVReg);
15337   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15338
15339   // bumpMBB simply decreases the stack pointer, since we know the current
15340   // stacklet has enough space.
15341   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15342     .addReg(SPLimitVReg);
15343   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15344     .addReg(SPLimitVReg);
15345   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15346
15347   // Calls into a routine in libgcc to allocate more space from the heap.
15348   const uint32_t *RegMask =
15349     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15350   if (Is64Bit) {
15351     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15352       .addReg(sizeVReg);
15353     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15354       .addExternalSymbol("__morestack_allocate_stack_space")
15355       .addRegMask(RegMask)
15356       .addReg(X86::RDI, RegState::Implicit)
15357       .addReg(X86::RAX, RegState::ImplicitDefine);
15358   } else {
15359     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15360       .addImm(12);
15361     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15362     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15363       .addExternalSymbol("__morestack_allocate_stack_space")
15364       .addRegMask(RegMask)
15365       .addReg(X86::EAX, RegState::ImplicitDefine);
15366   }
15367
15368   if (!Is64Bit)
15369     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15370       .addImm(16);
15371
15372   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15373     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15374   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15375
15376   // Set up the CFG correctly.
15377   BB->addSuccessor(bumpMBB);
15378   BB->addSuccessor(mallocMBB);
15379   mallocMBB->addSuccessor(continueMBB);
15380   bumpMBB->addSuccessor(continueMBB);
15381
15382   // Take care of the PHI nodes.
15383   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15384           MI->getOperand(0).getReg())
15385     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15386     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15387
15388   // Delete the original pseudo instruction.
15389   MI->eraseFromParent();
15390
15391   // And we're done.
15392   return continueMBB;
15393 }
15394
15395 MachineBasicBlock *
15396 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15397                                           MachineBasicBlock *BB) const {
15398   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15399   DebugLoc DL = MI->getDebugLoc();
15400
15401   assert(!Subtarget->isTargetEnvMacho());
15402
15403   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15404   // non-trivial part is impdef of ESP.
15405
15406   if (Subtarget->isTargetWin64()) {
15407     if (Subtarget->isTargetCygMing()) {
15408       // ___chkstk(Mingw64):
15409       // Clobbers R10, R11, RAX and EFLAGS.
15410       // Updates RSP.
15411       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15412         .addExternalSymbol("___chkstk")
15413         .addReg(X86::RAX, RegState::Implicit)
15414         .addReg(X86::RSP, RegState::Implicit)
15415         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15416         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15417         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15418     } else {
15419       // __chkstk(MSVCRT): does not update stack pointer.
15420       // Clobbers R10, R11 and EFLAGS.
15421       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15422         .addExternalSymbol("__chkstk")
15423         .addReg(X86::RAX, RegState::Implicit)
15424         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15425       // RAX has the offset to be subtracted from RSP.
15426       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15427         .addReg(X86::RSP)
15428         .addReg(X86::RAX);
15429     }
15430   } else {
15431     const char *StackProbeSymbol =
15432       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15433
15434     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15435       .addExternalSymbol(StackProbeSymbol)
15436       .addReg(X86::EAX, RegState::Implicit)
15437       .addReg(X86::ESP, RegState::Implicit)
15438       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15439       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15440       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15441   }
15442
15443   MI->eraseFromParent();   // The pseudo instruction is gone now.
15444   return BB;
15445 }
15446
15447 MachineBasicBlock *
15448 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15449                                       MachineBasicBlock *BB) const {
15450   // This is pretty easy.  We're taking the value that we received from
15451   // our load from the relocation, sticking it in either RDI (x86-64)
15452   // or EAX and doing an indirect call.  The return value will then
15453   // be in the normal return register.
15454   const X86InstrInfo *TII
15455     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15456   DebugLoc DL = MI->getDebugLoc();
15457   MachineFunction *F = BB->getParent();
15458
15459   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15460   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15461
15462   // Get a register mask for the lowered call.
15463   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15464   // proper register mask.
15465   const uint32_t *RegMask =
15466     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15467   if (Subtarget->is64Bit()) {
15468     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15469                                       TII->get(X86::MOV64rm), X86::RDI)
15470     .addReg(X86::RIP)
15471     .addImm(0).addReg(0)
15472     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15473                       MI->getOperand(3).getTargetFlags())
15474     .addReg(0);
15475     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15476     addDirectMem(MIB, X86::RDI);
15477     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15478   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15479     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15480                                       TII->get(X86::MOV32rm), X86::EAX)
15481     .addReg(0)
15482     .addImm(0).addReg(0)
15483     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15484                       MI->getOperand(3).getTargetFlags())
15485     .addReg(0);
15486     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15487     addDirectMem(MIB, X86::EAX);
15488     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15489   } else {
15490     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15491                                       TII->get(X86::MOV32rm), X86::EAX)
15492     .addReg(TII->getGlobalBaseReg(F))
15493     .addImm(0).addReg(0)
15494     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15495                       MI->getOperand(3).getTargetFlags())
15496     .addReg(0);
15497     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15498     addDirectMem(MIB, X86::EAX);
15499     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15500   }
15501
15502   MI->eraseFromParent(); // The pseudo instruction is gone now.
15503   return BB;
15504 }
15505
15506 MachineBasicBlock *
15507 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15508                                     MachineBasicBlock *MBB) const {
15509   DebugLoc DL = MI->getDebugLoc();
15510   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15511
15512   MachineFunction *MF = MBB->getParent();
15513   MachineRegisterInfo &MRI = MF->getRegInfo();
15514
15515   const BasicBlock *BB = MBB->getBasicBlock();
15516   MachineFunction::iterator I = MBB;
15517   ++I;
15518
15519   // Memory Reference
15520   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15521   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15522
15523   unsigned DstReg;
15524   unsigned MemOpndSlot = 0;
15525
15526   unsigned CurOp = 0;
15527
15528   DstReg = MI->getOperand(CurOp++).getReg();
15529   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15530   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15531   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15532   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15533
15534   MemOpndSlot = CurOp;
15535
15536   MVT PVT = getPointerTy();
15537   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15538          "Invalid Pointer Size!");
15539
15540   // For v = setjmp(buf), we generate
15541   //
15542   // thisMBB:
15543   //  buf[LabelOffset] = restoreMBB
15544   //  SjLjSetup restoreMBB
15545   //
15546   // mainMBB:
15547   //  v_main = 0
15548   //
15549   // sinkMBB:
15550   //  v = phi(main, restore)
15551   //
15552   // restoreMBB:
15553   //  v_restore = 1
15554
15555   MachineBasicBlock *thisMBB = MBB;
15556   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15557   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15558   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15559   MF->insert(I, mainMBB);
15560   MF->insert(I, sinkMBB);
15561   MF->push_back(restoreMBB);
15562
15563   MachineInstrBuilder MIB;
15564
15565   // Transfer the remainder of BB and its successor edges to sinkMBB.
15566   sinkMBB->splice(sinkMBB->begin(), MBB,
15567                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15568   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15569
15570   // thisMBB:
15571   unsigned PtrStoreOpc = 0;
15572   unsigned LabelReg = 0;
15573   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15574   Reloc::Model RM = getTargetMachine().getRelocationModel();
15575   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15576                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15577
15578   // Prepare IP either in reg or imm.
15579   if (!UseImmLabel) {
15580     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15581     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15582     LabelReg = MRI.createVirtualRegister(PtrRC);
15583     if (Subtarget->is64Bit()) {
15584       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15585               .addReg(X86::RIP)
15586               .addImm(0)
15587               .addReg(0)
15588               .addMBB(restoreMBB)
15589               .addReg(0);
15590     } else {
15591       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15592       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15593               .addReg(XII->getGlobalBaseReg(MF))
15594               .addImm(0)
15595               .addReg(0)
15596               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15597               .addReg(0);
15598     }
15599   } else
15600     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15601   // Store IP
15602   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15603   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15604     if (i == X86::AddrDisp)
15605       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15606     else
15607       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15608   }
15609   if (!UseImmLabel)
15610     MIB.addReg(LabelReg);
15611   else
15612     MIB.addMBB(restoreMBB);
15613   MIB.setMemRefs(MMOBegin, MMOEnd);
15614   // Setup
15615   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15616           .addMBB(restoreMBB);
15617
15618   const X86RegisterInfo *RegInfo =
15619     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15620   MIB.addRegMask(RegInfo->getNoPreservedMask());
15621   thisMBB->addSuccessor(mainMBB);
15622   thisMBB->addSuccessor(restoreMBB);
15623
15624   // mainMBB:
15625   //  EAX = 0
15626   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15627   mainMBB->addSuccessor(sinkMBB);
15628
15629   // sinkMBB:
15630   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15631           TII->get(X86::PHI), DstReg)
15632     .addReg(mainDstReg).addMBB(mainMBB)
15633     .addReg(restoreDstReg).addMBB(restoreMBB);
15634
15635   // restoreMBB:
15636   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15637   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15638   restoreMBB->addSuccessor(sinkMBB);
15639
15640   MI->eraseFromParent();
15641   return sinkMBB;
15642 }
15643
15644 MachineBasicBlock *
15645 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15646                                      MachineBasicBlock *MBB) const {
15647   DebugLoc DL = MI->getDebugLoc();
15648   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15649
15650   MachineFunction *MF = MBB->getParent();
15651   MachineRegisterInfo &MRI = MF->getRegInfo();
15652
15653   // Memory Reference
15654   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15655   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15656
15657   MVT PVT = getPointerTy();
15658   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15659          "Invalid Pointer Size!");
15660
15661   const TargetRegisterClass *RC =
15662     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15663   unsigned Tmp = MRI.createVirtualRegister(RC);
15664   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15665   const X86RegisterInfo *RegInfo =
15666     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15667   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15668   unsigned SP = RegInfo->getStackRegister();
15669
15670   MachineInstrBuilder MIB;
15671
15672   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15673   const int64_t SPOffset = 2 * PVT.getStoreSize();
15674
15675   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15676   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15677
15678   // Reload FP
15679   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15680   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15681     MIB.addOperand(MI->getOperand(i));
15682   MIB.setMemRefs(MMOBegin, MMOEnd);
15683   // Reload IP
15684   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15685   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15686     if (i == X86::AddrDisp)
15687       MIB.addDisp(MI->getOperand(i), LabelOffset);
15688     else
15689       MIB.addOperand(MI->getOperand(i));
15690   }
15691   MIB.setMemRefs(MMOBegin, MMOEnd);
15692   // Reload SP
15693   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15694   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15695     if (i == X86::AddrDisp)
15696       MIB.addDisp(MI->getOperand(i), SPOffset);
15697     else
15698       MIB.addOperand(MI->getOperand(i));
15699   }
15700   MIB.setMemRefs(MMOBegin, MMOEnd);
15701   // Jump
15702   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15703
15704   MI->eraseFromParent();
15705   return MBB;
15706 }
15707
15708 MachineBasicBlock *
15709 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15710                                                MachineBasicBlock *BB) const {
15711   switch (MI->getOpcode()) {
15712   default: llvm_unreachable("Unexpected instr type to insert");
15713   case X86::TAILJMPd64:
15714   case X86::TAILJMPr64:
15715   case X86::TAILJMPm64:
15716     llvm_unreachable("TAILJMP64 would not be touched here.");
15717   case X86::TCRETURNdi64:
15718   case X86::TCRETURNri64:
15719   case X86::TCRETURNmi64:
15720     return BB;
15721   case X86::WIN_ALLOCA:
15722     return EmitLoweredWinAlloca(MI, BB);
15723   case X86::SEG_ALLOCA_32:
15724     return EmitLoweredSegAlloca(MI, BB, false);
15725   case X86::SEG_ALLOCA_64:
15726     return EmitLoweredSegAlloca(MI, BB, true);
15727   case X86::TLSCall_32:
15728   case X86::TLSCall_64:
15729     return EmitLoweredTLSCall(MI, BB);
15730   case X86::CMOV_GR8:
15731   case X86::CMOV_FR32:
15732   case X86::CMOV_FR64:
15733   case X86::CMOV_V4F32:
15734   case X86::CMOV_V2F64:
15735   case X86::CMOV_V2I64:
15736   case X86::CMOV_V8F32:
15737   case X86::CMOV_V4F64:
15738   case X86::CMOV_V4I64:
15739   case X86::CMOV_GR16:
15740   case X86::CMOV_GR32:
15741   case X86::CMOV_RFP32:
15742   case X86::CMOV_RFP64:
15743   case X86::CMOV_RFP80:
15744     return EmitLoweredSelect(MI, BB);
15745
15746   case X86::FP32_TO_INT16_IN_MEM:
15747   case X86::FP32_TO_INT32_IN_MEM:
15748   case X86::FP32_TO_INT64_IN_MEM:
15749   case X86::FP64_TO_INT16_IN_MEM:
15750   case X86::FP64_TO_INT32_IN_MEM:
15751   case X86::FP64_TO_INT64_IN_MEM:
15752   case X86::FP80_TO_INT16_IN_MEM:
15753   case X86::FP80_TO_INT32_IN_MEM:
15754   case X86::FP80_TO_INT64_IN_MEM: {
15755     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15756     DebugLoc DL = MI->getDebugLoc();
15757
15758     // Change the floating point control register to use "round towards zero"
15759     // mode when truncating to an integer value.
15760     MachineFunction *F = BB->getParent();
15761     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15762     addFrameReference(BuildMI(*BB, MI, DL,
15763                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15764
15765     // Load the old value of the high byte of the control word...
15766     unsigned OldCW =
15767       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15768     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15769                       CWFrameIdx);
15770
15771     // Set the high part to be round to zero...
15772     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15773       .addImm(0xC7F);
15774
15775     // Reload the modified control word now...
15776     addFrameReference(BuildMI(*BB, MI, DL,
15777                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15778
15779     // Restore the memory image of control word to original value
15780     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15781       .addReg(OldCW);
15782
15783     // Get the X86 opcode to use.
15784     unsigned Opc;
15785     switch (MI->getOpcode()) {
15786     default: llvm_unreachable("illegal opcode!");
15787     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15788     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15789     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15790     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15791     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15792     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15793     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15794     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15795     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15796     }
15797
15798     X86AddressMode AM;
15799     MachineOperand &Op = MI->getOperand(0);
15800     if (Op.isReg()) {
15801       AM.BaseType = X86AddressMode::RegBase;
15802       AM.Base.Reg = Op.getReg();
15803     } else {
15804       AM.BaseType = X86AddressMode::FrameIndexBase;
15805       AM.Base.FrameIndex = Op.getIndex();
15806     }
15807     Op = MI->getOperand(1);
15808     if (Op.isImm())
15809       AM.Scale = Op.getImm();
15810     Op = MI->getOperand(2);
15811     if (Op.isImm())
15812       AM.IndexReg = Op.getImm();
15813     Op = MI->getOperand(3);
15814     if (Op.isGlobal()) {
15815       AM.GV = Op.getGlobal();
15816     } else {
15817       AM.Disp = Op.getImm();
15818     }
15819     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15820                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15821
15822     // Reload the original control word now.
15823     addFrameReference(BuildMI(*BB, MI, DL,
15824                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15825
15826     MI->eraseFromParent();   // The pseudo instruction is gone now.
15827     return BB;
15828   }
15829     // String/text processing lowering.
15830   case X86::PCMPISTRM128REG:
15831   case X86::VPCMPISTRM128REG:
15832   case X86::PCMPISTRM128MEM:
15833   case X86::VPCMPISTRM128MEM:
15834   case X86::PCMPESTRM128REG:
15835   case X86::VPCMPESTRM128REG:
15836   case X86::PCMPESTRM128MEM:
15837   case X86::VPCMPESTRM128MEM:
15838     assert(Subtarget->hasSSE42() &&
15839            "Target must have SSE4.2 or AVX features enabled");
15840     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15841
15842   // String/text processing lowering.
15843   case X86::PCMPISTRIREG:
15844   case X86::VPCMPISTRIREG:
15845   case X86::PCMPISTRIMEM:
15846   case X86::VPCMPISTRIMEM:
15847   case X86::PCMPESTRIREG:
15848   case X86::VPCMPESTRIREG:
15849   case X86::PCMPESTRIMEM:
15850   case X86::VPCMPESTRIMEM:
15851     assert(Subtarget->hasSSE42() &&
15852            "Target must have SSE4.2 or AVX features enabled");
15853     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15854
15855   // Thread synchronization.
15856   case X86::MONITOR:
15857     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15858
15859   // xbegin
15860   case X86::XBEGIN:
15861     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15862
15863   // Atomic Lowering.
15864   case X86::ATOMAND8:
15865   case X86::ATOMAND16:
15866   case X86::ATOMAND32:
15867   case X86::ATOMAND64:
15868     // Fall through
15869   case X86::ATOMOR8:
15870   case X86::ATOMOR16:
15871   case X86::ATOMOR32:
15872   case X86::ATOMOR64:
15873     // Fall through
15874   case X86::ATOMXOR16:
15875   case X86::ATOMXOR8:
15876   case X86::ATOMXOR32:
15877   case X86::ATOMXOR64:
15878     // Fall through
15879   case X86::ATOMNAND8:
15880   case X86::ATOMNAND16:
15881   case X86::ATOMNAND32:
15882   case X86::ATOMNAND64:
15883     // Fall through
15884   case X86::ATOMMAX8:
15885   case X86::ATOMMAX16:
15886   case X86::ATOMMAX32:
15887   case X86::ATOMMAX64:
15888     // Fall through
15889   case X86::ATOMMIN8:
15890   case X86::ATOMMIN16:
15891   case X86::ATOMMIN32:
15892   case X86::ATOMMIN64:
15893     // Fall through
15894   case X86::ATOMUMAX8:
15895   case X86::ATOMUMAX16:
15896   case X86::ATOMUMAX32:
15897   case X86::ATOMUMAX64:
15898     // Fall through
15899   case X86::ATOMUMIN8:
15900   case X86::ATOMUMIN16:
15901   case X86::ATOMUMIN32:
15902   case X86::ATOMUMIN64:
15903     return EmitAtomicLoadArith(MI, BB);
15904
15905   // This group does 64-bit operations on a 32-bit host.
15906   case X86::ATOMAND6432:
15907   case X86::ATOMOR6432:
15908   case X86::ATOMXOR6432:
15909   case X86::ATOMNAND6432:
15910   case X86::ATOMADD6432:
15911   case X86::ATOMSUB6432:
15912   case X86::ATOMMAX6432:
15913   case X86::ATOMMIN6432:
15914   case X86::ATOMUMAX6432:
15915   case X86::ATOMUMIN6432:
15916   case X86::ATOMSWAP6432:
15917     return EmitAtomicLoadArith6432(MI, BB);
15918
15919   case X86::VASTART_SAVE_XMM_REGS:
15920     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15921
15922   case X86::VAARG_64:
15923     return EmitVAARG64WithCustomInserter(MI, BB);
15924
15925   case X86::EH_SjLj_SetJmp32:
15926   case X86::EH_SjLj_SetJmp64:
15927     return emitEHSjLjSetJmp(MI, BB);
15928
15929   case X86::EH_SjLj_LongJmp32:
15930   case X86::EH_SjLj_LongJmp64:
15931     return emitEHSjLjLongJmp(MI, BB);
15932   }
15933 }
15934
15935 //===----------------------------------------------------------------------===//
15936 //                           X86 Optimization Hooks
15937 //===----------------------------------------------------------------------===//
15938
15939 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15940                                                        APInt &KnownZero,
15941                                                        APInt &KnownOne,
15942                                                        const SelectionDAG &DAG,
15943                                                        unsigned Depth) const {
15944   unsigned BitWidth = KnownZero.getBitWidth();
15945   unsigned Opc = Op.getOpcode();
15946   assert((Opc >= ISD::BUILTIN_OP_END ||
15947           Opc == ISD::INTRINSIC_WO_CHAIN ||
15948           Opc == ISD::INTRINSIC_W_CHAIN ||
15949           Opc == ISD::INTRINSIC_VOID) &&
15950          "Should use MaskedValueIsZero if you don't know whether Op"
15951          " is a target node!");
15952
15953   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15954   switch (Opc) {
15955   default: break;
15956   case X86ISD::ADD:
15957   case X86ISD::SUB:
15958   case X86ISD::ADC:
15959   case X86ISD::SBB:
15960   case X86ISD::SMUL:
15961   case X86ISD::UMUL:
15962   case X86ISD::INC:
15963   case X86ISD::DEC:
15964   case X86ISD::OR:
15965   case X86ISD::XOR:
15966   case X86ISD::AND:
15967     // These nodes' second result is a boolean.
15968     if (Op.getResNo() == 0)
15969       break;
15970     // Fallthrough
15971   case X86ISD::SETCC:
15972     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15973     break;
15974   case ISD::INTRINSIC_WO_CHAIN: {
15975     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15976     unsigned NumLoBits = 0;
15977     switch (IntId) {
15978     default: break;
15979     case Intrinsic::x86_sse_movmsk_ps:
15980     case Intrinsic::x86_avx_movmsk_ps_256:
15981     case Intrinsic::x86_sse2_movmsk_pd:
15982     case Intrinsic::x86_avx_movmsk_pd_256:
15983     case Intrinsic::x86_mmx_pmovmskb:
15984     case Intrinsic::x86_sse2_pmovmskb_128:
15985     case Intrinsic::x86_avx2_pmovmskb: {
15986       // High bits of movmskp{s|d}, pmovmskb are known zero.
15987       switch (IntId) {
15988         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15989         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
15990         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
15991         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
15992         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
15993         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
15994         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
15995         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
15996       }
15997       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
15998       break;
15999     }
16000     }
16001     break;
16002   }
16003   }
16004 }
16005
16006 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16007                                                          unsigned Depth) const {
16008   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16009   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16010     return Op.getValueType().getScalarType().getSizeInBits();
16011
16012   // Fallback case.
16013   return 1;
16014 }
16015
16016 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16017 /// node is a GlobalAddress + offset.
16018 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16019                                        const GlobalValue* &GA,
16020                                        int64_t &Offset) const {
16021   if (N->getOpcode() == X86ISD::Wrapper) {
16022     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16023       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16024       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16025       return true;
16026     }
16027   }
16028   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16029 }
16030
16031 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16032 /// same as extracting the high 128-bit part of 256-bit vector and then
16033 /// inserting the result into the low part of a new 256-bit vector
16034 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16035   EVT VT = SVOp->getValueType(0);
16036   unsigned NumElems = VT.getVectorNumElements();
16037
16038   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16039   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16040     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16041         SVOp->getMaskElt(j) >= 0)
16042       return false;
16043
16044   return true;
16045 }
16046
16047 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16048 /// same as extracting the low 128-bit part of 256-bit vector and then
16049 /// inserting the result into the high part of a new 256-bit vector
16050 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16051   EVT VT = SVOp->getValueType(0);
16052   unsigned NumElems = VT.getVectorNumElements();
16053
16054   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16055   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16056     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16057         SVOp->getMaskElt(j) >= 0)
16058       return false;
16059
16060   return true;
16061 }
16062
16063 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16064 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16065                                         TargetLowering::DAGCombinerInfo &DCI,
16066                                         const X86Subtarget* Subtarget) {
16067   SDLoc dl(N);
16068   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16069   SDValue V1 = SVOp->getOperand(0);
16070   SDValue V2 = SVOp->getOperand(1);
16071   EVT VT = SVOp->getValueType(0);
16072   unsigned NumElems = VT.getVectorNumElements();
16073
16074   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16075       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16076     //
16077     //                   0,0,0,...
16078     //                      |
16079     //    V      UNDEF    BUILD_VECTOR    UNDEF
16080     //     \      /           \           /
16081     //  CONCAT_VECTOR         CONCAT_VECTOR
16082     //         \                  /
16083     //          \                /
16084     //          RESULT: V + zero extended
16085     //
16086     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16087         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16088         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16089       return SDValue();
16090
16091     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16092       return SDValue();
16093
16094     // To match the shuffle mask, the first half of the mask should
16095     // be exactly the first vector, and all the rest a splat with the
16096     // first element of the second one.
16097     for (unsigned i = 0; i != NumElems/2; ++i)
16098       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16099           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16100         return SDValue();
16101
16102     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16103     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16104       if (Ld->hasNUsesOfValue(1, 0)) {
16105         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16106         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16107         SDValue ResNode =
16108           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16109                                   array_lengthof(Ops),
16110                                   Ld->getMemoryVT(),
16111                                   Ld->getPointerInfo(),
16112                                   Ld->getAlignment(),
16113                                   false/*isVolatile*/, true/*ReadMem*/,
16114                                   false/*WriteMem*/);
16115
16116         // Make sure the newly-created LOAD is in the same position as Ld in
16117         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16118         // and update uses of Ld's output chain to use the TokenFactor.
16119         if (Ld->hasAnyUseOfValue(1)) {
16120           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16121                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16122           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16123           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16124                                  SDValue(ResNode.getNode(), 1));
16125         }
16126
16127         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16128       }
16129     }
16130
16131     // Emit a zeroed vector and insert the desired subvector on its
16132     // first half.
16133     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16134     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16135     return DCI.CombineTo(N, InsV);
16136   }
16137
16138   //===--------------------------------------------------------------------===//
16139   // Combine some shuffles into subvector extracts and inserts:
16140   //
16141
16142   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16143   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16144     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16145     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16146     return DCI.CombineTo(N, InsV);
16147   }
16148
16149   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16150   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16151     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16152     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16153     return DCI.CombineTo(N, InsV);
16154   }
16155
16156   return SDValue();
16157 }
16158
16159 /// PerformShuffleCombine - Performs several different shuffle combines.
16160 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16161                                      TargetLowering::DAGCombinerInfo &DCI,
16162                                      const X86Subtarget *Subtarget) {
16163   SDLoc dl(N);
16164   EVT VT = N->getValueType(0);
16165
16166   // Don't create instructions with illegal types after legalize types has run.
16167   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16168   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16169     return SDValue();
16170
16171   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16172   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16173       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16174     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16175
16176   // Only handle 128 wide vector from here on.
16177   if (!VT.is128BitVector())
16178     return SDValue();
16179
16180   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16181   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16182   // consecutive, non-overlapping, and in the right order.
16183   SmallVector<SDValue, 16> Elts;
16184   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16185     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16186
16187   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
16188 }
16189
16190 /// PerformTruncateCombine - Converts truncate operation to
16191 /// a sequence of vector shuffle operations.
16192 /// It is possible when we truncate 256-bit vector to 128-bit vector
16193 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16194                                       TargetLowering::DAGCombinerInfo &DCI,
16195                                       const X86Subtarget *Subtarget)  {
16196   return SDValue();
16197 }
16198
16199 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16200 /// specific shuffle of a load can be folded into a single element load.
16201 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16202 /// shuffles have been customed lowered so we need to handle those here.
16203 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16204                                          TargetLowering::DAGCombinerInfo &DCI) {
16205   if (DCI.isBeforeLegalizeOps())
16206     return SDValue();
16207
16208   SDValue InVec = N->getOperand(0);
16209   SDValue EltNo = N->getOperand(1);
16210
16211   if (!isa<ConstantSDNode>(EltNo))
16212     return SDValue();
16213
16214   EVT VT = InVec.getValueType();
16215
16216   bool HasShuffleIntoBitcast = false;
16217   if (InVec.getOpcode() == ISD::BITCAST) {
16218     // Don't duplicate a load with other uses.
16219     if (!InVec.hasOneUse())
16220       return SDValue();
16221     EVT BCVT = InVec.getOperand(0).getValueType();
16222     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16223       return SDValue();
16224     InVec = InVec.getOperand(0);
16225     HasShuffleIntoBitcast = true;
16226   }
16227
16228   if (!isTargetShuffle(InVec.getOpcode()))
16229     return SDValue();
16230
16231   // Don't duplicate a load with other uses.
16232   if (!InVec.hasOneUse())
16233     return SDValue();
16234
16235   SmallVector<int, 16> ShuffleMask;
16236   bool UnaryShuffle;
16237   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16238                             UnaryShuffle))
16239     return SDValue();
16240
16241   // Select the input vector, guarding against out of range extract vector.
16242   unsigned NumElems = VT.getVectorNumElements();
16243   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16244   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16245   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16246                                          : InVec.getOperand(1);
16247
16248   // If inputs to shuffle are the same for both ops, then allow 2 uses
16249   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16250
16251   if (LdNode.getOpcode() == ISD::BITCAST) {
16252     // Don't duplicate a load with other uses.
16253     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16254       return SDValue();
16255
16256     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16257     LdNode = LdNode.getOperand(0);
16258   }
16259
16260   if (!ISD::isNormalLoad(LdNode.getNode()))
16261     return SDValue();
16262
16263   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16264
16265   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16266     return SDValue();
16267
16268   if (HasShuffleIntoBitcast) {
16269     // If there's a bitcast before the shuffle, check if the load type and
16270     // alignment is valid.
16271     unsigned Align = LN0->getAlignment();
16272     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16273     unsigned NewAlign = TLI.getDataLayout()->
16274       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16275
16276     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16277       return SDValue();
16278   }
16279
16280   // All checks match so transform back to vector_shuffle so that DAG combiner
16281   // can finish the job
16282   SDLoc dl(N);
16283
16284   // Create shuffle node taking into account the case that its a unary shuffle
16285   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16286   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16287                                  InVec.getOperand(0), Shuffle,
16288                                  &ShuffleMask[0]);
16289   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16290   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16291                      EltNo);
16292 }
16293
16294 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16295 /// generation and convert it from being a bunch of shuffles and extracts
16296 /// to a simple store and scalar loads to extract the elements.
16297 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16298                                          TargetLowering::DAGCombinerInfo &DCI) {
16299   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16300   if (NewOp.getNode())
16301     return NewOp;
16302
16303   SDValue InputVector = N->getOperand(0);
16304   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16305   // from mmx to v2i32 has a single usage.
16306   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16307       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16308       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16309     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16310                        N->getValueType(0),
16311                        InputVector.getNode()->getOperand(0));
16312
16313   // Only operate on vectors of 4 elements, where the alternative shuffling
16314   // gets to be more expensive.
16315   if (InputVector.getValueType() != MVT::v4i32)
16316     return SDValue();
16317
16318   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16319   // single use which is a sign-extend or zero-extend, and all elements are
16320   // used.
16321   SmallVector<SDNode *, 4> Uses;
16322   unsigned ExtractedElements = 0;
16323   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16324        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16325     if (UI.getUse().getResNo() != InputVector.getResNo())
16326       return SDValue();
16327
16328     SDNode *Extract = *UI;
16329     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16330       return SDValue();
16331
16332     if (Extract->getValueType(0) != MVT::i32)
16333       return SDValue();
16334     if (!Extract->hasOneUse())
16335       return SDValue();
16336     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16337         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16338       return SDValue();
16339     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16340       return SDValue();
16341
16342     // Record which element was extracted.
16343     ExtractedElements |=
16344       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16345
16346     Uses.push_back(Extract);
16347   }
16348
16349   // If not all the elements were used, this may not be worthwhile.
16350   if (ExtractedElements != 15)
16351     return SDValue();
16352
16353   // Ok, we've now decided to do the transformation.
16354   SDLoc dl(InputVector);
16355
16356   // Store the value to a temporary stack slot.
16357   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16358   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16359                             MachinePointerInfo(), false, false, 0);
16360
16361   // Replace each use (extract) with a load of the appropriate element.
16362   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16363        UE = Uses.end(); UI != UE; ++UI) {
16364     SDNode *Extract = *UI;
16365
16366     // cOMpute the element's address.
16367     SDValue Idx = Extract->getOperand(1);
16368     unsigned EltSize =
16369         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16370     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16371     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16372     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16373
16374     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16375                                      StackPtr, OffsetVal);
16376
16377     // Load the scalar.
16378     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16379                                      ScalarAddr, MachinePointerInfo(),
16380                                      false, false, false, 0);
16381
16382     // Replace the exact with the load.
16383     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16384   }
16385
16386   // The replacement was made in place; don't return anything.
16387   return SDValue();
16388 }
16389
16390 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16391 static std::pair<unsigned, bool>
16392 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16393                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16394   if (!VT.isVector())
16395     return std::make_pair(0, false);
16396
16397   bool NeedSplit = false;
16398   switch (VT.getSimpleVT().SimpleTy) {
16399   default: return std::make_pair(0, false);
16400   case MVT::v32i8:
16401   case MVT::v16i16:
16402   case MVT::v8i32:
16403     if (!Subtarget->hasAVX2())
16404       NeedSplit = true;
16405     if (!Subtarget->hasAVX())
16406       return std::make_pair(0, false);
16407     break;
16408   case MVT::v16i8:
16409   case MVT::v8i16:
16410   case MVT::v4i32:
16411     if (!Subtarget->hasSSE2())
16412       return std::make_pair(0, false);
16413   }
16414
16415   // SSE2 has only a small subset of the operations.
16416   bool hasUnsigned = Subtarget->hasSSE41() ||
16417                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16418   bool hasSigned = Subtarget->hasSSE41() ||
16419                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16420
16421   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16422
16423   unsigned Opc = 0;
16424   // Check for x CC y ? x : y.
16425   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16426       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16427     switch (CC) {
16428     default: break;
16429     case ISD::SETULT:
16430     case ISD::SETULE:
16431       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16432     case ISD::SETUGT:
16433     case ISD::SETUGE:
16434       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16435     case ISD::SETLT:
16436     case ISD::SETLE:
16437       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16438     case ISD::SETGT:
16439     case ISD::SETGE:
16440       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16441     }
16442   // Check for x CC y ? y : x -- a min/max with reversed arms.
16443   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16444              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16445     switch (CC) {
16446     default: break;
16447     case ISD::SETULT:
16448     case ISD::SETULE:
16449       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16450     case ISD::SETUGT:
16451     case ISD::SETUGE:
16452       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16453     case ISD::SETLT:
16454     case ISD::SETLE:
16455       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16456     case ISD::SETGT:
16457     case ISD::SETGE:
16458       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16459     }
16460   }
16461
16462   return std::make_pair(Opc, NeedSplit);
16463 }
16464
16465 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16466 /// nodes.
16467 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16468                                     TargetLowering::DAGCombinerInfo &DCI,
16469                                     const X86Subtarget *Subtarget) {
16470   SDLoc DL(N);
16471   SDValue Cond = N->getOperand(0);
16472   // Get the LHS/RHS of the select.
16473   SDValue LHS = N->getOperand(1);
16474   SDValue RHS = N->getOperand(2);
16475   EVT VT = LHS.getValueType();
16476   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16477
16478   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16479   // instructions match the semantics of the common C idiom x<y?x:y but not
16480   // x<=y?x:y, because of how they handle negative zero (which can be
16481   // ignored in unsafe-math mode).
16482   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16483       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16484       (Subtarget->hasSSE2() ||
16485        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16486     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16487
16488     unsigned Opcode = 0;
16489     // Check for x CC y ? x : y.
16490     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16491         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16492       switch (CC) {
16493       default: break;
16494       case ISD::SETULT:
16495         // Converting this to a min would handle NaNs incorrectly, and swapping
16496         // the operands would cause it to handle comparisons between positive
16497         // and negative zero incorrectly.
16498         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16499           if (!DAG.getTarget().Options.UnsafeFPMath &&
16500               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16501             break;
16502           std::swap(LHS, RHS);
16503         }
16504         Opcode = X86ISD::FMIN;
16505         break;
16506       case ISD::SETOLE:
16507         // Converting this to a min would handle comparisons between positive
16508         // and negative zero incorrectly.
16509         if (!DAG.getTarget().Options.UnsafeFPMath &&
16510             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16511           break;
16512         Opcode = X86ISD::FMIN;
16513         break;
16514       case ISD::SETULE:
16515         // Converting this to a min would handle both negative zeros and NaNs
16516         // incorrectly, but we can swap the operands to fix both.
16517         std::swap(LHS, RHS);
16518       case ISD::SETOLT:
16519       case ISD::SETLT:
16520       case ISD::SETLE:
16521         Opcode = X86ISD::FMIN;
16522         break;
16523
16524       case ISD::SETOGE:
16525         // Converting this to a max would handle comparisons between positive
16526         // and negative zero incorrectly.
16527         if (!DAG.getTarget().Options.UnsafeFPMath &&
16528             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16529           break;
16530         Opcode = X86ISD::FMAX;
16531         break;
16532       case ISD::SETUGT:
16533         // Converting this to a max would handle NaNs incorrectly, and swapping
16534         // the operands would cause it to handle comparisons between positive
16535         // and negative zero incorrectly.
16536         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16537           if (!DAG.getTarget().Options.UnsafeFPMath &&
16538               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16539             break;
16540           std::swap(LHS, RHS);
16541         }
16542         Opcode = X86ISD::FMAX;
16543         break;
16544       case ISD::SETUGE:
16545         // Converting this to a max would handle both negative zeros and NaNs
16546         // incorrectly, but we can swap the operands to fix both.
16547         std::swap(LHS, RHS);
16548       case ISD::SETOGT:
16549       case ISD::SETGT:
16550       case ISD::SETGE:
16551         Opcode = X86ISD::FMAX;
16552         break;
16553       }
16554     // Check for x CC y ? y : x -- a min/max with reversed arms.
16555     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16556                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16557       switch (CC) {
16558       default: break;
16559       case ISD::SETOGE:
16560         // Converting this to a min would handle comparisons between positive
16561         // and negative zero incorrectly, and swapping the operands would
16562         // cause it to handle NaNs incorrectly.
16563         if (!DAG.getTarget().Options.UnsafeFPMath &&
16564             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16565           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16566             break;
16567           std::swap(LHS, RHS);
16568         }
16569         Opcode = X86ISD::FMIN;
16570         break;
16571       case ISD::SETUGT:
16572         // Converting this to a min would handle NaNs incorrectly.
16573         if (!DAG.getTarget().Options.UnsafeFPMath &&
16574             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16575           break;
16576         Opcode = X86ISD::FMIN;
16577         break;
16578       case ISD::SETUGE:
16579         // Converting this to a min would handle both negative zeros and NaNs
16580         // incorrectly, but we can swap the operands to fix both.
16581         std::swap(LHS, RHS);
16582       case ISD::SETOGT:
16583       case ISD::SETGT:
16584       case ISD::SETGE:
16585         Opcode = X86ISD::FMIN;
16586         break;
16587
16588       case ISD::SETULT:
16589         // Converting this to a max would handle NaNs incorrectly.
16590         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16591           break;
16592         Opcode = X86ISD::FMAX;
16593         break;
16594       case ISD::SETOLE:
16595         // Converting this to a max would handle comparisons between positive
16596         // and negative zero incorrectly, and swapping the operands would
16597         // cause it to handle NaNs incorrectly.
16598         if (!DAG.getTarget().Options.UnsafeFPMath &&
16599             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16600           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16601             break;
16602           std::swap(LHS, RHS);
16603         }
16604         Opcode = X86ISD::FMAX;
16605         break;
16606       case ISD::SETULE:
16607         // Converting this to a max would handle both negative zeros and NaNs
16608         // incorrectly, but we can swap the operands to fix both.
16609         std::swap(LHS, RHS);
16610       case ISD::SETOLT:
16611       case ISD::SETLT:
16612       case ISD::SETLE:
16613         Opcode = X86ISD::FMAX;
16614         break;
16615       }
16616     }
16617
16618     if (Opcode)
16619       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16620   }
16621
16622   if (Subtarget->hasAVX512() && VT.isVector() &&
16623       Cond.getValueType().getVectorElementType() == MVT::i1) {
16624     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16625     // lowering on AVX-512. In this case we convert it to
16626     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16627     // The same situation for all 128 and 256-bit vectors of i8 and i16
16628     EVT OpVT = LHS.getValueType();
16629     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16630         (OpVT.getVectorElementType() == MVT::i8 ||
16631          OpVT.getVectorElementType() == MVT::i16)) {
16632       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16633       DCI.AddToWorklist(Cond.getNode());
16634       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16635     }
16636   }
16637   // If this is a select between two integer constants, try to do some
16638   // optimizations.
16639   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16640     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16641       // Don't do this for crazy integer types.
16642       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16643         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16644         // so that TrueC (the true value) is larger than FalseC.
16645         bool NeedsCondInvert = false;
16646
16647         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16648             // Efficiently invertible.
16649             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16650              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16651               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16652           NeedsCondInvert = true;
16653           std::swap(TrueC, FalseC);
16654         }
16655
16656         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16657         if (FalseC->getAPIntValue() == 0 &&
16658             TrueC->getAPIntValue().isPowerOf2()) {
16659           if (NeedsCondInvert) // Invert the condition if needed.
16660             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16661                                DAG.getConstant(1, Cond.getValueType()));
16662
16663           // Zero extend the condition if needed.
16664           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16665
16666           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16667           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16668                              DAG.getConstant(ShAmt, MVT::i8));
16669         }
16670
16671         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16672         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16673           if (NeedsCondInvert) // Invert the condition if needed.
16674             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16675                                DAG.getConstant(1, Cond.getValueType()));
16676
16677           // Zero extend the condition if needed.
16678           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16679                              FalseC->getValueType(0), Cond);
16680           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16681                              SDValue(FalseC, 0));
16682         }
16683
16684         // Optimize cases that will turn into an LEA instruction.  This requires
16685         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16686         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16687           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16688           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16689
16690           bool isFastMultiplier = false;
16691           if (Diff < 10) {
16692             switch ((unsigned char)Diff) {
16693               default: break;
16694               case 1:  // result = add base, cond
16695               case 2:  // result = lea base(    , cond*2)
16696               case 3:  // result = lea base(cond, cond*2)
16697               case 4:  // result = lea base(    , cond*4)
16698               case 5:  // result = lea base(cond, cond*4)
16699               case 8:  // result = lea base(    , cond*8)
16700               case 9:  // result = lea base(cond, cond*8)
16701                 isFastMultiplier = true;
16702                 break;
16703             }
16704           }
16705
16706           if (isFastMultiplier) {
16707             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16708             if (NeedsCondInvert) // Invert the condition if needed.
16709               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16710                                  DAG.getConstant(1, Cond.getValueType()));
16711
16712             // Zero extend the condition if needed.
16713             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16714                                Cond);
16715             // Scale the condition by the difference.
16716             if (Diff != 1)
16717               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16718                                  DAG.getConstant(Diff, Cond.getValueType()));
16719
16720             // Add the base if non-zero.
16721             if (FalseC->getAPIntValue() != 0)
16722               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16723                                  SDValue(FalseC, 0));
16724             return Cond;
16725           }
16726         }
16727       }
16728   }
16729
16730   // Canonicalize max and min:
16731   // (x > y) ? x : y -> (x >= y) ? x : y
16732   // (x < y) ? x : y -> (x <= y) ? x : y
16733   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16734   // the need for an extra compare
16735   // against zero. e.g.
16736   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16737   // subl   %esi, %edi
16738   // testl  %edi, %edi
16739   // movl   $0, %eax
16740   // cmovgl %edi, %eax
16741   // =>
16742   // xorl   %eax, %eax
16743   // subl   %esi, $edi
16744   // cmovsl %eax, %edi
16745   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16746       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16747       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16748     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16749     switch (CC) {
16750     default: break;
16751     case ISD::SETLT:
16752     case ISD::SETGT: {
16753       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16754       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16755                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16756       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16757     }
16758     }
16759   }
16760
16761   // Early exit check
16762   if (!TLI.isTypeLegal(VT))
16763     return SDValue();
16764
16765   // Match VSELECTs into subs with unsigned saturation.
16766   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16767       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16768       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16769        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16770     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16771
16772     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16773     // left side invert the predicate to simplify logic below.
16774     SDValue Other;
16775     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16776       Other = RHS;
16777       CC = ISD::getSetCCInverse(CC, true);
16778     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16779       Other = LHS;
16780     }
16781
16782     if (Other.getNode() && Other->getNumOperands() == 2 &&
16783         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16784       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16785       SDValue CondRHS = Cond->getOperand(1);
16786
16787       // Look for a general sub with unsigned saturation first.
16788       // x >= y ? x-y : 0 --> subus x, y
16789       // x >  y ? x-y : 0 --> subus x, y
16790       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16791           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16792         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16793
16794       // If the RHS is a constant we have to reverse the const canonicalization.
16795       // x > C-1 ? x+-C : 0 --> subus x, C
16796       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16797           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16798         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16799         if (CondRHS.getConstantOperandVal(0) == -A-1)
16800           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16801                              DAG.getConstant(-A, VT));
16802       }
16803
16804       // Another special case: If C was a sign bit, the sub has been
16805       // canonicalized into a xor.
16806       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16807       //        it's safe to decanonicalize the xor?
16808       // x s< 0 ? x^C : 0 --> subus x, C
16809       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16810           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16811           isSplatVector(OpRHS.getNode())) {
16812         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16813         if (A.isSignBit())
16814           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16815       }
16816     }
16817   }
16818
16819   // Try to match a min/max vector operation.
16820   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
16821     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16822     unsigned Opc = ret.first;
16823     bool NeedSplit = ret.second;
16824
16825     if (Opc && NeedSplit) {
16826       unsigned NumElems = VT.getVectorNumElements();
16827       // Extract the LHS vectors
16828       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16829       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16830
16831       // Extract the RHS vectors
16832       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16833       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16834
16835       // Create min/max for each subvector
16836       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16837       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16838
16839       // Merge the result
16840       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16841     } else if (Opc)
16842       return DAG.getNode(Opc, DL, VT, LHS, RHS);
16843   }
16844
16845   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16846   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16847       // Check if SETCC has already been promoted
16848       TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
16849
16850     assert(Cond.getValueType().isVector() &&
16851            "vector select expects a vector selector!");
16852
16853     EVT IntVT = Cond.getValueType();
16854     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16855     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16856
16857     if (!TValIsAllOnes && !FValIsAllZeros) {
16858       // Try invert the condition if true value is not all 1s and false value
16859       // is not all 0s.
16860       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16861       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16862
16863       if (TValIsAllZeros || FValIsAllOnes) {
16864         SDValue CC = Cond.getOperand(2);
16865         ISD::CondCode NewCC =
16866           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16867                                Cond.getOperand(0).getValueType().isInteger());
16868         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16869         std::swap(LHS, RHS);
16870         TValIsAllOnes = FValIsAllOnes;
16871         FValIsAllZeros = TValIsAllZeros;
16872       }
16873     }
16874
16875     if (TValIsAllOnes || FValIsAllZeros) {
16876       SDValue Ret;
16877
16878       if (TValIsAllOnes && FValIsAllZeros)
16879         Ret = Cond;
16880       else if (TValIsAllOnes)
16881         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16882                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16883       else if (FValIsAllZeros)
16884         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16885                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16886
16887       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16888     }
16889   }
16890
16891   // If we know that this node is legal then we know that it is going to be
16892   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16893   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16894   // to simplify previous instructions.
16895   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16896       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16897     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16898
16899     // Don't optimize vector selects that map to mask-registers.
16900     if (BitWidth == 1)
16901       return SDValue();
16902
16903     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16904     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16905
16906     APInt KnownZero, KnownOne;
16907     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16908                                           DCI.isBeforeLegalizeOps());
16909     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16910         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16911       DCI.CommitTargetLoweringOpt(TLO);
16912   }
16913
16914   return SDValue();
16915 }
16916
16917 // Check whether a boolean test is testing a boolean value generated by
16918 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16919 // code.
16920 //
16921 // Simplify the following patterns:
16922 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16923 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16924 // to (Op EFLAGS Cond)
16925 //
16926 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16927 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16928 // to (Op EFLAGS !Cond)
16929 //
16930 // where Op could be BRCOND or CMOV.
16931 //
16932 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16933   // Quit if not CMP and SUB with its value result used.
16934   if (Cmp.getOpcode() != X86ISD::CMP &&
16935       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16936       return SDValue();
16937
16938   // Quit if not used as a boolean value.
16939   if (CC != X86::COND_E && CC != X86::COND_NE)
16940     return SDValue();
16941
16942   // Check CMP operands. One of them should be 0 or 1 and the other should be
16943   // an SetCC or extended from it.
16944   SDValue Op1 = Cmp.getOperand(0);
16945   SDValue Op2 = Cmp.getOperand(1);
16946
16947   SDValue SetCC;
16948   const ConstantSDNode* C = 0;
16949   bool needOppositeCond = (CC == X86::COND_E);
16950   bool checkAgainstTrue = false; // Is it a comparison against 1?
16951
16952   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16953     SetCC = Op2;
16954   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16955     SetCC = Op1;
16956   else // Quit if all operands are not constants.
16957     return SDValue();
16958
16959   if (C->getZExtValue() == 1) {
16960     needOppositeCond = !needOppositeCond;
16961     checkAgainstTrue = true;
16962   } else if (C->getZExtValue() != 0)
16963     // Quit if the constant is neither 0 or 1.
16964     return SDValue();
16965
16966   bool truncatedToBoolWithAnd = false;
16967   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16968   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16969          SetCC.getOpcode() == ISD::TRUNCATE ||
16970          SetCC.getOpcode() == ISD::AND) {
16971     if (SetCC.getOpcode() == ISD::AND) {
16972       int OpIdx = -1;
16973       ConstantSDNode *CS;
16974       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16975           CS->getZExtValue() == 1)
16976         OpIdx = 1;
16977       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16978           CS->getZExtValue() == 1)
16979         OpIdx = 0;
16980       if (OpIdx == -1)
16981         break;
16982       SetCC = SetCC.getOperand(OpIdx);
16983       truncatedToBoolWithAnd = true;
16984     } else
16985       SetCC = SetCC.getOperand(0);
16986   }
16987
16988   switch (SetCC.getOpcode()) {
16989   case X86ISD::SETCC_CARRY:
16990     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16991     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16992     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16993     // truncated to i1 using 'and'.
16994     if (checkAgainstTrue && !truncatedToBoolWithAnd)
16995       break;
16996     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16997            "Invalid use of SETCC_CARRY!");
16998     // FALL THROUGH
16999   case X86ISD::SETCC:
17000     // Set the condition code or opposite one if necessary.
17001     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17002     if (needOppositeCond)
17003       CC = X86::GetOppositeBranchCondition(CC);
17004     return SetCC.getOperand(1);
17005   case X86ISD::CMOV: {
17006     // Check whether false/true value has canonical one, i.e. 0 or 1.
17007     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17008     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17009     // Quit if true value is not a constant.
17010     if (!TVal)
17011       return SDValue();
17012     // Quit if false value is not a constant.
17013     if (!FVal) {
17014       SDValue Op = SetCC.getOperand(0);
17015       // Skip 'zext' or 'trunc' node.
17016       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17017           Op.getOpcode() == ISD::TRUNCATE)
17018         Op = Op.getOperand(0);
17019       // A special case for rdrand/rdseed, where 0 is set if false cond is
17020       // found.
17021       if ((Op.getOpcode() != X86ISD::RDRAND &&
17022            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17023         return SDValue();
17024     }
17025     // Quit if false value is not the constant 0 or 1.
17026     bool FValIsFalse = true;
17027     if (FVal && FVal->getZExtValue() != 0) {
17028       if (FVal->getZExtValue() != 1)
17029         return SDValue();
17030       // If FVal is 1, opposite cond is needed.
17031       needOppositeCond = !needOppositeCond;
17032       FValIsFalse = false;
17033     }
17034     // Quit if TVal is not the constant opposite of FVal.
17035     if (FValIsFalse && TVal->getZExtValue() != 1)
17036       return SDValue();
17037     if (!FValIsFalse && TVal->getZExtValue() != 0)
17038       return SDValue();
17039     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17040     if (needOppositeCond)
17041       CC = X86::GetOppositeBranchCondition(CC);
17042     return SetCC.getOperand(3);
17043   }
17044   }
17045
17046   return SDValue();
17047 }
17048
17049 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17050 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17051                                   TargetLowering::DAGCombinerInfo &DCI,
17052                                   const X86Subtarget *Subtarget) {
17053   SDLoc DL(N);
17054
17055   // If the flag operand isn't dead, don't touch this CMOV.
17056   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17057     return SDValue();
17058
17059   SDValue FalseOp = N->getOperand(0);
17060   SDValue TrueOp = N->getOperand(1);
17061   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17062   SDValue Cond = N->getOperand(3);
17063
17064   if (CC == X86::COND_E || CC == X86::COND_NE) {
17065     switch (Cond.getOpcode()) {
17066     default: break;
17067     case X86ISD::BSR:
17068     case X86ISD::BSF:
17069       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17070       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17071         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17072     }
17073   }
17074
17075   SDValue Flags;
17076
17077   Flags = checkBoolTestSetCCCombine(Cond, CC);
17078   if (Flags.getNode() &&
17079       // Extra check as FCMOV only supports a subset of X86 cond.
17080       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17081     SDValue Ops[] = { FalseOp, TrueOp,
17082                       DAG.getConstant(CC, MVT::i8), Flags };
17083     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17084                        Ops, array_lengthof(Ops));
17085   }
17086
17087   // If this is a select between two integer constants, try to do some
17088   // optimizations.  Note that the operands are ordered the opposite of SELECT
17089   // operands.
17090   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17091     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17092       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17093       // larger than FalseC (the false value).
17094       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17095         CC = X86::GetOppositeBranchCondition(CC);
17096         std::swap(TrueC, FalseC);
17097         std::swap(TrueOp, FalseOp);
17098       }
17099
17100       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17101       // This is efficient for any integer data type (including i8/i16) and
17102       // shift amount.
17103       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17104         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17105                            DAG.getConstant(CC, MVT::i8), Cond);
17106
17107         // Zero extend the condition if needed.
17108         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17109
17110         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17111         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17112                            DAG.getConstant(ShAmt, MVT::i8));
17113         if (N->getNumValues() == 2)  // Dead flag value?
17114           return DCI.CombineTo(N, Cond, SDValue());
17115         return Cond;
17116       }
17117
17118       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17119       // for any integer data type, including i8/i16.
17120       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17121         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17122                            DAG.getConstant(CC, MVT::i8), Cond);
17123
17124         // Zero extend the condition if needed.
17125         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17126                            FalseC->getValueType(0), Cond);
17127         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17128                            SDValue(FalseC, 0));
17129
17130         if (N->getNumValues() == 2)  // Dead flag value?
17131           return DCI.CombineTo(N, Cond, SDValue());
17132         return Cond;
17133       }
17134
17135       // Optimize cases that will turn into an LEA instruction.  This requires
17136       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17137       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17138         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17139         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17140
17141         bool isFastMultiplier = false;
17142         if (Diff < 10) {
17143           switch ((unsigned char)Diff) {
17144           default: break;
17145           case 1:  // result = add base, cond
17146           case 2:  // result = lea base(    , cond*2)
17147           case 3:  // result = lea base(cond, cond*2)
17148           case 4:  // result = lea base(    , cond*4)
17149           case 5:  // result = lea base(cond, cond*4)
17150           case 8:  // result = lea base(    , cond*8)
17151           case 9:  // result = lea base(cond, cond*8)
17152             isFastMultiplier = true;
17153             break;
17154           }
17155         }
17156
17157         if (isFastMultiplier) {
17158           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17159           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17160                              DAG.getConstant(CC, MVT::i8), Cond);
17161           // Zero extend the condition if needed.
17162           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17163                              Cond);
17164           // Scale the condition by the difference.
17165           if (Diff != 1)
17166             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17167                                DAG.getConstant(Diff, Cond.getValueType()));
17168
17169           // Add the base if non-zero.
17170           if (FalseC->getAPIntValue() != 0)
17171             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17172                                SDValue(FalseC, 0));
17173           if (N->getNumValues() == 2)  // Dead flag value?
17174             return DCI.CombineTo(N, Cond, SDValue());
17175           return Cond;
17176         }
17177       }
17178     }
17179   }
17180
17181   // Handle these cases:
17182   //   (select (x != c), e, c) -> select (x != c), e, x),
17183   //   (select (x == c), c, e) -> select (x == c), x, e)
17184   // where the c is an integer constant, and the "select" is the combination
17185   // of CMOV and CMP.
17186   //
17187   // The rationale for this change is that the conditional-move from a constant
17188   // needs two instructions, however, conditional-move from a register needs
17189   // only one instruction.
17190   //
17191   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17192   //  some instruction-combining opportunities. This opt needs to be
17193   //  postponed as late as possible.
17194   //
17195   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17196     // the DCI.xxxx conditions are provided to postpone the optimization as
17197     // late as possible.
17198
17199     ConstantSDNode *CmpAgainst = 0;
17200     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17201         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17202         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17203
17204       if (CC == X86::COND_NE &&
17205           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17206         CC = X86::GetOppositeBranchCondition(CC);
17207         std::swap(TrueOp, FalseOp);
17208       }
17209
17210       if (CC == X86::COND_E &&
17211           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17212         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17213                           DAG.getConstant(CC, MVT::i8), Cond };
17214         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17215                            array_lengthof(Ops));
17216       }
17217     }
17218   }
17219
17220   return SDValue();
17221 }
17222
17223 /// PerformMulCombine - Optimize a single multiply with constant into two
17224 /// in order to implement it with two cheaper instructions, e.g.
17225 /// LEA + SHL, LEA + LEA.
17226 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17227                                  TargetLowering::DAGCombinerInfo &DCI) {
17228   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17229     return SDValue();
17230
17231   EVT VT = N->getValueType(0);
17232   if (VT != MVT::i64)
17233     return SDValue();
17234
17235   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17236   if (!C)
17237     return SDValue();
17238   uint64_t MulAmt = C->getZExtValue();
17239   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17240     return SDValue();
17241
17242   uint64_t MulAmt1 = 0;
17243   uint64_t MulAmt2 = 0;
17244   if ((MulAmt % 9) == 0) {
17245     MulAmt1 = 9;
17246     MulAmt2 = MulAmt / 9;
17247   } else if ((MulAmt % 5) == 0) {
17248     MulAmt1 = 5;
17249     MulAmt2 = MulAmt / 5;
17250   } else if ((MulAmt % 3) == 0) {
17251     MulAmt1 = 3;
17252     MulAmt2 = MulAmt / 3;
17253   }
17254   if (MulAmt2 &&
17255       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17256     SDLoc DL(N);
17257
17258     if (isPowerOf2_64(MulAmt2) &&
17259         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17260       // If second multiplifer is pow2, issue it first. We want the multiply by
17261       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17262       // is an add.
17263       std::swap(MulAmt1, MulAmt2);
17264
17265     SDValue NewMul;
17266     if (isPowerOf2_64(MulAmt1))
17267       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17268                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17269     else
17270       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17271                            DAG.getConstant(MulAmt1, VT));
17272
17273     if (isPowerOf2_64(MulAmt2))
17274       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17275                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17276     else
17277       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17278                            DAG.getConstant(MulAmt2, VT));
17279
17280     // Do not add new nodes to DAG combiner worklist.
17281     DCI.CombineTo(N, NewMul, false);
17282   }
17283   return SDValue();
17284 }
17285
17286 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17287   SDValue N0 = N->getOperand(0);
17288   SDValue N1 = N->getOperand(1);
17289   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17290   EVT VT = N0.getValueType();
17291
17292   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17293   // since the result of setcc_c is all zero's or all ones.
17294   if (VT.isInteger() && !VT.isVector() &&
17295       N1C && N0.getOpcode() == ISD::AND &&
17296       N0.getOperand(1).getOpcode() == ISD::Constant) {
17297     SDValue N00 = N0.getOperand(0);
17298     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17299         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17300           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17301          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17302       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17303       APInt ShAmt = N1C->getAPIntValue();
17304       Mask = Mask.shl(ShAmt);
17305       if (Mask != 0)
17306         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17307                            N00, DAG.getConstant(Mask, VT));
17308     }
17309   }
17310
17311   // Hardware support for vector shifts is sparse which makes us scalarize the
17312   // vector operations in many cases. Also, on sandybridge ADD is faster than
17313   // shl.
17314   // (shl V, 1) -> add V,V
17315   if (isSplatVector(N1.getNode())) {
17316     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17317     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17318     // We shift all of the values by one. In many cases we do not have
17319     // hardware support for this operation. This is better expressed as an ADD
17320     // of two values.
17321     if (N1C && (1 == N1C->getZExtValue())) {
17322       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17323     }
17324   }
17325
17326   return SDValue();
17327 }
17328
17329 /// \brief Returns a vector of 0s if the node in input is a vector logical
17330 /// shift by a constant amount which is known to be bigger than or equal 
17331 /// to the vector element size in bits.
17332 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17333                                       const X86Subtarget *Subtarget) {
17334   EVT VT = N->getValueType(0);
17335
17336   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17337       (!Subtarget->hasInt256() ||
17338        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17339     return SDValue();
17340
17341   SDValue Amt = N->getOperand(1);
17342   SDLoc DL(N);
17343   if (isSplatVector(Amt.getNode())) {
17344     SDValue SclrAmt = Amt->getOperand(0);
17345     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17346       APInt ShiftAmt = C->getAPIntValue();
17347       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17348
17349       // SSE2/AVX2 logical shifts always return a vector of 0s
17350       // if the shift amount is bigger than or equal to 
17351       // the element size. The constant shift amount will be
17352       // encoded as a 8-bit immediate.
17353       if (ShiftAmt.trunc(8).uge(MaxAmount))
17354         return getZeroVector(VT, Subtarget, DAG, DL);
17355     }
17356   }
17357
17358   return SDValue();
17359 }
17360
17361 /// PerformShiftCombine - Combine shifts.
17362 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17363                                    TargetLowering::DAGCombinerInfo &DCI,
17364                                    const X86Subtarget *Subtarget) {
17365   if (N->getOpcode() == ISD::SHL) {
17366     SDValue V = PerformSHLCombine(N, DAG);
17367     if (V.getNode()) return V;
17368   }
17369
17370   if (N->getOpcode() != ISD::SRA) {
17371     // Try to fold this logical shift into a zero vector.
17372     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17373     if (V.getNode()) return V;
17374   }
17375
17376   return SDValue();
17377 }
17378
17379 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17380 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17381 // and friends.  Likewise for OR -> CMPNEQSS.
17382 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17383                             TargetLowering::DAGCombinerInfo &DCI,
17384                             const X86Subtarget *Subtarget) {
17385   unsigned opcode;
17386
17387   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17388   // we're requiring SSE2 for both.
17389   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17390     SDValue N0 = N->getOperand(0);
17391     SDValue N1 = N->getOperand(1);
17392     SDValue CMP0 = N0->getOperand(1);
17393     SDValue CMP1 = N1->getOperand(1);
17394     SDLoc DL(N);
17395
17396     // The SETCCs should both refer to the same CMP.
17397     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17398       return SDValue();
17399
17400     SDValue CMP00 = CMP0->getOperand(0);
17401     SDValue CMP01 = CMP0->getOperand(1);
17402     EVT     VT    = CMP00.getValueType();
17403
17404     if (VT == MVT::f32 || VT == MVT::f64) {
17405       bool ExpectingFlags = false;
17406       // Check for any users that want flags:
17407       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17408            !ExpectingFlags && UI != UE; ++UI)
17409         switch (UI->getOpcode()) {
17410         default:
17411         case ISD::BR_CC:
17412         case ISD::BRCOND:
17413         case ISD::SELECT:
17414           ExpectingFlags = true;
17415           break;
17416         case ISD::CopyToReg:
17417         case ISD::SIGN_EXTEND:
17418         case ISD::ZERO_EXTEND:
17419         case ISD::ANY_EXTEND:
17420           break;
17421         }
17422
17423       if (!ExpectingFlags) {
17424         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17425         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17426
17427         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17428           X86::CondCode tmp = cc0;
17429           cc0 = cc1;
17430           cc1 = tmp;
17431         }
17432
17433         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17434             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17435           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17436           X86ISD::NodeType NTOperator = is64BitFP ?
17437             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17438           // FIXME: need symbolic constants for these magic numbers.
17439           // See X86ATTInstPrinter.cpp:printSSECC().
17440           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17441           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17442                                               DAG.getConstant(x86cc, MVT::i8));
17443           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17444                                               OnesOrZeroesF);
17445           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17446                                       DAG.getConstant(1, MVT::i32));
17447           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17448           return OneBitOfTruth;
17449         }
17450       }
17451     }
17452   }
17453   return SDValue();
17454 }
17455
17456 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17457 /// so it can be folded inside ANDNP.
17458 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17459   EVT VT = N->getValueType(0);
17460
17461   // Match direct AllOnes for 128 and 256-bit vectors
17462   if (ISD::isBuildVectorAllOnes(N))
17463     return true;
17464
17465   // Look through a bit convert.
17466   if (N->getOpcode() == ISD::BITCAST)
17467     N = N->getOperand(0).getNode();
17468
17469   // Sometimes the operand may come from a insert_subvector building a 256-bit
17470   // allones vector
17471   if (VT.is256BitVector() &&
17472       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17473     SDValue V1 = N->getOperand(0);
17474     SDValue V2 = N->getOperand(1);
17475
17476     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17477         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17478         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17479         ISD::isBuildVectorAllOnes(V2.getNode()))
17480       return true;
17481   }
17482
17483   return false;
17484 }
17485
17486 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17487 // register. In most cases we actually compare or select YMM-sized registers
17488 // and mixing the two types creates horrible code. This method optimizes
17489 // some of the transition sequences.
17490 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17491                                  TargetLowering::DAGCombinerInfo &DCI,
17492                                  const X86Subtarget *Subtarget) {
17493   EVT VT = N->getValueType(0);
17494   if (!VT.is256BitVector())
17495     return SDValue();
17496
17497   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17498           N->getOpcode() == ISD::ZERO_EXTEND ||
17499           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17500
17501   SDValue Narrow = N->getOperand(0);
17502   EVT NarrowVT = Narrow->getValueType(0);
17503   if (!NarrowVT.is128BitVector())
17504     return SDValue();
17505
17506   if (Narrow->getOpcode() != ISD::XOR &&
17507       Narrow->getOpcode() != ISD::AND &&
17508       Narrow->getOpcode() != ISD::OR)
17509     return SDValue();
17510
17511   SDValue N0  = Narrow->getOperand(0);
17512   SDValue N1  = Narrow->getOperand(1);
17513   SDLoc DL(Narrow);
17514
17515   // The Left side has to be a trunc.
17516   if (N0.getOpcode() != ISD::TRUNCATE)
17517     return SDValue();
17518
17519   // The type of the truncated inputs.
17520   EVT WideVT = N0->getOperand(0)->getValueType(0);
17521   if (WideVT != VT)
17522     return SDValue();
17523
17524   // The right side has to be a 'trunc' or a constant vector.
17525   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17526   bool RHSConst = (isSplatVector(N1.getNode()) &&
17527                    isa<ConstantSDNode>(N1->getOperand(0)));
17528   if (!RHSTrunc && !RHSConst)
17529     return SDValue();
17530
17531   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17532
17533   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17534     return SDValue();
17535
17536   // Set N0 and N1 to hold the inputs to the new wide operation.
17537   N0 = N0->getOperand(0);
17538   if (RHSConst) {
17539     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17540                      N1->getOperand(0));
17541     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17542     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17543   } else if (RHSTrunc) {
17544     N1 = N1->getOperand(0);
17545   }
17546
17547   // Generate the wide operation.
17548   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17549   unsigned Opcode = N->getOpcode();
17550   switch (Opcode) {
17551   case ISD::ANY_EXTEND:
17552     return Op;
17553   case ISD::ZERO_EXTEND: {
17554     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17555     APInt Mask = APInt::getAllOnesValue(InBits);
17556     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17557     return DAG.getNode(ISD::AND, DL, VT,
17558                        Op, DAG.getConstant(Mask, VT));
17559   }
17560   case ISD::SIGN_EXTEND:
17561     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17562                        Op, DAG.getValueType(NarrowVT));
17563   default:
17564     llvm_unreachable("Unexpected opcode");
17565   }
17566 }
17567
17568 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17569                                  TargetLowering::DAGCombinerInfo &DCI,
17570                                  const X86Subtarget *Subtarget) {
17571   EVT VT = N->getValueType(0);
17572   if (DCI.isBeforeLegalizeOps())
17573     return SDValue();
17574
17575   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17576   if (R.getNode())
17577     return R;
17578
17579   // Create BLSI, BLSR, and BZHI instructions
17580   // BLSI is X & (-X)
17581   // BLSR is X & (X-1)
17582   // BZHI is X & ((1 << Y) - 1)
17583   // BEXTR is ((X >> imm) & (2**size-1))
17584   if (VT == MVT::i32 || VT == MVT::i64) {
17585     SDValue N0 = N->getOperand(0);
17586     SDValue N1 = N->getOperand(1);
17587     SDLoc DL(N);
17588
17589     if (Subtarget->hasBMI()) {
17590       // Check LHS for neg
17591       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17592           isZero(N0.getOperand(0)))
17593         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17594
17595       // Check RHS for neg
17596       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17597           isZero(N1.getOperand(0)))
17598         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17599
17600       // Check LHS for X-1
17601       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17602           isAllOnes(N0.getOperand(1)))
17603         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17604
17605       // Check RHS for X-1
17606       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17607           isAllOnes(N1.getOperand(1)))
17608         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17609     }
17610
17611     if (Subtarget->hasBMI2()) {
17612       // Check for (and (add (shl 1, Y), -1), X)
17613       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17614         SDValue N00 = N0.getOperand(0);
17615         if (N00.getOpcode() == ISD::SHL) {
17616           SDValue N001 = N00.getOperand(1);
17617           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17618           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17619           if (C && C->getZExtValue() == 1)
17620             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17621         }
17622       }
17623
17624       // Check for (and X, (add (shl 1, Y), -1))
17625       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17626         SDValue N10 = N1.getOperand(0);
17627         if (N10.getOpcode() == ISD::SHL) {
17628           SDValue N101 = N10.getOperand(1);
17629           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17630           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17631           if (C && C->getZExtValue() == 1)
17632             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17633         }
17634       }
17635     }
17636
17637     // Check for BEXTR.
17638     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17639         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17640       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17641       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17642       if (MaskNode && ShiftNode) {
17643         uint64_t Mask = MaskNode->getZExtValue();
17644         uint64_t Shift = ShiftNode->getZExtValue();
17645         if (isMask_64(Mask)) {
17646           uint64_t MaskSize = CountPopulation_64(Mask);
17647           if (Shift + MaskSize <= VT.getSizeInBits())
17648             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17649                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17650         }
17651       }
17652     } // BEXTR
17653
17654     return SDValue();
17655   }
17656
17657   // Want to form ANDNP nodes:
17658   // 1) In the hopes of then easily combining them with OR and AND nodes
17659   //    to form PBLEND/PSIGN.
17660   // 2) To match ANDN packed intrinsics
17661   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17662     return SDValue();
17663
17664   SDValue N0 = N->getOperand(0);
17665   SDValue N1 = N->getOperand(1);
17666   SDLoc DL(N);
17667
17668   // Check LHS for vnot
17669   if (N0.getOpcode() == ISD::XOR &&
17670       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17671       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17672     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17673
17674   // Check RHS for vnot
17675   if (N1.getOpcode() == ISD::XOR &&
17676       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17677       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17678     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17679
17680   return SDValue();
17681 }
17682
17683 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17684                                 TargetLowering::DAGCombinerInfo &DCI,
17685                                 const X86Subtarget *Subtarget) {
17686   EVT VT = N->getValueType(0);
17687   if (DCI.isBeforeLegalizeOps())
17688     return SDValue();
17689
17690   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17691   if (R.getNode())
17692     return R;
17693
17694   SDValue N0 = N->getOperand(0);
17695   SDValue N1 = N->getOperand(1);
17696
17697   // look for psign/blend
17698   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17699     if (!Subtarget->hasSSSE3() ||
17700         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17701       return SDValue();
17702
17703     // Canonicalize pandn to RHS
17704     if (N0.getOpcode() == X86ISD::ANDNP)
17705       std::swap(N0, N1);
17706     // or (and (m, y), (pandn m, x))
17707     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17708       SDValue Mask = N1.getOperand(0);
17709       SDValue X    = N1.getOperand(1);
17710       SDValue Y;
17711       if (N0.getOperand(0) == Mask)
17712         Y = N0.getOperand(1);
17713       if (N0.getOperand(1) == Mask)
17714         Y = N0.getOperand(0);
17715
17716       // Check to see if the mask appeared in both the AND and ANDNP and
17717       if (!Y.getNode())
17718         return SDValue();
17719
17720       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17721       // Look through mask bitcast.
17722       if (Mask.getOpcode() == ISD::BITCAST)
17723         Mask = Mask.getOperand(0);
17724       if (X.getOpcode() == ISD::BITCAST)
17725         X = X.getOperand(0);
17726       if (Y.getOpcode() == ISD::BITCAST)
17727         Y = Y.getOperand(0);
17728
17729       EVT MaskVT = Mask.getValueType();
17730
17731       // Validate that the Mask operand is a vector sra node.
17732       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17733       // there is no psrai.b
17734       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17735       unsigned SraAmt = ~0;
17736       if (Mask.getOpcode() == ISD::SRA) {
17737         SDValue Amt = Mask.getOperand(1);
17738         if (isSplatVector(Amt.getNode())) {
17739           SDValue SclrAmt = Amt->getOperand(0);
17740           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17741             SraAmt = C->getZExtValue();
17742         }
17743       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17744         SDValue SraC = Mask.getOperand(1);
17745         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17746       }
17747       if ((SraAmt + 1) != EltBits)
17748         return SDValue();
17749
17750       SDLoc DL(N);
17751
17752       // Now we know we at least have a plendvb with the mask val.  See if
17753       // we can form a psignb/w/d.
17754       // psign = x.type == y.type == mask.type && y = sub(0, x);
17755       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17756           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17757           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17758         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17759                "Unsupported VT for PSIGN");
17760         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17761         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17762       }
17763       // PBLENDVB only available on SSE 4.1
17764       if (!Subtarget->hasSSE41())
17765         return SDValue();
17766
17767       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17768
17769       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17770       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17771       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17772       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17773       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17774     }
17775   }
17776
17777   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17778     return SDValue();
17779
17780   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17781   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17782     std::swap(N0, N1);
17783   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17784     return SDValue();
17785   if (!N0.hasOneUse() || !N1.hasOneUse())
17786     return SDValue();
17787
17788   SDValue ShAmt0 = N0.getOperand(1);
17789   if (ShAmt0.getValueType() != MVT::i8)
17790     return SDValue();
17791   SDValue ShAmt1 = N1.getOperand(1);
17792   if (ShAmt1.getValueType() != MVT::i8)
17793     return SDValue();
17794   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17795     ShAmt0 = ShAmt0.getOperand(0);
17796   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17797     ShAmt1 = ShAmt1.getOperand(0);
17798
17799   SDLoc DL(N);
17800   unsigned Opc = X86ISD::SHLD;
17801   SDValue Op0 = N0.getOperand(0);
17802   SDValue Op1 = N1.getOperand(0);
17803   if (ShAmt0.getOpcode() == ISD::SUB) {
17804     Opc = X86ISD::SHRD;
17805     std::swap(Op0, Op1);
17806     std::swap(ShAmt0, ShAmt1);
17807   }
17808
17809   unsigned Bits = VT.getSizeInBits();
17810   if (ShAmt1.getOpcode() == ISD::SUB) {
17811     SDValue Sum = ShAmt1.getOperand(0);
17812     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17813       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17814       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17815         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17816       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17817         return DAG.getNode(Opc, DL, VT,
17818                            Op0, Op1,
17819                            DAG.getNode(ISD::TRUNCATE, DL,
17820                                        MVT::i8, ShAmt0));
17821     }
17822   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17823     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17824     if (ShAmt0C &&
17825         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17826       return DAG.getNode(Opc, DL, VT,
17827                          N0.getOperand(0), N1.getOperand(0),
17828                          DAG.getNode(ISD::TRUNCATE, DL,
17829                                        MVT::i8, ShAmt0));
17830   }
17831
17832   return SDValue();
17833 }
17834
17835 // Generate NEG and CMOV for integer abs.
17836 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17837   EVT VT = N->getValueType(0);
17838
17839   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17840   // 8-bit integer abs to NEG and CMOV.
17841   if (VT.isInteger() && VT.getSizeInBits() == 8)
17842     return SDValue();
17843
17844   SDValue N0 = N->getOperand(0);
17845   SDValue N1 = N->getOperand(1);
17846   SDLoc DL(N);
17847
17848   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17849   // and change it to SUB and CMOV.
17850   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17851       N0.getOpcode() == ISD::ADD &&
17852       N0.getOperand(1) == N1 &&
17853       N1.getOpcode() == ISD::SRA &&
17854       N1.getOperand(0) == N0.getOperand(0))
17855     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17856       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17857         // Generate SUB & CMOV.
17858         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17859                                   DAG.getConstant(0, VT), N0.getOperand(0));
17860
17861         SDValue Ops[] = { N0.getOperand(0), Neg,
17862                           DAG.getConstant(X86::COND_GE, MVT::i8),
17863                           SDValue(Neg.getNode(), 1) };
17864         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17865                            Ops, array_lengthof(Ops));
17866       }
17867   return SDValue();
17868 }
17869
17870 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17871 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17872                                  TargetLowering::DAGCombinerInfo &DCI,
17873                                  const X86Subtarget *Subtarget) {
17874   EVT VT = N->getValueType(0);
17875   if (DCI.isBeforeLegalizeOps())
17876     return SDValue();
17877
17878   if (Subtarget->hasCMov()) {
17879     SDValue RV = performIntegerAbsCombine(N, DAG);
17880     if (RV.getNode())
17881       return RV;
17882   }
17883
17884   // Try forming BMI if it is available.
17885   if (!Subtarget->hasBMI())
17886     return SDValue();
17887
17888   if (VT != MVT::i32 && VT != MVT::i64)
17889     return SDValue();
17890
17891   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17892
17893   // Create BLSMSK instructions by finding X ^ (X-1)
17894   SDValue N0 = N->getOperand(0);
17895   SDValue N1 = N->getOperand(1);
17896   SDLoc DL(N);
17897
17898   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17899       isAllOnes(N0.getOperand(1)))
17900     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17901
17902   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17903       isAllOnes(N1.getOperand(1)))
17904     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17905
17906   return SDValue();
17907 }
17908
17909 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17910 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17911                                   TargetLowering::DAGCombinerInfo &DCI,
17912                                   const X86Subtarget *Subtarget) {
17913   LoadSDNode *Ld = cast<LoadSDNode>(N);
17914   EVT RegVT = Ld->getValueType(0);
17915   EVT MemVT = Ld->getMemoryVT();
17916   SDLoc dl(Ld);
17917   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17918   unsigned RegSz = RegVT.getSizeInBits();
17919
17920   // On Sandybridge unaligned 256bit loads are inefficient.
17921   ISD::LoadExtType Ext = Ld->getExtensionType();
17922   unsigned Alignment = Ld->getAlignment();
17923   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17924   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17925       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17926     unsigned NumElems = RegVT.getVectorNumElements();
17927     if (NumElems < 2)
17928       return SDValue();
17929
17930     SDValue Ptr = Ld->getBasePtr();
17931     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17932
17933     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17934                                   NumElems/2);
17935     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17936                                 Ld->getPointerInfo(), Ld->isVolatile(),
17937                                 Ld->isNonTemporal(), Ld->isInvariant(),
17938                                 Alignment);
17939     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17940     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17941                                 Ld->getPointerInfo(), Ld->isVolatile(),
17942                                 Ld->isNonTemporal(), Ld->isInvariant(),
17943                                 std::min(16U, Alignment));
17944     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17945                              Load1.getValue(1),
17946                              Load2.getValue(1));
17947
17948     SDValue NewVec = DAG.getUNDEF(RegVT);
17949     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17950     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17951     return DCI.CombineTo(N, NewVec, TF, true);
17952   }
17953
17954   // If this is a vector EXT Load then attempt to optimize it using a
17955   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17956   // expansion is still better than scalar code.
17957   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17958   // emit a shuffle and a arithmetic shift.
17959   // TODO: It is possible to support ZExt by zeroing the undef values
17960   // during the shuffle phase or after the shuffle.
17961   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17962       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17963     assert(MemVT != RegVT && "Cannot extend to the same type");
17964     assert(MemVT.isVector() && "Must load a vector from memory");
17965
17966     unsigned NumElems = RegVT.getVectorNumElements();
17967     unsigned MemSz = MemVT.getSizeInBits();
17968     assert(RegSz > MemSz && "Register size must be greater than the mem size");
17969
17970     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17971       return SDValue();
17972
17973     // All sizes must be a power of two.
17974     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17975       return SDValue();
17976
17977     // Attempt to load the original value using scalar loads.
17978     // Find the largest scalar type that divides the total loaded size.
17979     MVT SclrLoadTy = MVT::i8;
17980     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17981          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17982       MVT Tp = (MVT::SimpleValueType)tp;
17983       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
17984         SclrLoadTy = Tp;
17985       }
17986     }
17987
17988     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17989     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17990         (64 <= MemSz))
17991       SclrLoadTy = MVT::f64;
17992
17993     // Calculate the number of scalar loads that we need to perform
17994     // in order to load our vector from memory.
17995     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
17996     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17997       return SDValue();
17998
17999     unsigned loadRegZize = RegSz;
18000     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18001       loadRegZize /= 2;
18002
18003     // Represent our vector as a sequence of elements which are the
18004     // largest scalar that we can load.
18005     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18006       loadRegZize/SclrLoadTy.getSizeInBits());
18007
18008     // Represent the data using the same element type that is stored in
18009     // memory. In practice, we ''widen'' MemVT.
18010     EVT WideVecVT =
18011           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18012                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18013
18014     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18015       "Invalid vector type");
18016
18017     // We can't shuffle using an illegal type.
18018     if (!TLI.isTypeLegal(WideVecVT))
18019       return SDValue();
18020
18021     SmallVector<SDValue, 8> Chains;
18022     SDValue Ptr = Ld->getBasePtr();
18023     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18024                                         TLI.getPointerTy());
18025     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18026
18027     for (unsigned i = 0; i < NumLoads; ++i) {
18028       // Perform a single load.
18029       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18030                                        Ptr, Ld->getPointerInfo(),
18031                                        Ld->isVolatile(), Ld->isNonTemporal(),
18032                                        Ld->isInvariant(), Ld->getAlignment());
18033       Chains.push_back(ScalarLoad.getValue(1));
18034       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18035       // another round of DAGCombining.
18036       if (i == 0)
18037         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18038       else
18039         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18040                           ScalarLoad, DAG.getIntPtrConstant(i));
18041
18042       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18043     }
18044
18045     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18046                                Chains.size());
18047
18048     // Bitcast the loaded value to a vector of the original element type, in
18049     // the size of the target vector type.
18050     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18051     unsigned SizeRatio = RegSz/MemSz;
18052
18053     if (Ext == ISD::SEXTLOAD) {
18054       // If we have SSE4.1 we can directly emit a VSEXT node.
18055       if (Subtarget->hasSSE41()) {
18056         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18057         return DCI.CombineTo(N, Sext, TF, true);
18058       }
18059
18060       // Otherwise we'll shuffle the small elements in the high bits of the
18061       // larger type and perform an arithmetic shift. If the shift is not legal
18062       // it's better to scalarize.
18063       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18064         return SDValue();
18065
18066       // Redistribute the loaded elements into the different locations.
18067       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18068       for (unsigned i = 0; i != NumElems; ++i)
18069         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18070
18071       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18072                                            DAG.getUNDEF(WideVecVT),
18073                                            &ShuffleVec[0]);
18074
18075       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18076
18077       // Build the arithmetic shift.
18078       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18079                      MemVT.getVectorElementType().getSizeInBits();
18080       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18081                           DAG.getConstant(Amt, RegVT));
18082
18083       return DCI.CombineTo(N, Shuff, TF, true);
18084     }
18085
18086     // Redistribute the loaded elements into the different locations.
18087     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18088     for (unsigned i = 0; i != NumElems; ++i)
18089       ShuffleVec[i*SizeRatio] = i;
18090
18091     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18092                                          DAG.getUNDEF(WideVecVT),
18093                                          &ShuffleVec[0]);
18094
18095     // Bitcast to the requested type.
18096     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18097     // Replace the original load with the new sequence
18098     // and return the new chain.
18099     return DCI.CombineTo(N, Shuff, TF, true);
18100   }
18101
18102   return SDValue();
18103 }
18104
18105 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18106 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18107                                    const X86Subtarget *Subtarget) {
18108   StoreSDNode *St = cast<StoreSDNode>(N);
18109   EVT VT = St->getValue().getValueType();
18110   EVT StVT = St->getMemoryVT();
18111   SDLoc dl(St);
18112   SDValue StoredVal = St->getOperand(1);
18113   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18114
18115   // If we are saving a concatenation of two XMM registers, perform two stores.
18116   // On Sandy Bridge, 256-bit memory operations are executed by two
18117   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18118   // memory  operation.
18119   unsigned Alignment = St->getAlignment();
18120   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18121   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18122       StVT == VT && !IsAligned) {
18123     unsigned NumElems = VT.getVectorNumElements();
18124     if (NumElems < 2)
18125       return SDValue();
18126
18127     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18128     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18129
18130     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18131     SDValue Ptr0 = St->getBasePtr();
18132     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18133
18134     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18135                                 St->getPointerInfo(), St->isVolatile(),
18136                                 St->isNonTemporal(), Alignment);
18137     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18138                                 St->getPointerInfo(), St->isVolatile(),
18139                                 St->isNonTemporal(),
18140                                 std::min(16U, Alignment));
18141     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18142   }
18143
18144   // Optimize trunc store (of multiple scalars) to shuffle and store.
18145   // First, pack all of the elements in one place. Next, store to memory
18146   // in fewer chunks.
18147   if (St->isTruncatingStore() && VT.isVector()) {
18148     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18149     unsigned NumElems = VT.getVectorNumElements();
18150     assert(StVT != VT && "Cannot truncate to the same type");
18151     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18152     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18153
18154     // From, To sizes and ElemCount must be pow of two
18155     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18156     // We are going to use the original vector elt for storing.
18157     // Accumulated smaller vector elements must be a multiple of the store size.
18158     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18159
18160     unsigned SizeRatio  = FromSz / ToSz;
18161
18162     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18163
18164     // Create a type on which we perform the shuffle
18165     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18166             StVT.getScalarType(), NumElems*SizeRatio);
18167
18168     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18169
18170     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18171     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18172     for (unsigned i = 0; i != NumElems; ++i)
18173       ShuffleVec[i] = i * SizeRatio;
18174
18175     // Can't shuffle using an illegal type.
18176     if (!TLI.isTypeLegal(WideVecVT))
18177       return SDValue();
18178
18179     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18180                                          DAG.getUNDEF(WideVecVT),
18181                                          &ShuffleVec[0]);
18182     // At this point all of the data is stored at the bottom of the
18183     // register. We now need to save it to mem.
18184
18185     // Find the largest store unit
18186     MVT StoreType = MVT::i8;
18187     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18188          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18189       MVT Tp = (MVT::SimpleValueType)tp;
18190       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18191         StoreType = Tp;
18192     }
18193
18194     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18195     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18196         (64 <= NumElems * ToSz))
18197       StoreType = MVT::f64;
18198
18199     // Bitcast the original vector into a vector of store-size units
18200     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18201             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18202     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18203     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18204     SmallVector<SDValue, 8> Chains;
18205     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18206                                         TLI.getPointerTy());
18207     SDValue Ptr = St->getBasePtr();
18208
18209     // Perform one or more big stores into memory.
18210     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18211       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18212                                    StoreType, ShuffWide,
18213                                    DAG.getIntPtrConstant(i));
18214       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18215                                 St->getPointerInfo(), St->isVolatile(),
18216                                 St->isNonTemporal(), St->getAlignment());
18217       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18218       Chains.push_back(Ch);
18219     }
18220
18221     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18222                                Chains.size());
18223   }
18224
18225   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18226   // the FP state in cases where an emms may be missing.
18227   // A preferable solution to the general problem is to figure out the right
18228   // places to insert EMMS.  This qualifies as a quick hack.
18229
18230   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18231   if (VT.getSizeInBits() != 64)
18232     return SDValue();
18233
18234   const Function *F = DAG.getMachineFunction().getFunction();
18235   bool NoImplicitFloatOps = F->getAttributes().
18236     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18237   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18238                      && Subtarget->hasSSE2();
18239   if ((VT.isVector() ||
18240        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18241       isa<LoadSDNode>(St->getValue()) &&
18242       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18243       St->getChain().hasOneUse() && !St->isVolatile()) {
18244     SDNode* LdVal = St->getValue().getNode();
18245     LoadSDNode *Ld = 0;
18246     int TokenFactorIndex = -1;
18247     SmallVector<SDValue, 8> Ops;
18248     SDNode* ChainVal = St->getChain().getNode();
18249     // Must be a store of a load.  We currently handle two cases:  the load
18250     // is a direct child, and it's under an intervening TokenFactor.  It is
18251     // possible to dig deeper under nested TokenFactors.
18252     if (ChainVal == LdVal)
18253       Ld = cast<LoadSDNode>(St->getChain());
18254     else if (St->getValue().hasOneUse() &&
18255              ChainVal->getOpcode() == ISD::TokenFactor) {
18256       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18257         if (ChainVal->getOperand(i).getNode() == LdVal) {
18258           TokenFactorIndex = i;
18259           Ld = cast<LoadSDNode>(St->getValue());
18260         } else
18261           Ops.push_back(ChainVal->getOperand(i));
18262       }
18263     }
18264
18265     if (!Ld || !ISD::isNormalLoad(Ld))
18266       return SDValue();
18267
18268     // If this is not the MMX case, i.e. we are just turning i64 load/store
18269     // into f64 load/store, avoid the transformation if there are multiple
18270     // uses of the loaded value.
18271     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18272       return SDValue();
18273
18274     SDLoc LdDL(Ld);
18275     SDLoc StDL(N);
18276     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18277     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18278     // pair instead.
18279     if (Subtarget->is64Bit() || F64IsLegal) {
18280       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18281       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18282                                   Ld->getPointerInfo(), Ld->isVolatile(),
18283                                   Ld->isNonTemporal(), Ld->isInvariant(),
18284                                   Ld->getAlignment());
18285       SDValue NewChain = NewLd.getValue(1);
18286       if (TokenFactorIndex != -1) {
18287         Ops.push_back(NewChain);
18288         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18289                                Ops.size());
18290       }
18291       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18292                           St->getPointerInfo(),
18293                           St->isVolatile(), St->isNonTemporal(),
18294                           St->getAlignment());
18295     }
18296
18297     // Otherwise, lower to two pairs of 32-bit loads / stores.
18298     SDValue LoAddr = Ld->getBasePtr();
18299     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18300                                  DAG.getConstant(4, MVT::i32));
18301
18302     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18303                                Ld->getPointerInfo(),
18304                                Ld->isVolatile(), Ld->isNonTemporal(),
18305                                Ld->isInvariant(), Ld->getAlignment());
18306     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18307                                Ld->getPointerInfo().getWithOffset(4),
18308                                Ld->isVolatile(), Ld->isNonTemporal(),
18309                                Ld->isInvariant(),
18310                                MinAlign(Ld->getAlignment(), 4));
18311
18312     SDValue NewChain = LoLd.getValue(1);
18313     if (TokenFactorIndex != -1) {
18314       Ops.push_back(LoLd);
18315       Ops.push_back(HiLd);
18316       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18317                              Ops.size());
18318     }
18319
18320     LoAddr = St->getBasePtr();
18321     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18322                          DAG.getConstant(4, MVT::i32));
18323
18324     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18325                                 St->getPointerInfo(),
18326                                 St->isVolatile(), St->isNonTemporal(),
18327                                 St->getAlignment());
18328     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18329                                 St->getPointerInfo().getWithOffset(4),
18330                                 St->isVolatile(),
18331                                 St->isNonTemporal(),
18332                                 MinAlign(St->getAlignment(), 4));
18333     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18334   }
18335   return SDValue();
18336 }
18337
18338 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18339 /// and return the operands for the horizontal operation in LHS and RHS.  A
18340 /// horizontal operation performs the binary operation on successive elements
18341 /// of its first operand, then on successive elements of its second operand,
18342 /// returning the resulting values in a vector.  For example, if
18343 ///   A = < float a0, float a1, float a2, float a3 >
18344 /// and
18345 ///   B = < float b0, float b1, float b2, float b3 >
18346 /// then the result of doing a horizontal operation on A and B is
18347 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18348 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18349 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18350 /// set to A, RHS to B, and the routine returns 'true'.
18351 /// Note that the binary operation should have the property that if one of the
18352 /// operands is UNDEF then the result is UNDEF.
18353 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18354   // Look for the following pattern: if
18355   //   A = < float a0, float a1, float a2, float a3 >
18356   //   B = < float b0, float b1, float b2, float b3 >
18357   // and
18358   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18359   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18360   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18361   // which is A horizontal-op B.
18362
18363   // At least one of the operands should be a vector shuffle.
18364   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18365       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18366     return false;
18367
18368   MVT VT = LHS.getSimpleValueType();
18369
18370   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18371          "Unsupported vector type for horizontal add/sub");
18372
18373   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18374   // operate independently on 128-bit lanes.
18375   unsigned NumElts = VT.getVectorNumElements();
18376   unsigned NumLanes = VT.getSizeInBits()/128;
18377   unsigned NumLaneElts = NumElts / NumLanes;
18378   assert((NumLaneElts % 2 == 0) &&
18379          "Vector type should have an even number of elements in each lane");
18380   unsigned HalfLaneElts = NumLaneElts/2;
18381
18382   // View LHS in the form
18383   //   LHS = VECTOR_SHUFFLE A, B, LMask
18384   // If LHS is not a shuffle then pretend it is the shuffle
18385   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18386   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18387   // type VT.
18388   SDValue A, B;
18389   SmallVector<int, 16> LMask(NumElts);
18390   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18391     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18392       A = LHS.getOperand(0);
18393     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18394       B = LHS.getOperand(1);
18395     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18396     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18397   } else {
18398     if (LHS.getOpcode() != ISD::UNDEF)
18399       A = LHS;
18400     for (unsigned i = 0; i != NumElts; ++i)
18401       LMask[i] = i;
18402   }
18403
18404   // Likewise, view RHS in the form
18405   //   RHS = VECTOR_SHUFFLE C, D, RMask
18406   SDValue C, D;
18407   SmallVector<int, 16> RMask(NumElts);
18408   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18409     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18410       C = RHS.getOperand(0);
18411     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18412       D = RHS.getOperand(1);
18413     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18414     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18415   } else {
18416     if (RHS.getOpcode() != ISD::UNDEF)
18417       C = RHS;
18418     for (unsigned i = 0; i != NumElts; ++i)
18419       RMask[i] = i;
18420   }
18421
18422   // Check that the shuffles are both shuffling the same vectors.
18423   if (!(A == C && B == D) && !(A == D && B == C))
18424     return false;
18425
18426   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18427   if (!A.getNode() && !B.getNode())
18428     return false;
18429
18430   // If A and B occur in reverse order in RHS, then "swap" them (which means
18431   // rewriting the mask).
18432   if (A != C)
18433     CommuteVectorShuffleMask(RMask, NumElts);
18434
18435   // At this point LHS and RHS are equivalent to
18436   //   LHS = VECTOR_SHUFFLE A, B, LMask
18437   //   RHS = VECTOR_SHUFFLE A, B, RMask
18438   // Check that the masks correspond to performing a horizontal operation.
18439   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18440     for (unsigned i = 0; i != NumLaneElts; ++i) {
18441       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18442
18443       // Ignore any UNDEF components.
18444       if (LIdx < 0 || RIdx < 0 ||
18445           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18446           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18447         continue;
18448
18449       // Check that successive elements are being operated on.  If not, this is
18450       // not a horizontal operation.
18451       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18452       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18453       if (!(LIdx == Index && RIdx == Index + 1) &&
18454           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18455         return false;
18456     }
18457   }
18458
18459   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18460   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18461   return true;
18462 }
18463
18464 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18465 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18466                                   const X86Subtarget *Subtarget) {
18467   EVT VT = N->getValueType(0);
18468   SDValue LHS = N->getOperand(0);
18469   SDValue RHS = N->getOperand(1);
18470
18471   // Try to synthesize horizontal adds from adds of shuffles.
18472   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18473        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18474       isHorizontalBinOp(LHS, RHS, true))
18475     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18476   return SDValue();
18477 }
18478
18479 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18480 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18481                                   const X86Subtarget *Subtarget) {
18482   EVT VT = N->getValueType(0);
18483   SDValue LHS = N->getOperand(0);
18484   SDValue RHS = N->getOperand(1);
18485
18486   // Try to synthesize horizontal subs from subs of shuffles.
18487   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18488        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18489       isHorizontalBinOp(LHS, RHS, false))
18490     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18491   return SDValue();
18492 }
18493
18494 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18495 /// X86ISD::FXOR nodes.
18496 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18497   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18498   // F[X]OR(0.0, x) -> x
18499   // F[X]OR(x, 0.0) -> x
18500   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18501     if (C->getValueAPF().isPosZero())
18502       return N->getOperand(1);
18503   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18504     if (C->getValueAPF().isPosZero())
18505       return N->getOperand(0);
18506   return SDValue();
18507 }
18508
18509 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18510 /// X86ISD::FMAX nodes.
18511 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18512   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18513
18514   // Only perform optimizations if UnsafeMath is used.
18515   if (!DAG.getTarget().Options.UnsafeFPMath)
18516     return SDValue();
18517
18518   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18519   // into FMINC and FMAXC, which are Commutative operations.
18520   unsigned NewOp = 0;
18521   switch (N->getOpcode()) {
18522     default: llvm_unreachable("unknown opcode");
18523     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18524     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18525   }
18526
18527   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18528                      N->getOperand(0), N->getOperand(1));
18529 }
18530
18531 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18532 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18533   // FAND(0.0, x) -> 0.0
18534   // FAND(x, 0.0) -> 0.0
18535   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18536     if (C->getValueAPF().isPosZero())
18537       return N->getOperand(0);
18538   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18539     if (C->getValueAPF().isPosZero())
18540       return N->getOperand(1);
18541   return SDValue();
18542 }
18543
18544 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18545 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18546   // FANDN(x, 0.0) -> 0.0
18547   // FANDN(0.0, x) -> x
18548   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18549     if (C->getValueAPF().isPosZero())
18550       return N->getOperand(1);
18551   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18552     if (C->getValueAPF().isPosZero())
18553       return N->getOperand(1);
18554   return SDValue();
18555 }
18556
18557 static SDValue PerformBTCombine(SDNode *N,
18558                                 SelectionDAG &DAG,
18559                                 TargetLowering::DAGCombinerInfo &DCI) {
18560   // BT ignores high bits in the bit index operand.
18561   SDValue Op1 = N->getOperand(1);
18562   if (Op1.hasOneUse()) {
18563     unsigned BitWidth = Op1.getValueSizeInBits();
18564     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18565     APInt KnownZero, KnownOne;
18566     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18567                                           !DCI.isBeforeLegalizeOps());
18568     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18569     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18570         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18571       DCI.CommitTargetLoweringOpt(TLO);
18572   }
18573   return SDValue();
18574 }
18575
18576 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18577   SDValue Op = N->getOperand(0);
18578   if (Op.getOpcode() == ISD::BITCAST)
18579     Op = Op.getOperand(0);
18580   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18581   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18582       VT.getVectorElementType().getSizeInBits() ==
18583       OpVT.getVectorElementType().getSizeInBits()) {
18584     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18585   }
18586   return SDValue();
18587 }
18588
18589 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18590                                                const X86Subtarget *Subtarget) {
18591   EVT VT = N->getValueType(0);
18592   if (!VT.isVector())
18593     return SDValue();
18594
18595   SDValue N0 = N->getOperand(0);
18596   SDValue N1 = N->getOperand(1);
18597   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18598   SDLoc dl(N);
18599
18600   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18601   // both SSE and AVX2 since there is no sign-extended shift right
18602   // operation on a vector with 64-bit elements.
18603   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18604   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18605   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18606       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18607     SDValue N00 = N0.getOperand(0);
18608
18609     // EXTLOAD has a better solution on AVX2,
18610     // it may be replaced with X86ISD::VSEXT node.
18611     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18612       if (!ISD::isNormalLoad(N00.getNode()))
18613         return SDValue();
18614
18615     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18616         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18617                                   N00, N1);
18618       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18619     }
18620   }
18621   return SDValue();
18622 }
18623
18624 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18625                                   TargetLowering::DAGCombinerInfo &DCI,
18626                                   const X86Subtarget *Subtarget) {
18627   if (!DCI.isBeforeLegalizeOps())
18628     return SDValue();
18629
18630   if (!Subtarget->hasFp256())
18631     return SDValue();
18632
18633   EVT VT = N->getValueType(0);
18634   if (VT.isVector() && VT.getSizeInBits() == 256) {
18635     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18636     if (R.getNode())
18637       return R;
18638   }
18639
18640   return SDValue();
18641 }
18642
18643 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18644                                  const X86Subtarget* Subtarget) {
18645   SDLoc dl(N);
18646   EVT VT = N->getValueType(0);
18647
18648   // Let legalize expand this if it isn't a legal type yet.
18649   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18650     return SDValue();
18651
18652   EVT ScalarVT = VT.getScalarType();
18653   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18654       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18655     return SDValue();
18656
18657   SDValue A = N->getOperand(0);
18658   SDValue B = N->getOperand(1);
18659   SDValue C = N->getOperand(2);
18660
18661   bool NegA = (A.getOpcode() == ISD::FNEG);
18662   bool NegB = (B.getOpcode() == ISD::FNEG);
18663   bool NegC = (C.getOpcode() == ISD::FNEG);
18664
18665   // Negative multiplication when NegA xor NegB
18666   bool NegMul = (NegA != NegB);
18667   if (NegA)
18668     A = A.getOperand(0);
18669   if (NegB)
18670     B = B.getOperand(0);
18671   if (NegC)
18672     C = C.getOperand(0);
18673
18674   unsigned Opcode;
18675   if (!NegMul)
18676     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18677   else
18678     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18679
18680   return DAG.getNode(Opcode, dl, VT, A, B, C);
18681 }
18682
18683 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18684                                   TargetLowering::DAGCombinerInfo &DCI,
18685                                   const X86Subtarget *Subtarget) {
18686   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18687   //           (and (i32 x86isd::setcc_carry), 1)
18688   // This eliminates the zext. This transformation is necessary because
18689   // ISD::SETCC is always legalized to i8.
18690   SDLoc dl(N);
18691   SDValue N0 = N->getOperand(0);
18692   EVT VT = N->getValueType(0);
18693
18694   if (N0.getOpcode() == ISD::AND &&
18695       N0.hasOneUse() &&
18696       N0.getOperand(0).hasOneUse()) {
18697     SDValue N00 = N0.getOperand(0);
18698     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18699       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18700       if (!C || C->getZExtValue() != 1)
18701         return SDValue();
18702       return DAG.getNode(ISD::AND, dl, VT,
18703                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18704                                      N00.getOperand(0), N00.getOperand(1)),
18705                          DAG.getConstant(1, VT));
18706     }
18707   }
18708
18709   if (VT.is256BitVector()) {
18710     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18711     if (R.getNode())
18712       return R;
18713   }
18714
18715   return SDValue();
18716 }
18717
18718 // Optimize x == -y --> x+y == 0
18719 //          x != -y --> x+y != 0
18720 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18721   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18722   SDValue LHS = N->getOperand(0);
18723   SDValue RHS = N->getOperand(1);
18724
18725   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18726     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18727       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18728         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18729                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18730         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18731                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18732       }
18733   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18734     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18735       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18736         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18737                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18738         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18739                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18740       }
18741   return SDValue();
18742 }
18743
18744 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18745 // as "sbb reg,reg", since it can be extended without zext and produces
18746 // an all-ones bit which is more useful than 0/1 in some cases.
18747 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18748   return DAG.getNode(ISD::AND, DL, MVT::i8,
18749                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18750                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18751                      DAG.getConstant(1, MVT::i8));
18752 }
18753
18754 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18755 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18756                                    TargetLowering::DAGCombinerInfo &DCI,
18757                                    const X86Subtarget *Subtarget) {
18758   SDLoc DL(N);
18759   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18760   SDValue EFLAGS = N->getOperand(1);
18761
18762   if (CC == X86::COND_A) {
18763     // Try to convert COND_A into COND_B in an attempt to facilitate
18764     // materializing "setb reg".
18765     //
18766     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18767     // cannot take an immediate as its first operand.
18768     //
18769     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18770         EFLAGS.getValueType().isInteger() &&
18771         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18772       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18773                                    EFLAGS.getNode()->getVTList(),
18774                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18775       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18776       return MaterializeSETB(DL, NewEFLAGS, DAG);
18777     }
18778   }
18779
18780   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18781   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18782   // cases.
18783   if (CC == X86::COND_B)
18784     return MaterializeSETB(DL, EFLAGS, DAG);
18785
18786   SDValue Flags;
18787
18788   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18789   if (Flags.getNode()) {
18790     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18791     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18792   }
18793
18794   return SDValue();
18795 }
18796
18797 // Optimize branch condition evaluation.
18798 //
18799 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18800                                     TargetLowering::DAGCombinerInfo &DCI,
18801                                     const X86Subtarget *Subtarget) {
18802   SDLoc DL(N);
18803   SDValue Chain = N->getOperand(0);
18804   SDValue Dest = N->getOperand(1);
18805   SDValue EFLAGS = N->getOperand(3);
18806   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18807
18808   SDValue Flags;
18809
18810   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18811   if (Flags.getNode()) {
18812     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18813     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18814                        Flags);
18815   }
18816
18817   return SDValue();
18818 }
18819
18820 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18821                                         const X86TargetLowering *XTLI) {
18822   SDValue Op0 = N->getOperand(0);
18823   EVT InVT = Op0->getValueType(0);
18824
18825   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18826   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18827     SDLoc dl(N);
18828     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18829     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18830     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18831   }
18832
18833   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18834   // a 32-bit target where SSE doesn't support i64->FP operations.
18835   if (Op0.getOpcode() == ISD::LOAD) {
18836     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18837     EVT VT = Ld->getValueType(0);
18838     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18839         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18840         !XTLI->getSubtarget()->is64Bit() &&
18841         VT == MVT::i64) {
18842       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18843                                           Ld->getChain(), Op0, DAG);
18844       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18845       return FILDChain;
18846     }
18847   }
18848   return SDValue();
18849 }
18850
18851 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18852 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18853                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18854   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18855   // the result is either zero or one (depending on the input carry bit).
18856   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18857   if (X86::isZeroNode(N->getOperand(0)) &&
18858       X86::isZeroNode(N->getOperand(1)) &&
18859       // We don't have a good way to replace an EFLAGS use, so only do this when
18860       // dead right now.
18861       SDValue(N, 1).use_empty()) {
18862     SDLoc DL(N);
18863     EVT VT = N->getValueType(0);
18864     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18865     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18866                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18867                                            DAG.getConstant(X86::COND_B,MVT::i8),
18868                                            N->getOperand(2)),
18869                                DAG.getConstant(1, VT));
18870     return DCI.CombineTo(N, Res1, CarryOut);
18871   }
18872
18873   return SDValue();
18874 }
18875
18876 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18877 //      (add Y, (setne X, 0)) -> sbb -1, Y
18878 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18879 //      (sub (setne X, 0), Y) -> adc -1, Y
18880 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18881   SDLoc DL(N);
18882
18883   // Look through ZExts.
18884   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18885   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18886     return SDValue();
18887
18888   SDValue SetCC = Ext.getOperand(0);
18889   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18890     return SDValue();
18891
18892   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18893   if (CC != X86::COND_E && CC != X86::COND_NE)
18894     return SDValue();
18895
18896   SDValue Cmp = SetCC.getOperand(1);
18897   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18898       !X86::isZeroNode(Cmp.getOperand(1)) ||
18899       !Cmp.getOperand(0).getValueType().isInteger())
18900     return SDValue();
18901
18902   SDValue CmpOp0 = Cmp.getOperand(0);
18903   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18904                                DAG.getConstant(1, CmpOp0.getValueType()));
18905
18906   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18907   if (CC == X86::COND_NE)
18908     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18909                        DL, OtherVal.getValueType(), OtherVal,
18910                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18911   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18912                      DL, OtherVal.getValueType(), OtherVal,
18913                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18914 }
18915
18916 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18917 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18918                                  const X86Subtarget *Subtarget) {
18919   EVT VT = N->getValueType(0);
18920   SDValue Op0 = N->getOperand(0);
18921   SDValue Op1 = N->getOperand(1);
18922
18923   // Try to synthesize horizontal adds from adds of shuffles.
18924   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18925        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18926       isHorizontalBinOp(Op0, Op1, true))
18927     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18928
18929   return OptimizeConditionalInDecrement(N, DAG);
18930 }
18931
18932 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18933                                  const X86Subtarget *Subtarget) {
18934   SDValue Op0 = N->getOperand(0);
18935   SDValue Op1 = N->getOperand(1);
18936
18937   // X86 can't encode an immediate LHS of a sub. See if we can push the
18938   // negation into a preceding instruction.
18939   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18940     // If the RHS of the sub is a XOR with one use and a constant, invert the
18941     // immediate. Then add one to the LHS of the sub so we can turn
18942     // X-Y -> X+~Y+1, saving one register.
18943     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18944         isa<ConstantSDNode>(Op1.getOperand(1))) {
18945       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18946       EVT VT = Op0.getValueType();
18947       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18948                                    Op1.getOperand(0),
18949                                    DAG.getConstant(~XorC, VT));
18950       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18951                          DAG.getConstant(C->getAPIntValue()+1, VT));
18952     }
18953   }
18954
18955   // Try to synthesize horizontal adds from adds of shuffles.
18956   EVT VT = N->getValueType(0);
18957   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18958        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18959       isHorizontalBinOp(Op0, Op1, true))
18960     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18961
18962   return OptimizeConditionalInDecrement(N, DAG);
18963 }
18964
18965 /// performVZEXTCombine - Performs build vector combines
18966 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18967                                         TargetLowering::DAGCombinerInfo &DCI,
18968                                         const X86Subtarget *Subtarget) {
18969   // (vzext (bitcast (vzext (x)) -> (vzext x)
18970   SDValue In = N->getOperand(0);
18971   while (In.getOpcode() == ISD::BITCAST)
18972     In = In.getOperand(0);
18973
18974   if (In.getOpcode() != X86ISD::VZEXT)
18975     return SDValue();
18976
18977   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
18978                      In.getOperand(0));
18979 }
18980
18981 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
18982                                              DAGCombinerInfo &DCI) const {
18983   SelectionDAG &DAG = DCI.DAG;
18984   switch (N->getOpcode()) {
18985   default: break;
18986   case ISD::EXTRACT_VECTOR_ELT:
18987     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
18988   case ISD::VSELECT:
18989   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
18990   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
18991   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
18992   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
18993   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
18994   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
18995   case ISD::SHL:
18996   case ISD::SRA:
18997   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
18998   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
18999   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19000   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19001   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19002   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19003   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19004   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19005   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19006   case X86ISD::FXOR:
19007   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19008   case X86ISD::FMIN:
19009   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19010   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19011   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19012   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19013   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19014   case ISD::ANY_EXTEND:
19015   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19016   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19017   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19018   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19019   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19020   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19021   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19022   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19023   case X86ISD::SHUFP:       // Handle all target specific shuffles
19024   case X86ISD::PALIGNR:
19025   case X86ISD::UNPCKH:
19026   case X86ISD::UNPCKL:
19027   case X86ISD::MOVHLPS:
19028   case X86ISD::MOVLHPS:
19029   case X86ISD::PSHUFD:
19030   case X86ISD::PSHUFHW:
19031   case X86ISD::PSHUFLW:
19032   case X86ISD::MOVSS:
19033   case X86ISD::MOVSD:
19034   case X86ISD::VPERMILP:
19035   case X86ISD::VPERM2X128:
19036   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19037   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19038   }
19039
19040   return SDValue();
19041 }
19042
19043 /// isTypeDesirableForOp - Return true if the target has native support for
19044 /// the specified value type and it is 'desirable' to use the type for the
19045 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19046 /// instruction encodings are longer and some i16 instructions are slow.
19047 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19048   if (!isTypeLegal(VT))
19049     return false;
19050   if (VT != MVT::i16)
19051     return true;
19052
19053   switch (Opc) {
19054   default:
19055     return true;
19056   case ISD::LOAD:
19057   case ISD::SIGN_EXTEND:
19058   case ISD::ZERO_EXTEND:
19059   case ISD::ANY_EXTEND:
19060   case ISD::SHL:
19061   case ISD::SRL:
19062   case ISD::SUB:
19063   case ISD::ADD:
19064   case ISD::MUL:
19065   case ISD::AND:
19066   case ISD::OR:
19067   case ISD::XOR:
19068     return false;
19069   }
19070 }
19071
19072 /// IsDesirableToPromoteOp - This method query the target whether it is
19073 /// beneficial for dag combiner to promote the specified node. If true, it
19074 /// should return the desired promotion type by reference.
19075 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19076   EVT VT = Op.getValueType();
19077   if (VT != MVT::i16)
19078     return false;
19079
19080   bool Promote = false;
19081   bool Commute = false;
19082   switch (Op.getOpcode()) {
19083   default: break;
19084   case ISD::LOAD: {
19085     LoadSDNode *LD = cast<LoadSDNode>(Op);
19086     // If the non-extending load has a single use and it's not live out, then it
19087     // might be folded.
19088     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19089                                                      Op.hasOneUse()*/) {
19090       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19091              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19092         // The only case where we'd want to promote LOAD (rather then it being
19093         // promoted as an operand is when it's only use is liveout.
19094         if (UI->getOpcode() != ISD::CopyToReg)
19095           return false;
19096       }
19097     }
19098     Promote = true;
19099     break;
19100   }
19101   case ISD::SIGN_EXTEND:
19102   case ISD::ZERO_EXTEND:
19103   case ISD::ANY_EXTEND:
19104     Promote = true;
19105     break;
19106   case ISD::SHL:
19107   case ISD::SRL: {
19108     SDValue N0 = Op.getOperand(0);
19109     // Look out for (store (shl (load), x)).
19110     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19111       return false;
19112     Promote = true;
19113     break;
19114   }
19115   case ISD::ADD:
19116   case ISD::MUL:
19117   case ISD::AND:
19118   case ISD::OR:
19119   case ISD::XOR:
19120     Commute = true;
19121     // fallthrough
19122   case ISD::SUB: {
19123     SDValue N0 = Op.getOperand(0);
19124     SDValue N1 = Op.getOperand(1);
19125     if (!Commute && MayFoldLoad(N1))
19126       return false;
19127     // Avoid disabling potential load folding opportunities.
19128     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19129       return false;
19130     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19131       return false;
19132     Promote = true;
19133   }
19134   }
19135
19136   PVT = MVT::i32;
19137   return Promote;
19138 }
19139
19140 //===----------------------------------------------------------------------===//
19141 //                           X86 Inline Assembly Support
19142 //===----------------------------------------------------------------------===//
19143
19144 namespace {
19145   // Helper to match a string separated by whitespace.
19146   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19147     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19148
19149     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19150       StringRef piece(*args[i]);
19151       if (!s.startswith(piece)) // Check if the piece matches.
19152         return false;
19153
19154       s = s.substr(piece.size());
19155       StringRef::size_type pos = s.find_first_not_of(" \t");
19156       if (pos == 0) // We matched a prefix.
19157         return false;
19158
19159       s = s.substr(pos);
19160     }
19161
19162     return s.empty();
19163   }
19164   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19165 }
19166
19167 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19168   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19169
19170   std::string AsmStr = IA->getAsmString();
19171
19172   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19173   if (!Ty || Ty->getBitWidth() % 16 != 0)
19174     return false;
19175
19176   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19177   SmallVector<StringRef, 4> AsmPieces;
19178   SplitString(AsmStr, AsmPieces, ";\n");
19179
19180   switch (AsmPieces.size()) {
19181   default: return false;
19182   case 1:
19183     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19184     // we will turn this bswap into something that will be lowered to logical
19185     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19186     // lower so don't worry about this.
19187     // bswap $0
19188     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19189         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19190         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19191         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19192         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19193         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19194       // No need to check constraints, nothing other than the equivalent of
19195       // "=r,0" would be valid here.
19196       return IntrinsicLowering::LowerToByteSwap(CI);
19197     }
19198
19199     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19200     if (CI->getType()->isIntegerTy(16) &&
19201         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19202         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19203          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19204       AsmPieces.clear();
19205       const std::string &ConstraintsStr = IA->getConstraintString();
19206       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19207       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19208       if (AsmPieces.size() == 4 &&
19209           AsmPieces[0] == "~{cc}" &&
19210           AsmPieces[1] == "~{dirflag}" &&
19211           AsmPieces[2] == "~{flags}" &&
19212           AsmPieces[3] == "~{fpsr}")
19213       return IntrinsicLowering::LowerToByteSwap(CI);
19214     }
19215     break;
19216   case 3:
19217     if (CI->getType()->isIntegerTy(32) &&
19218         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19219         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19220         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19221         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19222       AsmPieces.clear();
19223       const std::string &ConstraintsStr = IA->getConstraintString();
19224       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19225       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19226       if (AsmPieces.size() == 4 &&
19227           AsmPieces[0] == "~{cc}" &&
19228           AsmPieces[1] == "~{dirflag}" &&
19229           AsmPieces[2] == "~{flags}" &&
19230           AsmPieces[3] == "~{fpsr}")
19231         return IntrinsicLowering::LowerToByteSwap(CI);
19232     }
19233
19234     if (CI->getType()->isIntegerTy(64)) {
19235       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19236       if (Constraints.size() >= 2 &&
19237           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19238           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19239         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19240         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19241             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19242             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19243           return IntrinsicLowering::LowerToByteSwap(CI);
19244       }
19245     }
19246     break;
19247   }
19248   return false;
19249 }
19250
19251 /// getConstraintType - Given a constraint letter, return the type of
19252 /// constraint it is for this target.
19253 X86TargetLowering::ConstraintType
19254 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19255   if (Constraint.size() == 1) {
19256     switch (Constraint[0]) {
19257     case 'R':
19258     case 'q':
19259     case 'Q':
19260     case 'f':
19261     case 't':
19262     case 'u':
19263     case 'y':
19264     case 'x':
19265     case 'Y':
19266     case 'l':
19267       return C_RegisterClass;
19268     case 'a':
19269     case 'b':
19270     case 'c':
19271     case 'd':
19272     case 'S':
19273     case 'D':
19274     case 'A':
19275       return C_Register;
19276     case 'I':
19277     case 'J':
19278     case 'K':
19279     case 'L':
19280     case 'M':
19281     case 'N':
19282     case 'G':
19283     case 'C':
19284     case 'e':
19285     case 'Z':
19286       return C_Other;
19287     default:
19288       break;
19289     }
19290   }
19291   return TargetLowering::getConstraintType(Constraint);
19292 }
19293
19294 /// Examine constraint type and operand type and determine a weight value.
19295 /// This object must already have been set up with the operand type
19296 /// and the current alternative constraint selected.
19297 TargetLowering::ConstraintWeight
19298   X86TargetLowering::getSingleConstraintMatchWeight(
19299     AsmOperandInfo &info, const char *constraint) const {
19300   ConstraintWeight weight = CW_Invalid;
19301   Value *CallOperandVal = info.CallOperandVal;
19302     // If we don't have a value, we can't do a match,
19303     // but allow it at the lowest weight.
19304   if (CallOperandVal == NULL)
19305     return CW_Default;
19306   Type *type = CallOperandVal->getType();
19307   // Look at the constraint type.
19308   switch (*constraint) {
19309   default:
19310     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19311   case 'R':
19312   case 'q':
19313   case 'Q':
19314   case 'a':
19315   case 'b':
19316   case 'c':
19317   case 'd':
19318   case 'S':
19319   case 'D':
19320   case 'A':
19321     if (CallOperandVal->getType()->isIntegerTy())
19322       weight = CW_SpecificReg;
19323     break;
19324   case 'f':
19325   case 't':
19326   case 'u':
19327     if (type->isFloatingPointTy())
19328       weight = CW_SpecificReg;
19329     break;
19330   case 'y':
19331     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19332       weight = CW_SpecificReg;
19333     break;
19334   case 'x':
19335   case 'Y':
19336     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19337         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19338       weight = CW_Register;
19339     break;
19340   case 'I':
19341     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19342       if (C->getZExtValue() <= 31)
19343         weight = CW_Constant;
19344     }
19345     break;
19346   case 'J':
19347     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19348       if (C->getZExtValue() <= 63)
19349         weight = CW_Constant;
19350     }
19351     break;
19352   case 'K':
19353     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19354       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19355         weight = CW_Constant;
19356     }
19357     break;
19358   case 'L':
19359     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19360       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19361         weight = CW_Constant;
19362     }
19363     break;
19364   case 'M':
19365     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19366       if (C->getZExtValue() <= 3)
19367         weight = CW_Constant;
19368     }
19369     break;
19370   case 'N':
19371     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19372       if (C->getZExtValue() <= 0xff)
19373         weight = CW_Constant;
19374     }
19375     break;
19376   case 'G':
19377   case 'C':
19378     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19379       weight = CW_Constant;
19380     }
19381     break;
19382   case 'e':
19383     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19384       if ((C->getSExtValue() >= -0x80000000LL) &&
19385           (C->getSExtValue() <= 0x7fffffffLL))
19386         weight = CW_Constant;
19387     }
19388     break;
19389   case 'Z':
19390     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19391       if (C->getZExtValue() <= 0xffffffff)
19392         weight = CW_Constant;
19393     }
19394     break;
19395   }
19396   return weight;
19397 }
19398
19399 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19400 /// with another that has more specific requirements based on the type of the
19401 /// corresponding operand.
19402 const char *X86TargetLowering::
19403 LowerXConstraint(EVT ConstraintVT) const {
19404   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19405   // 'f' like normal targets.
19406   if (ConstraintVT.isFloatingPoint()) {
19407     if (Subtarget->hasSSE2())
19408       return "Y";
19409     if (Subtarget->hasSSE1())
19410       return "x";
19411   }
19412
19413   return TargetLowering::LowerXConstraint(ConstraintVT);
19414 }
19415
19416 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19417 /// vector.  If it is invalid, don't add anything to Ops.
19418 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19419                                                      std::string &Constraint,
19420                                                      std::vector<SDValue>&Ops,
19421                                                      SelectionDAG &DAG) const {
19422   SDValue Result(0, 0);
19423
19424   // Only support length 1 constraints for now.
19425   if (Constraint.length() > 1) return;
19426
19427   char ConstraintLetter = Constraint[0];
19428   switch (ConstraintLetter) {
19429   default: break;
19430   case 'I':
19431     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19432       if (C->getZExtValue() <= 31) {
19433         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19434         break;
19435       }
19436     }
19437     return;
19438   case 'J':
19439     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19440       if (C->getZExtValue() <= 63) {
19441         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19442         break;
19443       }
19444     }
19445     return;
19446   case 'K':
19447     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19448       if (isInt<8>(C->getSExtValue())) {
19449         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19450         break;
19451       }
19452     }
19453     return;
19454   case 'N':
19455     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19456       if (C->getZExtValue() <= 255) {
19457         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19458         break;
19459       }
19460     }
19461     return;
19462   case 'e': {
19463     // 32-bit signed value
19464     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19465       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19466                                            C->getSExtValue())) {
19467         // Widen to 64 bits here to get it sign extended.
19468         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19469         break;
19470       }
19471     // FIXME gcc accepts some relocatable values here too, but only in certain
19472     // memory models; it's complicated.
19473     }
19474     return;
19475   }
19476   case 'Z': {
19477     // 32-bit unsigned value
19478     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19479       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19480                                            C->getZExtValue())) {
19481         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19482         break;
19483       }
19484     }
19485     // FIXME gcc accepts some relocatable values here too, but only in certain
19486     // memory models; it's complicated.
19487     return;
19488   }
19489   case 'i': {
19490     // Literal immediates are always ok.
19491     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19492       // Widen to 64 bits here to get it sign extended.
19493       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19494       break;
19495     }
19496
19497     // In any sort of PIC mode addresses need to be computed at runtime by
19498     // adding in a register or some sort of table lookup.  These can't
19499     // be used as immediates.
19500     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19501       return;
19502
19503     // If we are in non-pic codegen mode, we allow the address of a global (with
19504     // an optional displacement) to be used with 'i'.
19505     GlobalAddressSDNode *GA = 0;
19506     int64_t Offset = 0;
19507
19508     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19509     while (1) {
19510       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19511         Offset += GA->getOffset();
19512         break;
19513       } else if (Op.getOpcode() == ISD::ADD) {
19514         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19515           Offset += C->getZExtValue();
19516           Op = Op.getOperand(0);
19517           continue;
19518         }
19519       } else if (Op.getOpcode() == ISD::SUB) {
19520         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19521           Offset += -C->getZExtValue();
19522           Op = Op.getOperand(0);
19523           continue;
19524         }
19525       }
19526
19527       // Otherwise, this isn't something we can handle, reject it.
19528       return;
19529     }
19530
19531     const GlobalValue *GV = GA->getGlobal();
19532     // If we require an extra load to get this address, as in PIC mode, we
19533     // can't accept it.
19534     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19535                                                         getTargetMachine())))
19536       return;
19537
19538     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19539                                         GA->getValueType(0), Offset);
19540     break;
19541   }
19542   }
19543
19544   if (Result.getNode()) {
19545     Ops.push_back(Result);
19546     return;
19547   }
19548   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19549 }
19550
19551 std::pair<unsigned, const TargetRegisterClass*>
19552 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19553                                                 MVT VT) const {
19554   // First, see if this is a constraint that directly corresponds to an LLVM
19555   // register class.
19556   if (Constraint.size() == 1) {
19557     // GCC Constraint Letters
19558     switch (Constraint[0]) {
19559     default: break;
19560       // TODO: Slight differences here in allocation order and leaving
19561       // RIP in the class. Do they matter any more here than they do
19562       // in the normal allocation?
19563     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19564       if (Subtarget->is64Bit()) {
19565         if (VT == MVT::i32 || VT == MVT::f32)
19566           return std::make_pair(0U, &X86::GR32RegClass);
19567         if (VT == MVT::i16)
19568           return std::make_pair(0U, &X86::GR16RegClass);
19569         if (VT == MVT::i8 || VT == MVT::i1)
19570           return std::make_pair(0U, &X86::GR8RegClass);
19571         if (VT == MVT::i64 || VT == MVT::f64)
19572           return std::make_pair(0U, &X86::GR64RegClass);
19573         break;
19574       }
19575       // 32-bit fallthrough
19576     case 'Q':   // Q_REGS
19577       if (VT == MVT::i32 || VT == MVT::f32)
19578         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19579       if (VT == MVT::i16)
19580         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19581       if (VT == MVT::i8 || VT == MVT::i1)
19582         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19583       if (VT == MVT::i64)
19584         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19585       break;
19586     case 'r':   // GENERAL_REGS
19587     case 'l':   // INDEX_REGS
19588       if (VT == MVT::i8 || VT == MVT::i1)
19589         return std::make_pair(0U, &X86::GR8RegClass);
19590       if (VT == MVT::i16)
19591         return std::make_pair(0U, &X86::GR16RegClass);
19592       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19593         return std::make_pair(0U, &X86::GR32RegClass);
19594       return std::make_pair(0U, &X86::GR64RegClass);
19595     case 'R':   // LEGACY_REGS
19596       if (VT == MVT::i8 || VT == MVT::i1)
19597         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19598       if (VT == MVT::i16)
19599         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19600       if (VT == MVT::i32 || !Subtarget->is64Bit())
19601         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19602       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19603     case 'f':  // FP Stack registers.
19604       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19605       // value to the correct fpstack register class.
19606       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19607         return std::make_pair(0U, &X86::RFP32RegClass);
19608       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19609         return std::make_pair(0U, &X86::RFP64RegClass);
19610       return std::make_pair(0U, &X86::RFP80RegClass);
19611     case 'y':   // MMX_REGS if MMX allowed.
19612       if (!Subtarget->hasMMX()) break;
19613       return std::make_pair(0U, &X86::VR64RegClass);
19614     case 'Y':   // SSE_REGS if SSE2 allowed
19615       if (!Subtarget->hasSSE2()) break;
19616       // FALL THROUGH.
19617     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19618       if (!Subtarget->hasSSE1()) break;
19619
19620       switch (VT.SimpleTy) {
19621       default: break;
19622       // Scalar SSE types.
19623       case MVT::f32:
19624       case MVT::i32:
19625         return std::make_pair(0U, &X86::FR32RegClass);
19626       case MVT::f64:
19627       case MVT::i64:
19628         return std::make_pair(0U, &X86::FR64RegClass);
19629       // Vector types.
19630       case MVT::v16i8:
19631       case MVT::v8i16:
19632       case MVT::v4i32:
19633       case MVT::v2i64:
19634       case MVT::v4f32:
19635       case MVT::v2f64:
19636         return std::make_pair(0U, &X86::VR128RegClass);
19637       // AVX types.
19638       case MVT::v32i8:
19639       case MVT::v16i16:
19640       case MVT::v8i32:
19641       case MVT::v4i64:
19642       case MVT::v8f32:
19643       case MVT::v4f64:
19644         return std::make_pair(0U, &X86::VR256RegClass);
19645       case MVT::v8f64:
19646       case MVT::v16f32:
19647       case MVT::v16i32:
19648       case MVT::v8i64:
19649         return std::make_pair(0U, &X86::VR512RegClass);
19650       }
19651       break;
19652     }
19653   }
19654
19655   // Use the default implementation in TargetLowering to convert the register
19656   // constraint into a member of a register class.
19657   std::pair<unsigned, const TargetRegisterClass*> Res;
19658   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19659
19660   // Not found as a standard register?
19661   if (Res.second == 0) {
19662     // Map st(0) -> st(7) -> ST0
19663     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19664         tolower(Constraint[1]) == 's' &&
19665         tolower(Constraint[2]) == 't' &&
19666         Constraint[3] == '(' &&
19667         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19668         Constraint[5] == ')' &&
19669         Constraint[6] == '}') {
19670
19671       Res.first = X86::ST0+Constraint[4]-'0';
19672       Res.second = &X86::RFP80RegClass;
19673       return Res;
19674     }
19675
19676     // GCC allows "st(0)" to be called just plain "st".
19677     if (StringRef("{st}").equals_lower(Constraint)) {
19678       Res.first = X86::ST0;
19679       Res.second = &X86::RFP80RegClass;
19680       return Res;
19681     }
19682
19683     // flags -> EFLAGS
19684     if (StringRef("{flags}").equals_lower(Constraint)) {
19685       Res.first = X86::EFLAGS;
19686       Res.second = &X86::CCRRegClass;
19687       return Res;
19688     }
19689
19690     // 'A' means EAX + EDX.
19691     if (Constraint == "A") {
19692       Res.first = X86::EAX;
19693       Res.second = &X86::GR32_ADRegClass;
19694       return Res;
19695     }
19696     return Res;
19697   }
19698
19699   // Otherwise, check to see if this is a register class of the wrong value
19700   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19701   // turn into {ax},{dx}.
19702   if (Res.second->hasType(VT))
19703     return Res;   // Correct type already, nothing to do.
19704
19705   // All of the single-register GCC register classes map their values onto
19706   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19707   // really want an 8-bit or 32-bit register, map to the appropriate register
19708   // class and return the appropriate register.
19709   if (Res.second == &X86::GR16RegClass) {
19710     if (VT == MVT::i8 || VT == MVT::i1) {
19711       unsigned DestReg = 0;
19712       switch (Res.first) {
19713       default: break;
19714       case X86::AX: DestReg = X86::AL; break;
19715       case X86::DX: DestReg = X86::DL; break;
19716       case X86::CX: DestReg = X86::CL; break;
19717       case X86::BX: DestReg = X86::BL; break;
19718       }
19719       if (DestReg) {
19720         Res.first = DestReg;
19721         Res.second = &X86::GR8RegClass;
19722       }
19723     } else if (VT == MVT::i32 || VT == MVT::f32) {
19724       unsigned DestReg = 0;
19725       switch (Res.first) {
19726       default: break;
19727       case X86::AX: DestReg = X86::EAX; break;
19728       case X86::DX: DestReg = X86::EDX; break;
19729       case X86::CX: DestReg = X86::ECX; break;
19730       case X86::BX: DestReg = X86::EBX; break;
19731       case X86::SI: DestReg = X86::ESI; break;
19732       case X86::DI: DestReg = X86::EDI; break;
19733       case X86::BP: DestReg = X86::EBP; break;
19734       case X86::SP: DestReg = X86::ESP; break;
19735       }
19736       if (DestReg) {
19737         Res.first = DestReg;
19738         Res.second = &X86::GR32RegClass;
19739       }
19740     } else if (VT == MVT::i64 || VT == MVT::f64) {
19741       unsigned DestReg = 0;
19742       switch (Res.first) {
19743       default: break;
19744       case X86::AX: DestReg = X86::RAX; break;
19745       case X86::DX: DestReg = X86::RDX; break;
19746       case X86::CX: DestReg = X86::RCX; break;
19747       case X86::BX: DestReg = X86::RBX; break;
19748       case X86::SI: DestReg = X86::RSI; break;
19749       case X86::DI: DestReg = X86::RDI; break;
19750       case X86::BP: DestReg = X86::RBP; break;
19751       case X86::SP: DestReg = X86::RSP; break;
19752       }
19753       if (DestReg) {
19754         Res.first = DestReg;
19755         Res.second = &X86::GR64RegClass;
19756       }
19757     }
19758   } else if (Res.second == &X86::FR32RegClass ||
19759              Res.second == &X86::FR64RegClass ||
19760              Res.second == &X86::VR128RegClass ||
19761              Res.second == &X86::VR256RegClass ||
19762              Res.second == &X86::FR32XRegClass ||
19763              Res.second == &X86::FR64XRegClass ||
19764              Res.second == &X86::VR128XRegClass ||
19765              Res.second == &X86::VR256XRegClass ||
19766              Res.second == &X86::VR512RegClass) {
19767     // Handle references to XMM physical registers that got mapped into the
19768     // wrong class.  This can happen with constraints like {xmm0} where the
19769     // target independent register mapper will just pick the first match it can
19770     // find, ignoring the required type.
19771
19772     if (VT == MVT::f32 || VT == MVT::i32)
19773       Res.second = &X86::FR32RegClass;
19774     else if (VT == MVT::f64 || VT == MVT::i64)
19775       Res.second = &X86::FR64RegClass;
19776     else if (X86::VR128RegClass.hasType(VT))
19777       Res.second = &X86::VR128RegClass;
19778     else if (X86::VR256RegClass.hasType(VT))
19779       Res.second = &X86::VR256RegClass;
19780     else if (X86::VR512RegClass.hasType(VT))
19781       Res.second = &X86::VR512RegClass;
19782   }
19783
19784   return Res;
19785 }